@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.
@@ -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;
@@ -61490,7 +61495,9 @@ interface Routes {
61490
61495
  /** ID of the desired access group. */
61491
61496
  acs_access_group_id: string;
61492
61497
  /** ID of the desired user. */
61493
- acs_user_id: string;
61498
+ acs_user_id?: string | undefined;
61499
+ /** ID of the desired user identity. */
61500
+ user_identity_id?: string | undefined;
61494
61501
  };
61495
61502
  formData: {};
61496
61503
  jsonResponse: {};
@@ -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;
@@ -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', 'acs_user_id'],
19381
+ required: ['acs_access_group_id'],
19377
19382
  type: 'object',
19378
19383
  },
19379
19384
  },