@seamapi/types 1.397.0 → 1.398.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 +6 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +6 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -1
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -9197,7 +9197,9 @@ export interface Routes {
|
|
|
9197
9197
|
/** ID of the desired access group. */
|
|
9198
9198
|
acs_access_group_id: string;
|
|
9199
9199
|
/** ID of the desired user. */
|
|
9200
|
-
acs_user_id
|
|
9200
|
+
acs_user_id?: string | undefined;
|
|
9201
|
+
/** ID of the desired user identity. */
|
|
9202
|
+
user_identity_id?: string | undefined;
|
|
9201
9203
|
};
|
|
9202
9204
|
formData: {};
|
|
9203
9205
|
jsonResponse: {};
|
package/package.json
CHANGED
|
@@ -21165,8 +21165,13 @@ export default {
|
|
|
21165
21165
|
format: 'uuid',
|
|
21166
21166
|
type: 'string',
|
|
21167
21167
|
},
|
|
21168
|
+
user_identity_id: {
|
|
21169
|
+
description: 'ID of the desired user identity.',
|
|
21170
|
+
format: 'uuid',
|
|
21171
|
+
type: 'string',
|
|
21172
|
+
},
|
|
21168
21173
|
},
|
|
21169
|
-
required: ['acs_access_group_id'
|
|
21174
|
+
required: ['acs_access_group_id'],
|
|
21170
21175
|
type: 'object',
|
|
21171
21176
|
},
|
|
21172
21177
|
},
|
|
@@ -10519,7 +10519,9 @@ export interface Routes {
|
|
|
10519
10519
|
/** ID of the desired access group. */
|
|
10520
10520
|
acs_access_group_id: string
|
|
10521
10521
|
/** ID of the desired user. */
|
|
10522
|
-
acs_user_id
|
|
10522
|
+
acs_user_id?: string | undefined
|
|
10523
|
+
/** ID of the desired user identity. */
|
|
10524
|
+
user_identity_id?: string | undefined
|
|
10523
10525
|
}
|
|
10524
10526
|
formData: {}
|
|
10525
10527
|
jsonResponse: {}
|