@seamapi/types 1.52.1 → 1.53.1
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 +115 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +207 -0
- package/dist/devicedb.cjs +5 -5
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +80 -80
- package/lib/seam/connect/openapi.d.ts +186 -0
- package/lib/seam/connect/openapi.js +114 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/system.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/devicedb/public-models/device-model-v1.d.ts +30 -30
- package/lib/seam/devicedb/public-models/device-model-v1.js +5 -5
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +40 -40
- package/lib/seam/devicedb/route-types.d.ts +10 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +114 -0
- package/src/lib/seam/connect/route-types.ts +21 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +5 -5
- package/src/lib/seam/devicedb/route-types.ts +10 -10
|
@@ -991,6 +991,7 @@ export interface Routes {
|
|
|
991
991
|
system_type_display_name: string;
|
|
992
992
|
name: string;
|
|
993
993
|
created_at: string;
|
|
994
|
+
workspace_id: string;
|
|
994
995
|
connected_account_ids: string[];
|
|
995
996
|
};
|
|
996
997
|
};
|
|
@@ -1015,6 +1016,7 @@ export interface Routes {
|
|
|
1015
1016
|
system_type_display_name: string;
|
|
1016
1017
|
name: string;
|
|
1017
1018
|
created_at: string;
|
|
1019
|
+
workspace_id: string;
|
|
1018
1020
|
connected_account_ids: string[];
|
|
1019
1021
|
}>;
|
|
1020
1022
|
};
|
|
@@ -5931,6 +5933,25 @@ export interface Routes {
|
|
|
5931
5933
|
formData: {};
|
|
5932
5934
|
jsonResponse: {};
|
|
5933
5935
|
};
|
|
5936
|
+
'/user_identities/list': {
|
|
5937
|
+
route: '/user_identities/list';
|
|
5938
|
+
method: 'GET' | 'POST';
|
|
5939
|
+
queryParams: {};
|
|
5940
|
+
jsonBody: {};
|
|
5941
|
+
commonParams: {};
|
|
5942
|
+
formData: {};
|
|
5943
|
+
jsonResponse: {
|
|
5944
|
+
user_identities: Array<{
|
|
5945
|
+
user_identity_id: string;
|
|
5946
|
+
user_identity_key?: (string | null) | undefined;
|
|
5947
|
+
email_address?: (string | null) | undefined;
|
|
5948
|
+
first_name?: (string | null) | undefined;
|
|
5949
|
+
last_name?: (string | null) | undefined;
|
|
5950
|
+
created_at: string;
|
|
5951
|
+
workspace_id: string;
|
|
5952
|
+
}>;
|
|
5953
|
+
};
|
|
5954
|
+
};
|
|
5934
5955
|
'/user_identities/list_accessible_devices': {
|
|
5935
5956
|
route: '/user_identities/list_accessible_devices';
|
|
5936
5957
|
method: 'GET' | 'POST';
|
|
@@ -9,9 +9,11 @@ export declare const acs_system: z.ZodObject<{
|
|
|
9
9
|
system_type_display_name: z.ZodString;
|
|
10
10
|
name: z.ZodString;
|
|
11
11
|
created_at: z.ZodString;
|
|
12
|
+
workspace_id: z.ZodString;
|
|
12
13
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
13
14
|
}, "strip", z.ZodTypeAny, {
|
|
14
15
|
name: string;
|
|
16
|
+
workspace_id: string;
|
|
15
17
|
created_at: string;
|
|
16
18
|
acs_system_id: string;
|
|
17
19
|
external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org";
|
|
@@ -21,6 +23,7 @@ export declare const acs_system: z.ZodObject<{
|
|
|
21
23
|
connected_account_ids: string[];
|
|
22
24
|
}, {
|
|
23
25
|
name: string;
|
|
26
|
+
workspace_id: string;
|
|
24
27
|
created_at: string;
|
|
25
28
|
acs_system_id: string;
|
|
26
29
|
external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_system" | "hid_cm_org";
|
|
@@ -17,6 +17,7 @@ export const acs_system = z.object({
|
|
|
17
17
|
.describe('deprecated: use external_type_display_name'),
|
|
18
18
|
name: z.string(),
|
|
19
19
|
created_at: z.string().datetime(),
|
|
20
|
+
workspace_id: z.string().uuid(),
|
|
20
21
|
connected_account_ids: z.array(z.string()),
|
|
21
22
|
});
|
|
22
23
|
//# sourceMappingURL=system.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,kEAAkE;AAClE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,cAAc;IACd,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,kEAAkE;AAClE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,cAAc;IACd,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAA"}
|
|
@@ -230,9 +230,9 @@ export declare const device_model_category_specific_properties: z.ZodDiscriminat
|
|
|
230
230
|
main_category: z.ZodLiteral<"intercom">;
|
|
231
231
|
physical_properties: z.ZodObject<{
|
|
232
232
|
has_camera: z.ZodBoolean;
|
|
233
|
-
has_rfid_reader: z.ZodBoolean
|
|
234
|
-
has_nfc_reader: z.ZodBoolean
|
|
235
|
-
has_wiegand_interface: z.ZodBoolean
|
|
233
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
234
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
235
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
236
236
|
}, "strip", z.ZodTypeAny, {
|
|
237
237
|
has_camera: boolean;
|
|
238
238
|
has_rfid_reader: boolean;
|
|
@@ -240,15 +240,15 @@ export declare const device_model_category_specific_properties: z.ZodDiscriminat
|
|
|
240
240
|
has_wiegand_interface: boolean;
|
|
241
241
|
}, {
|
|
242
242
|
has_camera: boolean;
|
|
243
|
-
has_rfid_reader
|
|
244
|
-
has_nfc_reader
|
|
245
|
-
has_wiegand_interface
|
|
243
|
+
has_rfid_reader?: boolean | undefined;
|
|
244
|
+
has_nfc_reader?: boolean | undefined;
|
|
245
|
+
has_wiegand_interface?: boolean | undefined;
|
|
246
246
|
}>;
|
|
247
247
|
software_features: z.ZodObject<{
|
|
248
248
|
can_remotely_unlock: z.ZodBoolean;
|
|
249
249
|
can_program_access_codes: z.ZodBoolean;
|
|
250
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
251
|
-
supports_onvif: z.ZodBoolean
|
|
250
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
251
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
252
252
|
}, "strip", z.ZodTypeAny, {
|
|
253
253
|
can_remotely_unlock: boolean;
|
|
254
254
|
can_program_access_codes: boolean;
|
|
@@ -257,8 +257,8 @@ export declare const device_model_category_specific_properties: z.ZodDiscriminat
|
|
|
257
257
|
}, {
|
|
258
258
|
can_remotely_unlock: boolean;
|
|
259
259
|
can_program_access_codes: boolean;
|
|
260
|
-
can_unlock_with_face_recognition
|
|
261
|
-
supports_onvif
|
|
260
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
261
|
+
supports_onvif?: boolean | undefined;
|
|
262
262
|
}>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
264
|
main_category: "intercom";
|
|
@@ -278,15 +278,15 @@ export declare const device_model_category_specific_properties: z.ZodDiscriminat
|
|
|
278
278
|
main_category: "intercom";
|
|
279
279
|
physical_properties: {
|
|
280
280
|
has_camera: boolean;
|
|
281
|
-
has_rfid_reader
|
|
282
|
-
has_nfc_reader
|
|
283
|
-
has_wiegand_interface
|
|
281
|
+
has_rfid_reader?: boolean | undefined;
|
|
282
|
+
has_nfc_reader?: boolean | undefined;
|
|
283
|
+
has_wiegand_interface?: boolean | undefined;
|
|
284
284
|
};
|
|
285
285
|
software_features: {
|
|
286
286
|
can_remotely_unlock: boolean;
|
|
287
287
|
can_program_access_codes: boolean;
|
|
288
|
-
can_unlock_with_face_recognition
|
|
289
|
-
supports_onvif
|
|
288
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
289
|
+
supports_onvif?: boolean | undefined;
|
|
290
290
|
};
|
|
291
291
|
}>, z.ZodObject<{
|
|
292
292
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -896,9 +896,9 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
896
896
|
main_category: z.ZodLiteral<"intercom">;
|
|
897
897
|
physical_properties: z.ZodObject<{
|
|
898
898
|
has_camera: z.ZodBoolean;
|
|
899
|
-
has_rfid_reader: z.ZodBoolean
|
|
900
|
-
has_nfc_reader: z.ZodBoolean
|
|
901
|
-
has_wiegand_interface: z.ZodBoolean
|
|
899
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
900
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
901
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
902
902
|
}, "strip", z.ZodTypeAny, {
|
|
903
903
|
has_camera: boolean;
|
|
904
904
|
has_rfid_reader: boolean;
|
|
@@ -906,15 +906,15 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
906
906
|
has_wiegand_interface: boolean;
|
|
907
907
|
}, {
|
|
908
908
|
has_camera: boolean;
|
|
909
|
-
has_rfid_reader
|
|
910
|
-
has_nfc_reader
|
|
911
|
-
has_wiegand_interface
|
|
909
|
+
has_rfid_reader?: boolean | undefined;
|
|
910
|
+
has_nfc_reader?: boolean | undefined;
|
|
911
|
+
has_wiegand_interface?: boolean | undefined;
|
|
912
912
|
}>;
|
|
913
913
|
software_features: z.ZodObject<{
|
|
914
914
|
can_remotely_unlock: z.ZodBoolean;
|
|
915
915
|
can_program_access_codes: z.ZodBoolean;
|
|
916
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
917
|
-
supports_onvif: z.ZodBoolean
|
|
916
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
917
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
918
918
|
}, "strip", z.ZodTypeAny, {
|
|
919
919
|
can_remotely_unlock: boolean;
|
|
920
920
|
can_program_access_codes: boolean;
|
|
@@ -923,8 +923,8 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
923
923
|
}, {
|
|
924
924
|
can_remotely_unlock: boolean;
|
|
925
925
|
can_program_access_codes: boolean;
|
|
926
|
-
can_unlock_with_face_recognition
|
|
927
|
-
supports_onvif
|
|
926
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
927
|
+
supports_onvif?: boolean | undefined;
|
|
928
928
|
}>;
|
|
929
929
|
}, "strip", z.ZodTypeAny, {
|
|
930
930
|
main_category: "intercom";
|
|
@@ -944,15 +944,15 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
944
944
|
main_category: "intercom";
|
|
945
945
|
physical_properties: {
|
|
946
946
|
has_camera: boolean;
|
|
947
|
-
has_rfid_reader
|
|
948
|
-
has_nfc_reader
|
|
949
|
-
has_wiegand_interface
|
|
947
|
+
has_rfid_reader?: boolean | undefined;
|
|
948
|
+
has_nfc_reader?: boolean | undefined;
|
|
949
|
+
has_wiegand_interface?: boolean | undefined;
|
|
950
950
|
};
|
|
951
951
|
software_features: {
|
|
952
952
|
can_remotely_unlock: boolean;
|
|
953
953
|
can_program_access_codes: boolean;
|
|
954
|
-
can_unlock_with_face_recognition
|
|
955
|
-
supports_onvif
|
|
954
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
955
|
+
supports_onvif?: boolean | undefined;
|
|
956
956
|
};
|
|
957
957
|
}>, z.ZodObject<{
|
|
958
958
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -69,15 +69,15 @@ const intercom = z.object({
|
|
|
69
69
|
main_category: z.literal(device_category.enum.intercom),
|
|
70
70
|
physical_properties: z.object({
|
|
71
71
|
has_camera: z.boolean(),
|
|
72
|
-
has_rfid_reader: z.boolean(),
|
|
73
|
-
has_nfc_reader: z.boolean(),
|
|
74
|
-
has_wiegand_interface: z.boolean(),
|
|
72
|
+
has_rfid_reader: z.boolean().default(false),
|
|
73
|
+
has_nfc_reader: z.boolean().default(false),
|
|
74
|
+
has_wiegand_interface: z.boolean().default(false),
|
|
75
75
|
}),
|
|
76
76
|
software_features: z.object({
|
|
77
77
|
can_remotely_unlock: z.boolean(),
|
|
78
78
|
can_program_access_codes: z.boolean(),
|
|
79
|
-
can_unlock_with_face_recognition: z.boolean(),
|
|
80
|
-
supports_onvif: z.boolean(),
|
|
79
|
+
can_unlock_with_face_recognition: z.boolean().default(false),
|
|
80
|
+
supports_onvif: z.boolean().default(false),
|
|
81
81
|
}),
|
|
82
82
|
});
|
|
83
83
|
const accessory = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-model-v1.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/public-models/device-model-v1.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"device-model-v1.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/public-models/device-model-v1.ts"],"names":[],"mappings":"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"}
|
|
@@ -392,9 +392,9 @@ export declare const routes: {
|
|
|
392
392
|
main_category: z.ZodLiteral<"intercom">;
|
|
393
393
|
physical_properties: z.ZodObject<{
|
|
394
394
|
has_camera: z.ZodBoolean;
|
|
395
|
-
has_rfid_reader: z.ZodBoolean
|
|
396
|
-
has_nfc_reader: z.ZodBoolean
|
|
397
|
-
has_wiegand_interface: z.ZodBoolean
|
|
395
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
396
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
397
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
398
398
|
}, "strip", z.ZodTypeAny, {
|
|
399
399
|
has_camera: boolean;
|
|
400
400
|
has_rfid_reader: boolean;
|
|
@@ -402,15 +402,15 @@ export declare const routes: {
|
|
|
402
402
|
has_wiegand_interface: boolean;
|
|
403
403
|
}, {
|
|
404
404
|
has_camera: boolean;
|
|
405
|
-
has_rfid_reader
|
|
406
|
-
has_nfc_reader
|
|
407
|
-
has_wiegand_interface
|
|
405
|
+
has_rfid_reader?: boolean | undefined;
|
|
406
|
+
has_nfc_reader?: boolean | undefined;
|
|
407
|
+
has_wiegand_interface?: boolean | undefined;
|
|
408
408
|
}>;
|
|
409
409
|
software_features: z.ZodObject<{
|
|
410
410
|
can_remotely_unlock: z.ZodBoolean;
|
|
411
411
|
can_program_access_codes: z.ZodBoolean;
|
|
412
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
413
|
-
supports_onvif: z.ZodBoolean
|
|
412
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
413
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
414
414
|
}, "strip", z.ZodTypeAny, {
|
|
415
415
|
can_remotely_unlock: boolean;
|
|
416
416
|
can_program_access_codes: boolean;
|
|
@@ -419,8 +419,8 @@ export declare const routes: {
|
|
|
419
419
|
}, {
|
|
420
420
|
can_remotely_unlock: boolean;
|
|
421
421
|
can_program_access_codes: boolean;
|
|
422
|
-
can_unlock_with_face_recognition
|
|
423
|
-
supports_onvif
|
|
422
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
423
|
+
supports_onvif?: boolean | undefined;
|
|
424
424
|
}>;
|
|
425
425
|
}, "strip", z.ZodTypeAny, {
|
|
426
426
|
main_category: "intercom";
|
|
@@ -440,15 +440,15 @@ export declare const routes: {
|
|
|
440
440
|
main_category: "intercom";
|
|
441
441
|
physical_properties: {
|
|
442
442
|
has_camera: boolean;
|
|
443
|
-
has_rfid_reader
|
|
444
|
-
has_nfc_reader
|
|
445
|
-
has_wiegand_interface
|
|
443
|
+
has_rfid_reader?: boolean | undefined;
|
|
444
|
+
has_nfc_reader?: boolean | undefined;
|
|
445
|
+
has_wiegand_interface?: boolean | undefined;
|
|
446
446
|
};
|
|
447
447
|
software_features: {
|
|
448
448
|
can_remotely_unlock: boolean;
|
|
449
449
|
can_program_access_codes: boolean;
|
|
450
|
-
can_unlock_with_face_recognition
|
|
451
|
-
supports_onvif
|
|
450
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
451
|
+
supports_onvif?: boolean | undefined;
|
|
452
452
|
};
|
|
453
453
|
}>, z.ZodObject<{
|
|
454
454
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -1005,15 +1005,15 @@ export declare const routes: {
|
|
|
1005
1005
|
main_category: "intercom";
|
|
1006
1006
|
physical_properties: {
|
|
1007
1007
|
has_camera: boolean;
|
|
1008
|
-
has_rfid_reader
|
|
1009
|
-
has_nfc_reader
|
|
1010
|
-
has_wiegand_interface
|
|
1008
|
+
has_rfid_reader?: boolean | undefined;
|
|
1009
|
+
has_nfc_reader?: boolean | undefined;
|
|
1010
|
+
has_wiegand_interface?: boolean | undefined;
|
|
1011
1011
|
};
|
|
1012
1012
|
software_features: {
|
|
1013
1013
|
can_remotely_unlock: boolean;
|
|
1014
1014
|
can_program_access_codes: boolean;
|
|
1015
|
-
can_unlock_with_face_recognition
|
|
1016
|
-
supports_onvif
|
|
1015
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
1016
|
+
supports_onvif?: boolean | undefined;
|
|
1017
1017
|
};
|
|
1018
1018
|
}) | ({
|
|
1019
1019
|
description: string;
|
|
@@ -1465,9 +1465,9 @@ export declare const routes: {
|
|
|
1465
1465
|
main_category: z.ZodLiteral<"intercom">;
|
|
1466
1466
|
physical_properties: z.ZodObject<{
|
|
1467
1467
|
has_camera: z.ZodBoolean;
|
|
1468
|
-
has_rfid_reader: z.ZodBoolean
|
|
1469
|
-
has_nfc_reader: z.ZodBoolean
|
|
1470
|
-
has_wiegand_interface: z.ZodBoolean
|
|
1468
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
1469
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
1470
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
1471
1471
|
}, "strip", z.ZodTypeAny, {
|
|
1472
1472
|
has_camera: boolean;
|
|
1473
1473
|
has_rfid_reader: boolean;
|
|
@@ -1475,15 +1475,15 @@ export declare const routes: {
|
|
|
1475
1475
|
has_wiegand_interface: boolean;
|
|
1476
1476
|
}, {
|
|
1477
1477
|
has_camera: boolean;
|
|
1478
|
-
has_rfid_reader
|
|
1479
|
-
has_nfc_reader
|
|
1480
|
-
has_wiegand_interface
|
|
1478
|
+
has_rfid_reader?: boolean | undefined;
|
|
1479
|
+
has_nfc_reader?: boolean | undefined;
|
|
1480
|
+
has_wiegand_interface?: boolean | undefined;
|
|
1481
1481
|
}>;
|
|
1482
1482
|
software_features: z.ZodObject<{
|
|
1483
1483
|
can_remotely_unlock: z.ZodBoolean;
|
|
1484
1484
|
can_program_access_codes: z.ZodBoolean;
|
|
1485
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
1486
|
-
supports_onvif: z.ZodBoolean
|
|
1485
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
1486
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
1487
1487
|
}, "strip", z.ZodTypeAny, {
|
|
1488
1488
|
can_remotely_unlock: boolean;
|
|
1489
1489
|
can_program_access_codes: boolean;
|
|
@@ -1492,8 +1492,8 @@ export declare const routes: {
|
|
|
1492
1492
|
}, {
|
|
1493
1493
|
can_remotely_unlock: boolean;
|
|
1494
1494
|
can_program_access_codes: boolean;
|
|
1495
|
-
can_unlock_with_face_recognition
|
|
1496
|
-
supports_onvif
|
|
1495
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
1496
|
+
supports_onvif?: boolean | undefined;
|
|
1497
1497
|
}>;
|
|
1498
1498
|
}, "strip", z.ZodTypeAny, {
|
|
1499
1499
|
main_category: "intercom";
|
|
@@ -1513,15 +1513,15 @@ export declare const routes: {
|
|
|
1513
1513
|
main_category: "intercom";
|
|
1514
1514
|
physical_properties: {
|
|
1515
1515
|
has_camera: boolean;
|
|
1516
|
-
has_rfid_reader
|
|
1517
|
-
has_nfc_reader
|
|
1518
|
-
has_wiegand_interface
|
|
1516
|
+
has_rfid_reader?: boolean | undefined;
|
|
1517
|
+
has_nfc_reader?: boolean | undefined;
|
|
1518
|
+
has_wiegand_interface?: boolean | undefined;
|
|
1519
1519
|
};
|
|
1520
1520
|
software_features: {
|
|
1521
1521
|
can_remotely_unlock: boolean;
|
|
1522
1522
|
can_program_access_codes: boolean;
|
|
1523
|
-
can_unlock_with_face_recognition
|
|
1524
|
-
supports_onvif
|
|
1523
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
1524
|
+
supports_onvif?: boolean | undefined;
|
|
1525
1525
|
};
|
|
1526
1526
|
}>, z.ZodObject<{
|
|
1527
1527
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -1709,15 +1709,15 @@ export declare const routes: {
|
|
|
1709
1709
|
main_category: "intercom";
|
|
1710
1710
|
physical_properties: {
|
|
1711
1711
|
has_camera: boolean;
|
|
1712
|
-
has_rfid_reader
|
|
1713
|
-
has_nfc_reader
|
|
1714
|
-
has_wiegand_interface
|
|
1712
|
+
has_rfid_reader?: boolean | undefined;
|
|
1713
|
+
has_nfc_reader?: boolean | undefined;
|
|
1714
|
+
has_wiegand_interface?: boolean | undefined;
|
|
1715
1715
|
};
|
|
1716
1716
|
software_features: {
|
|
1717
1717
|
can_remotely_unlock: boolean;
|
|
1718
1718
|
can_program_access_codes: boolean;
|
|
1719
|
-
can_unlock_with_face_recognition
|
|
1720
|
-
supports_onvif
|
|
1719
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
1720
|
+
supports_onvif?: boolean | undefined;
|
|
1721
1721
|
};
|
|
1722
1722
|
} | {
|
|
1723
1723
|
main_category: "accessory";
|
|
@@ -91,15 +91,15 @@ export interface Routes {
|
|
|
91
91
|
main_category: 'intercom';
|
|
92
92
|
physical_properties: {
|
|
93
93
|
has_camera: boolean;
|
|
94
|
-
has_rfid_reader
|
|
95
|
-
has_nfc_reader
|
|
96
|
-
has_wiegand_interface
|
|
94
|
+
has_rfid_reader?: boolean;
|
|
95
|
+
has_nfc_reader?: boolean;
|
|
96
|
+
has_wiegand_interface?: boolean;
|
|
97
97
|
};
|
|
98
98
|
software_features: {
|
|
99
99
|
can_remotely_unlock: boolean;
|
|
100
100
|
can_program_access_codes: boolean;
|
|
101
|
-
can_unlock_with_face_recognition
|
|
102
|
-
supports_onvif
|
|
101
|
+
can_unlock_with_face_recognition?: boolean;
|
|
102
|
+
supports_onvif?: boolean;
|
|
103
103
|
};
|
|
104
104
|
} | {
|
|
105
105
|
main_category: 'accessory';
|
|
@@ -202,15 +202,15 @@ export interface Routes {
|
|
|
202
202
|
main_category: 'intercom';
|
|
203
203
|
physical_properties: {
|
|
204
204
|
has_camera: boolean;
|
|
205
|
-
has_rfid_reader
|
|
206
|
-
has_nfc_reader
|
|
207
|
-
has_wiegand_interface
|
|
205
|
+
has_rfid_reader?: boolean;
|
|
206
|
+
has_nfc_reader?: boolean;
|
|
207
|
+
has_wiegand_interface?: boolean;
|
|
208
208
|
};
|
|
209
209
|
software_features: {
|
|
210
210
|
can_remotely_unlock: boolean;
|
|
211
211
|
can_program_access_codes: boolean;
|
|
212
|
-
can_unlock_with_face_recognition
|
|
213
|
-
supports_onvif
|
|
212
|
+
can_unlock_with_face_recognition?: boolean;
|
|
213
|
+
supports_onvif?: boolean;
|
|
214
214
|
};
|
|
215
215
|
} | {
|
|
216
216
|
main_category: 'accessory';
|
package/package.json
CHANGED
|
@@ -214,6 +214,7 @@ export default {
|
|
|
214
214
|
description: 'deprecated: use external_type_display_name',
|
|
215
215
|
type: 'string',
|
|
216
216
|
},
|
|
217
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
217
218
|
},
|
|
218
219
|
required: [
|
|
219
220
|
'acs_system_id',
|
|
@@ -223,6 +224,7 @@ export default {
|
|
|
223
224
|
'system_type_display_name',
|
|
224
225
|
'name',
|
|
225
226
|
'created_at',
|
|
227
|
+
'workspace_id',
|
|
226
228
|
'connected_account_ids',
|
|
227
229
|
],
|
|
228
230
|
type: 'object',
|
|
@@ -9185,6 +9187,118 @@ export default {
|
|
|
9185
9187
|
'x-fern-ignore': true,
|
|
9186
9188
|
},
|
|
9187
9189
|
},
|
|
9190
|
+
'/user_identities/list': {
|
|
9191
|
+
get: {
|
|
9192
|
+
operationId: 'userIdentitiesListGet',
|
|
9193
|
+
responses: {
|
|
9194
|
+
200: {
|
|
9195
|
+
content: {
|
|
9196
|
+
'application/json': {
|
|
9197
|
+
schema: {
|
|
9198
|
+
properties: {
|
|
9199
|
+
ok: { type: 'boolean' },
|
|
9200
|
+
user_identities: {
|
|
9201
|
+
items: {
|
|
9202
|
+
properties: {
|
|
9203
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
9204
|
+
email_address: {
|
|
9205
|
+
format: 'email',
|
|
9206
|
+
nullable: true,
|
|
9207
|
+
type: 'string',
|
|
9208
|
+
},
|
|
9209
|
+
first_name: { nullable: true, type: 'string' },
|
|
9210
|
+
last_name: { nullable: true, type: 'string' },
|
|
9211
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
9212
|
+
user_identity_key: { nullable: true, type: 'string' },
|
|
9213
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
9214
|
+
},
|
|
9215
|
+
required: [
|
|
9216
|
+
'user_identity_id',
|
|
9217
|
+
'created_at',
|
|
9218
|
+
'workspace_id',
|
|
9219
|
+
],
|
|
9220
|
+
type: 'object',
|
|
9221
|
+
},
|
|
9222
|
+
type: 'array',
|
|
9223
|
+
},
|
|
9224
|
+
},
|
|
9225
|
+
required: ['user_identities', 'ok'],
|
|
9226
|
+
type: 'object',
|
|
9227
|
+
},
|
|
9228
|
+
},
|
|
9229
|
+
},
|
|
9230
|
+
description: 'OK',
|
|
9231
|
+
},
|
|
9232
|
+
400: { description: 'Bad Request' },
|
|
9233
|
+
401: { description: 'Unauthorized' },
|
|
9234
|
+
},
|
|
9235
|
+
security: [
|
|
9236
|
+
{ api_key: [] },
|
|
9237
|
+
{ client_session: [] },
|
|
9238
|
+
{ pat_with_workspace: [] },
|
|
9239
|
+
{ console_session: [] },
|
|
9240
|
+
],
|
|
9241
|
+
summary: '/user_identities/list',
|
|
9242
|
+
tags: [],
|
|
9243
|
+
'x-fern-ignore': true,
|
|
9244
|
+
},
|
|
9245
|
+
post: {
|
|
9246
|
+
operationId: 'userIdentitiesListPost',
|
|
9247
|
+
responses: {
|
|
9248
|
+
200: {
|
|
9249
|
+
content: {
|
|
9250
|
+
'application/json': {
|
|
9251
|
+
schema: {
|
|
9252
|
+
properties: {
|
|
9253
|
+
ok: { type: 'boolean' },
|
|
9254
|
+
user_identities: {
|
|
9255
|
+
items: {
|
|
9256
|
+
properties: {
|
|
9257
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
9258
|
+
email_address: {
|
|
9259
|
+
format: 'email',
|
|
9260
|
+
nullable: true,
|
|
9261
|
+
type: 'string',
|
|
9262
|
+
},
|
|
9263
|
+
first_name: { nullable: true, type: 'string' },
|
|
9264
|
+
last_name: { nullable: true, type: 'string' },
|
|
9265
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
9266
|
+
user_identity_key: { nullable: true, type: 'string' },
|
|
9267
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
9268
|
+
},
|
|
9269
|
+
required: [
|
|
9270
|
+
'user_identity_id',
|
|
9271
|
+
'created_at',
|
|
9272
|
+
'workspace_id',
|
|
9273
|
+
],
|
|
9274
|
+
type: 'object',
|
|
9275
|
+
},
|
|
9276
|
+
type: 'array',
|
|
9277
|
+
},
|
|
9278
|
+
},
|
|
9279
|
+
required: ['user_identities', 'ok'],
|
|
9280
|
+
type: 'object',
|
|
9281
|
+
},
|
|
9282
|
+
},
|
|
9283
|
+
},
|
|
9284
|
+
description: 'OK',
|
|
9285
|
+
},
|
|
9286
|
+
400: { description: 'Bad Request' },
|
|
9287
|
+
401: { description: 'Unauthorized' },
|
|
9288
|
+
},
|
|
9289
|
+
security: [
|
|
9290
|
+
{ api_key: [] },
|
|
9291
|
+
{ client_session: [] },
|
|
9292
|
+
{ pat_with_workspace: [] },
|
|
9293
|
+
{ console_session: [] },
|
|
9294
|
+
],
|
|
9295
|
+
summary: '/user_identities/list',
|
|
9296
|
+
tags: [],
|
|
9297
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
9298
|
+
'x-fern-sdk-method-name': 'list',
|
|
9299
|
+
'x-fern-sdk-return-value': 'user_identities',
|
|
9300
|
+
},
|
|
9301
|
+
},
|
|
9188
9302
|
'/user_identities/list_accessible_devices': {
|
|
9189
9303
|
post: {
|
|
9190
9304
|
operationId: 'userIdentitiesListAccessibleDevicesPost',
|
|
@@ -1032,6 +1032,7 @@ export interface Routes {
|
|
|
1032
1032
|
system_type_display_name: string
|
|
1033
1033
|
name: string
|
|
1034
1034
|
created_at: string
|
|
1035
|
+
workspace_id: string
|
|
1035
1036
|
connected_account_ids: string[]
|
|
1036
1037
|
}
|
|
1037
1038
|
}
|
|
@@ -1066,6 +1067,7 @@ export interface Routes {
|
|
|
1066
1067
|
system_type_display_name: string
|
|
1067
1068
|
name: string
|
|
1068
1069
|
created_at: string
|
|
1070
|
+
workspace_id: string
|
|
1069
1071
|
connected_account_ids: string[]
|
|
1070
1072
|
}>
|
|
1071
1073
|
}
|
|
@@ -8127,6 +8129,25 @@ export interface Routes {
|
|
|
8127
8129
|
formData: {}
|
|
8128
8130
|
jsonResponse: {}
|
|
8129
8131
|
}
|
|
8132
|
+
'/user_identities/list': {
|
|
8133
|
+
route: '/user_identities/list'
|
|
8134
|
+
method: 'GET' | 'POST'
|
|
8135
|
+
queryParams: {}
|
|
8136
|
+
jsonBody: {}
|
|
8137
|
+
commonParams: {}
|
|
8138
|
+
formData: {}
|
|
8139
|
+
jsonResponse: {
|
|
8140
|
+
user_identities: Array<{
|
|
8141
|
+
user_identity_id: string
|
|
8142
|
+
user_identity_key?: (string | null) | undefined
|
|
8143
|
+
email_address?: (string | null) | undefined
|
|
8144
|
+
first_name?: (string | null) | undefined
|
|
8145
|
+
last_name?: (string | null) | undefined
|
|
8146
|
+
created_at: string
|
|
8147
|
+
workspace_id: string
|
|
8148
|
+
}>
|
|
8149
|
+
}
|
|
8150
|
+
}
|
|
8130
8151
|
'/user_identities/list_accessible_devices': {
|
|
8131
8152
|
route: '/user_identities/list_accessible_devices'
|
|
8132
8153
|
method: 'GET' | 'POST'
|