@seamapi/types 1.397.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 +18 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -3
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +18 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +20 -3
- package/src/lib/seam/connect/route-types.ts +9 -3
package/dist/connect.d.cts
CHANGED
|
@@ -34193,6 +34193,11 @@ declare const _default: {
|
|
|
34193
34193
|
format: string;
|
|
34194
34194
|
type: string;
|
|
34195
34195
|
};
|
|
34196
|
+
user_identity_id: {
|
|
34197
|
+
description: string;
|
|
34198
|
+
format: string;
|
|
34199
|
+
type: string;
|
|
34200
|
+
};
|
|
34196
34201
|
};
|
|
34197
34202
|
required: string[];
|
|
34198
34203
|
type: string;
|
|
@@ -34707,6 +34712,11 @@ declare const _default: {
|
|
|
34707
34712
|
enum: string[];
|
|
34708
34713
|
type: string;
|
|
34709
34714
|
};
|
|
34715
|
+
acs_system_id: {
|
|
34716
|
+
description: string;
|
|
34717
|
+
format: string;
|
|
34718
|
+
type: string;
|
|
34719
|
+
};
|
|
34710
34720
|
acs_user_id: {
|
|
34711
34721
|
description: string;
|
|
34712
34722
|
format: string;
|
|
@@ -34780,6 +34790,11 @@ declare const _default: {
|
|
|
34780
34790
|
format: string;
|
|
34781
34791
|
type: string;
|
|
34782
34792
|
};
|
|
34793
|
+
user_identity_id: {
|
|
34794
|
+
description: string;
|
|
34795
|
+
format: string;
|
|
34796
|
+
type: string;
|
|
34797
|
+
};
|
|
34783
34798
|
visionline_metadata: {
|
|
34784
34799
|
description: string;
|
|
34785
34800
|
properties: {
|
|
@@ -61490,7 +61505,9 @@ interface Routes {
|
|
|
61490
61505
|
/** ID of the desired access group. */
|
|
61491
61506
|
acs_access_group_id: string;
|
|
61492
61507
|
/** ID of the desired user. */
|
|
61493
|
-
acs_user_id
|
|
61508
|
+
acs_user_id?: string | undefined;
|
|
61509
|
+
/** ID of the desired user identity. */
|
|
61510
|
+
user_identity_id?: string | undefined;
|
|
61494
61511
|
};
|
|
61495
61512
|
formData: {};
|
|
61496
61513
|
jsonResponse: {};
|
|
@@ -61776,8 +61793,12 @@ interface Routes {
|
|
|
61776
61793
|
commonParams: {
|
|
61777
61794
|
/** ACS system ID of the credential manager for the new credential. */
|
|
61778
61795
|
credential_manager_acs_system_id?: string | undefined;
|
|
61779
|
-
/** ID of the ACS user to whom the new credential belongs. */
|
|
61780
|
-
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;
|
|
61781
61802
|
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
61782
61803
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
61783
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). */
|
|
@@ -12830,6 +12830,11 @@ declare const _default: {
|
|
|
12830
12830
|
format: string;
|
|
12831
12831
|
type: string;
|
|
12832
12832
|
};
|
|
12833
|
+
user_identity_id: {
|
|
12834
|
+
description: string;
|
|
12835
|
+
format: string;
|
|
12836
|
+
type: string;
|
|
12837
|
+
};
|
|
12833
12838
|
};
|
|
12834
12839
|
required: string[];
|
|
12835
12840
|
type: string;
|
|
@@ -13344,6 +13349,11 @@ declare const _default: {
|
|
|
13344
13349
|
enum: string[];
|
|
13345
13350
|
type: string;
|
|
13346
13351
|
};
|
|
13352
|
+
acs_system_id: {
|
|
13353
|
+
description: string;
|
|
13354
|
+
format: string;
|
|
13355
|
+
type: string;
|
|
13356
|
+
};
|
|
13347
13357
|
acs_user_id: {
|
|
13348
13358
|
description: string;
|
|
13349
13359
|
format: string;
|
|
@@ -13417,6 +13427,11 @@ declare const _default: {
|
|
|
13417
13427
|
format: string;
|
|
13418
13428
|
type: string;
|
|
13419
13429
|
};
|
|
13430
|
+
user_identity_id: {
|
|
13431
|
+
description: string;
|
|
13432
|
+
format: string;
|
|
13433
|
+
type: string;
|
|
13434
|
+
};
|
|
13420
13435
|
visionline_metadata: {
|
|
13421
13436
|
description: string;
|
|
13422
13437
|
properties: {
|
|
@@ -19372,8 +19372,13 @@ export default {
|
|
|
19372
19372
|
format: 'uuid',
|
|
19373
19373
|
type: 'string',
|
|
19374
19374
|
},
|
|
19375
|
+
user_identity_id: {
|
|
19376
|
+
description: 'ID of the desired user identity.',
|
|
19377
|
+
format: 'uuid',
|
|
19378
|
+
type: 'string',
|
|
19379
|
+
},
|
|
19375
19380
|
},
|
|
19376
|
-
required: ['acs_access_group_id'
|
|
19381
|
+
required: ['acs_access_group_id'],
|
|
19377
19382
|
type: 'object',
|
|
19378
19383
|
},
|
|
19379
19384
|
},
|
|
@@ -19778,8 +19783,13 @@ export default {
|
|
|
19778
19783
|
enum: ['code', 'card', 'mobile_key'],
|
|
19779
19784
|
type: 'string',
|
|
19780
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
|
+
},
|
|
19781
19791
|
acs_user_id: {
|
|
19782
|
-
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`.',
|
|
19783
19793
|
format: 'uuid',
|
|
19784
19794
|
type: 'string',
|
|
19785
19795
|
},
|
|
@@ -19835,6 +19845,11 @@ export default {
|
|
|
19835
19845
|
format: 'date-time',
|
|
19836
19846
|
type: 'string',
|
|
19837
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
|
+
},
|
|
19838
19853
|
visionline_metadata: {
|
|
19839
19854
|
description: 'Visionline-specific metadata for the new credential.',
|
|
19840
19855
|
properties: {
|
|
@@ -19870,7 +19885,7 @@ export default {
|
|
|
19870
19885
|
type: 'object',
|
|
19871
19886
|
},
|
|
19872
19887
|
},
|
|
19873
|
-
required: ['
|
|
19888
|
+
required: ['access_method'],
|
|
19874
19889
|
type: 'object',
|
|
19875
19890
|
},
|
|
19876
19891
|
},
|