@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
package/dist/devicedb.d.cts
CHANGED
|
@@ -349,6 +349,16 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
349
349
|
is_connect_webview_supported: z.ZodBoolean;
|
|
350
350
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
351
351
|
device_model_count: z.ZodNumber;
|
|
352
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
353
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
354
|
+
message: z.ZodString;
|
|
355
|
+
}, "strip", z.ZodTypeAny, {
|
|
356
|
+
message: string;
|
|
357
|
+
annotation_code: "subscription_required";
|
|
358
|
+
}, {
|
|
359
|
+
message: string;
|
|
360
|
+
annotation_code: "subscription_required";
|
|
361
|
+
}>, "many">;
|
|
352
362
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
353
363
|
display_name: string;
|
|
354
364
|
manufacturer_id: string;
|
|
@@ -356,6 +366,10 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
356
366
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
357
367
|
is_connect_webview_supported: boolean;
|
|
358
368
|
requires_seam_support_to_add_account: boolean;
|
|
369
|
+
annotations: {
|
|
370
|
+
message: string;
|
|
371
|
+
annotation_code: "subscription_required";
|
|
372
|
+
}[];
|
|
359
373
|
logo?: {
|
|
360
374
|
url: string;
|
|
361
375
|
width: number;
|
|
@@ -368,6 +382,10 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
368
382
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
369
383
|
is_connect_webview_supported: boolean;
|
|
370
384
|
requires_seam_support_to_add_account: boolean;
|
|
385
|
+
annotations: {
|
|
386
|
+
message: string;
|
|
387
|
+
annotation_code: "subscription_required";
|
|
388
|
+
}[];
|
|
371
389
|
logo?: {
|
|
372
390
|
url: string;
|
|
373
391
|
width: number;
|
|
@@ -476,6 +494,10 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
476
494
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
477
495
|
is_connect_webview_supported: boolean;
|
|
478
496
|
requires_seam_support_to_add_account: boolean;
|
|
497
|
+
annotations: {
|
|
498
|
+
message: string;
|
|
499
|
+
annotation_code: "subscription_required";
|
|
500
|
+
}[];
|
|
479
501
|
logo?: {
|
|
480
502
|
url: string;
|
|
481
503
|
width: number;
|
|
@@ -518,6 +540,10 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
518
540
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
519
541
|
is_connect_webview_supported: boolean;
|
|
520
542
|
requires_seam_support_to_add_account: boolean;
|
|
543
|
+
annotations: {
|
|
544
|
+
message: string;
|
|
545
|
+
annotation_code: "subscription_required";
|
|
546
|
+
}[];
|
|
521
547
|
logo?: {
|
|
522
548
|
url: string;
|
|
523
549
|
width: number;
|
|
@@ -574,6 +600,16 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
574
600
|
is_connect_webview_supported: z.ZodBoolean;
|
|
575
601
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
576
602
|
device_model_count: z.ZodNumber;
|
|
603
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
604
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
605
|
+
message: z.ZodString;
|
|
606
|
+
}, "strip", z.ZodTypeAny, {
|
|
607
|
+
message: string;
|
|
608
|
+
annotation_code: "subscription_required";
|
|
609
|
+
}, {
|
|
610
|
+
message: string;
|
|
611
|
+
annotation_code: "subscription_required";
|
|
612
|
+
}>, "many">;
|
|
577
613
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
578
614
|
display_name: string;
|
|
579
615
|
manufacturer_id: string;
|
|
@@ -581,6 +617,10 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
581
617
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
582
618
|
is_connect_webview_supported: boolean;
|
|
583
619
|
requires_seam_support_to_add_account: boolean;
|
|
620
|
+
annotations: {
|
|
621
|
+
message: string;
|
|
622
|
+
annotation_code: "subscription_required";
|
|
623
|
+
}[];
|
|
584
624
|
logo?: {
|
|
585
625
|
url: string;
|
|
586
626
|
width: number;
|
|
@@ -593,6 +633,10 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
593
633
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
594
634
|
is_connect_webview_supported: boolean;
|
|
595
635
|
requires_seam_support_to_add_account: boolean;
|
|
636
|
+
annotations: {
|
|
637
|
+
message: string;
|
|
638
|
+
annotation_code: "subscription_required";
|
|
639
|
+
}[];
|
|
596
640
|
logo?: {
|
|
597
641
|
url: string;
|
|
598
642
|
width: number;
|
|
@@ -701,6 +745,10 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
701
745
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
702
746
|
is_connect_webview_supported: boolean;
|
|
703
747
|
requires_seam_support_to_add_account: boolean;
|
|
748
|
+
annotations: {
|
|
749
|
+
message: string;
|
|
750
|
+
annotation_code: "subscription_required";
|
|
751
|
+
}[];
|
|
704
752
|
logo?: {
|
|
705
753
|
url: string;
|
|
706
754
|
width: number;
|
|
@@ -743,6 +791,10 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
743
791
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
744
792
|
is_connect_webview_supported: boolean;
|
|
745
793
|
requires_seam_support_to_add_account: boolean;
|
|
794
|
+
annotations: {
|
|
795
|
+
message: string;
|
|
796
|
+
annotation_code: "subscription_required";
|
|
797
|
+
}[];
|
|
746
798
|
logo?: {
|
|
747
799
|
url: string;
|
|
748
800
|
width: number;
|
|
@@ -1021,6 +1073,18 @@ type ImageReference = z.infer<typeof image_reference>;
|
|
|
1021
1073
|
|
|
1022
1074
|
declare const manufacturer_integration_support_level: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
|
|
1023
1075
|
type ManufacturerIntegrationSupportLevel = z.infer<typeof manufacturer_integration_support_level>;
|
|
1076
|
+
declare const manufacturer_annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
1077
|
+
type ManufacturerAnnotationCode = z.infer<typeof manufacturer_annotation_code>;
|
|
1078
|
+
declare const manufacturer_annotation: z.ZodObject<{
|
|
1079
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
1080
|
+
message: z.ZodString;
|
|
1081
|
+
}, "strip", z.ZodTypeAny, {
|
|
1082
|
+
message: string;
|
|
1083
|
+
annotation_code: "subscription_required";
|
|
1084
|
+
}, {
|
|
1085
|
+
message: string;
|
|
1086
|
+
annotation_code: "subscription_required";
|
|
1087
|
+
}>;
|
|
1024
1088
|
declare const manufacturer: z.ZodObject<{
|
|
1025
1089
|
manufacturer_id: z.ZodString;
|
|
1026
1090
|
display_name: z.ZodString;
|
|
@@ -1043,6 +1107,16 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1043
1107
|
is_connect_webview_supported: z.ZodBoolean;
|
|
1044
1108
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
1045
1109
|
device_model_count: z.ZodNumber;
|
|
1110
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
1111
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
1112
|
+
message: z.ZodString;
|
|
1113
|
+
}, "strip", z.ZodTypeAny, {
|
|
1114
|
+
message: string;
|
|
1115
|
+
annotation_code: "subscription_required";
|
|
1116
|
+
}, {
|
|
1117
|
+
message: string;
|
|
1118
|
+
annotation_code: "subscription_required";
|
|
1119
|
+
}>, "many">;
|
|
1046
1120
|
}, "strip", z.ZodTypeAny, {
|
|
1047
1121
|
display_name: string;
|
|
1048
1122
|
manufacturer_id: string;
|
|
@@ -1051,6 +1125,10 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1051
1125
|
is_connect_webview_supported: boolean;
|
|
1052
1126
|
requires_seam_support_to_add_account: boolean;
|
|
1053
1127
|
device_model_count: number;
|
|
1128
|
+
annotations: {
|
|
1129
|
+
message: string;
|
|
1130
|
+
annotation_code: "subscription_required";
|
|
1131
|
+
}[];
|
|
1054
1132
|
logo?: {
|
|
1055
1133
|
url: string;
|
|
1056
1134
|
width: number;
|
|
@@ -1064,6 +1142,10 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1064
1142
|
is_connect_webview_supported: boolean;
|
|
1065
1143
|
requires_seam_support_to_add_account: boolean;
|
|
1066
1144
|
device_model_count: number;
|
|
1145
|
+
annotations: {
|
|
1146
|
+
message: string;
|
|
1147
|
+
annotation_code: "subscription_required";
|
|
1148
|
+
}[];
|
|
1067
1149
|
logo?: {
|
|
1068
1150
|
url: string;
|
|
1069
1151
|
width: number;
|
|
@@ -1079,6 +1161,7 @@ type index_DeviceModelV0 = DeviceModelV0;
|
|
|
1079
1161
|
type index_DeviceModelV1 = DeviceModelV1;
|
|
1080
1162
|
type index_ImageReference = ImageReference;
|
|
1081
1163
|
type index_Manufacturer = Manufacturer;
|
|
1164
|
+
type index_ManufacturerAnnotationCode = ManufacturerAnnotationCode;
|
|
1082
1165
|
type index_ManufacturerIntegrationSupportLevel = ManufacturerIntegrationSupportLevel;
|
|
1083
1166
|
type index_ThermostatPropertiesV1 = ThermostatPropertiesV1;
|
|
1084
1167
|
declare const index_base_device_model_v1: typeof base_device_model_v1;
|
|
@@ -1089,10 +1172,12 @@ declare const index_device_model_v0: typeof device_model_v0;
|
|
|
1089
1172
|
declare const index_device_model_v1: typeof device_model_v1;
|
|
1090
1173
|
declare const index_image_reference: typeof image_reference;
|
|
1091
1174
|
declare const index_manufacturer: typeof manufacturer;
|
|
1175
|
+
declare const index_manufacturer_annotation: typeof manufacturer_annotation;
|
|
1176
|
+
declare const index_manufacturer_annotation_code: typeof manufacturer_annotation_code;
|
|
1092
1177
|
declare const index_manufacturer_integration_support_level: typeof manufacturer_integration_support_level;
|
|
1093
1178
|
declare const index_thermostat: typeof thermostat;
|
|
1094
1179
|
declare namespace index {
|
|
1095
|
-
export { type index_BaseDeviceModelV1 as BaseDeviceModelV1, type index_DeviceCategory as DeviceCategory, type index_DeviceConnectionType as DeviceConnectionType, type index_DeviceModelV0 as DeviceModelV0, type index_DeviceModelV1 as DeviceModelV1, type index_ImageReference as ImageReference, type index_Manufacturer as Manufacturer, type index_ManufacturerIntegrationSupportLevel as ManufacturerIntegrationSupportLevel, type index_ThermostatPropertiesV1 as ThermostatPropertiesV1, index_base_device_model_v1 as base_device_model_v1, index_device_category as device_category, index_device_connection_type as device_connection_type, index_device_model_category_specific_properties as device_model_category_specific_properties, index_device_model_v0 as device_model_v0, index_device_model_v1 as device_model_v1, index_image_reference as image_reference, index_manufacturer as manufacturer, index_manufacturer_integration_support_level as manufacturer_integration_support_level, index_thermostat as thermostat };
|
|
1180
|
+
export { type index_BaseDeviceModelV1 as BaseDeviceModelV1, type index_DeviceCategory as DeviceCategory, type index_DeviceConnectionType as DeviceConnectionType, type index_DeviceModelV0 as DeviceModelV0, type index_DeviceModelV1 as DeviceModelV1, type index_ImageReference as ImageReference, type index_Manufacturer as Manufacturer, type index_ManufacturerAnnotationCode as ManufacturerAnnotationCode, type index_ManufacturerIntegrationSupportLevel as ManufacturerIntegrationSupportLevel, type index_ThermostatPropertiesV1 as ThermostatPropertiesV1, index_base_device_model_v1 as base_device_model_v1, index_device_category as device_category, index_device_connection_type as device_connection_type, index_device_model_category_specific_properties as device_model_category_specific_properties, index_device_model_v0 as device_model_v0, index_device_model_v1 as device_model_v1, index_image_reference as image_reference, index_manufacturer as manufacturer, index_manufacturer_annotation as manufacturer_annotation, index_manufacturer_annotation_code as manufacturer_annotation_code, index_manufacturer_integration_support_level as manufacturer_integration_support_level, index_thermostat as thermostat };
|
|
1096
1181
|
}
|
|
1097
1182
|
|
|
1098
1183
|
declare const routes: {
|
|
@@ -1130,6 +1215,16 @@ declare const routes: {
|
|
|
1130
1215
|
is_connect_webview_supported: z.ZodBoolean;
|
|
1131
1216
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
1132
1217
|
device_model_count: z.ZodNumber;
|
|
1218
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
1219
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
1220
|
+
message: z.ZodString;
|
|
1221
|
+
}, "strip", z.ZodTypeAny, {
|
|
1222
|
+
message: string;
|
|
1223
|
+
annotation_code: "subscription_required";
|
|
1224
|
+
}, {
|
|
1225
|
+
message: string;
|
|
1226
|
+
annotation_code: "subscription_required";
|
|
1227
|
+
}>, "many">;
|
|
1133
1228
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
1134
1229
|
display_name: string;
|
|
1135
1230
|
manufacturer_id: string;
|
|
@@ -1137,6 +1232,10 @@ declare const routes: {
|
|
|
1137
1232
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1138
1233
|
is_connect_webview_supported: boolean;
|
|
1139
1234
|
requires_seam_support_to_add_account: boolean;
|
|
1235
|
+
annotations: {
|
|
1236
|
+
message: string;
|
|
1237
|
+
annotation_code: "subscription_required";
|
|
1238
|
+
}[];
|
|
1140
1239
|
logo?: {
|
|
1141
1240
|
url: string;
|
|
1142
1241
|
width: number;
|
|
@@ -1149,6 +1248,10 @@ declare const routes: {
|
|
|
1149
1248
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1150
1249
|
is_connect_webview_supported: boolean;
|
|
1151
1250
|
requires_seam_support_to_add_account: boolean;
|
|
1251
|
+
annotations: {
|
|
1252
|
+
message: string;
|
|
1253
|
+
annotation_code: "subscription_required";
|
|
1254
|
+
}[];
|
|
1152
1255
|
logo?: {
|
|
1153
1256
|
url: string;
|
|
1154
1257
|
width: number;
|
|
@@ -1257,6 +1360,10 @@ declare const routes: {
|
|
|
1257
1360
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1258
1361
|
is_connect_webview_supported: boolean;
|
|
1259
1362
|
requires_seam_support_to_add_account: boolean;
|
|
1363
|
+
annotations: {
|
|
1364
|
+
message: string;
|
|
1365
|
+
annotation_code: "subscription_required";
|
|
1366
|
+
}[];
|
|
1260
1367
|
logo?: {
|
|
1261
1368
|
url: string;
|
|
1262
1369
|
width: number;
|
|
@@ -1299,6 +1406,10 @@ declare const routes: {
|
|
|
1299
1406
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1300
1407
|
is_connect_webview_supported: boolean;
|
|
1301
1408
|
requires_seam_support_to_add_account: boolean;
|
|
1409
|
+
annotations: {
|
|
1410
|
+
message: string;
|
|
1411
|
+
annotation_code: "subscription_required";
|
|
1412
|
+
}[];
|
|
1302
1413
|
logo?: {
|
|
1303
1414
|
url: string;
|
|
1304
1415
|
width: number;
|
|
@@ -1570,6 +1681,10 @@ declare const routes: {
|
|
|
1570
1681
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1571
1682
|
is_connect_webview_supported: boolean;
|
|
1572
1683
|
requires_seam_support_to_add_account: boolean;
|
|
1684
|
+
annotations: {
|
|
1685
|
+
message: string;
|
|
1686
|
+
annotation_code: "subscription_required";
|
|
1687
|
+
}[];
|
|
1573
1688
|
logo?: {
|
|
1574
1689
|
url: string;
|
|
1575
1690
|
width: number;
|
|
@@ -1625,6 +1740,10 @@ declare const routes: {
|
|
|
1625
1740
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1626
1741
|
is_connect_webview_supported: boolean;
|
|
1627
1742
|
requires_seam_support_to_add_account: boolean;
|
|
1743
|
+
annotations: {
|
|
1744
|
+
message: string;
|
|
1745
|
+
annotation_code: "subscription_required";
|
|
1746
|
+
}[];
|
|
1628
1747
|
logo?: {
|
|
1629
1748
|
url: string;
|
|
1630
1749
|
width: number;
|
|
@@ -1675,6 +1794,10 @@ declare const routes: {
|
|
|
1675
1794
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1676
1795
|
is_connect_webview_supported: boolean;
|
|
1677
1796
|
requires_seam_support_to_add_account: boolean;
|
|
1797
|
+
annotations: {
|
|
1798
|
+
message: string;
|
|
1799
|
+
annotation_code: "subscription_required";
|
|
1800
|
+
}[];
|
|
1678
1801
|
logo?: {
|
|
1679
1802
|
url: string;
|
|
1680
1803
|
width: number;
|
|
@@ -1731,6 +1854,10 @@ declare const routes: {
|
|
|
1731
1854
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1732
1855
|
is_connect_webview_supported: boolean;
|
|
1733
1856
|
requires_seam_support_to_add_account: boolean;
|
|
1857
|
+
annotations: {
|
|
1858
|
+
message: string;
|
|
1859
|
+
annotation_code: "subscription_required";
|
|
1860
|
+
}[];
|
|
1734
1861
|
logo?: {
|
|
1735
1862
|
url: string;
|
|
1736
1863
|
width: number;
|
|
@@ -1775,6 +1902,10 @@ declare const routes: {
|
|
|
1775
1902
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1776
1903
|
is_connect_webview_supported: boolean;
|
|
1777
1904
|
requires_seam_support_to_add_account: boolean;
|
|
1905
|
+
annotations: {
|
|
1906
|
+
message: string;
|
|
1907
|
+
annotation_code: "subscription_required";
|
|
1908
|
+
}[];
|
|
1778
1909
|
logo?: {
|
|
1779
1910
|
url: string;
|
|
1780
1911
|
width: number;
|
|
@@ -1831,6 +1962,10 @@ declare const routes: {
|
|
|
1831
1962
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1832
1963
|
is_connect_webview_supported: boolean;
|
|
1833
1964
|
requires_seam_support_to_add_account: boolean;
|
|
1965
|
+
annotations: {
|
|
1966
|
+
message: string;
|
|
1967
|
+
annotation_code: "subscription_required";
|
|
1968
|
+
}[];
|
|
1834
1969
|
logo?: {
|
|
1835
1970
|
url: string;
|
|
1836
1971
|
width: number;
|
|
@@ -1877,6 +2012,10 @@ declare const routes: {
|
|
|
1877
2012
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1878
2013
|
is_connect_webview_supported: boolean;
|
|
1879
2014
|
requires_seam_support_to_add_account: boolean;
|
|
2015
|
+
annotations: {
|
|
2016
|
+
message: string;
|
|
2017
|
+
annotation_code: "subscription_required";
|
|
2018
|
+
}[];
|
|
1880
2019
|
logo?: {
|
|
1881
2020
|
url: string;
|
|
1882
2021
|
width: number;
|
|
@@ -1932,6 +2071,10 @@ declare const routes: {
|
|
|
1932
2071
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1933
2072
|
is_connect_webview_supported: boolean;
|
|
1934
2073
|
requires_seam_support_to_add_account: boolean;
|
|
2074
|
+
annotations: {
|
|
2075
|
+
message: string;
|
|
2076
|
+
annotation_code: "subscription_required";
|
|
2077
|
+
}[];
|
|
1935
2078
|
logo?: {
|
|
1936
2079
|
url: string;
|
|
1937
2080
|
width: number;
|
|
@@ -1982,6 +2125,10 @@ declare const routes: {
|
|
|
1982
2125
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
1983
2126
|
is_connect_webview_supported: boolean;
|
|
1984
2127
|
requires_seam_support_to_add_account: boolean;
|
|
2128
|
+
annotations: {
|
|
2129
|
+
message: string;
|
|
2130
|
+
annotation_code: "subscription_required";
|
|
2131
|
+
}[];
|
|
1985
2132
|
logo?: {
|
|
1986
2133
|
url: string;
|
|
1987
2134
|
width: number;
|
|
@@ -2038,6 +2185,10 @@ declare const routes: {
|
|
|
2038
2185
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2039
2186
|
is_connect_webview_supported: boolean;
|
|
2040
2187
|
requires_seam_support_to_add_account: boolean;
|
|
2188
|
+
annotations: {
|
|
2189
|
+
message: string;
|
|
2190
|
+
annotation_code: "subscription_required";
|
|
2191
|
+
}[];
|
|
2041
2192
|
logo?: {
|
|
2042
2193
|
url: string;
|
|
2043
2194
|
width: number;
|
|
@@ -2082,6 +2233,10 @@ declare const routes: {
|
|
|
2082
2233
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2083
2234
|
is_connect_webview_supported: boolean;
|
|
2084
2235
|
requires_seam_support_to_add_account: boolean;
|
|
2236
|
+
annotations: {
|
|
2237
|
+
message: string;
|
|
2238
|
+
annotation_code: "subscription_required";
|
|
2239
|
+
}[];
|
|
2085
2240
|
logo?: {
|
|
2086
2241
|
url: string;
|
|
2087
2242
|
width: number;
|
|
@@ -2138,6 +2293,10 @@ declare const routes: {
|
|
|
2138
2293
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2139
2294
|
is_connect_webview_supported: boolean;
|
|
2140
2295
|
requires_seam_support_to_add_account: boolean;
|
|
2296
|
+
annotations: {
|
|
2297
|
+
message: string;
|
|
2298
|
+
annotation_code: "subscription_required";
|
|
2299
|
+
}[];
|
|
2141
2300
|
logo?: {
|
|
2142
2301
|
url: string;
|
|
2143
2302
|
width: number;
|
|
@@ -2230,6 +2389,16 @@ declare const routes: {
|
|
|
2230
2389
|
is_connect_webview_supported: z.ZodBoolean;
|
|
2231
2390
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
2232
2391
|
device_model_count: z.ZodNumber;
|
|
2392
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
2393
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
2394
|
+
message: z.ZodString;
|
|
2395
|
+
}, "strip", z.ZodTypeAny, {
|
|
2396
|
+
message: string;
|
|
2397
|
+
annotation_code: "subscription_required";
|
|
2398
|
+
}, {
|
|
2399
|
+
message: string;
|
|
2400
|
+
annotation_code: "subscription_required";
|
|
2401
|
+
}>, "many">;
|
|
2233
2402
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
2234
2403
|
display_name: string;
|
|
2235
2404
|
manufacturer_id: string;
|
|
@@ -2237,6 +2406,10 @@ declare const routes: {
|
|
|
2237
2406
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2238
2407
|
is_connect_webview_supported: boolean;
|
|
2239
2408
|
requires_seam_support_to_add_account: boolean;
|
|
2409
|
+
annotations: {
|
|
2410
|
+
message: string;
|
|
2411
|
+
annotation_code: "subscription_required";
|
|
2412
|
+
}[];
|
|
2240
2413
|
logo?: {
|
|
2241
2414
|
url: string;
|
|
2242
2415
|
width: number;
|
|
@@ -2249,6 +2422,10 @@ declare const routes: {
|
|
|
2249
2422
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2250
2423
|
is_connect_webview_supported: boolean;
|
|
2251
2424
|
requires_seam_support_to_add_account: boolean;
|
|
2425
|
+
annotations: {
|
|
2426
|
+
message: string;
|
|
2427
|
+
annotation_code: "subscription_required";
|
|
2428
|
+
}[];
|
|
2252
2429
|
logo?: {
|
|
2253
2430
|
url: string;
|
|
2254
2431
|
width: number;
|
|
@@ -2357,6 +2534,10 @@ declare const routes: {
|
|
|
2357
2534
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2358
2535
|
is_connect_webview_supported: boolean;
|
|
2359
2536
|
requires_seam_support_to_add_account: boolean;
|
|
2537
|
+
annotations: {
|
|
2538
|
+
message: string;
|
|
2539
|
+
annotation_code: "subscription_required";
|
|
2540
|
+
}[];
|
|
2360
2541
|
logo?: {
|
|
2361
2542
|
url: string;
|
|
2362
2543
|
width: number;
|
|
@@ -2399,6 +2580,10 @@ declare const routes: {
|
|
|
2399
2580
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2400
2581
|
is_connect_webview_supported: boolean;
|
|
2401
2582
|
requires_seam_support_to_add_account: boolean;
|
|
2583
|
+
annotations: {
|
|
2584
|
+
message: string;
|
|
2585
|
+
annotation_code: "subscription_required";
|
|
2586
|
+
}[];
|
|
2402
2587
|
logo?: {
|
|
2403
2588
|
url: string;
|
|
2404
2589
|
width: number;
|
|
@@ -2670,6 +2855,10 @@ declare const routes: {
|
|
|
2670
2855
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2671
2856
|
is_connect_webview_supported: boolean;
|
|
2672
2857
|
requires_seam_support_to_add_account: boolean;
|
|
2858
|
+
annotations: {
|
|
2859
|
+
message: string;
|
|
2860
|
+
annotation_code: "subscription_required";
|
|
2861
|
+
}[];
|
|
2673
2862
|
logo?: {
|
|
2674
2863
|
url: string;
|
|
2675
2864
|
width: number;
|
|
@@ -2767,6 +2956,10 @@ declare const routes: {
|
|
|
2767
2956
|
integration_support_level: "stable" | "beta" | "unsupported" | "planned" | "inquire";
|
|
2768
2957
|
is_connect_webview_supported: boolean;
|
|
2769
2958
|
requires_seam_support_to_add_account: boolean;
|
|
2959
|
+
annotations: {
|
|
2960
|
+
message: string;
|
|
2961
|
+
annotation_code: "subscription_required";
|
|
2962
|
+
}[];
|
|
2770
2963
|
logo?: {
|
|
2771
2964
|
url: string;
|
|
2772
2965
|
width: number;
|
|
@@ -2886,6 +3079,16 @@ declare const routes: {
|
|
|
2886
3079
|
is_connect_webview_supported: z.ZodBoolean;
|
|
2887
3080
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
2888
3081
|
device_model_count: z.ZodNumber;
|
|
3082
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
3083
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
3084
|
+
message: z.ZodString;
|
|
3085
|
+
}, "strip", z.ZodTypeAny, {
|
|
3086
|
+
message: string;
|
|
3087
|
+
annotation_code: "subscription_required";
|
|
3088
|
+
}, {
|
|
3089
|
+
message: string;
|
|
3090
|
+
annotation_code: "subscription_required";
|
|
3091
|
+
}>, "many">;
|
|
2889
3092
|
}, "strip", z.ZodTypeAny, {
|
|
2890
3093
|
display_name: string;
|
|
2891
3094
|
manufacturer_id: string;
|
|
@@ -2894,6 +3097,10 @@ declare const routes: {
|
|
|
2894
3097
|
is_connect_webview_supported: boolean;
|
|
2895
3098
|
requires_seam_support_to_add_account: boolean;
|
|
2896
3099
|
device_model_count: number;
|
|
3100
|
+
annotations: {
|
|
3101
|
+
message: string;
|
|
3102
|
+
annotation_code: "subscription_required";
|
|
3103
|
+
}[];
|
|
2897
3104
|
logo?: {
|
|
2898
3105
|
url: string;
|
|
2899
3106
|
width: number;
|
|
@@ -2907,6 +3114,10 @@ declare const routes: {
|
|
|
2907
3114
|
is_connect_webview_supported: boolean;
|
|
2908
3115
|
requires_seam_support_to_add_account: boolean;
|
|
2909
3116
|
device_model_count: number;
|
|
3117
|
+
annotations: {
|
|
3118
|
+
message: string;
|
|
3119
|
+
annotation_code: "subscription_required";
|
|
3120
|
+
}[];
|
|
2910
3121
|
logo?: {
|
|
2911
3122
|
url: string;
|
|
2912
3123
|
width: number;
|
|
@@ -2922,6 +3133,10 @@ declare const routes: {
|
|
|
2922
3133
|
is_connect_webview_supported: boolean;
|
|
2923
3134
|
requires_seam_support_to_add_account: boolean;
|
|
2924
3135
|
device_model_count: number;
|
|
3136
|
+
annotations: {
|
|
3137
|
+
message: string;
|
|
3138
|
+
annotation_code: "subscription_required";
|
|
3139
|
+
}[];
|
|
2925
3140
|
logo?: {
|
|
2926
3141
|
url: string;
|
|
2927
3142
|
width: number;
|
|
@@ -2937,6 +3152,10 @@ declare const routes: {
|
|
|
2937
3152
|
is_connect_webview_supported: boolean;
|
|
2938
3153
|
requires_seam_support_to_add_account: boolean;
|
|
2939
3154
|
device_model_count: number;
|
|
3155
|
+
annotations: {
|
|
3156
|
+
message: string;
|
|
3157
|
+
annotation_code: "subscription_required";
|
|
3158
|
+
}[];
|
|
2940
3159
|
logo?: {
|
|
2941
3160
|
url: string;
|
|
2942
3161
|
width: number;
|
|
@@ -2984,6 +3203,16 @@ declare const routes: {
|
|
|
2984
3203
|
is_connect_webview_supported: z.ZodBoolean;
|
|
2985
3204
|
requires_seam_support_to_add_account: z.ZodBoolean;
|
|
2986
3205
|
device_model_count: z.ZodNumber;
|
|
3206
|
+
annotations: z.ZodArray<z.ZodObject<{
|
|
3207
|
+
annotation_code: z.ZodEnum<["subscription_required"]>;
|
|
3208
|
+
message: z.ZodString;
|
|
3209
|
+
}, "strip", z.ZodTypeAny, {
|
|
3210
|
+
message: string;
|
|
3211
|
+
annotation_code: "subscription_required";
|
|
3212
|
+
}, {
|
|
3213
|
+
message: string;
|
|
3214
|
+
annotation_code: "subscription_required";
|
|
3215
|
+
}>, "many">;
|
|
2987
3216
|
}, "strip", z.ZodTypeAny, {
|
|
2988
3217
|
display_name: string;
|
|
2989
3218
|
manufacturer_id: string;
|
|
@@ -2992,6 +3221,10 @@ declare const routes: {
|
|
|
2992
3221
|
is_connect_webview_supported: boolean;
|
|
2993
3222
|
requires_seam_support_to_add_account: boolean;
|
|
2994
3223
|
device_model_count: number;
|
|
3224
|
+
annotations: {
|
|
3225
|
+
message: string;
|
|
3226
|
+
annotation_code: "subscription_required";
|
|
3227
|
+
}[];
|
|
2995
3228
|
logo?: {
|
|
2996
3229
|
url: string;
|
|
2997
3230
|
width: number;
|
|
@@ -3005,6 +3238,10 @@ declare const routes: {
|
|
|
3005
3238
|
is_connect_webview_supported: boolean;
|
|
3006
3239
|
requires_seam_support_to_add_account: boolean;
|
|
3007
3240
|
device_model_count: number;
|
|
3241
|
+
annotations: {
|
|
3242
|
+
message: string;
|
|
3243
|
+
annotation_code: "subscription_required";
|
|
3244
|
+
}[];
|
|
3008
3245
|
logo?: {
|
|
3009
3246
|
url: string;
|
|
3010
3247
|
width: number;
|
|
@@ -3020,6 +3257,10 @@ declare const routes: {
|
|
|
3020
3257
|
is_connect_webview_supported: boolean;
|
|
3021
3258
|
requires_seam_support_to_add_account: boolean;
|
|
3022
3259
|
device_model_count: number;
|
|
3260
|
+
annotations: {
|
|
3261
|
+
message: string;
|
|
3262
|
+
annotation_code: "subscription_required";
|
|
3263
|
+
}[];
|
|
3023
3264
|
logo?: {
|
|
3024
3265
|
url: string;
|
|
3025
3266
|
width: number;
|
|
@@ -3035,6 +3276,10 @@ declare const routes: {
|
|
|
3035
3276
|
is_connect_webview_supported: boolean;
|
|
3036
3277
|
requires_seam_support_to_add_account: boolean;
|
|
3037
3278
|
device_model_count: number;
|
|
3279
|
+
annotations: {
|
|
3280
|
+
message: string;
|
|
3281
|
+
annotation_code: "subscription_required";
|
|
3282
|
+
}[];
|
|
3038
3283
|
logo?: {
|
|
3039
3284
|
url: string;
|
|
3040
3285
|
width: number;
|
|
@@ -3070,6 +3315,10 @@ interface Routes {
|
|
|
3070
3315
|
integration_support_level: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire';
|
|
3071
3316
|
is_connect_webview_supported: boolean;
|
|
3072
3317
|
requires_seam_support_to_add_account: boolean;
|
|
3318
|
+
annotations: Array<{
|
|
3319
|
+
annotation_code: 'subscription_required';
|
|
3320
|
+
message: string;
|
|
3321
|
+
}>;
|
|
3073
3322
|
};
|
|
3074
3323
|
is_device_supported: boolean;
|
|
3075
3324
|
display_name: string;
|
|
@@ -3185,6 +3434,10 @@ interface Routes {
|
|
|
3185
3434
|
integration_support_level: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire';
|
|
3186
3435
|
is_connect_webview_supported: boolean;
|
|
3187
3436
|
requires_seam_support_to_add_account: boolean;
|
|
3437
|
+
annotations: Array<{
|
|
3438
|
+
annotation_code: 'subscription_required';
|
|
3439
|
+
message: string;
|
|
3440
|
+
}>;
|
|
3188
3441
|
};
|
|
3189
3442
|
is_device_supported: boolean;
|
|
3190
3443
|
display_name: string;
|
|
@@ -3292,6 +3545,10 @@ interface Routes {
|
|
|
3292
3545
|
is_connect_webview_supported: boolean;
|
|
3293
3546
|
requires_seam_support_to_add_account: boolean;
|
|
3294
3547
|
device_model_count: number;
|
|
3548
|
+
annotations: Array<{
|
|
3549
|
+
annotation_code: 'subscription_required';
|
|
3550
|
+
message: string;
|
|
3551
|
+
}>;
|
|
3295
3552
|
};
|
|
3296
3553
|
};
|
|
3297
3554
|
};
|
|
@@ -3320,6 +3577,10 @@ interface Routes {
|
|
|
3320
3577
|
is_connect_webview_supported: boolean;
|
|
3321
3578
|
requires_seam_support_to_add_account: boolean;
|
|
3322
3579
|
device_model_count: number;
|
|
3580
|
+
annotations: Array<{
|
|
3581
|
+
annotation_code: 'subscription_required';
|
|
3582
|
+
message: string;
|
|
3583
|
+
}>;
|
|
3323
3584
|
}>;
|
|
3324
3585
|
};
|
|
3325
3586
|
};
|
|
@@ -3328,4 +3589,4 @@ type RouteResponse<Path extends keyof Routes> = Routes[Path]['jsonResponse'];
|
|
|
3328
3589
|
type RouteRequestBody<Path extends keyof Routes> = Routes[Path]['jsonBody'] & Routes[Path]['commonParams'];
|
|
3329
3590
|
type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams'] & Routes[Path]['commonParams'];
|
|
3330
3591
|
|
|
3331
|
-
export { type DeviceCategory, type DeviceConnectionType, type DeviceModelV1, type ImageReference, type Manufacturer, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
|
|
3592
|
+
export { type DeviceCategory, type DeviceConnectionType, type DeviceModelV1, type ImageReference, type Manufacturer, type ManufacturerAnnotationCode, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
|