13 Commits

Author SHA1 Message Date
c26cad2ed4 [RELEASE] - release version: 0.4.0 2024-12-10 23:47:01 +01:00
32bfd089fd update Device response 2024-12-10 19:33:12 +01:00
b3bef7cd6d [RELEASE] - bump version 2024-11-30 18:54:53 +01:00
cb39c7cea0 [RELEASE] - release version: 0.3.0 2024-11-30 18:54:51 +01:00
f696e826fd add device configuration Configuration 2024-11-30 16:54:44 +01:00
f4ab9741f3 [RELEASE] - bump version 2024-11-26 11:01:20 +01:00
607d45e4d3 [RELEASE] - release version: 0.2.0 2024-11-26 11:01:17 +01:00
3206412565 add device registry Identity 2024-11-26 11:00:27 +01:00
9f3b80ec31 add device registry Node 2024-11-26 10:05:11 +01:00
04ce5522cd add device registry Device 2024-11-26 10:04:30 +01:00
e636032d13 add device registry Type 2024-11-21 04:44:17 +01:00
9c7f7493ed update catalog 2024-11-18 06:50:54 +01:00
ec0106b334 [RELEASE] - bump version 2024-11-15 11:30:43 +01:00
6 changed files with 81 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official kotlin.code.style=official
version=0.1.0 version=0.4.0
catalog=0.3.0 catalog=0.6.0

View File

@@ -0,0 +1,17 @@
package ltd.hlaeja.library.deviceConfiguration
import java.time.ZonedDateTime
import java.util.UUID
object Node {
data class Request(
val configuration: String,
)
data class Response(
val node: UUID,
val timestamp: ZonedDateTime,
val configuration: String,
)
}

View File

@@ -0,0 +1,16 @@
package ltd.hlaeja.library.deviceRegistry
import java.util.UUID
object Device {
data class Request(
val type: UUID,
)
data class Response(
val id: UUID,
val type: UUID,
val identity: String,
)
}

View File

@@ -0,0 +1,12 @@
package ltd.hlaeja.library.deviceRegistry
import java.util.UUID
object Identity {
data class Response(
val client: UUID,
val node: UUID,
val device: UUID,
)
}

View File

@@ -0,0 +1,19 @@
package ltd.hlaeja.library.deviceRegistry
import java.util.UUID
object Node {
data class Request(
val client: UUID,
val device: UUID,
val name: String,
)
data class Response(
val id: UUID,
val client: UUID,
val device: UUID,
val name: String,
)
}

View File

@@ -0,0 +1,15 @@
package ltd.hlaeja.library.deviceRegistry
import java.util.UUID
object Type {
data class Request(
val name: String,
)
data class Response(
val id: UUID,
val name: String,
)
}