@seamapi/types 1.403.0 → 1.404.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.
@@ -15722,8 +15722,12 @@ export interface Routes {
15722
15722
  queryParams: {};
15723
15723
  jsonBody: {};
15724
15724
  commonParams: {
15725
- /** ID of the access system user for whom you want to list accessible entrances. */
15726
- acs_user_id: string;
15725
+ /** ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
15726
+ acs_user_id?: string | undefined;
15727
+ /** ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
15728
+ user_identity_id?: string | undefined;
15729
+ /** ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id. */
15730
+ acs_system_id?: string | undefined;
15727
15731
  };
15728
15732
  formData: {};
15729
15733
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.403.0",
3
+ "version": "1.404.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -24880,14 +24880,25 @@ export default {
24880
24880
  'application/json': {
24881
24881
  schema: {
24882
24882
  properties: {
24883
+ acs_system_id: {
24884
+ description:
24885
+ 'ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id.',
24886
+ format: 'uuid',
24887
+ type: 'string',
24888
+ },
24883
24889
  acs_user_id: {
24884
24890
  description:
24885
- 'ID of the access system user for whom you want to list accessible entrances.',
24891
+ 'ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.',
24892
+ format: 'uuid',
24893
+ type: 'string',
24894
+ },
24895
+ user_identity_id: {
24896
+ description:
24897
+ 'ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.',
24886
24898
  format: 'uuid',
24887
24899
  type: 'string',
24888
24900
  },
24889
24901
  },
24890
- required: ['acs_user_id'],
24891
24902
  type: 'object',
24892
24903
  },
24893
24904
  },
@@ -18230,8 +18230,12 @@ export interface Routes {
18230
18230
  queryParams: {}
18231
18231
  jsonBody: {}
18232
18232
  commonParams: {
18233
- /** ID of the access system user for whom you want to list accessible entrances. */
18234
- acs_user_id: string
18233
+ /** ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
18234
+ acs_user_id?: string | undefined
18235
+ /** ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
18236
+ user_identity_id?: string | undefined
18237
+ /** ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id. */
18238
+ acs_system_id?: string | undefined
18235
18239
  }
18236
18240
  formData: {}
18237
18241
  jsonResponse: {