@seamapi/types 1.226.0 → 1.227.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.
- package/dist/connect.cjs +50 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -0
- package/lib/seam/connect/openapi.d.ts +69 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +47 -0
|
@@ -2171,6 +2171,42 @@ export interface Routes {
|
|
|
2171
2171
|
}>;
|
|
2172
2172
|
};
|
|
2173
2173
|
};
|
|
2174
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
2175
|
+
route: '/acs/access_groups/list_accessible_entrances';
|
|
2176
|
+
method: 'GET' | 'POST';
|
|
2177
|
+
queryParams: {};
|
|
2178
|
+
jsonBody: {};
|
|
2179
|
+
commonParams: {
|
|
2180
|
+
acs_access_group_id: string;
|
|
2181
|
+
};
|
|
2182
|
+
formData: {};
|
|
2183
|
+
jsonResponse: {
|
|
2184
|
+
acs_entrances: Array<{
|
|
2185
|
+
acs_system_id: string;
|
|
2186
|
+
acs_entrance_id: string;
|
|
2187
|
+
created_at: string;
|
|
2188
|
+
display_name: string;
|
|
2189
|
+
errors: Array<{
|
|
2190
|
+
error_code: string;
|
|
2191
|
+
message: string;
|
|
2192
|
+
}>;
|
|
2193
|
+
latch_metadata?: {
|
|
2194
|
+
accessibility_type: string;
|
|
2195
|
+
door_name: string;
|
|
2196
|
+
door_type: string;
|
|
2197
|
+
is_connected: boolean;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
visionline_metadata?: {
|
|
2200
|
+
door_name: string;
|
|
2201
|
+
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
2202
|
+
profiles?: Array<{
|
|
2203
|
+
visionline_door_profile_id: string;
|
|
2204
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
|
|
2205
|
+
}> | undefined;
|
|
2206
|
+
} | undefined;
|
|
2207
|
+
}>;
|
|
2208
|
+
};
|
|
2209
|
+
};
|
|
2174
2210
|
'/acs/access_groups/list_users': {
|
|
2175
2211
|
route: '/acs/access_groups/list_users';
|
|
2176
2212
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -5323,6 +5323,56 @@ export default {
|
|
|
5323
5323
|
'x-fern-sdk-return-value': 'acs_access_groups',
|
|
5324
5324
|
},
|
|
5325
5325
|
},
|
|
5326
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
5327
|
+
post: {
|
|
5328
|
+
operationId: 'acsAccessGroupsListAccessibleEntrancesPost',
|
|
5329
|
+
requestBody: {
|
|
5330
|
+
content: {
|
|
5331
|
+
'application/json': {
|
|
5332
|
+
schema: {
|
|
5333
|
+
properties: {
|
|
5334
|
+
acs_access_group_id: { format: 'uuid', type: 'string' },
|
|
5335
|
+
},
|
|
5336
|
+
required: ['acs_access_group_id'],
|
|
5337
|
+
type: 'object',
|
|
5338
|
+
},
|
|
5339
|
+
},
|
|
5340
|
+
},
|
|
5341
|
+
},
|
|
5342
|
+
responses: {
|
|
5343
|
+
200: {
|
|
5344
|
+
content: {
|
|
5345
|
+
'application/json': {
|
|
5346
|
+
schema: {
|
|
5347
|
+
properties: {
|
|
5348
|
+
acs_entrances: {
|
|
5349
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
5350
|
+
type: 'array',
|
|
5351
|
+
},
|
|
5352
|
+
ok: { type: 'boolean' },
|
|
5353
|
+
},
|
|
5354
|
+
required: ['acs_entrances', 'ok'],
|
|
5355
|
+
type: 'object',
|
|
5356
|
+
},
|
|
5357
|
+
},
|
|
5358
|
+
},
|
|
5359
|
+
description: 'OK',
|
|
5360
|
+
},
|
|
5361
|
+
400: { description: 'Bad Request' },
|
|
5362
|
+
401: { description: 'Unauthorized' },
|
|
5363
|
+
},
|
|
5364
|
+
security: [
|
|
5365
|
+
{ api_key: [] },
|
|
5366
|
+
{ pat_with_workspace: [] },
|
|
5367
|
+
{ console_session: [] },
|
|
5368
|
+
],
|
|
5369
|
+
summary: '/acs/access_groups/list_accessible_entrances',
|
|
5370
|
+
tags: ['/acs'],
|
|
5371
|
+
'x-fern-sdk-group-name': ['acs', 'access_groups'],
|
|
5372
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
5373
|
+
'x-fern-sdk-return-value': 'acs_entrances',
|
|
5374
|
+
},
|
|
5375
|
+
},
|
|
5326
5376
|
'/acs/access_groups/list_users': {
|
|
5327
5377
|
post: {
|
|
5328
5378
|
operationId: 'acsAccessGroupsListUsersPost',
|
|
@@ -2399,6 +2399,53 @@ export interface Routes {
|
|
|
2399
2399
|
}>
|
|
2400
2400
|
}
|
|
2401
2401
|
}
|
|
2402
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
2403
|
+
route: '/acs/access_groups/list_accessible_entrances'
|
|
2404
|
+
method: 'GET' | 'POST'
|
|
2405
|
+
queryParams: {}
|
|
2406
|
+
jsonBody: {}
|
|
2407
|
+
commonParams: {
|
|
2408
|
+
acs_access_group_id: string
|
|
2409
|
+
}
|
|
2410
|
+
formData: {}
|
|
2411
|
+
jsonResponse: {
|
|
2412
|
+
acs_entrances: Array<{
|
|
2413
|
+
acs_system_id: string
|
|
2414
|
+
acs_entrance_id: string
|
|
2415
|
+
created_at: string
|
|
2416
|
+
display_name: string
|
|
2417
|
+
errors: Array<{
|
|
2418
|
+
error_code: string
|
|
2419
|
+
message: string
|
|
2420
|
+
}>
|
|
2421
|
+
latch_metadata?:
|
|
2422
|
+
| {
|
|
2423
|
+
accessibility_type: string
|
|
2424
|
+
door_name: string
|
|
2425
|
+
door_type: string
|
|
2426
|
+
is_connected: boolean
|
|
2427
|
+
}
|
|
2428
|
+
| undefined
|
|
2429
|
+
visionline_metadata?:
|
|
2430
|
+
| {
|
|
2431
|
+
door_name: string
|
|
2432
|
+
door_category:
|
|
2433
|
+
| 'entrance'
|
|
2434
|
+
| 'guest'
|
|
2435
|
+
| 'elevator reader'
|
|
2436
|
+
| 'common'
|
|
2437
|
+
| 'common (PMS)'
|
|
2438
|
+
profiles?:
|
|
2439
|
+
| Array<{
|
|
2440
|
+
visionline_door_profile_id: string
|
|
2441
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch'
|
|
2442
|
+
}>
|
|
2443
|
+
| undefined
|
|
2444
|
+
}
|
|
2445
|
+
| undefined
|
|
2446
|
+
}>
|
|
2447
|
+
}
|
|
2448
|
+
}
|
|
2402
2449
|
'/acs/access_groups/list_users': {
|
|
2403
2450
|
route: '/acs/access_groups/list_users'
|
|
2404
2451
|
method: 'GET' | 'POST'
|