@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
|
@@ -318,6 +318,16 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
318
318
|
is_connect_webview_supported: z.ZodBoolean;
|
|
319
319
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
320
320
|
device_model_count: z.ZodNumber;
|
|
321
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
322
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
323
|
+
message: z.ZodString;
|
|
324
|
+
}, "strip", z.ZodTypeAny, {
|
|
325
|
+
message: string;
|
|
326
|
+
annotation_code: "subscription_required";
|
|
327
|
+
}, {
|
|
328
|
+
message: string;
|
|
329
|
+
annotation_code: "subscription_required";
|
|
330
|
+
}>, "many">;
|
|
321
331
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
322
332
|
display_name: string;
|
|
323
333
|
manufacturer_id: string;
|
|
@@ -325,6 +335,10 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
325
335
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
326
336
|
is_connect_webview_supported: boolean;
|
|
327
337
|
requires_seam_support_to_add_account: boolean;
|
|
338
|
+
annotations: {
|
|
339
|
+
message: string;
|
|
340
|
+
annotation_code: "subscription_required";
|
|
341
|
+
}[];
|
|
328
342
|
logo?: {
|
|
329
343
|
height: number;
|
|
330
344
|
width: number;
|
|
@@ -337,6 +351,10 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
337
351
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
338
352
|
is_connect_webview_supported: boolean;
|
|
339
353
|
requires_seam_support_to_add_account: boolean;
|
|
354
|
+
annotations: {
|
|
355
|
+
message: string;
|
|
356
|
+
annotation_code: "subscription_required";
|
|
357
|
+
}[];
|
|
340
358
|
logo?: {
|
|
341
359
|
height: number;
|
|
342
360
|
width: number;
|
|
@@ -445,6 +463,10 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
445
463
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
446
464
|
is_connect_webview_supported: boolean;
|
|
447
465
|
requires_seam_support_to_add_account: boolean;
|
|
466
|
+
annotations: {
|
|
467
|
+
message: string;
|
|
468
|
+
annotation_code: "subscription_required";
|
|
469
|
+
}[];
|
|
448
470
|
logo?: {
|
|
449
471
|
height: number;
|
|
450
472
|
width: number;
|
|
@@ -487,6 +509,10 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
487
509
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
488
510
|
is_connect_webview_supported: boolean;
|
|
489
511
|
requires_seam_support_to_add_account: boolean;
|
|
512
|
+
annotations: {
|
|
513
|
+
message: string;
|
|
514
|
+
annotation_code: "subscription_required";
|
|
515
|
+
}[];
|
|
490
516
|
logo?: {
|
|
491
517
|
height: number;
|
|
492
518
|
width: number;
|
|
@@ -543,6 +569,16 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
543
569
|
is_connect_webview_supported: z.ZodBoolean;
|
|
544
570
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
545
571
|
device_model_count: z.ZodNumber;
|
|
572
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
573
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
574
|
+
message: z.ZodString;
|
|
575
|
+
}, "strip", z.ZodTypeAny, {
|
|
576
|
+
message: string;
|
|
577
|
+
annotation_code: "subscription_required";
|
|
578
|
+
}, {
|
|
579
|
+
message: string;
|
|
580
|
+
annotation_code: "subscription_required";
|
|
581
|
+
}>, "many">;
|
|
546
582
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
547
583
|
display_name: string;
|
|
548
584
|
manufacturer_id: string;
|
|
@@ -550,6 +586,10 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
550
586
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
551
587
|
is_connect_webview_supported: boolean;
|
|
552
588
|
requires_seam_support_to_add_account: boolean;
|
|
589
|
+
annotations: {
|
|
590
|
+
message: string;
|
|
591
|
+
annotation_code: "subscription_required";
|
|
592
|
+
}[];
|
|
553
593
|
logo?: {
|
|
554
594
|
height: number;
|
|
555
595
|
width: number;
|
|
@@ -562,6 +602,10 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
562
602
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
563
603
|
is_connect_webview_supported: boolean;
|
|
564
604
|
requires_seam_support_to_add_account: boolean;
|
|
605
|
+
annotations: {
|
|
606
|
+
message: string;
|
|
607
|
+
annotation_code: "subscription_required";
|
|
608
|
+
}[];
|
|
565
609
|
logo?: {
|
|
566
610
|
height: number;
|
|
567
611
|
width: number;
|
|
@@ -670,6 +714,10 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
670
714
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
671
715
|
is_connect_webview_supported: boolean;
|
|
672
716
|
requires_seam_support_to_add_account: boolean;
|
|
717
|
+
annotations: {
|
|
718
|
+
message: string;
|
|
719
|
+
annotation_code: "subscription_required";
|
|
720
|
+
}[];
|
|
673
721
|
logo?: {
|
|
674
722
|
height: number;
|
|
675
723
|
width: number;
|
|
@@ -712,6 +760,10 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
712
760
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
713
761
|
is_connect_webview_supported: boolean;
|
|
714
762
|
requires_seam_support_to_add_account: boolean;
|
|
763
|
+
annotations: {
|
|
764
|
+
message: string;
|
|
765
|
+
annotation_code: "subscription_required";
|
|
766
|
+
}[];
|
|
715
767
|
logo?: {
|
|
716
768
|
height: number;
|
|
717
769
|
width: number;
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const manufacturer_integration_support_level: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
|
|
3
3
|
export type ManufacturerIntegrationSupportLevel = z.infer<typeof manufacturer_integration_support_level>;
|
|
4
|
+
export declare const manufacturer_annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
5
|
+
export type ManufacturerAnnotationCode = z.infer<typeof manufacturer_annotation_code>;
|
|
6
|
+
export declare const manufacturer_annotation: z.ZodObject<{
|
|
7
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
8
|
+
message: z.ZodString;
|
|
9
|
+
}, "strip", z.ZodTypeAny, {
|
|
10
|
+
message: string;
|
|
11
|
+
annotation_code: "subscription_required";
|
|
12
|
+
}, {
|
|
13
|
+
message: string;
|
|
14
|
+
annotation_code: "subscription_required";
|
|
15
|
+
}>;
|
|
4
16
|
export declare const manufacturer: z.ZodObject<{
|
|
5
17
|
manufacturer_id: z.ZodString;
|
|
6
18
|
display_name: z.ZodString;
|
|
@@ -23,6 +35,16 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
23
35
|
is_connect_webview_supported: z.ZodBoolean;
|
|
24
36
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
25
37
|
device_model_count: z.ZodNumber;
|
|
38
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
39
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
40
|
+
message: z.ZodString;
|
|
41
|
+
}, "strip", z.ZodTypeAny, {
|
|
42
|
+
message: string;
|
|
43
|
+
annotation_code: "subscription_required";
|
|
44
|
+
}, {
|
|
45
|
+
message: string;
|
|
46
|
+
annotation_code: "subscription_required";
|
|
47
|
+
}>, "many">;
|
|
26
48
|
}, "strip", z.ZodTypeAny, {
|
|
27
49
|
display_name: string;
|
|
28
50
|
manufacturer_id: string;
|
|
@@ -31,6 +53,10 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
31
53
|
is_connect_webview_supported: boolean;
|
|
32
54
|
requires_seam_support_to_add_account: boolean;
|
|
33
55
|
device_model_count: number;
|
|
56
|
+
annotations: {
|
|
57
|
+
message: string;
|
|
58
|
+
annotation_code: "subscription_required";
|
|
59
|
+
}[];
|
|
34
60
|
logo?: {
|
|
35
61
|
height: number;
|
|
36
62
|
width: number;
|
|
@@ -44,6 +70,10 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
44
70
|
is_connect_webview_supported: boolean;
|
|
45
71
|
requires_seam_support_to_add_account: boolean;
|
|
46
72
|
device_model_count: number;
|
|
73
|
+
annotations: {
|
|
74
|
+
message: string;
|
|
75
|
+
annotation_code: "subscription_required";
|
|
76
|
+
}[];
|
|
47
77
|
logo?: {
|
|
48
78
|
height: number;
|
|
49
79
|
width: number;
|
|
@@ -7,6 +7,11 @@ export const manufacturer_integration_support_level = z.enum([
|
|
|
7
7
|
'unsupported',
|
|
8
8
|
'inquire',
|
|
9
9
|
]);
|
|
10
|
+
export const manufacturer_annotation_code = z.enum(['subscription_required']);
|
|
11
|
+
export const manufacturer_annotation = z.object({
|
|
12
|
+
annotation_code: manufacturer_annotation_code,
|
|
13
|
+
message: z.string().nonempty(),
|
|
14
|
+
});
|
|
10
15
|
export const manufacturer = z.object({
|
|
11
16
|
manufacturer_id: z.string().uuid(),
|
|
12
17
|
display_name: z.string(),
|
|
@@ -17,5 +22,6 @@ export const manufacturer = z.object({
|
|
|
17
22
|
is_connect_webview_supported: z.boolean(),
|
|
18
23
|
requires_seam_support_to_add_account: z.boolean(),
|
|
19
24
|
device_model_count: z.number(),
|
|
25
|
+
annotations: z.array(manufacturer_annotation),
|
|
20
26
|
});
|
|
21
27
|
//# sourceMappingURL=manufacturer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manufacturer.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/public-models/manufacturer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3D,QAAQ;IACR,MAAM;IACN,SAAS;IACT,aAAa;IACb,SAAS;CACV,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,IAAI,EAAE,eAAe,CAAC,QAAQ,EAAE;IAChC,kBAAkB;IAClB,WAAW,EAAE,sCAAsC;IACnD,yBAAyB,EAAE,sCAAsC;IACjE,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;IACzC,oCAAoC,EAAE,CAAC,CAAC,OAAO,EAAE;IACjD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"manufacturer.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/public-models/manufacturer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3D,QAAQ;IACR,MAAM;IACN,SAAS;IACT,aAAa;IACb,SAAS;CACV,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAA;AAM7E,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,eAAe,EAAE,4BAA4B;IAC7C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,IAAI,EAAE,eAAe,CAAC,QAAQ,EAAE;IAChC,kBAAkB;IAClB,WAAW,EAAE,sCAAsC;IACnD,yBAAyB,EAAE,sCAAsC;IACjE,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;IACzC,oCAAoC,EAAE,CAAC,CAAC,OAAO,EAAE;IACjD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC;CAC9C,CAAC,CAAA"}
|
|
@@ -34,6 +34,16 @@ export declare const routes: {
|
|
|
34
34
|
is_connect_webview_supported: z.ZodBoolean;
|
|
35
35
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
36
36
|
device_model_count: z.ZodNumber;
|
|
37
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
38
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
39
|
+
message: z.ZodString;
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
41
|
+
message: string;
|
|
42
|
+
annotation_code: "subscription_required";
|
|
43
|
+
}, {
|
|
44
|
+
message: string;
|
|
45
|
+
annotation_code: "subscription_required";
|
|
46
|
+
}>, "many">;
|
|
37
47
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
38
48
|
display_name: string;
|
|
39
49
|
manufacturer_id: string;
|
|
@@ -41,6 +51,10 @@ export declare const routes: {
|
|
|
41
51
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
42
52
|
is_connect_webview_supported: boolean;
|
|
43
53
|
requires_seam_support_to_add_account: boolean;
|
|
54
|
+
annotations: {
|
|
55
|
+
message: string;
|
|
56
|
+
annotation_code: "subscription_required";
|
|
57
|
+
}[];
|
|
44
58
|
logo?: {
|
|
45
59
|
height: number;
|
|
46
60
|
width: number;
|
|
@@ -53,6 +67,10 @@ export declare const routes: {
|
|
|
53
67
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
54
68
|
is_connect_webview_supported: boolean;
|
|
55
69
|
requires_seam_support_to_add_account: boolean;
|
|
70
|
+
annotations: {
|
|
71
|
+
message: string;
|
|
72
|
+
annotation_code: "subscription_required";
|
|
73
|
+
}[];
|
|
56
74
|
logo?: {
|
|
57
75
|
height: number;
|
|
58
76
|
width: number;
|
|
@@ -161,6 +179,10 @@ export declare const routes: {
|
|
|
161
179
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
162
180
|
is_connect_webview_supported: boolean;
|
|
163
181
|
requires_seam_support_to_add_account: boolean;
|
|
182
|
+
annotations: {
|
|
183
|
+
message: string;
|
|
184
|
+
annotation_code: "subscription_required";
|
|
185
|
+
}[];
|
|
164
186
|
logo?: {
|
|
165
187
|
height: number;
|
|
166
188
|
width: number;
|
|
@@ -203,6 +225,10 @@ export declare const routes: {
|
|
|
203
225
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
204
226
|
is_connect_webview_supported: boolean;
|
|
205
227
|
requires_seam_support_to_add_account: boolean;
|
|
228
|
+
annotations: {
|
|
229
|
+
message: string;
|
|
230
|
+
annotation_code: "subscription_required";
|
|
231
|
+
}[];
|
|
206
232
|
logo?: {
|
|
207
233
|
height: number;
|
|
208
234
|
width: number;
|
|
@@ -474,6 +500,10 @@ export declare const routes: {
|
|
|
474
500
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
475
501
|
is_connect_webview_supported: boolean;
|
|
476
502
|
requires_seam_support_to_add_account: boolean;
|
|
503
|
+
annotations: {
|
|
504
|
+
message: string;
|
|
505
|
+
annotation_code: "subscription_required";
|
|
506
|
+
}[];
|
|
477
507
|
logo?: {
|
|
478
508
|
height: number;
|
|
479
509
|
width: number;
|
|
@@ -529,6 +559,10 @@ export declare const routes: {
|
|
|
529
559
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
530
560
|
is_connect_webview_supported: boolean;
|
|
531
561
|
requires_seam_support_to_add_account: boolean;
|
|
562
|
+
annotations: {
|
|
563
|
+
message: string;
|
|
564
|
+
annotation_code: "subscription_required";
|
|
565
|
+
}[];
|
|
532
566
|
logo?: {
|
|
533
567
|
height: number;
|
|
534
568
|
width: number;
|
|
@@ -579,6 +613,10 @@ export declare const routes: {
|
|
|
579
613
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
580
614
|
is_connect_webview_supported: boolean;
|
|
581
615
|
requires_seam_support_to_add_account: boolean;
|
|
616
|
+
annotations: {
|
|
617
|
+
message: string;
|
|
618
|
+
annotation_code: "subscription_required";
|
|
619
|
+
}[];
|
|
582
620
|
logo?: {
|
|
583
621
|
height: number;
|
|
584
622
|
width: number;
|
|
@@ -635,6 +673,10 @@ export declare const routes: {
|
|
|
635
673
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
636
674
|
is_connect_webview_supported: boolean;
|
|
637
675
|
requires_seam_support_to_add_account: boolean;
|
|
676
|
+
annotations: {
|
|
677
|
+
message: string;
|
|
678
|
+
annotation_code: "subscription_required";
|
|
679
|
+
}[];
|
|
638
680
|
logo?: {
|
|
639
681
|
height: number;
|
|
640
682
|
width: number;
|
|
@@ -679,6 +721,10 @@ export declare const routes: {
|
|
|
679
721
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
680
722
|
is_connect_webview_supported: boolean;
|
|
681
723
|
requires_seam_support_to_add_account: boolean;
|
|
724
|
+
annotations: {
|
|
725
|
+
message: string;
|
|
726
|
+
annotation_code: "subscription_required";
|
|
727
|
+
}[];
|
|
682
728
|
logo?: {
|
|
683
729
|
height: number;
|
|
684
730
|
width: number;
|
|
@@ -735,6 +781,10 @@ export declare const routes: {
|
|
|
735
781
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
736
782
|
is_connect_webview_supported: boolean;
|
|
737
783
|
requires_seam_support_to_add_account: boolean;
|
|
784
|
+
annotations: {
|
|
785
|
+
message: string;
|
|
786
|
+
annotation_code: "subscription_required";
|
|
787
|
+
}[];
|
|
738
788
|
logo?: {
|
|
739
789
|
height: number;
|
|
740
790
|
width: number;
|
|
@@ -781,6 +831,10 @@ export declare const routes: {
|
|
|
781
831
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
782
832
|
is_connect_webview_supported: boolean;
|
|
783
833
|
requires_seam_support_to_add_account: boolean;
|
|
834
|
+
annotations: {
|
|
835
|
+
message: string;
|
|
836
|
+
annotation_code: "subscription_required";
|
|
837
|
+
}[];
|
|
784
838
|
logo?: {
|
|
785
839
|
height: number;
|
|
786
840
|
width: number;
|
|
@@ -836,6 +890,10 @@ export declare const routes: {
|
|
|
836
890
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
837
891
|
is_connect_webview_supported: boolean;
|
|
838
892
|
requires_seam_support_to_add_account: boolean;
|
|
893
|
+
annotations: {
|
|
894
|
+
message: string;
|
|
895
|
+
annotation_code: "subscription_required";
|
|
896
|
+
}[];
|
|
839
897
|
logo?: {
|
|
840
898
|
height: number;
|
|
841
899
|
width: number;
|
|
@@ -886,6 +944,10 @@ export declare const routes: {
|
|
|
886
944
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
887
945
|
is_connect_webview_supported: boolean;
|
|
888
946
|
requires_seam_support_to_add_account: boolean;
|
|
947
|
+
annotations: {
|
|
948
|
+
message: string;
|
|
949
|
+
annotation_code: "subscription_required";
|
|
950
|
+
}[];
|
|
889
951
|
logo?: {
|
|
890
952
|
height: number;
|
|
891
953
|
width: number;
|
|
@@ -942,6 +1004,10 @@ export declare const routes: {
|
|
|
942
1004
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
943
1005
|
is_connect_webview_supported: boolean;
|
|
944
1006
|
requires_seam_support_to_add_account: boolean;
|
|
1007
|
+
annotations: {
|
|
1008
|
+
message: string;
|
|
1009
|
+
annotation_code: "subscription_required";
|
|
1010
|
+
}[];
|
|
945
1011
|
logo?: {
|
|
946
1012
|
height: number;
|
|
947
1013
|
width: number;
|
|
@@ -986,6 +1052,10 @@ export declare const routes: {
|
|
|
986
1052
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
987
1053
|
is_connect_webview_supported: boolean;
|
|
988
1054
|
requires_seam_support_to_add_account: boolean;
|
|
1055
|
+
annotations: {
|
|
1056
|
+
message: string;
|
|
1057
|
+
annotation_code: "subscription_required";
|
|
1058
|
+
}[];
|
|
989
1059
|
logo?: {
|
|
990
1060
|
height: number;
|
|
991
1061
|
width: number;
|
|
@@ -1042,6 +1112,10 @@ export declare const routes: {
|
|
|
1042
1112
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1043
1113
|
is_connect_webview_supported: boolean;
|
|
1044
1114
|
requires_seam_support_to_add_account: boolean;
|
|
1115
|
+
annotations: {
|
|
1116
|
+
message: string;
|
|
1117
|
+
annotation_code: "subscription_required";
|
|
1118
|
+
}[];
|
|
1045
1119
|
logo?: {
|
|
1046
1120
|
height: number;
|
|
1047
1121
|
width: number;
|
|
@@ -1134,6 +1208,16 @@ export declare const routes: {
|
|
|
1134
1208
|
is_connect_webview_supported: z.ZodBoolean;
|
|
1135
1209
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
1136
1210
|
device_model_count: z.ZodNumber;
|
|
1211
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
1212
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
1213
|
+
message: z.ZodString;
|
|
1214
|
+
}, "strip", z.ZodTypeAny, {
|
|
1215
|
+
message: string;
|
|
1216
|
+
annotation_code: "subscription_required";
|
|
1217
|
+
}, {
|
|
1218
|
+
message: string;
|
|
1219
|
+
annotation_code: "subscription_required";
|
|
1220
|
+
}>, "many">;
|
|
1137
1221
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
1138
1222
|
display_name: string;
|
|
1139
1223
|
manufacturer_id: string;
|
|
@@ -1141,6 +1225,10 @@ export declare const routes: {
|
|
|
1141
1225
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1142
1226
|
is_connect_webview_supported: boolean;
|
|
1143
1227
|
requires_seam_support_to_add_account: boolean;
|
|
1228
|
+
annotations: {
|
|
1229
|
+
message: string;
|
|
1230
|
+
annotation_code: "subscription_required";
|
|
1231
|
+
}[];
|
|
1144
1232
|
logo?: {
|
|
1145
1233
|
height: number;
|
|
1146
1234
|
width: number;
|
|
@@ -1153,6 +1241,10 @@ export declare const routes: {
|
|
|
1153
1241
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1154
1242
|
is_connect_webview_supported: boolean;
|
|
1155
1243
|
requires_seam_support_to_add_account: boolean;
|
|
1244
|
+
annotations: {
|
|
1245
|
+
message: string;
|
|
1246
|
+
annotation_code: "subscription_required";
|
|
1247
|
+
}[];
|
|
1156
1248
|
logo?: {
|
|
1157
1249
|
height: number;
|
|
1158
1250
|
width: number;
|
|
@@ -1261,6 +1353,10 @@ export declare const routes: {
|
|
|
1261
1353
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1262
1354
|
is_connect_webview_supported: boolean;
|
|
1263
1355
|
requires_seam_support_to_add_account: boolean;
|
|
1356
|
+
annotations: {
|
|
1357
|
+
message: string;
|
|
1358
|
+
annotation_code: "subscription_required";
|
|
1359
|
+
}[];
|
|
1264
1360
|
logo?: {
|
|
1265
1361
|
height: number;
|
|
1266
1362
|
width: number;
|
|
@@ -1303,6 +1399,10 @@ export declare const routes: {
|
|
|
1303
1399
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1304
1400
|
is_connect_webview_supported: boolean;
|
|
1305
1401
|
requires_seam_support_to_add_account: boolean;
|
|
1402
|
+
annotations: {
|
|
1403
|
+
message: string;
|
|
1404
|
+
annotation_code: "subscription_required";
|
|
1405
|
+
}[];
|
|
1306
1406
|
logo?: {
|
|
1307
1407
|
height: number;
|
|
1308
1408
|
width: number;
|
|
@@ -1574,6 +1674,10 @@ export declare const routes: {
|
|
|
1574
1674
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1575
1675
|
is_connect_webview_supported: boolean;
|
|
1576
1676
|
requires_seam_support_to_add_account: boolean;
|
|
1677
|
+
annotations: {
|
|
1678
|
+
message: string;
|
|
1679
|
+
annotation_code: "subscription_required";
|
|
1680
|
+
}[];
|
|
1577
1681
|
logo?: {
|
|
1578
1682
|
height: number;
|
|
1579
1683
|
width: number;
|
|
@@ -1671,6 +1775,10 @@ export declare const routes: {
|
|
|
1671
1775
|
integration_support_level: "beta" | "stable" | "unsupported" | "planned" | "inquire";
|
|
1672
1776
|
is_connect_webview_supported: boolean;
|
|
1673
1777
|
requires_seam_support_to_add_account: boolean;
|
|
1778
|
+
annotations: {
|
|
1779
|
+
message: string;
|
|
1780
|
+
annotation_code: "subscription_required";
|
|
1781
|
+
}[];
|
|
1674
1782
|
logo?: {
|
|
1675
1783
|
height: number;
|
|
1676
1784
|
width: number;
|
|
@@ -1790,6 +1898,16 @@ export declare const routes: {
|
|
|
1790
1898
|
is_connect_webview_supported: z.ZodBoolean;
|
|
1791
1899
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
1792
1900
|
device_model_count: z.ZodNumber;
|
|
1901
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
1902
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
1903
|
+
message: z.ZodString;
|
|
1904
|
+
}, "strip", z.ZodTypeAny, {
|
|
1905
|
+
message: string;
|
|
1906
|
+
annotation_code: "subscription_required";
|
|
1907
|
+
}, {
|
|
1908
|
+
message: string;
|
|
1909
|
+
annotation_code: "subscription_required";
|
|
1910
|
+
}>, "many">;
|
|
1793
1911
|
}, "strip", z.ZodTypeAny, {
|
|
1794
1912
|
display_name: string;
|
|
1795
1913
|
manufacturer_id: string;
|
|
@@ -1798,6 +1916,10 @@ export declare const routes: {
|
|
|
1798
1916
|
is_connect_webview_supported: boolean;
|
|
1799
1917
|
requires_seam_support_to_add_account: boolean;
|
|
1800
1918
|
device_model_count: number;
|
|
1919
|
+
annotations: {
|
|
1920
|
+
message: string;
|
|
1921
|
+
annotation_code: "subscription_required";
|
|
1922
|
+
}[];
|
|
1801
1923
|
logo?: {
|
|
1802
1924
|
height: number;
|
|
1803
1925
|
width: number;
|
|
@@ -1811,6 +1933,10 @@ export declare const routes: {
|
|
|
1811
1933
|
is_connect_webview_supported: boolean;
|
|
1812
1934
|
requires_seam_support_to_add_account: boolean;
|
|
1813
1935
|
device_model_count: number;
|
|
1936
|
+
annotations: {
|
|
1937
|
+
message: string;
|
|
1938
|
+
annotation_code: "subscription_required";
|
|
1939
|
+
}[];
|
|
1814
1940
|
logo?: {
|
|
1815
1941
|
height: number;
|
|
1816
1942
|
width: number;
|
|
@@ -1826,6 +1952,10 @@ export declare const routes: {
|
|
|
1826
1952
|
is_connect_webview_supported: boolean;
|
|
1827
1953
|
requires_seam_support_to_add_account: boolean;
|
|
1828
1954
|
device_model_count: number;
|
|
1955
|
+
annotations: {
|
|
1956
|
+
message: string;
|
|
1957
|
+
annotation_code: "subscription_required";
|
|
1958
|
+
}[];
|
|
1829
1959
|
logo?: {
|
|
1830
1960
|
height: number;
|
|
1831
1961
|
width: number;
|
|
@@ -1841,6 +1971,10 @@ export declare const routes: {
|
|
|
1841
1971
|
is_connect_webview_supported: boolean;
|
|
1842
1972
|
requires_seam_support_to_add_account: boolean;
|
|
1843
1973
|
device_model_count: number;
|
|
1974
|
+
annotations: {
|
|
1975
|
+
message: string;
|
|
1976
|
+
annotation_code: "subscription_required";
|
|
1977
|
+
}[];
|
|
1844
1978
|
logo?: {
|
|
1845
1979
|
height: number;
|
|
1846
1980
|
width: number;
|
|
@@ -1888,6 +2022,16 @@ export declare const routes: {
|
|
|
1888
2022
|
is_connect_webview_supported: z.ZodBoolean;
|
|
1889
2023
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
1890
2024
|
device_model_count: z.ZodNumber;
|
|
2025
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
2026
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
2027
|
+
message: z.ZodString;
|
|
2028
|
+
}, "strip", z.ZodTypeAny, {
|
|
2029
|
+
message: string;
|
|
2030
|
+
annotation_code: "subscription_required";
|
|
2031
|
+
}, {
|
|
2032
|
+
message: string;
|
|
2033
|
+
annotation_code: "subscription_required";
|
|
2034
|
+
}>, "many">;
|
|
1891
2035
|
}, "strip", z.ZodTypeAny, {
|
|
1892
2036
|
display_name: string;
|
|
1893
2037
|
manufacturer_id: string;
|
|
@@ -1896,6 +2040,10 @@ export declare const routes: {
|
|
|
1896
2040
|
is_connect_webview_supported: boolean;
|
|
1897
2041
|
requires_seam_support_to_add_account: boolean;
|
|
1898
2042
|
device_model_count: number;
|
|
2043
|
+
annotations: {
|
|
2044
|
+
message: string;
|
|
2045
|
+
annotation_code: "subscription_required";
|
|
2046
|
+
}[];
|
|
1899
2047
|
logo?: {
|
|
1900
2048
|
height: number;
|
|
1901
2049
|
width: number;
|
|
@@ -1909,6 +2057,10 @@ export declare const routes: {
|
|
|
1909
2057
|
is_connect_webview_supported: boolean;
|
|
1910
2058
|
requires_seam_support_to_add_account: boolean;
|
|
1911
2059
|
device_model_count: number;
|
|
2060
|
+
annotations: {
|
|
2061
|
+
message: string;
|
|
2062
|
+
annotation_code: "subscription_required";
|
|
2063
|
+
}[];
|
|
1912
2064
|
logo?: {
|
|
1913
2065
|
height: number;
|
|
1914
2066
|
width: number;
|
|
@@ -1924,6 +2076,10 @@ export declare const routes: {
|
|
|
1924
2076
|
is_connect_webview_supported: boolean;
|
|
1925
2077
|
requires_seam_support_to_add_account: boolean;
|
|
1926
2078
|
device_model_count: number;
|
|
2079
|
+
annotations: {
|
|
2080
|
+
message: string;
|
|
2081
|
+
annotation_code: "subscription_required";
|
|
2082
|
+
}[];
|
|
1927
2083
|
logo?: {
|
|
1928
2084
|
height: number;
|
|
1929
2085
|
width: number;
|
|
@@ -1939,6 +2095,10 @@ export declare const routes: {
|
|
|
1939
2095
|
is_connect_webview_supported: boolean;
|
|
1940
2096
|
requires_seam_support_to_add_account: boolean;
|
|
1941
2097
|
device_model_count: number;
|
|
2098
|
+
annotations: {
|
|
2099
|
+
message: string;
|
|
2100
|
+
annotation_code: "subscription_required";
|
|
2101
|
+
}[];
|
|
1942
2102
|
logo?: {
|
|
1943
2103
|
height: number;
|
|
1944
2104
|
width: number;
|
|
@@ -23,6 +23,10 @@ export interface Routes {
|
|
|
23
23
|
integration_support_level: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire';
|
|
24
24
|
is_connect_webview_supported: boolean;
|
|
25
25
|
requires_seam_support_to_add_account: boolean;
|
|
26
|
+
annotations: Array<{
|
|
27
|
+
annotation_code: 'subscription_required';
|
|
28
|
+
message: string;
|
|
29
|
+
}>;
|
|
26
30
|
};
|
|
27
31
|
is_device_supported: boolean;
|
|
28
32
|
display_name: string;
|
|
@@ -138,6 +142,10 @@ export interface Routes {
|
|
|
138
142
|
integration_support_level: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire';
|
|
139
143
|
is_connect_webview_supported: boolean;
|
|
140
144
|
requires_seam_support_to_add_account: boolean;
|
|
145
|
+
annotations: Array<{
|
|
146
|
+
annotation_code: 'subscription_required';
|
|
147
|
+
message: string;
|
|
148
|
+
}>;
|
|
141
149
|
};
|
|
142
150
|
is_device_supported: boolean;
|
|
143
151
|
display_name: string;
|
|
@@ -245,6 +253,10 @@ export interface Routes {
|
|
|
245
253
|
is_connect_webview_supported: boolean;
|
|
246
254
|
requires_seam_support_to_add_account: boolean;
|
|
247
255
|
device_model_count: number;
|
|
256
|
+
annotations: Array<{
|
|
257
|
+
annotation_code: 'subscription_required';
|
|
258
|
+
message: string;
|
|
259
|
+
}>;
|
|
248
260
|
};
|
|
249
261
|
};
|
|
250
262
|
};
|
|
@@ -273,6 +285,10 @@ export interface Routes {
|
|
|
273
285
|
is_connect_webview_supported: boolean;
|
|
274
286
|
requires_seam_support_to_add_account: boolean;
|
|
275
287
|
device_model_count: number;
|
|
288
|
+
annotations: Array<{
|
|
289
|
+
annotation_code: 'subscription_required';
|
|
290
|
+
message: string;
|
|
291
|
+
}>;
|
|
276
292
|
}>;
|
|
277
293
|
};
|
|
278
294
|
};
|
package/package.json
CHANGED
|
@@ -14,6 +14,17 @@ export type ManufacturerIntegrationSupportLevel = z.infer<
|
|
|
14
14
|
typeof manufacturer_integration_support_level
|
|
15
15
|
>
|
|
16
16
|
|
|
17
|
+
export const manufacturer_annotation_code = z.enum(['subscription_required'])
|
|
18
|
+
|
|
19
|
+
export type ManufacturerAnnotationCode = z.infer<
|
|
20
|
+
typeof manufacturer_annotation_code
|
|
21
|
+
>
|
|
22
|
+
|
|
23
|
+
export const manufacturer_annotation = z.object({
|
|
24
|
+
annotation_code: manufacturer_annotation_code,
|
|
25
|
+
message: z.string().nonempty(),
|
|
26
|
+
})
|
|
27
|
+
|
|
17
28
|
export const manufacturer = z.object({
|
|
18
29
|
manufacturer_id: z.string().uuid(),
|
|
19
30
|
display_name: z.string(),
|
|
@@ -24,6 +35,7 @@ export const manufacturer = z.object({
|
|
|
24
35
|
is_connect_webview_supported: z.boolean(),
|
|
25
36
|
requires_seam_support_to_add_account: z.boolean(),
|
|
26
37
|
device_model_count: z.number(),
|
|
38
|
+
annotations: z.array(manufacturer_annotation),
|
|
27
39
|
})
|
|
28
40
|
|
|
29
41
|
export type Manufacturer = z.infer<typeof manufacturer>
|