@seamapi/types 1.91.2 → 1.92.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 +888 -908
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1196 -1143
- package/lib/seam/connect/openapi.d.ts +1103 -1053
- package/lib/seam/connect/openapi.js +875 -895
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +102 -99
- package/lib/seam/connect/unstable/models/acs/entrance.d.ts +39 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js +15 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js.map +1 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +6 -6
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +95 -125
- package/lib/seam/connect/unstable/models/devices/managed-device.js +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone-properties.d.ts +35 -57
- package/lib/seam/connect/unstable/models/devices/phone-properties.js +9 -11
- package/lib/seam/connect/unstable/models/devices/phone-properties.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.js +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +878 -899
- package/src/lib/seam/connect/route-types.ts +153 -135
- package/src/lib/seam/connect/unstable/models/acs/entrance.ts +17 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/phone-properties.ts +11 -13
- package/src/lib/seam/connect/unstable/models/devices/phone.ts +1 -1
|
@@ -189,6 +189,48 @@ export declare const managed_device: z.ZodObject<{
|
|
|
189
189
|
supports_accessory_keypad?: boolean | undefined;
|
|
190
190
|
supports_offline_access_codes?: boolean | undefined;
|
|
191
191
|
}>, z.ZodObject<{
|
|
192
|
+
assa_abloy_credential_service_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
193
|
+
has_active_endpoint: z.ZodBoolean;
|
|
194
|
+
endpoints: z.ZodArray<z.ZodObject<{
|
|
195
|
+
endpoint_id: z.ZodString;
|
|
196
|
+
is_active: z.ZodBoolean;
|
|
197
|
+
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
endpoint_id: string;
|
|
199
|
+
is_active: boolean;
|
|
200
|
+
}, {
|
|
201
|
+
endpoint_id: string;
|
|
202
|
+
is_active: boolean;
|
|
203
|
+
}>, "many">;
|
|
204
|
+
}, "strip", z.ZodTypeAny, {
|
|
205
|
+
has_active_endpoint: boolean;
|
|
206
|
+
endpoints: {
|
|
207
|
+
endpoint_id: string;
|
|
208
|
+
is_active: boolean;
|
|
209
|
+
}[];
|
|
210
|
+
}, {
|
|
211
|
+
has_active_endpoint: boolean;
|
|
212
|
+
endpoints: {
|
|
213
|
+
endpoint_id: string;
|
|
214
|
+
is_active: boolean;
|
|
215
|
+
}[];
|
|
216
|
+
}>>>;
|
|
217
|
+
}, "strip", z.ZodTypeAny, {
|
|
218
|
+
assa_abloy_credential_service_metadata?: {
|
|
219
|
+
has_active_endpoint: boolean;
|
|
220
|
+
endpoints: {
|
|
221
|
+
endpoint_id: string;
|
|
222
|
+
is_active: boolean;
|
|
223
|
+
}[];
|
|
224
|
+
} | undefined;
|
|
225
|
+
}, {
|
|
226
|
+
assa_abloy_credential_service_metadata?: {
|
|
227
|
+
has_active_endpoint: boolean;
|
|
228
|
+
endpoints: {
|
|
229
|
+
endpoint_id: string;
|
|
230
|
+
is_active: boolean;
|
|
231
|
+
}[];
|
|
232
|
+
} | undefined;
|
|
233
|
+
}>>, z.ZodObject<{
|
|
192
234
|
august_metadata: z.ZodOptional<z.ZodObject<{
|
|
193
235
|
lock_id: z.ZodString;
|
|
194
236
|
lock_name: z.ZodString;
|
|
@@ -1098,10 +1140,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1098
1140
|
min_length?: number | undefined;
|
|
1099
1141
|
max_length?: number | undefined;
|
|
1100
1142
|
}>]>, "many">>>;
|
|
1101
|
-
has_native_entry_events: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1102
|
-
max_active_codes_supported: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1103
1143
|
supported_code_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1144
|
+
max_active_codes_supported: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1104
1145
|
supports_backup_access_code_pool: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1146
|
+
has_native_entry_events: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1105
1147
|
locked: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1106
1148
|
keypad_battery: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1107
1149
|
level: z.ZodNumber;
|
|
@@ -1120,10 +1162,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1120
1162
|
min_length?: number | undefined;
|
|
1121
1163
|
max_length?: number | undefined;
|
|
1122
1164
|
})[] | undefined;
|
|
1123
|
-
has_native_entry_events?: boolean | undefined;
|
|
1124
|
-
max_active_codes_supported?: number | undefined;
|
|
1125
1165
|
supported_code_lengths?: number[] | undefined;
|
|
1166
|
+
max_active_codes_supported?: number | undefined;
|
|
1126
1167
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
1168
|
+
has_native_entry_events?: boolean | undefined;
|
|
1127
1169
|
locked?: boolean | undefined;
|
|
1128
1170
|
keypad_battery?: {
|
|
1129
1171
|
level: number;
|
|
@@ -1138,10 +1180,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1138
1180
|
min_length?: number | undefined;
|
|
1139
1181
|
max_length?: number | undefined;
|
|
1140
1182
|
})[] | undefined;
|
|
1141
|
-
has_native_entry_events?: boolean | undefined;
|
|
1142
|
-
max_active_codes_supported?: number | undefined;
|
|
1143
1183
|
supported_code_lengths?: number[] | undefined;
|
|
1184
|
+
max_active_codes_supported?: number | undefined;
|
|
1144
1185
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
1186
|
+
has_native_entry_events?: boolean | undefined;
|
|
1145
1187
|
locked?: boolean | undefined;
|
|
1146
1188
|
keypad_battery?: {
|
|
1147
1189
|
level: number;
|
|
@@ -1888,71 +1930,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1888
1930
|
max_cooling_set_point_celsius?: number | undefined;
|
|
1889
1931
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
1890
1932
|
is_cooling_available?: true | undefined;
|
|
1891
|
-
}>]
|
|
1892
|
-
properties: z.ZodOptional<z.ZodObject<{
|
|
1893
|
-
assa_abloy_credential_service_metadata: z.ZodOptional<z.ZodObject<{
|
|
1894
|
-
has_active_endpoint: z.ZodBoolean;
|
|
1895
|
-
endpoints: z.ZodArray<z.ZodObject<{
|
|
1896
|
-
endpoint_id: z.ZodString;
|
|
1897
|
-
is_active: z.ZodBoolean;
|
|
1898
|
-
}, "strip", z.ZodTypeAny, {
|
|
1899
|
-
endpoint_id: string;
|
|
1900
|
-
is_active: boolean;
|
|
1901
|
-
}, {
|
|
1902
|
-
endpoint_id: string;
|
|
1903
|
-
is_active: boolean;
|
|
1904
|
-
}>, "many">;
|
|
1905
|
-
}, "strip", z.ZodTypeAny, {
|
|
1906
|
-
has_active_endpoint: boolean;
|
|
1907
|
-
endpoints: {
|
|
1908
|
-
endpoint_id: string;
|
|
1909
|
-
is_active: boolean;
|
|
1910
|
-
}[];
|
|
1911
|
-
}, {
|
|
1912
|
-
has_active_endpoint: boolean;
|
|
1913
|
-
endpoints: {
|
|
1914
|
-
endpoint_id: string;
|
|
1915
|
-
is_active: boolean;
|
|
1916
|
-
}[];
|
|
1917
|
-
}>>;
|
|
1918
|
-
}, "strip", z.ZodTypeAny, {
|
|
1919
|
-
assa_abloy_credential_service_metadata?: {
|
|
1920
|
-
has_active_endpoint: boolean;
|
|
1921
|
-
endpoints: {
|
|
1922
|
-
endpoint_id: string;
|
|
1923
|
-
is_active: boolean;
|
|
1924
|
-
}[];
|
|
1925
|
-
} | undefined;
|
|
1926
|
-
}, {
|
|
1927
|
-
assa_abloy_credential_service_metadata?: {
|
|
1928
|
-
has_active_endpoint: boolean;
|
|
1929
|
-
endpoints: {
|
|
1930
|
-
endpoint_id: string;
|
|
1931
|
-
is_active: boolean;
|
|
1932
|
-
}[];
|
|
1933
|
-
} | undefined;
|
|
1934
|
-
}>>;
|
|
1935
|
-
}, "strip", z.ZodTypeAny, {
|
|
1936
|
-
properties?: {
|
|
1937
|
-
assa_abloy_credential_service_metadata?: {
|
|
1938
|
-
has_active_endpoint: boolean;
|
|
1939
|
-
endpoints: {
|
|
1940
|
-
endpoint_id: string;
|
|
1941
|
-
is_active: boolean;
|
|
1942
|
-
}[];
|
|
1943
|
-
} | undefined;
|
|
1944
|
-
} | undefined;
|
|
1945
|
-
}, {
|
|
1946
|
-
properties?: {
|
|
1947
|
-
assa_abloy_credential_service_metadata?: {
|
|
1948
|
-
has_active_endpoint: boolean;
|
|
1949
|
-
endpoints: {
|
|
1950
|
-
endpoint_id: string;
|
|
1951
|
-
is_active: boolean;
|
|
1952
|
-
}[];
|
|
1953
|
-
} | undefined;
|
|
1954
|
-
} | undefined;
|
|
1955
|
-
}>>;
|
|
1933
|
+
}>]>>>;
|
|
1956
1934
|
location: z.ZodNullable<z.ZodObject<{
|
|
1957
1935
|
location_name: z.ZodOptional<z.ZodString>;
|
|
1958
1936
|
timezone: z.ZodOptional<z.ZodString>;
|
|
@@ -1998,7 +1976,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1998
1976
|
created_at: string;
|
|
1999
1977
|
device_id: string;
|
|
2000
1978
|
is_managed: true;
|
|
2001
|
-
properties: (
|
|
1979
|
+
properties: ({
|
|
2002
1980
|
name: string;
|
|
2003
1981
|
online: boolean;
|
|
2004
1982
|
model: {
|
|
@@ -2022,6 +2000,14 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2022
2000
|
offline_access_codes_enabled?: boolean | undefined;
|
|
2023
2001
|
supports_accessory_keypad?: boolean | undefined;
|
|
2024
2002
|
supports_offline_access_codes?: boolean | undefined;
|
|
2003
|
+
} & {
|
|
2004
|
+
assa_abloy_credential_service_metadata?: {
|
|
2005
|
+
has_active_endpoint: boolean;
|
|
2006
|
+
endpoints: {
|
|
2007
|
+
endpoint_id: string;
|
|
2008
|
+
is_active: boolean;
|
|
2009
|
+
}[];
|
|
2010
|
+
} | undefined;
|
|
2025
2011
|
} & {
|
|
2026
2012
|
august_metadata?: {
|
|
2027
2013
|
lock_id: string;
|
|
@@ -2200,10 +2186,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2200
2186
|
min_length?: number | undefined;
|
|
2201
2187
|
max_length?: number | undefined;
|
|
2202
2188
|
})[] | undefined;
|
|
2203
|
-
has_native_entry_events?: boolean | undefined;
|
|
2204
|
-
max_active_codes_supported?: number | undefined;
|
|
2205
2189
|
supported_code_lengths?: number[] | undefined;
|
|
2190
|
+
max_active_codes_supported?: number | undefined;
|
|
2206
2191
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
2192
|
+
has_native_entry_events?: boolean | undefined;
|
|
2207
2193
|
locked?: boolean | undefined;
|
|
2208
2194
|
keypad_battery?: {
|
|
2209
2195
|
level: number;
|
|
@@ -2386,17 +2372,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2386
2372
|
max_cooling_set_point_celsius?: number | undefined;
|
|
2387
2373
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
2388
2374
|
is_cooling_available?: true | undefined;
|
|
2389
|
-
}))) & {
|
|
2390
|
-
properties?: {
|
|
2391
|
-
assa_abloy_credential_service_metadata?: {
|
|
2392
|
-
has_active_endpoint: boolean;
|
|
2393
|
-
endpoints: {
|
|
2394
|
-
endpoint_id: string;
|
|
2395
|
-
is_active: boolean;
|
|
2396
|
-
}[];
|
|
2397
|
-
} | undefined;
|
|
2398
|
-
} | undefined;
|
|
2399
|
-
}) & ((({
|
|
2375
|
+
}))) & (({
|
|
2400
2376
|
name: string;
|
|
2401
2377
|
online: boolean;
|
|
2402
2378
|
model: {
|
|
@@ -2420,6 +2396,14 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2420
2396
|
offline_access_codes_enabled?: boolean | undefined;
|
|
2421
2397
|
supports_accessory_keypad?: boolean | undefined;
|
|
2422
2398
|
supports_offline_access_codes?: boolean | undefined;
|
|
2399
|
+
} & {
|
|
2400
|
+
assa_abloy_credential_service_metadata?: {
|
|
2401
|
+
has_active_endpoint: boolean;
|
|
2402
|
+
endpoints: {
|
|
2403
|
+
endpoint_id: string;
|
|
2404
|
+
is_active: boolean;
|
|
2405
|
+
}[];
|
|
2406
|
+
} | undefined;
|
|
2423
2407
|
} & {
|
|
2424
2408
|
august_metadata?: {
|
|
2425
2409
|
lock_id: string;
|
|
@@ -2598,10 +2582,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2598
2582
|
min_length?: number | undefined;
|
|
2599
2583
|
max_length?: number | undefined;
|
|
2600
2584
|
})[] | undefined;
|
|
2601
|
-
has_native_entry_events?: boolean | undefined;
|
|
2602
|
-
max_active_codes_supported?: number | undefined;
|
|
2603
2585
|
supported_code_lengths?: number[] | undefined;
|
|
2586
|
+
max_active_codes_supported?: number | undefined;
|
|
2604
2587
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
2588
|
+
has_native_entry_events?: boolean | undefined;
|
|
2605
2589
|
locked?: boolean | undefined;
|
|
2606
2590
|
keypad_battery?: {
|
|
2607
2591
|
level: number;
|
|
@@ -2784,17 +2768,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2784
2768
|
max_cooling_set_point_celsius?: number | undefined;
|
|
2785
2769
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
2786
2770
|
is_cooling_available?: true | undefined;
|
|
2787
|
-
})))
|
|
2788
|
-
properties?: {
|
|
2789
|
-
assa_abloy_credential_service_metadata?: {
|
|
2790
|
-
has_active_endpoint: boolean;
|
|
2791
|
-
endpoints: {
|
|
2792
|
-
endpoint_id: string;
|
|
2793
|
-
is_active: boolean;
|
|
2794
|
-
}[];
|
|
2795
|
-
} | undefined;
|
|
2796
|
-
} | undefined;
|
|
2797
|
-
}) | undefined);
|
|
2771
|
+
}))) | undefined);
|
|
2798
2772
|
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "ios_phone" | "android_phone";
|
|
2799
2773
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
2800
2774
|
errors: {
|
|
@@ -2816,7 +2790,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2816
2790
|
created_at: string;
|
|
2817
2791
|
device_id: string;
|
|
2818
2792
|
is_managed: true;
|
|
2819
|
-
properties: (
|
|
2793
|
+
properties: ({
|
|
2820
2794
|
name: string;
|
|
2821
2795
|
online: boolean;
|
|
2822
2796
|
model: {
|
|
@@ -2840,6 +2814,14 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2840
2814
|
offline_access_codes_enabled?: boolean | undefined;
|
|
2841
2815
|
supports_accessory_keypad?: boolean | undefined;
|
|
2842
2816
|
supports_offline_access_codes?: boolean | undefined;
|
|
2817
|
+
} & {
|
|
2818
|
+
assa_abloy_credential_service_metadata?: {
|
|
2819
|
+
has_active_endpoint: boolean;
|
|
2820
|
+
endpoints: {
|
|
2821
|
+
endpoint_id: string;
|
|
2822
|
+
is_active: boolean;
|
|
2823
|
+
}[];
|
|
2824
|
+
} | undefined;
|
|
2843
2825
|
} & {
|
|
2844
2826
|
august_metadata?: {
|
|
2845
2827
|
lock_id: string;
|
|
@@ -3018,10 +3000,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3018
3000
|
min_length?: number | undefined;
|
|
3019
3001
|
max_length?: number | undefined;
|
|
3020
3002
|
})[] | undefined;
|
|
3021
|
-
has_native_entry_events?: boolean | undefined;
|
|
3022
|
-
max_active_codes_supported?: number | undefined;
|
|
3023
3003
|
supported_code_lengths?: number[] | undefined;
|
|
3004
|
+
max_active_codes_supported?: number | undefined;
|
|
3024
3005
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
3006
|
+
has_native_entry_events?: boolean | undefined;
|
|
3025
3007
|
locked?: boolean | undefined;
|
|
3026
3008
|
keypad_battery?: {
|
|
3027
3009
|
level: number;
|
|
@@ -3204,17 +3186,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3204
3186
|
max_cooling_set_point_celsius?: number | undefined;
|
|
3205
3187
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
3206
3188
|
is_cooling_available?: true | undefined;
|
|
3207
|
-
}))) & {
|
|
3208
|
-
properties?: {
|
|
3209
|
-
assa_abloy_credential_service_metadata?: {
|
|
3210
|
-
has_active_endpoint: boolean;
|
|
3211
|
-
endpoints: {
|
|
3212
|
-
endpoint_id: string;
|
|
3213
|
-
is_active: boolean;
|
|
3214
|
-
}[];
|
|
3215
|
-
} | undefined;
|
|
3216
|
-
} | undefined;
|
|
3217
|
-
}) & ((({
|
|
3189
|
+
}))) & (({
|
|
3218
3190
|
name: string;
|
|
3219
3191
|
online: boolean;
|
|
3220
3192
|
model: {
|
|
@@ -3238,6 +3210,14 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3238
3210
|
offline_access_codes_enabled?: boolean | undefined;
|
|
3239
3211
|
supports_accessory_keypad?: boolean | undefined;
|
|
3240
3212
|
supports_offline_access_codes?: boolean | undefined;
|
|
3213
|
+
} & {
|
|
3214
|
+
assa_abloy_credential_service_metadata?: {
|
|
3215
|
+
has_active_endpoint: boolean;
|
|
3216
|
+
endpoints: {
|
|
3217
|
+
endpoint_id: string;
|
|
3218
|
+
is_active: boolean;
|
|
3219
|
+
}[];
|
|
3220
|
+
} | undefined;
|
|
3241
3221
|
} & {
|
|
3242
3222
|
august_metadata?: {
|
|
3243
3223
|
lock_id: string;
|
|
@@ -3416,10 +3396,10 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3416
3396
|
min_length?: number | undefined;
|
|
3417
3397
|
max_length?: number | undefined;
|
|
3418
3398
|
})[] | undefined;
|
|
3419
|
-
has_native_entry_events?: boolean | undefined;
|
|
3420
|
-
max_active_codes_supported?: number | undefined;
|
|
3421
3399
|
supported_code_lengths?: number[] | undefined;
|
|
3400
|
+
max_active_codes_supported?: number | undefined;
|
|
3422
3401
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
3402
|
+
has_native_entry_events?: boolean | undefined;
|
|
3423
3403
|
locked?: boolean | undefined;
|
|
3424
3404
|
keypad_battery?: {
|
|
3425
3405
|
level: number;
|
|
@@ -3602,17 +3582,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3602
3582
|
max_cooling_set_point_celsius?: number | undefined;
|
|
3603
3583
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
3604
3584
|
is_cooling_available?: true | undefined;
|
|
3605
|
-
})))
|
|
3606
|
-
properties?: {
|
|
3607
|
-
assa_abloy_credential_service_metadata?: {
|
|
3608
|
-
has_active_endpoint: boolean;
|
|
3609
|
-
endpoints: {
|
|
3610
|
-
endpoint_id: string;
|
|
3611
|
-
is_active: boolean;
|
|
3612
|
-
}[];
|
|
3613
|
-
} | undefined;
|
|
3614
|
-
} | undefined;
|
|
3615
|
-
}) | undefined);
|
|
3585
|
+
}))) | undefined);
|
|
3616
3586
|
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "ios_phone" | "android_phone";
|
|
3617
3587
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
3618
3588
|
errors: {
|
|
@@ -79,9 +79,9 @@ export const managed_device = z.object({
|
|
|
79
79
|
.array(capabilities)
|
|
80
80
|
.describe('Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.'),
|
|
81
81
|
properties: common_device_properties
|
|
82
|
+
.and(phone_specific_properties.partial())
|
|
82
83
|
.and(device_metadata)
|
|
83
84
|
.and(capability_properties)
|
|
84
|
-
.and(phone_specific_properties.partial())
|
|
85
85
|
.describe('Properties of the device.'),
|
|
86
86
|
location: z
|
|
87
87
|
// todo: optional instead of nullable
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/managed-device.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/managed-device.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,66 +1,44 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const phone_specific_properties: z.ZodObject<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
is_active: z.ZodBoolean;
|
|
9
|
-
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
endpoint_id: string;
|
|
11
|
-
is_active: boolean;
|
|
12
|
-
}, {
|
|
13
|
-
endpoint_id: string;
|
|
14
|
-
is_active: boolean;
|
|
15
|
-
}>, "many">;
|
|
3
|
+
assa_abloy_credential_service_metadata: z.ZodOptional<z.ZodObject<{
|
|
4
|
+
has_active_endpoint: z.ZodBoolean;
|
|
5
|
+
endpoints: z.ZodArray<z.ZodObject<{
|
|
6
|
+
endpoint_id: z.ZodString;
|
|
7
|
+
is_active: z.ZodBoolean;
|
|
16
8
|
}, "strip", z.ZodTypeAny, {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
endpoint_id: string;
|
|
20
|
-
is_active: boolean;
|
|
21
|
-
}[];
|
|
9
|
+
endpoint_id: string;
|
|
10
|
+
is_active: boolean;
|
|
22
11
|
}, {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
is_active: boolean;
|
|
27
|
-
}[];
|
|
28
|
-
}>>;
|
|
12
|
+
endpoint_id: string;
|
|
13
|
+
is_active: boolean;
|
|
14
|
+
}>, "many">;
|
|
29
15
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}[];
|
|
36
|
-
} | undefined;
|
|
16
|
+
has_active_endpoint: boolean;
|
|
17
|
+
endpoints: {
|
|
18
|
+
endpoint_id: string;
|
|
19
|
+
is_active: boolean;
|
|
20
|
+
}[];
|
|
37
21
|
}, {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
} | undefined;
|
|
45
|
-
}>;
|
|
22
|
+
has_active_endpoint: boolean;
|
|
23
|
+
endpoints: {
|
|
24
|
+
endpoint_id: string;
|
|
25
|
+
is_active: boolean;
|
|
26
|
+
}[];
|
|
27
|
+
}>>;
|
|
46
28
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
} | undefined;
|
|
55
|
-
};
|
|
29
|
+
assa_abloy_credential_service_metadata?: {
|
|
30
|
+
has_active_endpoint: boolean;
|
|
31
|
+
endpoints: {
|
|
32
|
+
endpoint_id: string;
|
|
33
|
+
is_active: boolean;
|
|
34
|
+
}[];
|
|
35
|
+
} | undefined;
|
|
56
36
|
}, {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
} | undefined;
|
|
65
|
-
};
|
|
37
|
+
assa_abloy_credential_service_metadata?: {
|
|
38
|
+
has_active_endpoint: boolean;
|
|
39
|
+
endpoints: {
|
|
40
|
+
endpoint_id: string;
|
|
41
|
+
is_active: boolean;
|
|
42
|
+
}[];
|
|
43
|
+
} | undefined;
|
|
66
44
|
}>;
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const phone_specific_properties = z.object({
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
.optional(),
|
|
13
|
-
}),
|
|
3
|
+
assa_abloy_credential_service_metadata: z
|
|
4
|
+
.object({
|
|
5
|
+
has_active_endpoint: z.boolean(),
|
|
6
|
+
endpoints: z.array(z.object({
|
|
7
|
+
endpoint_id: z.string(),
|
|
8
|
+
is_active: z.boolean(),
|
|
9
|
+
})),
|
|
10
|
+
})
|
|
11
|
+
.optional(),
|
|
14
12
|
});
|
|
15
13
|
//# sourceMappingURL=phone-properties.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"phone-properties.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/phone-properties.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,
|
|
1
|
+
{"version":3,"file":"phone-properties.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/phone-properties.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,sCAAsC,EAAE,CAAC;SACtC,MAAM,CAAC;QACN,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;QAChC,SAAS,EAAE,CAAC,CAAC,KAAK,CAChB,CAAC,CAAC,MAAM,CAAC;YACP,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;YACvB,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE;SACvB,CAAC,CACH;KACF,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"phone.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/phone.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AACpD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,MAAM,CAAC,MAAM,KAAK,GAAG,cAAc;KAChC,IAAI,CAAC;IACJ,oBAAoB,EAAE,IAAI;CAC3B,CAAC;KACD,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;CACpD,CAAC;KACD,KAAK,CAAC,yBAAyB,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"phone.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/phone.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AACpD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,MAAM,CAAC,MAAM,KAAK,GAAG,cAAc;KAChC,IAAI,CAAC;IACJ,oBAAoB,EAAE,IAAI;CAC3B,CAAC;KACD,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;CACpD,CAAC;KACD,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,yBAAyB,EAAE,CAAC,CAAC,CAAA"}
|