6 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
3 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
version=0.2.0
catalog=0.4.0
version=0.4.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

@@ -11,9 +11,6 @@ object Device {
data class Response(
val id: UUID,
val type: UUID,
)
data class Identity(
val identity: String,
)
}