@seamapi/types 1.108.0 → 1.109.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 +40 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -9
- package/dist/devicedb.cjs +5 -16
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +98 -130
- package/lib/seam/connect/openapi.d.ts +40 -0
- package/lib/seam/connect/openapi.js +40 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9 -9
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +5 -5
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +9 -9
- package/lib/seam/devicedb/index.d.ts +2 -2
- package/lib/seam/devicedb/index.js +1 -1
- package/lib/seam/devicedb/index.js.map +1 -1
- package/lib/seam/devicedb/models/device-capability.js.map +1 -0
- package/lib/seam/devicedb/{public-models/device-model-v1.d.ts → models/device-model.d.ts} +19 -19
- package/lib/seam/devicedb/{public-models/device-model-v1.js → models/device-model.js} +1 -1
- package/lib/seam/devicedb/models/device-model.js.map +1 -0
- package/lib/seam/devicedb/models/hardware.js.map +1 -0
- package/lib/seam/devicedb/models/image-reference.js.map +1 -0
- package/lib/seam/devicedb/{public-models → models}/index.d.ts +1 -2
- package/lib/seam/devicedb/{public-models → models}/index.js +1 -2
- package/lib/seam/devicedb/models/index.js.map +1 -0
- package/lib/seam/devicedb/{public-models → models}/manufacturer.d.ts +4 -4
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -0
- package/lib/seam/devicedb/route-specs.d.ts +70 -70
- package/lib/seam/devicedb/route-specs.js +1 -1
- package/lib/seam/devicedb/route-specs.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +40 -4
- package/src/lib/seam/connect/route-types.ts +9 -9
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +1 -1
- package/src/lib/seam/devicedb/index.ts +3 -3
- package/src/lib/seam/devicedb/{public-models/device-model-v1.ts → models/device-model.ts} +3 -3
- package/src/lib/seam/devicedb/{public-models → models}/index.ts +1 -2
- package/src/lib/seam/devicedb/route-specs.ts +1 -1
- package/lib/seam/devicedb/public-models/device-capability.js.map +0 -1
- package/lib/seam/devicedb/public-models/device-model-v0.d.ts +0 -30
- package/lib/seam/devicedb/public-models/device-model-v0.js +0 -12
- package/lib/seam/devicedb/public-models/device-model-v0.js.map +0 -1
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +0 -1
- package/lib/seam/devicedb/public-models/hardware.js.map +0 -1
- package/lib/seam/devicedb/public-models/image-reference.js.map +0 -1
- package/lib/seam/devicedb/public-models/index.js.map +0 -1
- package/lib/seam/devicedb/public-models/manufacturer.js.map +0 -1
- package/src/lib/seam/devicedb/public-models/device-model-v0.ts +0 -14
- /package/lib/seam/devicedb/{public-models → models}/device-capability.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/device-capability.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/hardware.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/hardware.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/image-reference.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/image-reference.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/manufacturer.js +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/device-capability.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/hardware.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/image-reference.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/manufacturer.ts +0 -0
|
@@ -2005,7 +2005,7 @@ export interface Routes {
|
|
|
2005
2005
|
schlage_metadata?: {
|
|
2006
2006
|
device_id: string;
|
|
2007
2007
|
device_name: string;
|
|
2008
|
-
access_code_length: number;
|
|
2008
|
+
access_code_length: number | null;
|
|
2009
2009
|
model?: string | undefined;
|
|
2010
2010
|
} | undefined;
|
|
2011
2011
|
smartthings_metadata?: {
|
|
@@ -2489,7 +2489,7 @@ export interface Routes {
|
|
|
2489
2489
|
schlage_metadata?: {
|
|
2490
2490
|
device_id: string;
|
|
2491
2491
|
device_name: string;
|
|
2492
|
-
access_code_length: number;
|
|
2492
|
+
access_code_length: number | null;
|
|
2493
2493
|
model?: string | undefined;
|
|
2494
2494
|
} | undefined;
|
|
2495
2495
|
smartthings_metadata?: {
|
|
@@ -3292,7 +3292,7 @@ export interface Routes {
|
|
|
3292
3292
|
schlage_metadata?: {
|
|
3293
3293
|
device_id: string;
|
|
3294
3294
|
device_name: string;
|
|
3295
|
-
access_code_length: number;
|
|
3295
|
+
access_code_length: number | null;
|
|
3296
3296
|
model?: string | undefined;
|
|
3297
3297
|
} | undefined;
|
|
3298
3298
|
smartthings_metadata?: {
|
|
@@ -3753,7 +3753,7 @@ export interface Routes {
|
|
|
3753
3753
|
schlage_metadata?: {
|
|
3754
3754
|
device_id: string;
|
|
3755
3755
|
device_name: string;
|
|
3756
|
-
access_code_length: number;
|
|
3756
|
+
access_code_length: number | null;
|
|
3757
3757
|
model?: string | undefined;
|
|
3758
3758
|
} | undefined;
|
|
3759
3759
|
smartthings_metadata?: {
|
|
@@ -4237,7 +4237,7 @@ export interface Routes {
|
|
|
4237
4237
|
schlage_metadata?: {
|
|
4238
4238
|
device_id: string;
|
|
4239
4239
|
device_name: string;
|
|
4240
|
-
access_code_length: number;
|
|
4240
|
+
access_code_length: number | null;
|
|
4241
4241
|
model?: string | undefined;
|
|
4242
4242
|
} | undefined;
|
|
4243
4243
|
smartthings_metadata?: {
|
|
@@ -4698,7 +4698,7 @@ export interface Routes {
|
|
|
4698
4698
|
schlage_metadata?: {
|
|
4699
4699
|
device_id: string;
|
|
4700
4700
|
device_name: string;
|
|
4701
|
-
access_code_length: number;
|
|
4701
|
+
access_code_length: number | null;
|
|
4702
4702
|
model?: string | undefined;
|
|
4703
4703
|
} | undefined;
|
|
4704
4704
|
smartthings_metadata?: {
|
|
@@ -5762,7 +5762,7 @@ export interface Routes {
|
|
|
5762
5762
|
schlage_metadata?: {
|
|
5763
5763
|
device_id: string;
|
|
5764
5764
|
device_name: string;
|
|
5765
|
-
access_code_length: number;
|
|
5765
|
+
access_code_length: number | null;
|
|
5766
5766
|
model?: string | undefined;
|
|
5767
5767
|
} | undefined;
|
|
5768
5768
|
smartthings_metadata?: {
|
|
@@ -6276,7 +6276,7 @@ export interface Routes {
|
|
|
6276
6276
|
schlage_metadata?: {
|
|
6277
6277
|
device_id: string;
|
|
6278
6278
|
device_name: string;
|
|
6279
|
-
access_code_length: number;
|
|
6279
|
+
access_code_length: number | null;
|
|
6280
6280
|
model?: string | undefined;
|
|
6281
6281
|
} | undefined;
|
|
6282
6282
|
smartthings_metadata?: {
|
|
@@ -6962,7 +6962,7 @@ export interface Routes {
|
|
|
6962
6962
|
schlage_metadata?: {
|
|
6963
6963
|
device_id: string;
|
|
6964
6964
|
device_name: string;
|
|
6965
|
-
access_code_length: number;
|
|
6965
|
+
access_code_length: number | null;
|
|
6966
6966
|
model?: string | undefined;
|
|
6967
6967
|
} | undefined;
|
|
6968
6968
|
smartthings_metadata?: {
|
|
@@ -84,17 +84,17 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
84
84
|
schlage_metadata: z.ZodOptional<z.ZodObject<{
|
|
85
85
|
device_id: z.ZodString;
|
|
86
86
|
device_name: z.ZodString;
|
|
87
|
-
access_code_length: z.ZodNumber
|
|
87
|
+
access_code_length: z.ZodNullable<z.ZodNumber>;
|
|
88
88
|
model: z.ZodOptional<z.ZodString>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
90
|
device_id: string;
|
|
91
91
|
device_name: string;
|
|
92
|
-
access_code_length: number;
|
|
92
|
+
access_code_length: number | null;
|
|
93
93
|
model?: string | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
device_id: string;
|
|
96
96
|
device_name: string;
|
|
97
|
-
access_code_length: number;
|
|
97
|
+
access_code_length: number | null;
|
|
98
98
|
model?: string | undefined;
|
|
99
99
|
}>>;
|
|
100
100
|
smartthings_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -627,7 +627,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
627
627
|
schlage_metadata?: {
|
|
628
628
|
device_id: string;
|
|
629
629
|
device_name: string;
|
|
630
|
-
access_code_length: number;
|
|
630
|
+
access_code_length: number | null;
|
|
631
631
|
model?: string | undefined;
|
|
632
632
|
} | undefined;
|
|
633
633
|
smartthings_metadata?: {
|
|
@@ -804,7 +804,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
804
804
|
schlage_metadata?: {
|
|
805
805
|
device_id: string;
|
|
806
806
|
device_name: string;
|
|
807
|
-
access_code_length: number;
|
|
807
|
+
access_code_length: number | null;
|
|
808
808
|
model?: string | undefined;
|
|
809
809
|
} | undefined;
|
|
810
810
|
smartthings_metadata?: {
|
|
@@ -35,7 +35,7 @@ export const device_metadata = z
|
|
|
35
35
|
schlage_metadata: z.object({
|
|
36
36
|
device_id: z.string(),
|
|
37
37
|
device_name: z.string(),
|
|
38
|
-
access_code_length: z.number(),
|
|
38
|
+
access_code_length: z.number().nullable(),
|
|
39
39
|
model: z.string().optional(),
|
|
40
40
|
}),
|
|
41
41
|
smartthings_metadata: z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/device-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,WAAW;IACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,WAAW;IACX,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAE1B,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE;IACxB,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE;IAEtB,uCAAuC,EAAE,CAAC,CAAC,MAAM,EAAE;IACnD,+BAA+B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CACnD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC;IACN,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;QACvB,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3C,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC;IAEF,sBAAsB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;QACpB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;KACtB,CAAC;IAEF,gBAAgB,EAAE,CAAC,CAAC,MAAM,CAAC;QACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/device-metadata.ts"],"names":[],"mappings":"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"}
|
|
@@ -281,17 +281,17 @@ export declare const managed_device: z.ZodObject<{
|
|
|
281
281
|
schlage_metadata: z.ZodOptional<z.ZodObject<{
|
|
282
282
|
device_id: z.ZodString;
|
|
283
283
|
device_name: z.ZodString;
|
|
284
|
-
access_code_length: z.ZodNumber
|
|
284
|
+
access_code_length: z.ZodNullable<z.ZodNumber>;
|
|
285
285
|
model: z.ZodOptional<z.ZodString>;
|
|
286
286
|
}, "strip", z.ZodTypeAny, {
|
|
287
287
|
device_id: string;
|
|
288
288
|
device_name: string;
|
|
289
|
-
access_code_length: number;
|
|
289
|
+
access_code_length: number | null;
|
|
290
290
|
model?: string | undefined;
|
|
291
291
|
}, {
|
|
292
292
|
device_id: string;
|
|
293
293
|
device_name: string;
|
|
294
|
-
access_code_length: number;
|
|
294
|
+
access_code_length: number | null;
|
|
295
295
|
model?: string | undefined;
|
|
296
296
|
}>>;
|
|
297
297
|
smartthings_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -824,7 +824,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
824
824
|
schlage_metadata?: {
|
|
825
825
|
device_id: string;
|
|
826
826
|
device_name: string;
|
|
827
|
-
access_code_length: number;
|
|
827
|
+
access_code_length: number | null;
|
|
828
828
|
model?: string | undefined;
|
|
829
829
|
} | undefined;
|
|
830
830
|
smartthings_metadata?: {
|
|
@@ -1001,7 +1001,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1001
1001
|
schlage_metadata?: {
|
|
1002
1002
|
device_id: string;
|
|
1003
1003
|
device_name: string;
|
|
1004
|
-
access_code_length: number;
|
|
1004
|
+
access_code_length: number | null;
|
|
1005
1005
|
model?: string | undefined;
|
|
1006
1006
|
} | undefined;
|
|
1007
1007
|
smartthings_metadata?: {
|
|
@@ -2067,7 +2067,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2067
2067
|
schlage_metadata?: {
|
|
2068
2068
|
device_id: string;
|
|
2069
2069
|
device_name: string;
|
|
2070
|
-
access_code_length: number;
|
|
2070
|
+
access_code_length: number | null;
|
|
2071
2071
|
model?: string | undefined;
|
|
2072
2072
|
} | undefined;
|
|
2073
2073
|
smartthings_metadata?: {
|
|
@@ -2471,7 +2471,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2471
2471
|
schlage_metadata?: {
|
|
2472
2472
|
device_id: string;
|
|
2473
2473
|
device_name: string;
|
|
2474
|
-
access_code_length: number;
|
|
2474
|
+
access_code_length: number | null;
|
|
2475
2475
|
model?: string | undefined;
|
|
2476
2476
|
} | undefined;
|
|
2477
2477
|
smartthings_metadata?: {
|
|
@@ -2897,7 +2897,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2897
2897
|
schlage_metadata?: {
|
|
2898
2898
|
device_id: string;
|
|
2899
2899
|
device_name: string;
|
|
2900
|
-
access_code_length: number;
|
|
2900
|
+
access_code_length: number | null;
|
|
2901
2901
|
model?: string | undefined;
|
|
2902
2902
|
} | undefined;
|
|
2903
2903
|
smartthings_metadata?: {
|
|
@@ -3301,7 +3301,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3301
3301
|
schlage_metadata?: {
|
|
3302
3302
|
device_id: string;
|
|
3303
3303
|
device_name: string;
|
|
3304
|
-
access_code_length: number;
|
|
3304
|
+
access_code_length: number | null;
|
|
3305
3305
|
model?: string | undefined;
|
|
3306
3306
|
} | undefined;
|
|
3307
3307
|
smartthings_metadata?: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as schemas from './
|
|
1
|
+
import * as schemas from './models/index.js';
|
|
2
2
|
export * from './route-specs.js';
|
|
3
3
|
export * from './route-types.js';
|
|
4
4
|
export { schemas };
|
|
5
|
-
export type { DeviceCategory, DeviceConnectionType,
|
|
5
|
+
export type { DeviceCategory, DeviceConnectionType, DeviceModel, ImageReference, Manufacturer, ManufacturerAnnotation, ManufacturerAnnotationCode, ManufacturerIntegrationSupportLevel, } from './models/index.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/devicedb/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/devicedb/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAA;AAE5C,cAAc,kBAAkB,CAAA;AAChC,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,OAAO,EAAE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"device-capability.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/device-capability.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAmB,MAAM,KAAK,CAAA;AAExC,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;IAChC,+BAA+B,EAAE,CAAC,CAAC,OAAO,EAAE;CAC7C,CAAC;KACD,OAAO,EAAE,CAAA;AAEZ,MAAM,iCAAiC,GAGnC;IACF,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IACpC,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACjD,CAAA;AAED,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC;KAC3C,MAAM,CAAC,iCAAiC,CAAC;KACzC,OAAO,EAAE,CAAA"}
|
|
@@ -66,7 +66,7 @@ export declare const thermostat: z.ZodObject<{
|
|
|
66
66
|
can_program_climate_schedules: boolean;
|
|
67
67
|
};
|
|
68
68
|
}>;
|
|
69
|
-
export type
|
|
69
|
+
export type ThermostatProperties = z.infer<typeof thermostat>;
|
|
70
70
|
export declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion<"main_category", [z.ZodObject<{
|
|
71
71
|
main_category: z.ZodLiteral<"smartlock">;
|
|
72
72
|
physical_properties: z.ZodObject<{
|
|
@@ -337,8 +337,8 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
337
337
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
338
338
|
display_name: string;
|
|
339
339
|
manufacturer_id: string;
|
|
340
|
-
integration: "beta" | "stable" | "
|
|
341
|
-
integration_support_level: "beta" | "stable" | "
|
|
340
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
341
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
342
342
|
is_connect_webview_supported: boolean;
|
|
343
343
|
requires_seam_support_to_add_account: boolean;
|
|
344
344
|
annotations: {
|
|
@@ -353,8 +353,8 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
353
353
|
}, {
|
|
354
354
|
display_name: string;
|
|
355
355
|
manufacturer_id: string;
|
|
356
|
-
integration: "beta" | "stable" | "
|
|
357
|
-
integration_support_level: "beta" | "stable" | "
|
|
356
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
357
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
358
358
|
is_connect_webview_supported: boolean;
|
|
359
359
|
requires_seam_support_to_add_account: boolean;
|
|
360
360
|
annotations: {
|
|
@@ -472,8 +472,8 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
472
472
|
manufacturer: {
|
|
473
473
|
display_name: string;
|
|
474
474
|
manufacturer_id: string;
|
|
475
|
-
integration: "beta" | "stable" | "
|
|
476
|
-
integration_support_level: "beta" | "stable" | "
|
|
475
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
476
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
477
477
|
is_connect_webview_supported: boolean;
|
|
478
478
|
requires_seam_support_to_add_account: boolean;
|
|
479
479
|
annotations: {
|
|
@@ -521,8 +521,8 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
521
521
|
manufacturer: {
|
|
522
522
|
display_name: string;
|
|
523
523
|
manufacturer_id: string;
|
|
524
|
-
integration: "beta" | "stable" | "
|
|
525
|
-
integration_support_level: "beta" | "stable" | "
|
|
524
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
525
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
526
526
|
is_connect_webview_supported: boolean;
|
|
527
527
|
requires_seam_support_to_add_account: boolean;
|
|
528
528
|
annotations: {
|
|
@@ -564,7 +564,7 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
564
564
|
power_sources: ("battery" | "hardwired" | "mechanical_harvesting" | "wireless" | "ethernet")[];
|
|
565
565
|
product_url?: string | undefined;
|
|
566
566
|
}>;
|
|
567
|
-
export type
|
|
567
|
+
export type BaseDeviceModel = z.infer<typeof base_device_model_v1>;
|
|
568
568
|
export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
569
569
|
device_model_id: z.ZodString;
|
|
570
570
|
manufacturer: z.ZodObject<Omit<{
|
|
@@ -601,8 +601,8 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
601
601
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
602
602
|
display_name: string;
|
|
603
603
|
manufacturer_id: string;
|
|
604
|
-
integration: "beta" | "stable" | "
|
|
605
|
-
integration_support_level: "beta" | "stable" | "
|
|
604
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
605
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
606
606
|
is_connect_webview_supported: boolean;
|
|
607
607
|
requires_seam_support_to_add_account: boolean;
|
|
608
608
|
annotations: {
|
|
@@ -617,8 +617,8 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
617
617
|
}, {
|
|
618
618
|
display_name: string;
|
|
619
619
|
manufacturer_id: string;
|
|
620
|
-
integration: "beta" | "stable" | "
|
|
621
|
-
integration_support_level: "beta" | "stable" | "
|
|
620
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
621
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
622
622
|
is_connect_webview_supported: boolean;
|
|
623
623
|
requires_seam_support_to_add_account: boolean;
|
|
624
624
|
annotations: {
|
|
@@ -736,8 +736,8 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
736
736
|
manufacturer: {
|
|
737
737
|
display_name: string;
|
|
738
738
|
manufacturer_id: string;
|
|
739
|
-
integration: "beta" | "stable" | "
|
|
740
|
-
integration_support_level: "beta" | "stable" | "
|
|
739
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
740
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
741
741
|
is_connect_webview_supported: boolean;
|
|
742
742
|
requires_seam_support_to_add_account: boolean;
|
|
743
743
|
annotations: {
|
|
@@ -785,8 +785,8 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
785
785
|
manufacturer: {
|
|
786
786
|
display_name: string;
|
|
787
787
|
manufacturer_id: string;
|
|
788
|
-
integration: "beta" | "stable" | "
|
|
789
|
-
integration_support_level: "beta" | "stable" | "
|
|
788
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
789
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
790
790
|
is_connect_webview_supported: boolean;
|
|
791
791
|
requires_seam_support_to_add_account: boolean;
|
|
792
792
|
annotations: {
|
|
@@ -1061,4 +1061,4 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
1061
1061
|
}, {
|
|
1062
1062
|
main_category: "accessory";
|
|
1063
1063
|
}>]>>;
|
|
1064
|
-
export type
|
|
1064
|
+
export type DeviceModel = z.infer<typeof device_model_v1>;
|
|
@@ -124,4 +124,4 @@ export const base_device_model_v1 = z.object({
|
|
|
124
124
|
.array(),
|
|
125
125
|
});
|
|
126
126
|
export const device_model_v1 = base_device_model_v1.and(device_model_category_specific_properties);
|
|
127
|
-
//# sourceMappingURL=device-model
|
|
127
|
+
//# sourceMappingURL=device-model.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"device-model.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/device-model.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hardware.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/hardware.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;CAC9B,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"image-reference.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/image-reference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAA"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export { device_capability_flags } from './device-capability.js';
|
|
2
|
-
export * from './device-model
|
|
3
|
-
export * from './device-model-v1.js';
|
|
2
|
+
export * from './device-model.js';
|
|
4
3
|
export * from './image-reference.js';
|
|
5
4
|
export * from './manufacturer.js';
|
|
6
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAA;AAChE,cAAc,mBAAmB,CAAA;AACjC,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA"}
|
|
@@ -49,8 +49,8 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
49
49
|
}, "strip", z.ZodTypeAny, {
|
|
50
50
|
display_name: string;
|
|
51
51
|
manufacturer_id: string;
|
|
52
|
-
integration: "beta" | "stable" | "
|
|
53
|
-
integration_support_level: "beta" | "stable" | "
|
|
52
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
53
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
54
54
|
is_connect_webview_supported: boolean;
|
|
55
55
|
requires_seam_support_to_add_account: boolean;
|
|
56
56
|
device_model_count: number;
|
|
@@ -66,8 +66,8 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
66
66
|
}, {
|
|
67
67
|
display_name: string;
|
|
68
68
|
manufacturer_id: string;
|
|
69
|
-
integration: "beta" | "stable" | "
|
|
70
|
-
integration_support_level: "beta" | "stable" | "
|
|
69
|
+
integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
70
|
+
integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
|
|
71
71
|
is_connect_webview_supported: boolean;
|
|
72
72
|
requires_seam_support_to_add_account: boolean;
|
|
73
73
|
device_model_count: number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"manufacturer.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/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,IAAI,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAIF,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"}
|