@seamapi/types 1.49.0 → 1.51.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 +81 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +129 -0
- package/dist/devicedb.cjs +7 -2
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +130 -0
- package/lib/seam/connect/openapi.d.ts +106 -0
- package/lib/seam/connect/openapi.js +81 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +23 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js +9 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
- 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/public-models/device-model-v1.d.ts +50 -0
- package/lib/seam/devicedb/public-models/device-model-v1.js +5 -0
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +70 -0
- package/lib/seam/devicedb/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +81 -0
- package/src/lib/seam/connect/route-types.ts +23 -0
- package/src/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.ts +13 -0
- package/src/lib/seam/connect/unstable/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/unstable/schemas.ts +1 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +5 -0
- package/src/lib/seam/devicedb/route-types.ts +10 -0
|
@@ -748,6 +748,29 @@ export interface Routes {
|
|
|
748
748
|
}>;
|
|
749
749
|
};
|
|
750
750
|
};
|
|
751
|
+
'/acs/credential_provisioning_automations/launch': {
|
|
752
|
+
route: '/acs/credential_provisioning_automations/launch';
|
|
753
|
+
method: 'POST';
|
|
754
|
+
queryParams: {};
|
|
755
|
+
jsonBody: {};
|
|
756
|
+
commonParams: {
|
|
757
|
+
user_identity_id: string;
|
|
758
|
+
credential_manager_acs_system_id: string;
|
|
759
|
+
acs_credential_pool_id?: string | undefined;
|
|
760
|
+
create_credential_manager_user?: boolean | undefined;
|
|
761
|
+
credential_manager_acs_user_id?: string | undefined;
|
|
762
|
+
};
|
|
763
|
+
formData: {};
|
|
764
|
+
jsonResponse: {
|
|
765
|
+
acs_credential_provisioning_automation: {
|
|
766
|
+
acs_credential_provisioning_automation_id: string;
|
|
767
|
+
credential_manager_acs_system_id: string;
|
|
768
|
+
user_identity_id: string;
|
|
769
|
+
created_at: string;
|
|
770
|
+
workspace_id: string;
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
};
|
|
751
774
|
'/acs/credentials/assign': {
|
|
752
775
|
route: '/acs/credentials/assign';
|
|
753
776
|
method: 'PATCH' | 'POST';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const acs_credential_provisioning_automation: z.ZodObject<{
|
|
3
|
+
acs_credential_provisioning_automation_id: z.ZodString;
|
|
4
|
+
credential_manager_acs_system_id: z.ZodString;
|
|
5
|
+
user_identity_id: z.ZodString;
|
|
6
|
+
created_at: z.ZodString;
|
|
7
|
+
workspace_id: z.ZodString;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
workspace_id: string;
|
|
10
|
+
created_at: string;
|
|
11
|
+
user_identity_id: string;
|
|
12
|
+
credential_manager_acs_system_id: string;
|
|
13
|
+
acs_credential_provisioning_automation_id: string;
|
|
14
|
+
}, {
|
|
15
|
+
workspace_id: string;
|
|
16
|
+
created_at: string;
|
|
17
|
+
user_identity_id: string;
|
|
18
|
+
credential_manager_acs_system_id: string;
|
|
19
|
+
acs_credential_provisioning_automation_id: string;
|
|
20
|
+
}>;
|
|
21
|
+
export type AcsCredentialProvisioningAutomation = z.output<typeof acs_credential_provisioning_automation>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const acs_credential_provisioning_automation = z.object({
|
|
3
|
+
acs_credential_provisioning_automation_id: z.string().uuid(),
|
|
4
|
+
credential_manager_acs_system_id: z.string().uuid(),
|
|
5
|
+
user_identity_id: z.string().uuid(),
|
|
6
|
+
created_at: z.string().datetime(),
|
|
7
|
+
workspace_id: z.string().uuid(),
|
|
8
|
+
});
|
|
9
|
+
//# sourceMappingURL=credential_provisioning_automation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credential_provisioning_automation.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7D,yCAAyC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC5D,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACnD,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACnC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CAChC,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,sBAAsB,CAAA;AACpC,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,sBAAsB,CAAA;AACpC,cAAc,yCAAyC,CAAA;AACvD,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, fan_mode_setting, lock_device_type, managed_access_code, managed_device, noise_sensor_device_type, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
1
|
+
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, fan_mode_setting, lock_device_type, managed_access_code, managed_device, noise_sensor_device_type, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, fan_mode_setting, lock_device_type, managed_access_code, managed_device, noise_sensor_device_type, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
1
|
+
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, fan_mode_setting, lock_device_type, managed_access_code, managed_device, noise_sensor_device_type, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
2
2
|
//# sourceMappingURL=schemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/unstable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,EACnB,iCAAiC,EACjC,YAAY,EACZ,UAAU,EACV,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,eAAe,EACf,wBAAwB,EACxB,wBAAwB,EACxB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,wBAAwB,EACxB,gCAAgC,EAChC,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,GACd,MAAM,mBAAmB,CAAA"}
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/unstable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,EACnB,iCAAiC,EACjC,sCAAsC,EACtC,YAAY,EACZ,UAAU,EACV,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,eAAe,EACf,wBAAwB,EACxB,wBAAwB,EACxB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,wBAAwB,EACxB,gCAAgC,EAChC,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,GACd,MAAM,mBAAmB,CAAA"}
|
|
@@ -230,38 +230,63 @@ 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
236
|
}, "strip", z.ZodTypeAny, {
|
|
234
237
|
has_camera: boolean;
|
|
238
|
+
has_rfid_reader: boolean;
|
|
239
|
+
has_nfc_reader: boolean;
|
|
240
|
+
has_wiegand_interface: boolean;
|
|
235
241
|
}, {
|
|
236
242
|
has_camera: boolean;
|
|
243
|
+
has_rfid_reader: boolean;
|
|
244
|
+
has_nfc_reader: boolean;
|
|
245
|
+
has_wiegand_interface: boolean;
|
|
237
246
|
}>;
|
|
238
247
|
software_features: z.ZodObject<{
|
|
239
248
|
can_remotely_unlock: z.ZodBoolean;
|
|
240
249
|
can_program_access_codes: z.ZodBoolean;
|
|
250
|
+
can_unlock_with_face_recognition: z.ZodBoolean;
|
|
251
|
+
supports_onvif: z.ZodBoolean;
|
|
241
252
|
}, "strip", z.ZodTypeAny, {
|
|
242
253
|
can_remotely_unlock: boolean;
|
|
243
254
|
can_program_access_codes: boolean;
|
|
255
|
+
can_unlock_with_face_recognition: boolean;
|
|
256
|
+
supports_onvif: boolean;
|
|
244
257
|
}, {
|
|
245
258
|
can_remotely_unlock: boolean;
|
|
246
259
|
can_program_access_codes: boolean;
|
|
260
|
+
can_unlock_with_face_recognition: boolean;
|
|
261
|
+
supports_onvif: boolean;
|
|
247
262
|
}>;
|
|
248
263
|
}, "strip", z.ZodTypeAny, {
|
|
249
264
|
main_category: "intercom";
|
|
250
265
|
physical_properties: {
|
|
251
266
|
has_camera: boolean;
|
|
267
|
+
has_rfid_reader: boolean;
|
|
268
|
+
has_nfc_reader: boolean;
|
|
269
|
+
has_wiegand_interface: boolean;
|
|
252
270
|
};
|
|
253
271
|
software_features: {
|
|
254
272
|
can_remotely_unlock: boolean;
|
|
255
273
|
can_program_access_codes: boolean;
|
|
274
|
+
can_unlock_with_face_recognition: boolean;
|
|
275
|
+
supports_onvif: boolean;
|
|
256
276
|
};
|
|
257
277
|
}, {
|
|
258
278
|
main_category: "intercom";
|
|
259
279
|
physical_properties: {
|
|
260
280
|
has_camera: boolean;
|
|
281
|
+
has_rfid_reader: boolean;
|
|
282
|
+
has_nfc_reader: boolean;
|
|
283
|
+
has_wiegand_interface: boolean;
|
|
261
284
|
};
|
|
262
285
|
software_features: {
|
|
263
286
|
can_remotely_unlock: boolean;
|
|
264
287
|
can_program_access_codes: boolean;
|
|
288
|
+
can_unlock_with_face_recognition: boolean;
|
|
289
|
+
supports_onvif: boolean;
|
|
265
290
|
};
|
|
266
291
|
}>, z.ZodObject<{
|
|
267
292
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -871,38 +896,63 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
871
896
|
main_category: z.ZodLiteral<"intercom">;
|
|
872
897
|
physical_properties: z.ZodObject<{
|
|
873
898
|
has_camera: z.ZodBoolean;
|
|
899
|
+
has_rfid_reader: z.ZodBoolean;
|
|
900
|
+
has_nfc_reader: z.ZodBoolean;
|
|
901
|
+
has_wiegand_interface: z.ZodBoolean;
|
|
874
902
|
}, "strip", z.ZodTypeAny, {
|
|
875
903
|
has_camera: boolean;
|
|
904
|
+
has_rfid_reader: boolean;
|
|
905
|
+
has_nfc_reader: boolean;
|
|
906
|
+
has_wiegand_interface: boolean;
|
|
876
907
|
}, {
|
|
877
908
|
has_camera: boolean;
|
|
909
|
+
has_rfid_reader: boolean;
|
|
910
|
+
has_nfc_reader: boolean;
|
|
911
|
+
has_wiegand_interface: boolean;
|
|
878
912
|
}>;
|
|
879
913
|
software_features: z.ZodObject<{
|
|
880
914
|
can_remotely_unlock: z.ZodBoolean;
|
|
881
915
|
can_program_access_codes: z.ZodBoolean;
|
|
916
|
+
can_unlock_with_face_recognition: z.ZodBoolean;
|
|
917
|
+
supports_onvif: z.ZodBoolean;
|
|
882
918
|
}, "strip", z.ZodTypeAny, {
|
|
883
919
|
can_remotely_unlock: boolean;
|
|
884
920
|
can_program_access_codes: boolean;
|
|
921
|
+
can_unlock_with_face_recognition: boolean;
|
|
922
|
+
supports_onvif: boolean;
|
|
885
923
|
}, {
|
|
886
924
|
can_remotely_unlock: boolean;
|
|
887
925
|
can_program_access_codes: boolean;
|
|
926
|
+
can_unlock_with_face_recognition: boolean;
|
|
927
|
+
supports_onvif: boolean;
|
|
888
928
|
}>;
|
|
889
929
|
}, "strip", z.ZodTypeAny, {
|
|
890
930
|
main_category: "intercom";
|
|
891
931
|
physical_properties: {
|
|
892
932
|
has_camera: boolean;
|
|
933
|
+
has_rfid_reader: boolean;
|
|
934
|
+
has_nfc_reader: boolean;
|
|
935
|
+
has_wiegand_interface: boolean;
|
|
893
936
|
};
|
|
894
937
|
software_features: {
|
|
895
938
|
can_remotely_unlock: boolean;
|
|
896
939
|
can_program_access_codes: boolean;
|
|
940
|
+
can_unlock_with_face_recognition: boolean;
|
|
941
|
+
supports_onvif: boolean;
|
|
897
942
|
};
|
|
898
943
|
}, {
|
|
899
944
|
main_category: "intercom";
|
|
900
945
|
physical_properties: {
|
|
901
946
|
has_camera: boolean;
|
|
947
|
+
has_rfid_reader: boolean;
|
|
948
|
+
has_nfc_reader: boolean;
|
|
949
|
+
has_wiegand_interface: boolean;
|
|
902
950
|
};
|
|
903
951
|
software_features: {
|
|
904
952
|
can_remotely_unlock: boolean;
|
|
905
953
|
can_program_access_codes: boolean;
|
|
954
|
+
can_unlock_with_face_recognition: boolean;
|
|
955
|
+
supports_onvif: boolean;
|
|
906
956
|
};
|
|
907
957
|
}>, z.ZodObject<{
|
|
908
958
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -69,10 +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
75
|
}),
|
|
73
76
|
software_features: z.object({
|
|
74
77
|
can_remotely_unlock: z.boolean(),
|
|
75
78
|
can_program_access_codes: z.boolean(),
|
|
79
|
+
can_unlock_with_face_recognition: z.boolean(),
|
|
80
|
+
supports_onvif: z.boolean(),
|
|
76
81
|
}),
|
|
77
82
|
});
|
|
78
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":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAEhD,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,IAAI,CAAC;IACpC,WAAW;IACX,QAAQ;IACR,YAAY;IACZ,OAAO;IACP,UAAU;IACV,WAAW;CACZ,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,MAAM;IACN,OAAO;IACP,QAAQ;IACR,SAAS;CACV,CAAC,CAAA;AAIF,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC;IACzB,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,SAAS,CAAC;IACxD,mBAAmB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC5B,SAAS,EAAE,CAAC,CAAC,IAAI,CAAC;YAChB,UAAU;YACV,OAAO;YACP,SAAS;YACT,SAAS;YACT,UAAU;YACV,SAAS;YACT,QAAQ;YACR,SAAS;SACV,CAAC;QACF,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;QAC7B,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;KACxB,CAAC;IACF,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC1B,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;QAChC,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;QACrC,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;QACzC,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;KAC9C,CAAC;CACH,CAAC,CAAA;AAEF,MAAM,MAAM,GAAG,CAAC,CAAC,MAAM,CAAC;IACtB,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC;IACrD,mBAAmB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC5B,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;QAC7B,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;QAChC,sBAAsB,EAAE,CAAC,CAAC,OAAO,EAAE;QACnC,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE;KACrC,CAAC;CACH,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC;IACzD,mBAAmB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC5B,eAAe,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE;QAC/D,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE;QACpC,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE;QACpC,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;QACrC,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;QAChC,sBAAsB,EAAE,CAAC,CAAC,OAAO,EAAE;QACnC,+BAA+B,EAAE,CAAC,CAAC,OAAO,EAAE;KAC7C,CAAC;IACF,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC1B,6BAA6B,EAAE,CAAC,CAAC,OAAO,EAAE;KAC3C,CAAC;CACH,CAAC,CAAA;AAIF,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IACrB,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC;CACrD,CAAC,CAAA;AAEF,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC;IACxB,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC;IACvD,mBAAmB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC5B,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;QACvB,eAAe,EAAE,CAAC,CAAC,OAAO,EAAE;QAC5B,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;QAC3B,qBAAqB,EAAE,CAAC,CAAC,OAAO,EAAE;KACnC,CAAC;IACF,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC1B,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;QAChC,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;QACrC,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;QAC7C,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;KAC5B,CAAC;CACH,CAAC,CAAA;AAEF,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC;IACzB,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,SAAS,CAAC;CACzD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,yCAAyC,GAAG,CAAC,CAAC,kBAAkB,CAC3E,eAAe,EACf,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CAC5D,CAAA;AAED,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC;QAC9B,kBAAkB,EAAE,IAAI;KACzB,CAAC;IACF,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,oBAAoB,EAAE,sBAAsB;IAC5C,kBAAkB,EAAE,CAAC;SAClB,MAAM,CAAC;QACN,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACxC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACvC,WAAW,EAAE,eAAe,CAAC,QAAQ,EAAE;QACvC,UAAU,EAAE,eAAe,CAAC,QAAQ,EAAE;QACtC,MAAM,EAAE,eAAe,CAAC,KAAK,EAAE;KAChC,CAAC;SACD,KAAK,EAAE;IACV,aAAa,EAAE,CAAC;SACb,IAAI,CAAC;QACJ,SAAS;QACT,WAAW;QACX,uBAAuB;QACvB,UAAU;QACV,UAAU;KACX,CAAC;SACD,KAAK,EAAE;CACX,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,eAAe,GAAG,oBAAoB,CAAC,GAAG,CACrD,yCAAyC,CAC1C,CAAA"}
|
|
@@ -392,38 +392,63 @@ 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
398
|
}, "strip", z.ZodTypeAny, {
|
|
396
399
|
has_camera: boolean;
|
|
400
|
+
has_rfid_reader: boolean;
|
|
401
|
+
has_nfc_reader: boolean;
|
|
402
|
+
has_wiegand_interface: boolean;
|
|
397
403
|
}, {
|
|
398
404
|
has_camera: boolean;
|
|
405
|
+
has_rfid_reader: boolean;
|
|
406
|
+
has_nfc_reader: boolean;
|
|
407
|
+
has_wiegand_interface: boolean;
|
|
399
408
|
}>;
|
|
400
409
|
software_features: z.ZodObject<{
|
|
401
410
|
can_remotely_unlock: z.ZodBoolean;
|
|
402
411
|
can_program_access_codes: z.ZodBoolean;
|
|
412
|
+
can_unlock_with_face_recognition: z.ZodBoolean;
|
|
413
|
+
supports_onvif: z.ZodBoolean;
|
|
403
414
|
}, "strip", z.ZodTypeAny, {
|
|
404
415
|
can_remotely_unlock: boolean;
|
|
405
416
|
can_program_access_codes: boolean;
|
|
417
|
+
can_unlock_with_face_recognition: boolean;
|
|
418
|
+
supports_onvif: boolean;
|
|
406
419
|
}, {
|
|
407
420
|
can_remotely_unlock: boolean;
|
|
408
421
|
can_program_access_codes: boolean;
|
|
422
|
+
can_unlock_with_face_recognition: boolean;
|
|
423
|
+
supports_onvif: boolean;
|
|
409
424
|
}>;
|
|
410
425
|
}, "strip", z.ZodTypeAny, {
|
|
411
426
|
main_category: "intercom";
|
|
412
427
|
physical_properties: {
|
|
413
428
|
has_camera: boolean;
|
|
429
|
+
has_rfid_reader: boolean;
|
|
430
|
+
has_nfc_reader: boolean;
|
|
431
|
+
has_wiegand_interface: boolean;
|
|
414
432
|
};
|
|
415
433
|
software_features: {
|
|
416
434
|
can_remotely_unlock: boolean;
|
|
417
435
|
can_program_access_codes: boolean;
|
|
436
|
+
can_unlock_with_face_recognition: boolean;
|
|
437
|
+
supports_onvif: boolean;
|
|
418
438
|
};
|
|
419
439
|
}, {
|
|
420
440
|
main_category: "intercom";
|
|
421
441
|
physical_properties: {
|
|
422
442
|
has_camera: boolean;
|
|
443
|
+
has_rfid_reader: boolean;
|
|
444
|
+
has_nfc_reader: boolean;
|
|
445
|
+
has_wiegand_interface: boolean;
|
|
423
446
|
};
|
|
424
447
|
software_features: {
|
|
425
448
|
can_remotely_unlock: boolean;
|
|
426
449
|
can_program_access_codes: boolean;
|
|
450
|
+
can_unlock_with_face_recognition: boolean;
|
|
451
|
+
supports_onvif: boolean;
|
|
427
452
|
};
|
|
428
453
|
}>, z.ZodObject<{
|
|
429
454
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -679,10 +704,15 @@ export declare const routes: {
|
|
|
679
704
|
main_category: "intercom";
|
|
680
705
|
physical_properties: {
|
|
681
706
|
has_camera: boolean;
|
|
707
|
+
has_rfid_reader: boolean;
|
|
708
|
+
has_nfc_reader: boolean;
|
|
709
|
+
has_wiegand_interface: boolean;
|
|
682
710
|
};
|
|
683
711
|
software_features: {
|
|
684
712
|
can_remotely_unlock: boolean;
|
|
685
713
|
can_program_access_codes: boolean;
|
|
714
|
+
can_unlock_with_face_recognition: boolean;
|
|
715
|
+
supports_onvif: boolean;
|
|
686
716
|
};
|
|
687
717
|
}) | ({
|
|
688
718
|
description: string;
|
|
@@ -975,10 +1005,15 @@ export declare const routes: {
|
|
|
975
1005
|
main_category: "intercom";
|
|
976
1006
|
physical_properties: {
|
|
977
1007
|
has_camera: boolean;
|
|
1008
|
+
has_rfid_reader: boolean;
|
|
1009
|
+
has_nfc_reader: boolean;
|
|
1010
|
+
has_wiegand_interface: boolean;
|
|
978
1011
|
};
|
|
979
1012
|
software_features: {
|
|
980
1013
|
can_remotely_unlock: boolean;
|
|
981
1014
|
can_program_access_codes: boolean;
|
|
1015
|
+
can_unlock_with_face_recognition: boolean;
|
|
1016
|
+
supports_onvif: boolean;
|
|
982
1017
|
};
|
|
983
1018
|
}) | ({
|
|
984
1019
|
description: string;
|
|
@@ -1430,38 +1465,63 @@ export declare const routes: {
|
|
|
1430
1465
|
main_category: z.ZodLiteral<"intercom">;
|
|
1431
1466
|
physical_properties: z.ZodObject<{
|
|
1432
1467
|
has_camera: z.ZodBoolean;
|
|
1468
|
+
has_rfid_reader: z.ZodBoolean;
|
|
1469
|
+
has_nfc_reader: z.ZodBoolean;
|
|
1470
|
+
has_wiegand_interface: z.ZodBoolean;
|
|
1433
1471
|
}, "strip", z.ZodTypeAny, {
|
|
1434
1472
|
has_camera: boolean;
|
|
1473
|
+
has_rfid_reader: boolean;
|
|
1474
|
+
has_nfc_reader: boolean;
|
|
1475
|
+
has_wiegand_interface: boolean;
|
|
1435
1476
|
}, {
|
|
1436
1477
|
has_camera: boolean;
|
|
1478
|
+
has_rfid_reader: boolean;
|
|
1479
|
+
has_nfc_reader: boolean;
|
|
1480
|
+
has_wiegand_interface: boolean;
|
|
1437
1481
|
}>;
|
|
1438
1482
|
software_features: z.ZodObject<{
|
|
1439
1483
|
can_remotely_unlock: z.ZodBoolean;
|
|
1440
1484
|
can_program_access_codes: z.ZodBoolean;
|
|
1485
|
+
can_unlock_with_face_recognition: z.ZodBoolean;
|
|
1486
|
+
supports_onvif: z.ZodBoolean;
|
|
1441
1487
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1488
|
can_remotely_unlock: boolean;
|
|
1443
1489
|
can_program_access_codes: boolean;
|
|
1490
|
+
can_unlock_with_face_recognition: boolean;
|
|
1491
|
+
supports_onvif: boolean;
|
|
1444
1492
|
}, {
|
|
1445
1493
|
can_remotely_unlock: boolean;
|
|
1446
1494
|
can_program_access_codes: boolean;
|
|
1495
|
+
can_unlock_with_face_recognition: boolean;
|
|
1496
|
+
supports_onvif: boolean;
|
|
1447
1497
|
}>;
|
|
1448
1498
|
}, "strip", z.ZodTypeAny, {
|
|
1449
1499
|
main_category: "intercom";
|
|
1450
1500
|
physical_properties: {
|
|
1451
1501
|
has_camera: boolean;
|
|
1502
|
+
has_rfid_reader: boolean;
|
|
1503
|
+
has_nfc_reader: boolean;
|
|
1504
|
+
has_wiegand_interface: boolean;
|
|
1452
1505
|
};
|
|
1453
1506
|
software_features: {
|
|
1454
1507
|
can_remotely_unlock: boolean;
|
|
1455
1508
|
can_program_access_codes: boolean;
|
|
1509
|
+
can_unlock_with_face_recognition: boolean;
|
|
1510
|
+
supports_onvif: boolean;
|
|
1456
1511
|
};
|
|
1457
1512
|
}, {
|
|
1458
1513
|
main_category: "intercom";
|
|
1459
1514
|
physical_properties: {
|
|
1460
1515
|
has_camera: boolean;
|
|
1516
|
+
has_rfid_reader: boolean;
|
|
1517
|
+
has_nfc_reader: boolean;
|
|
1518
|
+
has_wiegand_interface: boolean;
|
|
1461
1519
|
};
|
|
1462
1520
|
software_features: {
|
|
1463
1521
|
can_remotely_unlock: boolean;
|
|
1464
1522
|
can_program_access_codes: boolean;
|
|
1523
|
+
can_unlock_with_face_recognition: boolean;
|
|
1524
|
+
supports_onvif: boolean;
|
|
1465
1525
|
};
|
|
1466
1526
|
}>, z.ZodObject<{
|
|
1467
1527
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -1553,10 +1613,15 @@ export declare const routes: {
|
|
|
1553
1613
|
main_category: "intercom";
|
|
1554
1614
|
physical_properties: {
|
|
1555
1615
|
has_camera: boolean;
|
|
1616
|
+
has_rfid_reader: boolean;
|
|
1617
|
+
has_nfc_reader: boolean;
|
|
1618
|
+
has_wiegand_interface: boolean;
|
|
1556
1619
|
};
|
|
1557
1620
|
software_features: {
|
|
1558
1621
|
can_remotely_unlock: boolean;
|
|
1559
1622
|
can_program_access_codes: boolean;
|
|
1623
|
+
can_unlock_with_face_recognition: boolean;
|
|
1624
|
+
supports_onvif: boolean;
|
|
1560
1625
|
};
|
|
1561
1626
|
} | {
|
|
1562
1627
|
main_category: "accessory";
|
|
@@ -1644,10 +1709,15 @@ export declare const routes: {
|
|
|
1644
1709
|
main_category: "intercom";
|
|
1645
1710
|
physical_properties: {
|
|
1646
1711
|
has_camera: boolean;
|
|
1712
|
+
has_rfid_reader: boolean;
|
|
1713
|
+
has_nfc_reader: boolean;
|
|
1714
|
+
has_wiegand_interface: boolean;
|
|
1647
1715
|
};
|
|
1648
1716
|
software_features: {
|
|
1649
1717
|
can_remotely_unlock: boolean;
|
|
1650
1718
|
can_program_access_codes: boolean;
|
|
1719
|
+
can_unlock_with_face_recognition: boolean;
|
|
1720
|
+
supports_onvif: boolean;
|
|
1651
1721
|
};
|
|
1652
1722
|
} | {
|
|
1653
1723
|
main_category: "accessory";
|
|
@@ -91,10 +91,15 @@ export interface Routes {
|
|
|
91
91
|
main_category: 'intercom';
|
|
92
92
|
physical_properties: {
|
|
93
93
|
has_camera: boolean;
|
|
94
|
+
has_rfid_reader: boolean;
|
|
95
|
+
has_nfc_reader: boolean;
|
|
96
|
+
has_wiegand_interface: boolean;
|
|
94
97
|
};
|
|
95
98
|
software_features: {
|
|
96
99
|
can_remotely_unlock: boolean;
|
|
97
100
|
can_program_access_codes: boolean;
|
|
101
|
+
can_unlock_with_face_recognition: boolean;
|
|
102
|
+
supports_onvif: boolean;
|
|
98
103
|
};
|
|
99
104
|
} | {
|
|
100
105
|
main_category: 'accessory';
|
|
@@ -197,10 +202,15 @@ export interface Routes {
|
|
|
197
202
|
main_category: 'intercom';
|
|
198
203
|
physical_properties: {
|
|
199
204
|
has_camera: boolean;
|
|
205
|
+
has_rfid_reader: boolean;
|
|
206
|
+
has_nfc_reader: boolean;
|
|
207
|
+
has_wiegand_interface: boolean;
|
|
200
208
|
};
|
|
201
209
|
software_features: {
|
|
202
210
|
can_remotely_unlock: boolean;
|
|
203
211
|
can_program_access_codes: boolean;
|
|
212
|
+
can_unlock_with_face_recognition: boolean;
|
|
213
|
+
supports_onvif: boolean;
|
|
204
214
|
};
|
|
205
215
|
} | {
|
|
206
216
|
main_category: 'accessory';
|
package/package.json
CHANGED
|
@@ -3229,6 +3229,87 @@ export default {
|
|
|
3229
3229
|
'x-fern-sdk-method-name': 'list',
|
|
3230
3230
|
},
|
|
3231
3231
|
},
|
|
3232
|
+
'/acs/credential_provisioning_automations/launch': {
|
|
3233
|
+
post: {
|
|
3234
|
+
operationId: 'acsCredentialProvisioningAutomationsLaunchPost',
|
|
3235
|
+
requestBody: {
|
|
3236
|
+
content: {
|
|
3237
|
+
'application/json': {
|
|
3238
|
+
schema: {
|
|
3239
|
+
properties: {
|
|
3240
|
+
acs_credential_pool_id: { format: 'uuid', type: 'string' },
|
|
3241
|
+
create_credential_manager_user: { type: 'boolean' },
|
|
3242
|
+
credential_manager_acs_system_id: {
|
|
3243
|
+
format: 'uuid',
|
|
3244
|
+
type: 'string',
|
|
3245
|
+
},
|
|
3246
|
+
credential_manager_acs_user_id: {
|
|
3247
|
+
format: 'uuid',
|
|
3248
|
+
type: 'string',
|
|
3249
|
+
},
|
|
3250
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
3251
|
+
},
|
|
3252
|
+
required: [
|
|
3253
|
+
'user_identity_id',
|
|
3254
|
+
'credential_manager_acs_system_id',
|
|
3255
|
+
],
|
|
3256
|
+
type: 'object',
|
|
3257
|
+
},
|
|
3258
|
+
},
|
|
3259
|
+
},
|
|
3260
|
+
},
|
|
3261
|
+
responses: {
|
|
3262
|
+
200: {
|
|
3263
|
+
content: {
|
|
3264
|
+
'application/json': {
|
|
3265
|
+
schema: {
|
|
3266
|
+
properties: {
|
|
3267
|
+
acs_credential_provisioning_automation: {
|
|
3268
|
+
properties: {
|
|
3269
|
+
acs_credential_provisioning_automation_id: {
|
|
3270
|
+
format: 'uuid',
|
|
3271
|
+
type: 'string',
|
|
3272
|
+
},
|
|
3273
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
3274
|
+
credential_manager_acs_system_id: {
|
|
3275
|
+
format: 'uuid',
|
|
3276
|
+
type: 'string',
|
|
3277
|
+
},
|
|
3278
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
3279
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
3280
|
+
},
|
|
3281
|
+
required: [
|
|
3282
|
+
'acs_credential_provisioning_automation_id',
|
|
3283
|
+
'credential_manager_acs_system_id',
|
|
3284
|
+
'user_identity_id',
|
|
3285
|
+
'created_at',
|
|
3286
|
+
'workspace_id',
|
|
3287
|
+
],
|
|
3288
|
+
type: 'object',
|
|
3289
|
+
},
|
|
3290
|
+
ok: { type: 'boolean' },
|
|
3291
|
+
},
|
|
3292
|
+
required: ['acs_credential_provisioning_automation', 'ok'],
|
|
3293
|
+
type: 'object',
|
|
3294
|
+
},
|
|
3295
|
+
},
|
|
3296
|
+
},
|
|
3297
|
+
description: 'OK',
|
|
3298
|
+
},
|
|
3299
|
+
400: { description: 'Bad Request' },
|
|
3300
|
+
401: { description: 'Unauthorized' },
|
|
3301
|
+
},
|
|
3302
|
+
security: [
|
|
3303
|
+
{ access_token: [], seam_workspace: [] },
|
|
3304
|
+
{ seam_client_session_token: [] },
|
|
3305
|
+
{ client_session_token: [] },
|
|
3306
|
+
],
|
|
3307
|
+
summary: '/acs/credential_provisioning_automations/launch',
|
|
3308
|
+
tags: [],
|
|
3309
|
+
'x-fern-sdk-group-name': ['acs', 'credential_provisioning_automations'],
|
|
3310
|
+
'x-fern-sdk-method-name': 'launch',
|
|
3311
|
+
},
|
|
3312
|
+
},
|
|
3232
3313
|
'/acs/credentials/assign': {
|
|
3233
3314
|
patch: {
|
|
3234
3315
|
operationId: 'acsCredentialsAssignPatch',
|
|
@@ -776,6 +776,29 @@ export interface Routes {
|
|
|
776
776
|
}>
|
|
777
777
|
}
|
|
778
778
|
}
|
|
779
|
+
'/acs/credential_provisioning_automations/launch': {
|
|
780
|
+
route: '/acs/credential_provisioning_automations/launch'
|
|
781
|
+
method: 'POST'
|
|
782
|
+
queryParams: {}
|
|
783
|
+
jsonBody: {}
|
|
784
|
+
commonParams: {
|
|
785
|
+
user_identity_id: string
|
|
786
|
+
credential_manager_acs_system_id: string
|
|
787
|
+
acs_credential_pool_id?: string | undefined
|
|
788
|
+
create_credential_manager_user?: boolean | undefined
|
|
789
|
+
credential_manager_acs_user_id?: string | undefined
|
|
790
|
+
}
|
|
791
|
+
formData: {}
|
|
792
|
+
jsonResponse: {
|
|
793
|
+
acs_credential_provisioning_automation: {
|
|
794
|
+
acs_credential_provisioning_automation_id: string
|
|
795
|
+
credential_manager_acs_system_id: string
|
|
796
|
+
user_identity_id: string
|
|
797
|
+
created_at: string
|
|
798
|
+
workspace_id: string
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
}
|
|
779
802
|
'/acs/credentials/assign': {
|
|
780
803
|
route: '/acs/credentials/assign'
|
|
781
804
|
method: 'PATCH' | 'POST'
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const acs_credential_provisioning_automation = z.object({
|
|
4
|
+
acs_credential_provisioning_automation_id: z.string().uuid(),
|
|
5
|
+
credential_manager_acs_system_id: z.string().uuid(),
|
|
6
|
+
user_identity_id: z.string().uuid(),
|
|
7
|
+
created_at: z.string().datetime(),
|
|
8
|
+
workspace_id: z.string().uuid(),
|
|
9
|
+
})
|
|
10
|
+
|
|
11
|
+
export type AcsCredentialProvisioningAutomation = z.output<
|
|
12
|
+
typeof acs_credential_provisioning_automation
|
|
13
|
+
>
|