@seamapi/types 1.1000.0 → 1.1000.1
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/package.json +12 -17
- package/src/lib/seam/connect/route-types.ts +2113 -4456
- package/src/lib/seam/devicedb/route-types.ts +7 -29
|
@@ -23,11 +23,7 @@ export interface Routes {
|
|
|
23
23
|
| undefined
|
|
24
24
|
integration: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
25
25
|
integration_support_level:
|
|
26
|
-
| '
|
|
27
|
-
| 'beta'
|
|
28
|
-
| 'planned'
|
|
29
|
-
| 'unsupported'
|
|
30
|
-
| 'inquire'
|
|
26
|
+
'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
31
27
|
is_connect_webview_supported: boolean
|
|
32
28
|
requires_seam_support_to_add_account: boolean
|
|
33
29
|
annotations: Array<{
|
|
@@ -182,8 +178,7 @@ export interface Routes {
|
|
|
182
178
|
manufacturer_id?: string | undefined
|
|
183
179
|
manufacturer_ids?: string[] | undefined
|
|
184
180
|
integration_status?:
|
|
185
|
-
|
|
186
|
-
| undefined
|
|
181
|
+
('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined
|
|
187
182
|
integration_support_levels?:
|
|
188
183
|
| Array<'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'>
|
|
189
184
|
| undefined
|
|
@@ -209,17 +204,9 @@ export interface Routes {
|
|
|
209
204
|
}
|
|
210
205
|
| undefined
|
|
211
206
|
integration:
|
|
212
|
-
| '
|
|
213
|
-
| 'beta'
|
|
214
|
-
| 'planned'
|
|
215
|
-
| 'unsupported'
|
|
216
|
-
| 'inquire'
|
|
207
|
+
'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
217
208
|
integration_support_level:
|
|
218
|
-
| '
|
|
219
|
-
| 'beta'
|
|
220
|
-
| 'planned'
|
|
221
|
-
| 'unsupported'
|
|
222
|
-
| 'inquire'
|
|
209
|
+
'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
223
210
|
is_connect_webview_supported: boolean
|
|
224
211
|
requires_seam_support_to_add_account: boolean
|
|
225
212
|
annotations: Array<{
|
|
@@ -380,11 +367,7 @@ export interface Routes {
|
|
|
380
367
|
| undefined
|
|
381
368
|
integration: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
382
369
|
integration_support_level:
|
|
383
|
-
| '
|
|
384
|
-
| 'beta'
|
|
385
|
-
| 'planned'
|
|
386
|
-
| 'unsupported'
|
|
387
|
-
| 'inquire'
|
|
370
|
+
'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
388
371
|
is_connect_webview_supported: boolean
|
|
389
372
|
requires_seam_support_to_add_account: boolean
|
|
390
373
|
device_model_count: number
|
|
@@ -411,8 +394,7 @@ export interface Routes {
|
|
|
411
394
|
method: 'GET' | 'OPTIONS'
|
|
412
395
|
queryParams: {
|
|
413
396
|
integration_status?:
|
|
414
|
-
|
|
415
|
-
| undefined
|
|
397
|
+
('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined
|
|
416
398
|
integration_support_levels?:
|
|
417
399
|
| Array<'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'>
|
|
418
400
|
| undefined
|
|
@@ -434,11 +416,7 @@ export interface Routes {
|
|
|
434
416
|
| undefined
|
|
435
417
|
integration: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
436
418
|
integration_support_level:
|
|
437
|
-
| '
|
|
438
|
-
| 'beta'
|
|
439
|
-
| 'planned'
|
|
440
|
-
| 'unsupported'
|
|
441
|
-
| 'inquire'
|
|
419
|
+
'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire'
|
|
442
420
|
is_connect_webview_supported: boolean
|
|
443
421
|
requires_seam_support_to_add_account: boolean
|
|
444
422
|
device_model_count: number
|