@seamapi/types 1.398.0 → 1.399.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 +12 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -2
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +12 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -2
- package/src/lib/seam/connect/route-types.ts +6 -2
package/dist/connect.d.cts
CHANGED
|
@@ -34712,6 +34712,11 @@ declare const _default: {
|
|
|
34712
34712
|
enum: string[];
|
|
34713
34713
|
type: string;
|
|
34714
34714
|
};
|
|
34715
|
+
acs_system_id: {
|
|
34716
|
+
description: string;
|
|
34717
|
+
format: string;
|
|
34718
|
+
type: string;
|
|
34719
|
+
};
|
|
34715
34720
|
acs_user_id: {
|
|
34716
34721
|
description: string;
|
|
34717
34722
|
format: string;
|
|
@@ -34785,6 +34790,11 @@ declare const _default: {
|
|
|
34785
34790
|
format: string;
|
|
34786
34791
|
type: string;
|
|
34787
34792
|
};
|
|
34793
|
+
user_identity_id: {
|
|
34794
|
+
description: string;
|
|
34795
|
+
format: string;
|
|
34796
|
+
type: string;
|
|
34797
|
+
};
|
|
34788
34798
|
visionline_metadata: {
|
|
34789
34799
|
description: string;
|
|
34790
34800
|
properties: {
|
|
@@ -61783,8 +61793,12 @@ interface Routes {
|
|
|
61783
61793
|
commonParams: {
|
|
61784
61794
|
/** ACS system ID of the credential manager for the new credential. */
|
|
61785
61795
|
credential_manager_acs_system_id?: string | undefined;
|
|
61786
|
-
/** ID of the ACS user to whom the new credential belongs. */
|
|
61787
|
-
acs_user_id
|
|
61796
|
+
/** ID of the ACS user to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. */
|
|
61797
|
+
acs_user_id?: string | undefined;
|
|
61798
|
+
/** ID of the user identity to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. If the ACS system contains an ACS user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the credential belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created. */
|
|
61799
|
+
user_identity_id?: string | undefined;
|
|
61800
|
+
/** ID of the ACS system to which the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. */
|
|
61801
|
+
acs_system_id?: string | undefined;
|
|
61788
61802
|
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
61789
61803
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
61790
61804
|
/** Access (PIN) code for the new credential. There may be manufacturer-specific code restrictions. For details, see the applicable [device or system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview). */
|
|
@@ -13349,6 +13349,11 @@ declare const _default: {
|
|
|
13349
13349
|
enum: string[];
|
|
13350
13350
|
type: string;
|
|
13351
13351
|
};
|
|
13352
|
+
acs_system_id: {
|
|
13353
|
+
description: string;
|
|
13354
|
+
format: string;
|
|
13355
|
+
type: string;
|
|
13356
|
+
};
|
|
13352
13357
|
acs_user_id: {
|
|
13353
13358
|
description: string;
|
|
13354
13359
|
format: string;
|
|
@@ -13422,6 +13427,11 @@ declare const _default: {
|
|
|
13422
13427
|
format: string;
|
|
13423
13428
|
type: string;
|
|
13424
13429
|
};
|
|
13430
|
+
user_identity_id: {
|
|
13431
|
+
description: string;
|
|
13432
|
+
format: string;
|
|
13433
|
+
type: string;
|
|
13434
|
+
};
|
|
13425
13435
|
visionline_metadata: {
|
|
13426
13436
|
description: string;
|
|
13427
13437
|
properties: {
|
|
@@ -19783,8 +19783,13 @@ export default {
|
|
|
19783
19783
|
enum: ['code', 'card', 'mobile_key'],
|
|
19784
19784
|
type: 'string',
|
|
19785
19785
|
},
|
|
19786
|
+
acs_system_id: {
|
|
19787
|
+
description: 'ID of the ACS system to which the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`.',
|
|
19788
|
+
format: 'uuid',
|
|
19789
|
+
type: 'string',
|
|
19790
|
+
},
|
|
19786
19791
|
acs_user_id: {
|
|
19787
|
-
description: 'ID of the ACS user to whom the new credential belongs.',
|
|
19792
|
+
description: 'ID of the ACS user to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`.',
|
|
19788
19793
|
format: 'uuid',
|
|
19789
19794
|
type: 'string',
|
|
19790
19795
|
},
|
|
@@ -19840,6 +19845,11 @@ export default {
|
|
|
19840
19845
|
format: 'date-time',
|
|
19841
19846
|
type: 'string',
|
|
19842
19847
|
},
|
|
19848
|
+
user_identity_id: {
|
|
19849
|
+
description: 'ID of the user identity to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. If the ACS system contains an ACS user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the credential belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.',
|
|
19850
|
+
format: 'uuid',
|
|
19851
|
+
type: 'string',
|
|
19852
|
+
},
|
|
19843
19853
|
visionline_metadata: {
|
|
19844
19854
|
description: 'Visionline-specific metadata for the new credential.',
|
|
19845
19855
|
properties: {
|
|
@@ -19875,7 +19885,7 @@ export default {
|
|
|
19875
19885
|
type: 'object',
|
|
19876
19886
|
},
|
|
19877
19887
|
},
|
|
19878
|
-
required: ['
|
|
19888
|
+
required: ['access_method'],
|
|
19879
19889
|
type: 'object',
|
|
19880
19890
|
},
|
|
19881
19891
|
},
|