@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.
@@ -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: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.397.0",
3
+ "version": "1.398.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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', 'acs_user_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: string
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: {}