@seamapi/types 1.399.1 → 1.400.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 +14 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -2
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +14 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -4
- package/src/lib/seam/connect/route-types.ts +4 -2
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;
|
|
@@ -61577,8 +61587,10 @@ interface Routes {
|
|
|
61577
61587
|
commonParams: {
|
|
61578
61588
|
/** ID of the access group to which you want to add an access system user. */
|
|
61579
61589
|
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
|
|
61590
|
+
/** 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. */
|
|
61591
|
+
acs_user_id?: string | undefined;
|
|
61592
|
+
/** 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. */
|
|
61593
|
+
user_identity_id?: string | undefined;
|
|
61582
61594
|
};
|
|
61583
61595
|
formData: {};
|
|
61584
61596
|
jsonResponse: {};
|
|
@@ -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;
|
|
@@ -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
|
},
|