@seamapi/types 1.399.1 → 1.401.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 +28 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -4
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +28 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -8
- package/src/lib/seam/connect/route-types.ts +8 -4
package/dist/connect.d.cts
CHANGED
|
@@ -33769,6 +33769,11 @@ declare const _default: {
|
|
|
33769
33769
|
format: string;
|
|
33770
33770
|
type: string;
|
|
33771
33771
|
};
|
|
33772
|
+
user_identity_id: {
|
|
33773
|
+
description: string;
|
|
33774
|
+
format: string;
|
|
33775
|
+
type: string;
|
|
33776
|
+
};
|
|
33772
33777
|
};
|
|
33773
33778
|
required: string[];
|
|
33774
33779
|
type: string;
|
|
@@ -33838,6 +33843,11 @@ declare const _default: {
|
|
|
33838
33843
|
format: string;
|
|
33839
33844
|
type: string;
|
|
33840
33845
|
};
|
|
33846
|
+
user_identity_id: {
|
|
33847
|
+
description: string;
|
|
33848
|
+
format: string;
|
|
33849
|
+
type: string;
|
|
33850
|
+
};
|
|
33841
33851
|
};
|
|
33842
33852
|
required: string[];
|
|
33843
33853
|
type: string;
|
|
@@ -34597,6 +34607,11 @@ declare const _default: {
|
|
|
34597
34607
|
format: string;
|
|
34598
34608
|
type: string;
|
|
34599
34609
|
};
|
|
34610
|
+
user_identity_id: {
|
|
34611
|
+
description: string;
|
|
34612
|
+
format: string;
|
|
34613
|
+
type: string;
|
|
34614
|
+
};
|
|
34600
34615
|
};
|
|
34601
34616
|
required: string[];
|
|
34602
34617
|
type: string;
|
|
@@ -34668,6 +34683,11 @@ declare const _default: {
|
|
|
34668
34683
|
format: string;
|
|
34669
34684
|
type: string;
|
|
34670
34685
|
};
|
|
34686
|
+
user_identity_id: {
|
|
34687
|
+
description: string;
|
|
34688
|
+
format: string;
|
|
34689
|
+
type: string;
|
|
34690
|
+
};
|
|
34671
34691
|
};
|
|
34672
34692
|
required: string[];
|
|
34673
34693
|
type: string;
|
|
@@ -61577,8 +61597,10 @@ interface Routes {
|
|
|
61577
61597
|
commonParams: {
|
|
61578
61598
|
/** ID of the access group to which you want to add an access system user. */
|
|
61579
61599
|
acs_access_group_id: string;
|
|
61580
|
-
/** ID of the access system user that you want to add to an access group. */
|
|
61581
|
-
acs_user_id
|
|
61600
|
+
/** ID of the access system user that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id. */
|
|
61601
|
+
acs_user_id?: string | undefined;
|
|
61602
|
+
/** ID of the desired user identity that you want to add to an access group. You can only provide one of acs_user_id or user_identity_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 access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created. */
|
|
61603
|
+
user_identity_id?: string | undefined;
|
|
61582
61604
|
};
|
|
61583
61605
|
formData: {};
|
|
61584
61606
|
jsonResponse: {};
|
|
@@ -62121,8 +62143,10 @@ interface Routes {
|
|
|
62121
62143
|
method: 'PATCH' | 'POST';
|
|
62122
62144
|
queryParams: {};
|
|
62123
62145
|
jsonBody: {
|
|
62124
|
-
/** ID of the access system user to whom you want to assign a credential. */
|
|
62125
|
-
acs_user_id
|
|
62146
|
+
/** ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id. */
|
|
62147
|
+
acs_user_id?: string | undefined;
|
|
62148
|
+
/** ID of the user identity to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_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. */
|
|
62149
|
+
user_identity_id?: string | undefined;
|
|
62126
62150
|
/** ID of the credential that you want to assign to an access system user. */
|
|
62127
62151
|
acs_credential_id: string;
|
|
62128
62152
|
};
|
|
@@ -12406,6 +12406,11 @@ declare const _default: {
|
|
|
12406
12406
|
format: string;
|
|
12407
12407
|
type: string;
|
|
12408
12408
|
};
|
|
12409
|
+
user_identity_id: {
|
|
12410
|
+
description: string;
|
|
12411
|
+
format: string;
|
|
12412
|
+
type: string;
|
|
12413
|
+
};
|
|
12409
12414
|
};
|
|
12410
12415
|
required: string[];
|
|
12411
12416
|
type: string;
|
|
@@ -12475,6 +12480,11 @@ declare const _default: {
|
|
|
12475
12480
|
format: string;
|
|
12476
12481
|
type: string;
|
|
12477
12482
|
};
|
|
12483
|
+
user_identity_id: {
|
|
12484
|
+
description: string;
|
|
12485
|
+
format: string;
|
|
12486
|
+
type: string;
|
|
12487
|
+
};
|
|
12478
12488
|
};
|
|
12479
12489
|
required: string[];
|
|
12480
12490
|
type: string;
|
|
@@ -13234,6 +13244,11 @@ declare const _default: {
|
|
|
13234
13244
|
format: string;
|
|
13235
13245
|
type: string;
|
|
13236
13246
|
};
|
|
13247
|
+
user_identity_id: {
|
|
13248
|
+
description: string;
|
|
13249
|
+
format: string;
|
|
13250
|
+
type: string;
|
|
13251
|
+
};
|
|
13237
13252
|
};
|
|
13238
13253
|
required: string[];
|
|
13239
13254
|
type: string;
|
|
@@ -13305,6 +13320,11 @@ declare const _default: {
|
|
|
13305
13320
|
format: string;
|
|
13306
13321
|
type: string;
|
|
13307
13322
|
};
|
|
13323
|
+
user_identity_id: {
|
|
13324
|
+
description: string;
|
|
13325
|
+
format: string;
|
|
13326
|
+
type: string;
|
|
13327
|
+
};
|
|
13308
13328
|
};
|
|
13309
13329
|
required: string[];
|
|
13310
13330
|
type: string;
|
|
@@ -19043,12 +19043,17 @@ export default {
|
|
|
19043
19043
|
type: 'string',
|
|
19044
19044
|
},
|
|
19045
19045
|
acs_user_id: {
|
|
19046
|
-
description: 'ID of the access system user that you want to add to an access group.',
|
|
19046
|
+
description: 'ID of the access system user that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id.',
|
|
19047
|
+
format: 'uuid',
|
|
19048
|
+
type: 'string',
|
|
19049
|
+
},
|
|
19050
|
+
user_identity_id: {
|
|
19051
|
+
description: 'ID of the desired user identity that you want to add to an access group. You can only provide one of acs_user_id or user_identity_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 access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.',
|
|
19047
19052
|
format: 'uuid',
|
|
19048
19053
|
type: 'string',
|
|
19049
19054
|
},
|
|
19050
19055
|
},
|
|
19051
|
-
required: ['acs_access_group_id'
|
|
19056
|
+
required: ['acs_access_group_id'],
|
|
19052
19057
|
type: 'object',
|
|
19053
19058
|
},
|
|
19054
19059
|
},
|
|
@@ -19096,12 +19101,17 @@ export default {
|
|
|
19096
19101
|
type: 'string',
|
|
19097
19102
|
},
|
|
19098
19103
|
acs_user_id: {
|
|
19099
|
-
description: 'ID of the access system user that you want to add to an access group.',
|
|
19104
|
+
description: 'ID of the access system user that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id.',
|
|
19105
|
+
format: 'uuid',
|
|
19106
|
+
type: 'string',
|
|
19107
|
+
},
|
|
19108
|
+
user_identity_id: {
|
|
19109
|
+
description: 'ID of the desired user identity that you want to add to an access group. You can only provide one of acs_user_id or user_identity_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 access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.',
|
|
19100
19110
|
format: 'uuid',
|
|
19101
19111
|
type: 'string',
|
|
19102
19112
|
},
|
|
19103
19113
|
},
|
|
19104
|
-
required: ['acs_access_group_id'
|
|
19114
|
+
required: ['acs_access_group_id'],
|
|
19105
19115
|
type: 'object',
|
|
19106
19116
|
},
|
|
19107
19117
|
},
|
|
@@ -19708,12 +19718,17 @@ export default {
|
|
|
19708
19718
|
type: 'string',
|
|
19709
19719
|
},
|
|
19710
19720
|
acs_user_id: {
|
|
19711
|
-
description: 'ID of the access system user to whom you want to assign a credential.',
|
|
19721
|
+
description: 'ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id.',
|
|
19722
|
+
format: 'uuid',
|
|
19723
|
+
type: 'string',
|
|
19724
|
+
},
|
|
19725
|
+
user_identity_id: {
|
|
19726
|
+
description: 'ID of the user identity to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_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.',
|
|
19712
19727
|
format: 'uuid',
|
|
19713
19728
|
type: 'string',
|
|
19714
19729
|
},
|
|
19715
19730
|
},
|
|
19716
|
-
required: ['
|
|
19731
|
+
required: ['acs_credential_id'],
|
|
19717
19732
|
type: 'object',
|
|
19718
19733
|
},
|
|
19719
19734
|
},
|
|
@@ -19765,12 +19780,17 @@ export default {
|
|
|
19765
19780
|
type: 'string',
|
|
19766
19781
|
},
|
|
19767
19782
|
acs_user_id: {
|
|
19768
|
-
description: 'ID of the access system user to whom you want to assign a credential.',
|
|
19783
|
+
description: 'ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id.',
|
|
19784
|
+
format: 'uuid',
|
|
19785
|
+
type: 'string',
|
|
19786
|
+
},
|
|
19787
|
+
user_identity_id: {
|
|
19788
|
+
description: 'ID of the user identity to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_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.',
|
|
19769
19789
|
format: 'uuid',
|
|
19770
19790
|
type: 'string',
|
|
19771
19791
|
},
|
|
19772
19792
|
},
|
|
19773
|
-
required: ['
|
|
19793
|
+
required: ['acs_credential_id'],
|
|
19774
19794
|
type: 'object',
|
|
19775
19795
|
},
|
|
19776
19796
|
},
|