@seamapi/types 1.172.0 → 1.173.1
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.
- package/dist/connect.cjs +58 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +110 -0
- package/lib/seam/connect/openapi.d.ts +73 -0
- package/lib/seam/connect/openapi.js +58 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +37 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +58 -1
- package/src/lib/seam/connect/route-types.ts +44 -0
package/dist/connect.d.cts
CHANGED
|
@@ -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;
|
|
@@ -13207,6 +13276,10 @@ declare const _default: {
|
|
|
13207
13276
|
};
|
|
13208
13277
|
type: string;
|
|
13209
13278
|
};
|
|
13279
|
+
credential_manager_acs_system_id: {
|
|
13280
|
+
format: string;
|
|
13281
|
+
type: string;
|
|
13282
|
+
};
|
|
13210
13283
|
custom_sdk_installation_id: {
|
|
13211
13284
|
type: string;
|
|
13212
13285
|
};
|
|
@@ -18111,6 +18184,42 @@ interface Routes {
|
|
|
18111
18184
|
}>;
|
|
18112
18185
|
};
|
|
18113
18186
|
};
|
|
18187
|
+
'/acs/credentials/list_accessible_entrances': {
|
|
18188
|
+
route: '/acs/credentials/list_accessible_entrances';
|
|
18189
|
+
method: 'GET' | 'POST';
|
|
18190
|
+
queryParams: {};
|
|
18191
|
+
jsonBody: {};
|
|
18192
|
+
commonParams: {
|
|
18193
|
+
acs_credential_id: string;
|
|
18194
|
+
};
|
|
18195
|
+
formData: {};
|
|
18196
|
+
jsonResponse: {
|
|
18197
|
+
acs_entrances: Array<{
|
|
18198
|
+
acs_entrance_id: string;
|
|
18199
|
+
display_name: string;
|
|
18200
|
+
acs_system_id: string;
|
|
18201
|
+
created_at: string;
|
|
18202
|
+
latch_metadata: {
|
|
18203
|
+
accessibility_type: string;
|
|
18204
|
+
door_name: string;
|
|
18205
|
+
door_type: string;
|
|
18206
|
+
is_connected: boolean;
|
|
18207
|
+
} | null;
|
|
18208
|
+
errors: Array<{
|
|
18209
|
+
error_code: string;
|
|
18210
|
+
message: string;
|
|
18211
|
+
}>;
|
|
18212
|
+
visionline_metadata: {
|
|
18213
|
+
door_name: string;
|
|
18214
|
+
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
18215
|
+
profiles?: Array<{
|
|
18216
|
+
visionline_door_profile_id: string;
|
|
18217
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
|
|
18218
|
+
}> | undefined;
|
|
18219
|
+
} | null;
|
|
18220
|
+
}>;
|
|
18221
|
+
};
|
|
18222
|
+
};
|
|
18114
18223
|
'/acs/credentials/unassign': {
|
|
18115
18224
|
route: '/acs/credentials/unassign';
|
|
18116
18225
|
method: 'PATCH' | 'POST';
|
|
@@ -23048,6 +23157,7 @@ interface Routes {
|
|
|
23048
23157
|
device_manufacturer?: string;
|
|
23049
23158
|
device_model?: string;
|
|
23050
23159
|
};
|
|
23160
|
+
credential_manager_acs_system_id: string;
|
|
23051
23161
|
assa_abloy_metadata?: {
|
|
23052
23162
|
ble_capability?: boolean;
|
|
23053
23163
|
hce_capability?: boolean;
|
|
@@ -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;
|
|
@@ -11927,6 +11996,10 @@ declare const _default: {
|
|
|
11927
11996
|
};
|
|
11928
11997
|
type: string;
|
|
11929
11998
|
};
|
|
11999
|
+
credential_manager_acs_system_id: {
|
|
12000
|
+
format: string;
|
|
12001
|
+
type: string;
|
|
12002
|
+
};
|
|
11930
12003
|
custom_sdk_installation_id: {
|
|
11931
12004
|
type: string;
|
|
11932
12005
|
};
|
|
@@ -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',
|
|
@@ -9018,6 +9068,10 @@ export default {
|
|
|
9018
9068
|
},
|
|
9019
9069
|
type: 'object',
|
|
9020
9070
|
},
|
|
9071
|
+
credential_manager_acs_system_id: {
|
|
9072
|
+
format: 'uuid',
|
|
9073
|
+
type: 'string',
|
|
9074
|
+
},
|
|
9021
9075
|
custom_sdk_installation_id: { type: 'string' },
|
|
9022
9076
|
phone_metadata: {
|
|
9023
9077
|
default: {},
|
|
@@ -9041,7 +9095,10 @@ export default {
|
|
|
9041
9095
|
},
|
|
9042
9096
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
9043
9097
|
},
|
|
9044
|
-
required: [
|
|
9098
|
+
required: [
|
|
9099
|
+
'user_identity_id',
|
|
9100
|
+
'credential_manager_acs_system_id',
|
|
9101
|
+
],
|
|
9045
9102
|
type: 'object',
|
|
9046
9103
|
},
|
|
9047
9104
|
},
|