@seamapi/types 1.69.0 → 1.70.0
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/dist/devicedb.cjs +9 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +263 -2
- package/lib/seam/devicedb/index.d.ts +1 -1
- package/lib/seam/devicedb/public-models/device-model-v1.d.ts +52 -0
- package/lib/seam/devicedb/public-models/manufacturer.d.ts +30 -0
- package/lib/seam/devicedb/public-models/manufacturer.js +6 -0
- package/lib/seam/devicedb/public-models/manufacturer.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +160 -0
- package/lib/seam/devicedb/route-types.d.ts +16 -0
- package/package.json +1 -1
- package/src/lib/seam/devicedb/index.ts +1 -0
- package/src/lib/seam/devicedb/public-models/manufacturer.ts +12 -0
- package/src/lib/seam/devicedb/route-types.ts +16 -0
|
@@ -30,6 +30,10 @@ export interface Routes {
|
|
|
30
30
|
| 'inquire'
|
|
31
31
|
is_connect_webview_supported: boolean
|
|
32
32
|
requires_seam_support_to_add_account: boolean
|
|
33
|
+
annotations: Array<{
|
|
34
|
+
annotation_code: 'subscription_required'
|
|
35
|
+
message: string
|
|
36
|
+
}>
|
|
33
37
|
}
|
|
34
38
|
is_device_supported: boolean
|
|
35
39
|
display_name: string
|
|
@@ -196,6 +200,10 @@ export interface Routes {
|
|
|
196
200
|
| 'inquire'
|
|
197
201
|
is_connect_webview_supported: boolean
|
|
198
202
|
requires_seam_support_to_add_account: boolean
|
|
203
|
+
annotations: Array<{
|
|
204
|
+
annotation_code: 'subscription_required'
|
|
205
|
+
message: string
|
|
206
|
+
}>
|
|
199
207
|
}
|
|
200
208
|
is_device_supported: boolean
|
|
201
209
|
display_name: string
|
|
@@ -336,6 +344,10 @@ export interface Routes {
|
|
|
336
344
|
is_connect_webview_supported: boolean
|
|
337
345
|
requires_seam_support_to_add_account: boolean
|
|
338
346
|
device_model_count: number
|
|
347
|
+
annotations: Array<{
|
|
348
|
+
annotation_code: 'subscription_required'
|
|
349
|
+
message: string
|
|
350
|
+
}>
|
|
339
351
|
}
|
|
340
352
|
}
|
|
341
353
|
}
|
|
@@ -375,6 +387,10 @@ export interface Routes {
|
|
|
375
387
|
is_connect_webview_supported: boolean
|
|
376
388
|
requires_seam_support_to_add_account: boolean
|
|
377
389
|
device_model_count: number
|
|
390
|
+
annotations: Array<{
|
|
391
|
+
annotation_code: 'subscription_required'
|
|
392
|
+
message: string
|
|
393
|
+
}>
|
|
378
394
|
}>
|
|
379
395
|
}
|
|
380
396
|
}
|