@seamapi/types 1.400.0 → 1.401.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.
@@ -34607,6 +34607,11 @@ declare const _default: {
34607
34607
  format: string;
34608
34608
  type: string;
34609
34609
  };
34610
+ user_identity_id: {
34611
+ description: string;
34612
+ format: string;
34613
+ type: string;
34614
+ };
34610
34615
  };
34611
34616
  required: string[];
34612
34617
  type: string;
@@ -34678,6 +34683,11 @@ declare const _default: {
34678
34683
  format: string;
34679
34684
  type: string;
34680
34685
  };
34686
+ user_identity_id: {
34687
+ description: string;
34688
+ format: string;
34689
+ type: string;
34690
+ };
34681
34691
  };
34682
34692
  required: string[];
34683
34693
  type: string;
@@ -62133,8 +62143,10 @@ interface Routes {
62133
62143
  method: 'PATCH' | 'POST';
62134
62144
  queryParams: {};
62135
62145
  jsonBody: {
62136
- /** ID of the access system user to whom you want to assign a credential. */
62137
- acs_user_id: string;
62146
+ /** ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id. */
62147
+ acs_user_id?: string | undefined;
62148
+ /** ID of the user identity to whom you want to assign a credential. 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 credential belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created. */
62149
+ user_identity_id?: string | undefined;
62138
62150
  /** ID of the credential that you want to assign to an access system user. */
62139
62151
  acs_credential_id: string;
62140
62152
  };
@@ -13244,6 +13244,11 @@ declare const _default: {
13244
13244
  format: string;
13245
13245
  type: string;
13246
13246
  };
13247
+ user_identity_id: {
13248
+ description: string;
13249
+ format: string;
13250
+ type: string;
13251
+ };
13247
13252
  };
13248
13253
  required: string[];
13249
13254
  type: string;
@@ -13315,6 +13320,11 @@ declare const _default: {
13315
13320
  format: string;
13316
13321
  type: string;
13317
13322
  };
13323
+ user_identity_id: {
13324
+ description: string;
13325
+ format: string;
13326
+ type: string;
13327
+ };
13318
13328
  };
13319
13329
  required: string[];
13320
13330
  type: string;
@@ -19718,12 +19718,17 @@ export default {
19718
19718
  type: 'string',
19719
19719
  },
19720
19720
  acs_user_id: {
19721
- description: 'ID of the access system user to whom you want to assign a credential.',
19721
+ description: 'ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id.',
19722
+ format: 'uuid',
19723
+ type: 'string',
19724
+ },
19725
+ user_identity_id: {
19726
+ description: 'ID of the user identity to whom you want to assign a credential. 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 credential belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.',
19722
19727
  format: 'uuid',
19723
19728
  type: 'string',
19724
19729
  },
19725
19730
  },
19726
- required: ['acs_user_id', 'acs_credential_id'],
19731
+ required: ['acs_credential_id'],
19727
19732
  type: 'object',
19728
19733
  },
19729
19734
  },
@@ -19775,12 +19780,17 @@ export default {
19775
19780
  type: 'string',
19776
19781
  },
19777
19782
  acs_user_id: {
19778
- description: 'ID of the access system user to whom you want to assign a credential.',
19783
+ description: 'ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id.',
19784
+ format: 'uuid',
19785
+ type: 'string',
19786
+ },
19787
+ user_identity_id: {
19788
+ description: 'ID of the user identity to whom you want to assign a credential. 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 credential belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.',
19779
19789
  format: 'uuid',
19780
19790
  type: 'string',
19781
19791
  },
19782
19792
  },
19783
- required: ['acs_user_id', 'acs_credential_id'],
19793
+ required: ['acs_credential_id'],
19784
19794
  type: 'object',
19785
19795
  },
19786
19796
  },