@kosdev-code/kos-ui-sdk 0.1.0-next.748 → 0.1.0-next.779

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.kos.json ADDED
@@ -0,0 +1,310 @@
1
+ {
2
+ "name": "@kosdev-code/kos-ui-sdk-model",
3
+ "type": "kos.model",
4
+ "version": "0.1.0",
5
+ "models": {
6
+ "browser-router": {
7
+ "name": "browser-router",
8
+ "type": "browser-router-model",
9
+ "singleton": true,
10
+ "factory": "BrowserRouter",
11
+ "purpose": "Singleton router model wrapping app navigation and route state."
12
+ },
13
+ "log-stream": {
14
+ "name": "log-stream",
15
+ "type": "log-stream-model",
16
+ "singleton": false,
17
+ "factory": "LogStream",
18
+ "managedBy": [
19
+ "log-stream-container"
20
+ ],
21
+ "purpose": "A single log stream and its buffered entries."
22
+ },
23
+ "log-stream-container": {
24
+ "name": "log-stream-container",
25
+ "type": "log-stream-container-model",
26
+ "singleton": true,
27
+ "container": true,
28
+ "factory": "LogStreamContainer",
29
+ "purpose": "Manages the set of log streams."
30
+ },
31
+ "log-block": {
32
+ "name": "log-block",
33
+ "type": "log-block-model",
34
+ "singleton": false,
35
+ "factory": "LogBlock",
36
+ "managedBy": [
37
+ "log-block-container"
38
+ ],
39
+ "purpose": "A block of captured log output."
40
+ },
41
+ "log-block-container": {
42
+ "name": "log-block-container",
43
+ "type": "log-block-container-model",
44
+ "singleton": true,
45
+ "container": true,
46
+ "factory": "LogBlockContainer",
47
+ "purpose": "Manages the set of log blocks."
48
+ },
49
+ "studio-properties": {
50
+ "name": "studio-properties",
51
+ "type": "studio-properties-model",
52
+ "singleton": false,
53
+ "factory": "StudioProperties"
54
+ },
55
+ "canvas-renderer": {
56
+ "name": "canvas-renderer",
57
+ "type": "canvas-renderer-model",
58
+ "singleton": false,
59
+ "factory": "CanvasRenderer"
60
+ },
61
+ "kos-log-manager": {
62
+ "name": "kos-log-manager",
63
+ "type": "kos-log-manager-model",
64
+ "singleton": true,
65
+ "factory": "KosLogManager",
66
+ "purpose": "Singleton manager for device and application logging."
67
+ },
68
+ "kos-expression-evaluator": {
69
+ "name": "kos-expression-evaluator",
70
+ "type": "kos-expression-evaluator-model",
71
+ "singleton": false,
72
+ "factory": "KosExpressionEvaluator",
73
+ "purpose": "Evaluates KOS expressions against model/config state."
74
+ },
75
+ "usb-update-container": {
76
+ "name": "usb-update-container",
77
+ "type": "usb-update-container-model",
78
+ "singleton": true,
79
+ "factory": "UsbUpdateContainer",
80
+ "purpose": "Manages available USB software updates."
81
+ },
82
+ "usb-update": {
83
+ "name": "usb-update",
84
+ "type": "usb-update-model",
85
+ "factory": "UsbUpdate",
86
+ "managedBy": [
87
+ "usb-update-container"
88
+ ],
89
+ "purpose": "A USB software-update package and its apply state."
90
+ },
91
+ "canvas-dispatcher": {
92
+ "name": "canvas-dispatcher",
93
+ "type": "canvas-dispatcher-model",
94
+ "singleton": true,
95
+ "factory": "CanvasDispatcher"
96
+ },
97
+ "state-bean": {
98
+ "name": "state-bean",
99
+ "type": "state-bean-model",
100
+ "factory": "StateBean"
101
+ },
102
+ "region-info": {
103
+ "name": "region-info",
104
+ "type": "region-info-model",
105
+ "factory": "RegionInfo",
106
+ "purpose": "Locale and region information for the device."
107
+ },
108
+ "ota": {
109
+ "name": "ota",
110
+ "type": "ota-model",
111
+ "singleton": true,
112
+ "factory": "Ota",
113
+ "purpose": "Singleton over-the-air software-update state and operations."
114
+ },
115
+ "software-info": {
116
+ "name": "software-info",
117
+ "type": "software-info-model",
118
+ "factory": "SoftwareInfo",
119
+ "purpose": "Installed software and firmware version information."
120
+ },
121
+ "FutureFactory.type": {
122
+ "name": "FutureFactory.type",
123
+ "type": "FutureFactory.type"
124
+ },
125
+ "device-maintenance": {
126
+ "name": "device-maintenance",
127
+ "type": "device-maintenance-model"
128
+ },
129
+ "brewing-system": {
130
+ "name": "brewing-system",
131
+ "type": "brewing-system-model"
132
+ },
133
+ "device-operations": {
134
+ "name": "device-operations",
135
+ "type": "device-operations-model"
136
+ },
137
+ "device": {
138
+ "name": "device",
139
+ "type": "device-model",
140
+ "singleton": true,
141
+ "factory": "Device",
142
+ "purpose": "Singleton root model for the connected device — identity, status, and capabilities."
143
+ },
144
+ "state-prop": {
145
+ "name": "state-prop",
146
+ "type": "state-prop-model",
147
+ "factory": "StateProp"
148
+ },
149
+ "kos-time": {
150
+ "name": "kos-time",
151
+ "type": "kos-time-model",
152
+ "singleton": true,
153
+ "factory": "KosTime",
154
+ "purpose": "Singleton device clock and time state."
155
+ },
156
+ "FutureContainerFactory.type": {
157
+ "name": "FutureContainerFactory.type",
158
+ "type": "FutureContainerFactory.type"
159
+ },
160
+ "key-value": {
161
+ "name": "key-value",
162
+ "type": "key-value-model",
163
+ "factory": "KeyValue",
164
+ "purpose": "A generic key/value pair model."
165
+ },
166
+ "config-bean-prop": {
167
+ "name": "config-bean-prop",
168
+ "type": "config-bean-prop-model",
169
+ "purpose": "A single configuration property within a config bean."
170
+ },
171
+ "translation": {
172
+ "name": "translation",
173
+ "type": "translation-model",
174
+ "factory": "Translation",
175
+ "managedBy": [
176
+ "translation-container"
177
+ ],
178
+ "purpose": "A translation entry for internationalization."
179
+ },
180
+ "translation-container": {
181
+ "name": "translation-container",
182
+ "type": "translation-container-model",
183
+ "singleton": true,
184
+ "factory": "TranslationContainer",
185
+ "purpose": "Manages the translation (i18n) catalog."
186
+ },
187
+ "storage-device": {
188
+ "name": "storage-device",
189
+ "type": "storage-device-model",
190
+ "factory": "StorageDevice",
191
+ "managedBy": [
192
+ "storage-device-container"
193
+ ],
194
+ "purpose": "A storage device (disk/USB) and its state."
195
+ },
196
+ "storage-device-container": {
197
+ "name": "storage-device-container",
198
+ "type": "storage-device-container-model",
199
+ "singleton": true,
200
+ "factory": "StorageDeviceContainer",
201
+ "purpose": "Manages the device's connected storage devices."
202
+ },
203
+ "WsEventFactory.type": {
204
+ "name": "WsEventFactory.type",
205
+ "type": "WsEventFactory.type"
206
+ },
207
+ "trouble": {
208
+ "name": "trouble",
209
+ "type": "trouble-model",
210
+ "factory": "Trouble",
211
+ "managedBy": [
212
+ "trouble-container"
213
+ ],
214
+ "purpose": "An active device trouble or fault condition."
215
+ },
216
+ "network-interface-container": {
217
+ "name": "network-interface-container",
218
+ "type": "network-interface-container-model",
219
+ "singleton": true,
220
+ "factory": "NetworkInterfaceContainer",
221
+ "purpose": "Manages the device's network interfaces."
222
+ },
223
+ "network-interface": {
224
+ "name": "network-interface",
225
+ "type": "network-interface-model",
226
+ "factory": "NetworkInterface",
227
+ "managedBy": [
228
+ "network-interface-container"
229
+ ],
230
+ "purpose": "A network interface and its connection state."
231
+ },
232
+ "kos-ws-event": {
233
+ "name": "kos-ws-event",
234
+ "type": "kos-ws-event"
235
+ },
236
+ "future": {
237
+ "name": "future",
238
+ "type": "future-model",
239
+ "managedBy": [
240
+ "future-container"
241
+ ]
242
+ },
243
+ "future-container": {
244
+ "name": "future-container",
245
+ "type": "future-container-model"
246
+ },
247
+ "trouble-container": {
248
+ "name": "trouble-container",
249
+ "type": "trouble-container-model",
250
+ "singleton": true,
251
+ "factory": "TroubleContainer",
252
+ "purpose": "Manages the set of active device troubles."
253
+ },
254
+ "config-bean": {
255
+ "name": "config-bean",
256
+ "type": "config-bean-model",
257
+ "factory": "ConfigBean",
258
+ "purpose": "A configuration bean exposing device config values."
259
+ },
260
+ "gpio-chip": {
261
+ "name": "gpio-chip",
262
+ "type": "gpio-chip-model",
263
+ "singleton": false,
264
+ "factory": "GpioChip",
265
+ "managedBy": [
266
+ "gpio-chip-container"
267
+ ],
268
+ "purpose": "A GPIO chip and its pins."
269
+ },
270
+ "gpio-chip-container": {
271
+ "name": "gpio-chip-container",
272
+ "type": "gpio-chip-container-model",
273
+ "singleton": true,
274
+ "container": true,
275
+ "factory": "GpioChipContainer",
276
+ "purpose": "Manages the device's GPIO chips."
277
+ },
278
+ "gpio-pin": {
279
+ "name": "gpio-pin",
280
+ "type": "gpio-pin-model",
281
+ "singleton": false,
282
+ "factory": "GpioPin",
283
+ "managedBy": [
284
+ "gpio-pin-container"
285
+ ],
286
+ "purpose": "A single GPIO pin and its state."
287
+ },
288
+ "gpio-pin-container": {
289
+ "name": "gpio-pin-container",
290
+ "type": "gpio-pin-container-model",
291
+ "singleton": true,
292
+ "container": true,
293
+ "factory": "GpioPinContainer",
294
+ "purpose": "Manages a GPIO chip's pins."
295
+ }
296
+ },
297
+ "generator": {
298
+ "projectType": [
299
+ "model",
300
+ "ui",
301
+ "model-component"
302
+ ],
303
+ "internal": true,
304
+ "defaults": {
305
+ "model": {
306
+ "folder": "models/models"
307
+ }
308
+ }
309
+ }
310
+ }