@camstack/types 1.2.104 → 1.2.106

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.
Files changed (46) hide show
  1. package/dist/capabilities/addons.cap.d.ts +4 -4
  2. package/dist/capabilities/battery.cap.d.ts +4 -4
  3. package/dist/capabilities/control.cap.d.ts +4 -4
  4. package/dist/capabilities/core-blocks.cap.d.ts +8 -8
  5. package/dist/capabilities/custom-model-registry.cap.d.ts +4 -4
  6. package/dist/capabilities/data-store-provider.cap.d.ts +1 -0
  7. package/dist/capabilities/device-manager.cap.d.ts +1 -1
  8. package/dist/capabilities/face-gallery.cap.d.ts +3 -1
  9. package/dist/capabilities/llm-runtime.cap.d.ts +3 -3
  10. package/dist/capabilities/llm.cap.d.ts +4 -4
  11. package/dist/capabilities/model-convert.cap.d.ts +6 -6
  12. package/dist/capabilities/model-distributor.cap.d.ts +4 -4
  13. package/dist/capabilities/native-object-detection.cap.d.ts +15 -15
  14. package/dist/capabilities/notification-output.cap.d.ts +18 -18
  15. package/dist/capabilities/notification-rules.cap.d.ts +26 -26
  16. package/dist/capabilities/oauth-integration.cap.d.ts +2 -2
  17. package/dist/capabilities/osd-manager.cap.d.ts +14 -14
  18. package/dist/capabilities/pipeline-analytics.cap.d.ts +53 -53
  19. package/dist/capabilities/pipeline-executor.cap.d.ts +7 -7
  20. package/dist/capabilities/pipeline-orchestrator.cap.d.ts +19 -19
  21. package/dist/capabilities/plate-gallery.cap.d.ts +5 -1
  22. package/dist/capabilities/platform-probe.cap.d.ts +2 -2
  23. package/dist/capabilities/recording-export.cap.d.ts +7 -7
  24. package/dist/capabilities/recording.cap.d.ts +9 -30
  25. package/dist/capabilities/scene-monitor.cap.d.ts +8 -8
  26. package/dist/capabilities/settings-store.cap.d.ts +17 -2
  27. package/dist/capabilities/sso-bridge.cap.d.ts +3 -3
  28. package/dist/capabilities/storage-migration.cap.d.ts +1 -1
  29. package/dist/capabilities/stream-broker.cap.d.ts +6 -6
  30. package/dist/capabilities/user-management.cap.d.ts +20 -20
  31. package/dist/capabilities/vacuum-control.cap.d.ts +13 -13
  32. package/dist/encode-profile.d.ts +2 -2
  33. package/dist/generated/addon-api.d.ts +2 -6
  34. package/dist/health/wiring-health.d.ts +8 -8
  35. package/dist/index.js +88 -101
  36. package/dist/index.mjs +89 -96
  37. package/dist/interfaces/addon.d.ts +29 -7
  38. package/dist/interfaces/adoption-job.d.ts +2 -2
  39. package/dist/interfaces/ops-log.d.ts +2 -2
  40. package/dist/interfaces/recording-config.d.ts +7 -57
  41. package/dist/interfaces/relocate.d.ts +4 -4
  42. package/dist/interfaces/storage.d.ts +23 -0
  43. package/dist/lifecycle/job.d.ts +4 -4
  44. package/dist/schemas/auth-records.d.ts +4 -4
  45. package/dist/types/models.d.ts +7 -7
  46. package/package.json +1 -1
@@ -9,8 +9,8 @@ declare const UserSummarySchema: z.ZodObject<{
9
9
  scopes: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
10
10
  type: z.ZodLiteral<"category">;
11
11
  target: z.ZodEnum<{
12
- system: "system";
13
12
  device: "device";
13
+ system: "system";
14
14
  }>;
15
15
  access: z.ZodArray<z.ZodEnum<{
16
16
  view: "view";
@@ -67,8 +67,8 @@ declare const CreateUserInputSchema: z.ZodObject<{
67
67
  scopes: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
68
68
  type: z.ZodLiteral<"category">;
69
69
  target: z.ZodEnum<{
70
- system: "system";
71
70
  device: "device";
71
+ system: "system";
72
72
  }>;
73
73
  access: z.ZodArray<z.ZodEnum<{
74
74
  view: "view";
@@ -121,8 +121,8 @@ declare const UpdateUserInputSchema: z.ZodObject<{
121
121
  scopes: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
122
122
  type: z.ZodLiteral<"category">;
123
123
  target: z.ZodEnum<{
124
- system: "system";
125
124
  device: "device";
125
+ system: "system";
126
126
  }>;
127
127
  access: z.ZodArray<z.ZodEnum<{
128
128
  view: "view";
@@ -204,8 +204,8 @@ declare const ScopedTokenSummarySchema: z.ZodObject<{
204
204
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
205
205
  type: z.ZodLiteral<"category">;
206
206
  target: z.ZodEnum<{
207
- system: "system";
208
207
  device: "device";
208
+ system: "system";
209
209
  }>;
210
210
  access: z.ZodArray<z.ZodEnum<{
211
211
  view: "view";
@@ -259,8 +259,8 @@ declare const CreateScopedTokenInputSchema: z.ZodObject<{
259
259
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
260
260
  type: z.ZodLiteral<"category">;
261
261
  target: z.ZodEnum<{
262
- system: "system";
263
262
  device: "device";
263
+ system: "system";
264
264
  }>;
265
265
  access: z.ZodArray<z.ZodEnum<{
266
266
  view: "view";
@@ -316,8 +316,8 @@ declare const CreateScopedTokenResultSchema: z.ZodObject<{
316
316
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
317
317
  type: z.ZodLiteral<"category">;
318
318
  target: z.ZodEnum<{
319
- system: "system";
320
319
  device: "device";
320
+ system: "system";
321
321
  }>;
322
322
  access: z.ZodArray<z.ZodEnum<{
323
323
  view: "view";
@@ -374,8 +374,8 @@ declare const OauthSessionSummarySchema: z.ZodObject<{
374
374
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
375
375
  type: z.ZodLiteral<"category">;
376
376
  target: z.ZodEnum<{
377
- system: "system";
378
377
  device: "device";
378
+ system: "system";
379
379
  }>;
380
380
  access: z.ZodArray<z.ZodEnum<{
381
381
  view: "view";
@@ -447,8 +447,8 @@ export declare const userManagementCapability: {
447
447
  scopes: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
448
448
  type: z.ZodLiteral<"category">;
449
449
  target: z.ZodEnum<{
450
- system: "system";
451
450
  device: "device";
451
+ system: "system";
452
452
  }>;
453
453
  access: z.ZodArray<z.ZodEnum<{
454
454
  view: "view";
@@ -505,8 +505,8 @@ export declare const userManagementCapability: {
505
505
  scopes: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
506
506
  type: z.ZodLiteral<"category">;
507
507
  target: z.ZodEnum<{
508
- system: "system";
509
508
  device: "device";
509
+ system: "system";
510
510
  }>;
511
511
  access: z.ZodArray<z.ZodEnum<{
512
512
  view: "view";
@@ -559,8 +559,8 @@ export declare const userManagementCapability: {
559
559
  scopes: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
560
560
  type: z.ZodLiteral<"category">;
561
561
  target: z.ZodEnum<{
562
- system: "system";
563
562
  device: "device";
563
+ system: "system";
564
564
  }>;
565
565
  access: z.ZodArray<z.ZodEnum<{
566
566
  view: "view";
@@ -616,8 +616,8 @@ export declare const userManagementCapability: {
616
616
  scopes: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
617
617
  type: z.ZodLiteral<"category">;
618
618
  target: z.ZodEnum<{
619
- system: "system";
620
619
  device: "device";
620
+ system: "system";
621
621
  }>;
622
622
  access: z.ZodArray<z.ZodEnum<{
623
623
  view: "view";
@@ -680,8 +680,8 @@ export declare const userManagementCapability: {
680
680
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
681
681
  type: z.ZodLiteral<"category">;
682
682
  target: z.ZodEnum<{
683
- system: "system";
684
683
  device: "device";
684
+ system: "system";
685
685
  }>;
686
686
  access: z.ZodArray<z.ZodEnum<{
687
687
  view: "view";
@@ -740,8 +740,8 @@ export declare const userManagementCapability: {
740
740
  scopes: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
741
741
  type: z.ZodLiteral<"category">;
742
742
  target: z.ZodEnum<{
743
- system: "system";
744
743
  device: "device";
744
+ system: "system";
745
745
  }>;
746
746
  access: z.ZodArray<z.ZodEnum<{
747
747
  view: "view";
@@ -841,8 +841,8 @@ export declare const userManagementCapability: {
841
841
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
842
842
  type: z.ZodLiteral<"category">;
843
843
  target: z.ZodEnum<{
844
- system: "system";
845
844
  device: "device";
845
+ system: "system";
846
846
  }>;
847
847
  access: z.ZodArray<z.ZodEnum<{
848
848
  view: "view";
@@ -897,8 +897,8 @@ export declare const userManagementCapability: {
897
897
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
898
898
  type: z.ZodLiteral<"category">;
899
899
  target: z.ZodEnum<{
900
- system: "system";
901
900
  device: "device";
901
+ system: "system";
902
902
  }>;
903
903
  access: z.ZodArray<z.ZodEnum<{
904
904
  view: "view";
@@ -962,8 +962,8 @@ export declare const userManagementCapability: {
962
962
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
963
963
  type: z.ZodLiteral<"category">;
964
964
  target: z.ZodEnum<{
965
- system: "system";
966
965
  device: "device";
966
+ system: "system";
967
967
  }>;
968
968
  access: z.ZodArray<z.ZodEnum<{
969
969
  view: "view";
@@ -1021,8 +1021,8 @@ export declare const userManagementCapability: {
1021
1021
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
1022
1022
  type: z.ZodLiteral<"category">;
1023
1023
  target: z.ZodEnum<{
1024
- system: "system";
1025
1024
  device: "device";
1025
+ system: "system";
1026
1026
  }>;
1027
1027
  access: z.ZodArray<z.ZodEnum<{
1028
1028
  view: "view";
@@ -1106,8 +1106,8 @@ export declare const userManagementCapability: {
1106
1106
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
1107
1107
  type: z.ZodLiteral<"category">;
1108
1108
  target: z.ZodEnum<{
1109
- system: "system";
1110
1109
  device: "device";
1110
+ system: "system";
1111
1111
  }>;
1112
1112
  access: z.ZodArray<z.ZodEnum<{
1113
1113
  view: "view";
@@ -1182,8 +1182,8 @@ export declare const userManagementCapability: {
1182
1182
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
1183
1183
  type: z.ZodLiteral<"category">;
1184
1184
  target: z.ZodEnum<{
1185
- system: "system";
1186
1185
  device: "device";
1186
+ system: "system";
1187
1187
  }>;
1188
1188
  access: z.ZodArray<z.ZodEnum<{
1189
1189
  view: "view";
@@ -1236,8 +1236,8 @@ export declare const userManagementCapability: {
1236
1236
  scopes: z.ZodArray<z.ZodPreprocess<z.ZodDiscriminatedUnion<[z.ZodObject<{
1237
1237
  type: z.ZodLiteral<"category">;
1238
1238
  target: z.ZodEnum<{
1239
- system: "system";
1240
1239
  device: "device";
1240
+ system: "system";
1241
1241
  }>;
1242
1242
  access: z.ZodArray<z.ZodEnum<{
1243
1243
  view: "view";
@@ -46,9 +46,9 @@ export type VacuumState = z.infer<typeof VacuumStateSchema>;
46
46
  export declare const TankStatusSchema: z.ZodObject<{
47
47
  level: z.ZodNullable<z.ZodNumber>;
48
48
  status: z.ZodNullable<z.ZodEnum<{
49
+ full: "full";
49
50
  ok: "ok";
50
51
  low: "low";
51
- full: "full";
52
52
  }>>;
53
53
  }, z.core.$strip>;
54
54
  export type TankStatus = z.infer<typeof TankStatusSchema>;
@@ -68,33 +68,33 @@ export declare const VacuumControlStatusSchema: z.ZodObject<{
68
68
  cleanWater: z.ZodNullable<z.ZodObject<{
69
69
  level: z.ZodNullable<z.ZodNumber>;
70
70
  status: z.ZodNullable<z.ZodEnum<{
71
+ full: "full";
71
72
  ok: "ok";
72
73
  low: "low";
73
- full: "full";
74
74
  }>>;
75
75
  }, z.core.$strip>>;
76
76
  dirtyWater: z.ZodNullable<z.ZodObject<{
77
77
  level: z.ZodNullable<z.ZodNumber>;
78
78
  status: z.ZodNullable<z.ZodEnum<{
79
+ full: "full";
79
80
  ok: "ok";
80
81
  low: "low";
81
- full: "full";
82
82
  }>>;
83
83
  }, z.core.$strip>>;
84
84
  detergent: z.ZodNullable<z.ZodObject<{
85
85
  level: z.ZodNullable<z.ZodNumber>;
86
86
  status: z.ZodNullable<z.ZodEnum<{
87
+ full: "full";
87
88
  ok: "ok";
88
89
  low: "low";
89
- full: "full";
90
90
  }>>;
91
91
  }, z.core.$strip>>;
92
92
  dustBin: z.ZodNullable<z.ZodObject<{
93
93
  level: z.ZodNullable<z.ZodNumber>;
94
94
  status: z.ZodNullable<z.ZodEnum<{
95
+ full: "full";
95
96
  ok: "ok";
96
97
  low: "low";
97
- full: "full";
98
98
  }>>;
99
99
  }, z.core.$strip>>;
100
100
  progressPercent: z.ZodNullable<z.ZodNumber>;
@@ -147,33 +147,33 @@ export declare const vacuumControlCapability: {
147
147
  cleanWater: z.ZodNullable<z.ZodObject<{
148
148
  level: z.ZodNullable<z.ZodNumber>;
149
149
  status: z.ZodNullable<z.ZodEnum<{
150
+ full: "full";
150
151
  ok: "ok";
151
152
  low: "low";
152
- full: "full";
153
153
  }>>;
154
154
  }, z.core.$strip>>;
155
155
  dirtyWater: z.ZodNullable<z.ZodObject<{
156
156
  level: z.ZodNullable<z.ZodNumber>;
157
157
  status: z.ZodNullable<z.ZodEnum<{
158
+ full: "full";
158
159
  ok: "ok";
159
160
  low: "low";
160
- full: "full";
161
161
  }>>;
162
162
  }, z.core.$strip>>;
163
163
  detergent: z.ZodNullable<z.ZodObject<{
164
164
  level: z.ZodNullable<z.ZodNumber>;
165
165
  status: z.ZodNullable<z.ZodEnum<{
166
+ full: "full";
166
167
  ok: "ok";
167
168
  low: "low";
168
- full: "full";
169
169
  }>>;
170
170
  }, z.core.$strip>>;
171
171
  dustBin: z.ZodNullable<z.ZodObject<{
172
172
  level: z.ZodNullable<z.ZodNumber>;
173
173
  status: z.ZodNullable<z.ZodEnum<{
174
+ full: "full";
174
175
  ok: "ok";
175
176
  low: "low";
176
- full: "full";
177
177
  }>>;
178
178
  }, z.core.$strip>>;
179
179
  progressPercent: z.ZodNullable<z.ZodNumber>;
@@ -203,33 +203,33 @@ export declare const vacuumControlCapability: {
203
203
  cleanWater: z.ZodNullable<z.ZodObject<{
204
204
  level: z.ZodNullable<z.ZodNumber>;
205
205
  status: z.ZodNullable<z.ZodEnum<{
206
+ full: "full";
206
207
  ok: "ok";
207
208
  low: "low";
208
- full: "full";
209
209
  }>>;
210
210
  }, z.core.$strip>>;
211
211
  dirtyWater: z.ZodNullable<z.ZodObject<{
212
212
  level: z.ZodNullable<z.ZodNumber>;
213
213
  status: z.ZodNullable<z.ZodEnum<{
214
+ full: "full";
214
215
  ok: "ok";
215
216
  low: "low";
216
- full: "full";
217
217
  }>>;
218
218
  }, z.core.$strip>>;
219
219
  detergent: z.ZodNullable<z.ZodObject<{
220
220
  level: z.ZodNullable<z.ZodNumber>;
221
221
  status: z.ZodNullable<z.ZodEnum<{
222
+ full: "full";
222
223
  ok: "ok";
223
224
  low: "low";
224
- full: "full";
225
225
  }>>;
226
226
  }, z.core.$strip>>;
227
227
  dustBin: z.ZodNullable<z.ZodObject<{
228
228
  level: z.ZodNullable<z.ZodNumber>;
229
229
  status: z.ZodNullable<z.ZodEnum<{
230
+ full: "full";
230
231
  ok: "ok";
231
232
  low: "low";
232
- full: "full";
233
233
  }>>;
234
234
  }, z.core.$strip>>;
235
235
  progressPercent: z.ZodNullable<z.ZodNumber>;
@@ -30,11 +30,11 @@ export declare const VideoEncodeSchema: z.ZodObject<{
30
30
  gopFrames: z.ZodOptional<z.ZodNumber>;
31
31
  bf: z.ZodOptional<z.ZodNumber>;
32
32
  preset: z.ZodOptional<z.ZodEnum<{
33
+ fast: "fast";
33
34
  ultrafast: "ultrafast";
34
35
  superfast: "superfast";
35
36
  veryfast: "veryfast";
36
37
  faster: "faster";
37
- fast: "fast";
38
38
  medium: "medium";
39
39
  }>>;
40
40
  tune: z.ZodOptional<z.ZodEnum<{
@@ -77,11 +77,11 @@ export declare const EncodeProfileSchema: z.ZodObject<{
77
77
  gopFrames: z.ZodOptional<z.ZodNumber>;
78
78
  bf: z.ZodOptional<z.ZodNumber>;
79
79
  preset: z.ZodOptional<z.ZodEnum<{
80
+ fast: "fast";
80
81
  ultrafast: "ultrafast";
81
82
  superfast: "superfast";
82
83
  veryfast: "veryfast";
83
84
  faster: "faster";
84
- fast: "fast";
85
85
  medium: "medium";
86
86
  }>>;
87
87
  tune: z.ZodOptional<z.ZodEnum<{
@@ -2876,9 +2876,7 @@ export type AppRouter = TrpcCoreRouter<{
2876
2876
  transformer: true;
2877
2877
  }, TRPCDecorateCreateRouterOptions<{
2878
2878
  listIdentities: TRPCQueryProcedure<{
2879
- input: {
2880
- nodeId?: string | undefined;
2881
- } | undefined;
2879
+ input: z.input<typeof faceGalleryCapability.methods.listIdentities.input>;
2882
2880
  output: z.infer<typeof faceGalleryCapability.methods.listIdentities.output>;
2883
2881
  meta: object;
2884
2882
  }>;
@@ -5919,9 +5917,7 @@ export type AppRouter = TrpcCoreRouter<{
5919
5917
  meta: object;
5920
5918
  }>;
5921
5919
  listVehicles: TRPCQueryProcedure<{
5922
- input: {
5923
- nodeId?: string | undefined;
5924
- } | undefined;
5920
+ input: z.input<typeof plateGalleryCapability.methods.listVehicles.input>;
5925
5921
  output: z.infer<typeof plateGalleryCapability.methods.listVehicles.output>;
5926
5922
  meta: object;
5927
5923
  }>;
@@ -11,18 +11,18 @@
11
11
  import { z } from 'zod';
12
12
  /** What kind of target a probe addressed. */
13
13
  export declare const wiringProbeKindSchema: z.ZodEnum<{
14
- widget: "widget";
15
14
  device: "device";
16
15
  singleton: "singleton";
16
+ widget: "widget";
17
17
  }>;
18
18
  export type WiringProbeKind = z.infer<typeof wiringProbeKindSchema>;
19
19
  /** Result of probing a single (cap|widget [, device]) target. */
20
20
  export declare const wiringProbeResultSchema: z.ZodObject<{
21
21
  capName: z.ZodString;
22
22
  kind: z.ZodEnum<{
23
- widget: "widget";
24
23
  device: "device";
25
24
  singleton: "singleton";
25
+ widget: "widget";
26
26
  }>;
27
27
  deviceId: z.ZodOptional<z.ZodNumber>;
28
28
  reachable: z.ZodBoolean;
@@ -36,9 +36,9 @@ export declare const wiringAddonHealthSchema: z.ZodObject<{
36
36
  caps: z.ZodReadonly<z.ZodArray<z.ZodObject<{
37
37
  capName: z.ZodString;
38
38
  kind: z.ZodEnum<{
39
- widget: "widget";
40
39
  device: "device";
41
40
  singleton: "singleton";
41
+ widget: "widget";
42
42
  }>;
43
43
  deviceId: z.ZodOptional<z.ZodNumber>;
44
44
  reachable: z.ZodBoolean;
@@ -48,9 +48,9 @@ export declare const wiringAddonHealthSchema: z.ZodObject<{
48
48
  widgets: z.ZodReadonly<z.ZodArray<z.ZodObject<{
49
49
  capName: z.ZodString;
50
50
  kind: z.ZodEnum<{
51
- widget: "widget";
52
51
  device: "device";
53
52
  singleton: "singleton";
53
+ widget: "widget";
54
54
  }>;
55
55
  deviceId: z.ZodOptional<z.ZodNumber>;
56
56
  reachable: z.ZodBoolean;
@@ -67,9 +67,9 @@ export declare const wiringNodeHealthSchema: z.ZodObject<{
67
67
  caps: z.ZodReadonly<z.ZodArray<z.ZodObject<{
68
68
  capName: z.ZodString;
69
69
  kind: z.ZodEnum<{
70
- widget: "widget";
71
70
  device: "device";
72
71
  singleton: "singleton";
72
+ widget: "widget";
73
73
  }>;
74
74
  deviceId: z.ZodOptional<z.ZodNumber>;
75
75
  reachable: z.ZodBoolean;
@@ -79,9 +79,9 @@ export declare const wiringNodeHealthSchema: z.ZodObject<{
79
79
  widgets: z.ZodReadonly<z.ZodArray<z.ZodObject<{
80
80
  capName: z.ZodString;
81
81
  kind: z.ZodEnum<{
82
- widget: "widget";
83
82
  device: "device";
84
83
  singleton: "singleton";
84
+ widget: "widget";
85
85
  }>;
86
86
  deviceId: z.ZodOptional<z.ZodNumber>;
87
87
  reachable: z.ZodBoolean;
@@ -103,9 +103,9 @@ export declare const wiringHealthSnapshotSchema: z.ZodObject<{
103
103
  caps: z.ZodReadonly<z.ZodArray<z.ZodObject<{
104
104
  capName: z.ZodString;
105
105
  kind: z.ZodEnum<{
106
- widget: "widget";
107
106
  device: "device";
108
107
  singleton: "singleton";
108
+ widget: "widget";
109
109
  }>;
110
110
  deviceId: z.ZodOptional<z.ZodNumber>;
111
111
  reachable: z.ZodBoolean;
@@ -115,9 +115,9 @@ export declare const wiringHealthSnapshotSchema: z.ZodObject<{
115
115
  widgets: z.ZodReadonly<z.ZodArray<z.ZodObject<{
116
116
  capName: z.ZodString;
117
117
  kind: z.ZodEnum<{
118
- widget: "widget";
119
118
  device: "device";
120
119
  singleton: "singleton";
120
+ widget: "widget";
121
121
  }>;
122
122
  deviceId: z.ZodOptional<z.ZodNumber>;
123
123
  reachable: z.ZodBoolean;