@seamapi/types 1.574.0 → 1.575.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.
@@ -76444,7 +76444,9 @@ export type Routes = {
76444
76444
  jsonBody: {};
76445
76445
  commonParams: {
76446
76446
  /** ID of the user identity to which you want to add an access system user. */
76447
- user_identity_id: string;
76447
+ user_identity_id?: string | undefined;
76448
+ /** Key of the user identity to which you want to add an access system user. */
76449
+ user_identity_key?: string | undefined;
76448
76450
  /** ID of the access system user that you want to add to the user identity. */
76449
76451
  acs_user_id: string;
76450
76452
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.574.0",
3
+ "version": "1.575.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -56509,8 +56509,13 @@ export default {
56509
56509
  format: 'uuid',
56510
56510
  type: 'string',
56511
56511
  },
56512
+ user_identity_key: {
56513
+ description:
56514
+ 'Key of the user identity to which you want to add an access system user.',
56515
+ type: 'string',
56516
+ },
56512
56517
  },
56513
- required: ['user_identity_id', 'acs_user_id'],
56518
+ required: ['acs_user_id'],
56514
56519
  type: 'object',
56515
56520
  },
56516
56521
  },
@@ -56565,8 +56570,13 @@ export default {
56565
56570
  format: 'uuid',
56566
56571
  type: 'string',
56567
56572
  },
56573
+ user_identity_key: {
56574
+ description:
56575
+ 'Key of the user identity to which you want to add an access system user.',
56576
+ type: 'string',
56577
+ },
56568
56578
  },
56569
- required: ['user_identity_id', 'acs_user_id'],
56579
+ required: ['acs_user_id'],
56570
56580
  type: 'object',
56571
56581
  },
56572
56582
  },
@@ -90854,7 +90854,9 @@ export type Routes = {
90854
90854
  jsonBody: {}
90855
90855
  commonParams: {
90856
90856
  /** ID of the user identity to which you want to add an access system user. */
90857
- user_identity_id: string
90857
+ user_identity_id?: string | undefined
90858
+ /** Key of the user identity to which you want to add an access system user. */
90859
+ user_identity_key?: string | undefined
90858
90860
  /** ID of the access system user that you want to add to the user identity. */
90859
90861
  acs_user_id: string
90860
90862
  }