@seamapi/types 1.172.0 → 1.173.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.
@@ -7427,6 +7427,75 @@ declare const _default: {
7427
7427
  'x-fern-sdk-return-value': string;
7428
7428
  };
7429
7429
  };
7430
+ '/acs/credentials/list_accessible_entrances': {
7431
+ post: {
7432
+ operationId: string;
7433
+ requestBody: {
7434
+ content: {
7435
+ 'application/json': {
7436
+ schema: {
7437
+ properties: {
7438
+ acs_credential_id: {
7439
+ format: string;
7440
+ type: string;
7441
+ };
7442
+ };
7443
+ required: string[];
7444
+ type: string;
7445
+ };
7446
+ };
7447
+ };
7448
+ };
7449
+ responses: {
7450
+ 200: {
7451
+ content: {
7452
+ 'application/json': {
7453
+ schema: {
7454
+ properties: {
7455
+ acs_entrances: {
7456
+ items: {
7457
+ $ref: string;
7458
+ };
7459
+ type: string;
7460
+ };
7461
+ ok: {
7462
+ type: string;
7463
+ };
7464
+ };
7465
+ required: string[];
7466
+ type: string;
7467
+ };
7468
+ };
7469
+ };
7470
+ description: string;
7471
+ };
7472
+ 400: {
7473
+ description: string;
7474
+ };
7475
+ 401: {
7476
+ description: string;
7477
+ };
7478
+ };
7479
+ security: ({
7480
+ api_key: never[];
7481
+ pat_with_workspace?: never;
7482
+ console_session?: never;
7483
+ } | {
7484
+ pat_with_workspace: never[];
7485
+ api_key?: never;
7486
+ console_session?: never;
7487
+ } | {
7488
+ console_session: never[];
7489
+ api_key?: never;
7490
+ pat_with_workspace?: never;
7491
+ })[];
7492
+ summary: string;
7493
+ tags: string[];
7494
+ 'x-fern-sdk-group-name': string[];
7495
+ 'x-fern-sdk-method-name': string;
7496
+ 'x-fern-sdk-return-value': string;
7497
+ };
7498
+ };
7430
7499
  '/acs/credentials/unassign': {
7431
7500
  patch: {
7432
7501
  operationId: string;
@@ -18111,6 +18180,42 @@ interface Routes {
18111
18180
  }>;
18112
18181
  };
18113
18182
  };
18183
+ '/acs/credentials/list_accessible_entrances': {
18184
+ route: '/acs/credentials/list_accessible_entrances';
18185
+ method: 'GET' | 'POST';
18186
+ queryParams: {};
18187
+ jsonBody: {};
18188
+ commonParams: {
18189
+ acs_credential_id: string;
18190
+ };
18191
+ formData: {};
18192
+ jsonResponse: {
18193
+ acs_entrances: Array<{
18194
+ acs_entrance_id: string;
18195
+ display_name: string;
18196
+ acs_system_id: string;
18197
+ created_at: string;
18198
+ latch_metadata: {
18199
+ accessibility_type: string;
18200
+ door_name: string;
18201
+ door_type: string;
18202
+ is_connected: boolean;
18203
+ } | null;
18204
+ errors: Array<{
18205
+ error_code: string;
18206
+ message: string;
18207
+ }>;
18208
+ visionline_metadata: {
18209
+ door_name: string;
18210
+ door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
18211
+ profiles?: Array<{
18212
+ visionline_door_profile_id: string;
18213
+ visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
18214
+ }> | undefined;
18215
+ } | null;
18216
+ }>;
18217
+ };
18218
+ };
18114
18219
  '/acs/credentials/unassign': {
18115
18220
  route: '/acs/credentials/unassign';
18116
18221
  method: 'PATCH' | 'POST';
@@ -6147,6 +6147,75 @@ declare const _default: {
6147
6147
  'x-fern-sdk-return-value': string;
6148
6148
  };
6149
6149
  };
6150
+ '/acs/credentials/list_accessible_entrances': {
6151
+ post: {
6152
+ operationId: string;
6153
+ requestBody: {
6154
+ content: {
6155
+ 'application/json': {
6156
+ schema: {
6157
+ properties: {
6158
+ acs_credential_id: {
6159
+ format: string;
6160
+ type: string;
6161
+ };
6162
+ };
6163
+ required: string[];
6164
+ type: string;
6165
+ };
6166
+ };
6167
+ };
6168
+ };
6169
+ responses: {
6170
+ 200: {
6171
+ content: {
6172
+ 'application/json': {
6173
+ schema: {
6174
+ properties: {
6175
+ acs_entrances: {
6176
+ items: {
6177
+ $ref: string;
6178
+ };
6179
+ type: string;
6180
+ };
6181
+ ok: {
6182
+ type: string;
6183
+ };
6184
+ };
6185
+ required: string[];
6186
+ type: string;
6187
+ };
6188
+ };
6189
+ };
6190
+ description: string;
6191
+ };
6192
+ 400: {
6193
+ description: string;
6194
+ };
6195
+ 401: {
6196
+ description: string;
6197
+ };
6198
+ };
6199
+ security: ({
6200
+ api_key: never[];
6201
+ pat_with_workspace?: never;
6202
+ console_session?: never;
6203
+ } | {
6204
+ pat_with_workspace: never[];
6205
+ api_key?: never;
6206
+ console_session?: never;
6207
+ } | {
6208
+ console_session: never[];
6209
+ api_key?: never;
6210
+ pat_with_workspace?: never;
6211
+ })[];
6212
+ summary: string;
6213
+ tags: string[];
6214
+ 'x-fern-sdk-group-name': string[];
6215
+ 'x-fern-sdk-method-name': string;
6216
+ 'x-fern-sdk-return-value': string;
6217
+ };
6218
+ };
6150
6219
  '/acs/credentials/unassign': {
6151
6220
  patch: {
6152
6221
  operationId: string;
@@ -4534,6 +4534,56 @@ export default {
4534
4534
  'x-fern-sdk-return-value': 'acs_credentials',
4535
4535
  },
4536
4536
  },
4537
+ '/acs/credentials/list_accessible_entrances': {
4538
+ post: {
4539
+ operationId: 'acsCredentialsListAccessibleEntrancesPost',
4540
+ requestBody: {
4541
+ content: {
4542
+ 'application/json': {
4543
+ schema: {
4544
+ properties: {
4545
+ acs_credential_id: { format: 'uuid', type: 'string' },
4546
+ },
4547
+ required: ['acs_credential_id'],
4548
+ type: 'object',
4549
+ },
4550
+ },
4551
+ },
4552
+ },
4553
+ responses: {
4554
+ 200: {
4555
+ content: {
4556
+ 'application/json': {
4557
+ schema: {
4558
+ properties: {
4559
+ acs_entrances: {
4560
+ items: { $ref: '#/components/schemas/acs_entrance' },
4561
+ type: 'array',
4562
+ },
4563
+ ok: { type: 'boolean' },
4564
+ },
4565
+ required: ['acs_entrances', 'ok'],
4566
+ type: 'object',
4567
+ },
4568
+ },
4569
+ },
4570
+ description: 'OK',
4571
+ },
4572
+ 400: { description: 'Bad Request' },
4573
+ 401: { description: 'Unauthorized' },
4574
+ },
4575
+ security: [
4576
+ { api_key: [] },
4577
+ { pat_with_workspace: [] },
4578
+ { console_session: [] },
4579
+ ],
4580
+ summary: '/acs/credentials/list_accessible_entrances',
4581
+ tags: ['/acs'],
4582
+ 'x-fern-sdk-group-name': ['acs', 'credentials'],
4583
+ 'x-fern-sdk-method-name': 'list_accessible_entrances',
4584
+ 'x-fern-sdk-return-value': 'acs_entrances',
4585
+ },
4586
+ },
4537
4587
  '/acs/credentials/unassign': {
4538
4588
  patch: {
4539
4589
  operationId: 'acsCredentialsUnassignPatch',