@seamapi/types 1.69.0 → 1.71.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/connect.cjs +2600 -895
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11812 -8664
- package/dist/devicedb.cjs +9 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +263 -2
- package/lib/seam/connect/openapi.d.ts +3483 -1430
- package/lib/seam/connect/openapi.js +2595 -890
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1325 -230
- package/lib/seam/connect/unstable/models/acs/credential.js +1 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.d.ts +22 -2
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js +7 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/devices/index.js +1 -0
- package/lib/seam/connect/unstable/models/devices/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +82 -8
- package/lib/seam/connect/unstable/models/devices/managed-device.js +2 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone-properties.d.ts +44 -0
- package/lib/seam/connect/unstable/models/devices/phone-properties.js +13 -0
- package/lib/seam/connect/unstable/models/devices/phone-properties.js.map +1 -0
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +3529 -0
- package/lib/seam/connect/unstable/models/devices/phone.js +13 -0
- package/lib/seam/connect/unstable/models/devices/phone.js.map +1 -0
- package/lib/seam/connect/unstable/models/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/index.js +1 -0
- package/lib/seam/connect/unstable/models/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/network.d.ts +18 -0
- package/lib/seam/connect/unstable/models/network.js +8 -0
- package/lib/seam/connect/unstable/models/network.js.map +1 -0
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- 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/connect/openapi.ts +2644 -915
- package/src/lib/seam/connect/route-types.ts +1701 -211
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +1 -0
- package/src/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.ts +12 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/index.ts +1 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +2 -0
- package/src/lib/seam/connect/unstable/models/devices/phone-properties.ts +15 -0
- package/src/lib/seam/connect/unstable/models/devices/phone.ts +15 -0
- package/src/lib/seam/connect/unstable/models/index.ts +1 -0
- package/src/lib/seam/connect/unstable/models/network.ts +10 -0
- package/src/lib/seam/connect/unstable/schemas.ts +3 -0
- 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
|
@@ -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
|
};
|