@seamapi/types 1.457.0 → 1.458.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 +56 -231
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +475 -310
- package/dist/devicedb.d.cts +56 -56
- package/dist/index.cjs +56 -231
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -10
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -6
- package/lib/seam/connect/models/acs/metadata/salto-space.js +13 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +83 -63
- package/lib/seam/connect/models/batches/access_methods.d.ts +83 -63
- package/lib/seam/connect/models/batches/batch.d.ts +249 -189
- package/lib/seam/connect/models/batches/spaces.d.ts +83 -63
- package/lib/seam/connect/models/devices/device-metadata.d.ts +22 -22
- package/lib/seam/connect/models/devices/device-provider.d.ts +0 -1
- package/lib/seam/connect/models/devices/device.d.ts +49 -51
- package/lib/seam/connect/models/devices/device.js +16 -7
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +29 -31
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -40
- package/lib/seam/connect/openapi.d.ts +26 -2
- package/lib/seam/connect/openapi.js +29 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -30
- package/lib/seam/devicedb/models/device-model.d.ts +20 -20
- package/lib/seam/devicedb/route-specs.d.ts +41 -41
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +13 -4
- package/src/lib/seam/connect/models/devices/device.ts +15 -8
- package/src/lib/seam/connect/openapi.ts +32 -5
- package/src/lib/seam/connect/route-types.ts +100 -30
|
@@ -2521,16 +2521,28 @@ export default {
|
|
|
2521
2521
|
description: 'Description of the door in the Salto Space access system.',
|
|
2522
2522
|
type: 'string',
|
|
2523
2523
|
},
|
|
2524
|
+
door_id: {
|
|
2525
|
+
description: 'Door ID in the Salto Space access system.',
|
|
2526
|
+
type: 'string',
|
|
2527
|
+
},
|
|
2524
2528
|
door_name: {
|
|
2525
2529
|
description: 'Name of the door in the Salto Space access system.',
|
|
2526
2530
|
type: 'string',
|
|
2527
2531
|
},
|
|
2528
2532
|
ext_door_id: {
|
|
2529
|
-
|
|
2533
|
+
deprecated: true,
|
|
2534
|
+
type: 'string',
|
|
2535
|
+
'x-deprecated': 'use door_id.',
|
|
2536
|
+
},
|
|
2537
|
+
room_description: {
|
|
2538
|
+
description: 'Description of the room in the Salto Space access system.',
|
|
2539
|
+
type: 'string',
|
|
2540
|
+
},
|
|
2541
|
+
room_name: {
|
|
2542
|
+
description: 'Name of the room in the Salto Space access system.',
|
|
2530
2543
|
type: 'string',
|
|
2531
2544
|
},
|
|
2532
2545
|
},
|
|
2533
|
-
required: ['door_name', 'ext_door_id'],
|
|
2534
2546
|
type: 'object',
|
|
2535
2547
|
},
|
|
2536
2548
|
visionline_metadata: {
|
|
@@ -17556,16 +17568,28 @@ export default {
|
|
|
17556
17568
|
description: 'Description of the door in the Salto Space access system.',
|
|
17557
17569
|
type: 'string',
|
|
17558
17570
|
},
|
|
17571
|
+
door_id: {
|
|
17572
|
+
description: 'Door ID in the Salto Space access system.',
|
|
17573
|
+
type: 'string',
|
|
17574
|
+
},
|
|
17559
17575
|
door_name: {
|
|
17560
17576
|
description: 'Name of the door in the Salto Space access system.',
|
|
17561
17577
|
type: 'string',
|
|
17562
17578
|
},
|
|
17563
17579
|
ext_door_id: {
|
|
17564
|
-
|
|
17580
|
+
deprecated: true,
|
|
17581
|
+
type: 'string',
|
|
17582
|
+
'x-deprecated': 'use door_id.',
|
|
17583
|
+
},
|
|
17584
|
+
room_description: {
|
|
17585
|
+
description: 'Description of the room in the Salto Space access system.',
|
|
17586
|
+
type: 'string',
|
|
17587
|
+
},
|
|
17588
|
+
room_name: {
|
|
17589
|
+
description: 'Name of the room in the Salto Space access system.',
|
|
17565
17590
|
type: 'string',
|
|
17566
17591
|
},
|
|
17567
17592
|
},
|
|
17568
|
-
required: ['door_name', 'ext_door_id'],
|
|
17569
17593
|
type: 'object',
|
|
17570
17594
|
},
|
|
17571
17595
|
visionline_metadata: {
|
|
@@ -36801,7 +36825,7 @@ export default {
|
|
|
36801
36825
|
},
|
|
36802
36826
|
'/devices/simulate/connect_to_hub': {
|
|
36803
36827
|
post: {
|
|
36804
|
-
description: 'Simulates bringing the Wi
|
|
36828
|
+
description: 'Simulates bringing the Wi‑Fi hub (bridge) back online for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will clear the corresponding `hub_disconnected` or\n`ttlock_lock_not_paired_to_gateway` error on the device.',
|
|
36805
36829
|
operationId: 'devicesSimulateConnectToHubPost',
|
|
36806
36830
|
requestBody: {
|
|
36807
36831
|
content: {
|