7 Commits

Author SHA1 Message Date
hlaeja
5d24c50393 [RELEASE] - Bump version 2025-08-18 10:38:38 +00:00
hlaeja
c648326113 [RELEASE] - Release version: 0.10.0 2025-08-18 10:38:37 +00:00
f31cf2d860 add Nodes 2025-08-18 12:37:55 +02:00
01b23a1dfb cleanup .editorconfig 2025-08-18 12:37:55 +02:00
7f668f800e add Devices 2025-08-18 12:37:55 +02:00
cf6ad1ade0 add AccountMessage 2025-08-18 12:37:55 +02:00
hlaeja
ce7c4a7cd8 [RELEASE] - Bump version 2025-07-29 17:15:52 +00:00
5 changed files with 39 additions and 6 deletions

View File

@@ -15,10 +15,6 @@ max_line_length = 1024
[*.bat] [*.bat]
end_of_line = crlf end_of_line = crlf
[*.sh]
indent_size = 2
tab_width = 2
# noinspection EditorConfigKeyCorrectness # noinspection EditorConfigKeyCorrectness
[*.{kt,kts}] [*.{kt,kts}]
ij_kotlin_allow_trailing_comma = true ij_kotlin_allow_trailing_comma = true

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official kotlin.code.style=official
version=0.9.0 version=0.11.0-SNAPSHOT
catalog=0.11.0 catalog=0.12.0

View File

@@ -0,0 +1,9 @@
package ltd.hlaeja.library.accountRegistry.event
import java.util.UUID
data class AccountMessage(
val userId: UUID,
val change: List<String>,
val timestamp: Long = System.currentTimeMillis(),
)

View File

@@ -0,0 +1,13 @@
package ltd.hlaeja.library.deviceRegistry
import java.time.ZonedDateTime
import java.util.UUID
object Devices {
data class Response(
val id: UUID,
val type: UUID,
val timestamp: ZonedDateTime,
)
}

View File

@@ -0,0 +1,15 @@
package ltd.hlaeja.library.deviceRegistry
import java.time.ZonedDateTime
import java.util.UUID
object Nodes {
data class Response(
val id: UUID,
val timestamp: ZonedDateTime,
val client: UUID,
val device: UUID,
val name: String,
)
}