@seamapi/types 1.657.0 → 1.659.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 +152 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +476 -0
- package/dist/index.cjs +152 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +7 -0
- package/lib/seam/connect/models/batch.js +7 -4
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +191 -0
- package/lib/seam/connect/openapi.js +135 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +273 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +5 -0
- package/src/lib/seam/connect/models/batch.ts +35 -32
- package/src/lib/seam/connect/openapi.ts +137 -0
- package/src/lib/seam/connect/route-types.ts +273 -0
package/dist/index.cjs
CHANGED
|
@@ -2951,6 +2951,9 @@ var acs_entrance_salto_space_metadata = zod.z.object({
|
|
|
2951
2951
|
door_id: zod.z.string().describe("Door ID in the Salto Space access system."),
|
|
2952
2952
|
door_name: zod.z.string().describe("Name of the door in the Salto Space access system."),
|
|
2953
2953
|
door_description: zod.z.string().describe("Description of the door in the Salto Space access system."),
|
|
2954
|
+
audit_on_keys: zod.z.boolean().describe(
|
|
2955
|
+
"Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system."
|
|
2956
|
+
),
|
|
2954
2957
|
room_name: zod.z.string().describe("Name of the room in the Salto Space access system."),
|
|
2955
2958
|
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2956
2959
|
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
@@ -5620,7 +5623,12 @@ var batch = zod.z.object({
|
|
|
5620
5623
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
5621
5624
|
noise_thresholds: noise_threshold.array().optional(),
|
|
5622
5625
|
customization_profiles: customization_profile.array().optional()
|
|
5623
|
-
}).describe(
|
|
5626
|
+
}).describe(`
|
|
5627
|
+
---
|
|
5628
|
+
route_path: /workspaces
|
|
5629
|
+
---
|
|
5630
|
+
A batch of workspace resources.
|
|
5631
|
+
`);
|
|
5624
5632
|
var bridge = zod.z.object({
|
|
5625
5633
|
bridge_id: zod.z.string().uuid().describe("ID of Seam Bridge."),
|
|
5626
5634
|
workspace_id: zod.z.string().uuid().describe(
|
|
@@ -8478,6 +8486,10 @@ var openapi_default = {
|
|
|
8478
8486
|
salto_space_metadata: {
|
|
8479
8487
|
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8480
8488
|
properties: {
|
|
8489
|
+
audit_on_keys: {
|
|
8490
|
+
description: "Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.",
|
|
8491
|
+
type: "boolean"
|
|
8492
|
+
},
|
|
8481
8493
|
door_description: {
|
|
8482
8494
|
description: "Description of the door in the Salto Space access system.",
|
|
8483
8495
|
type: "string"
|
|
@@ -13321,6 +13333,125 @@ var openapi_default = {
|
|
|
13321
13333
|
],
|
|
13322
13334
|
"x-route-path": "/action_attempts"
|
|
13323
13335
|
},
|
|
13336
|
+
batch: {
|
|
13337
|
+
description: "A batch of workspace resources.",
|
|
13338
|
+
properties: {
|
|
13339
|
+
access_codes: {
|
|
13340
|
+
items: { $ref: "#/components/schemas/access_code" },
|
|
13341
|
+
type: "array"
|
|
13342
|
+
},
|
|
13343
|
+
access_grants: {
|
|
13344
|
+
items: { $ref: "#/components/schemas/access_grant" },
|
|
13345
|
+
type: "array"
|
|
13346
|
+
},
|
|
13347
|
+
access_methods: {
|
|
13348
|
+
items: { $ref: "#/components/schemas/access_method" },
|
|
13349
|
+
type: "array"
|
|
13350
|
+
},
|
|
13351
|
+
acs_access_groups: {
|
|
13352
|
+
items: { $ref: "#/components/schemas/acs_access_group" },
|
|
13353
|
+
type: "array"
|
|
13354
|
+
},
|
|
13355
|
+
acs_credentials: {
|
|
13356
|
+
items: { $ref: "#/components/schemas/acs_credential" },
|
|
13357
|
+
type: "array"
|
|
13358
|
+
},
|
|
13359
|
+
acs_encoders: {
|
|
13360
|
+
items: { $ref: "#/components/schemas/acs_encoder" },
|
|
13361
|
+
type: "array"
|
|
13362
|
+
},
|
|
13363
|
+
acs_entrances: {
|
|
13364
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
13365
|
+
type: "array"
|
|
13366
|
+
},
|
|
13367
|
+
acs_systems: {
|
|
13368
|
+
items: { $ref: "#/components/schemas/acs_system" },
|
|
13369
|
+
type: "array"
|
|
13370
|
+
},
|
|
13371
|
+
acs_users: {
|
|
13372
|
+
items: { $ref: "#/components/schemas/acs_user" },
|
|
13373
|
+
type: "array"
|
|
13374
|
+
},
|
|
13375
|
+
action_attempts: {
|
|
13376
|
+
items: { $ref: "#/components/schemas/action_attempt" },
|
|
13377
|
+
type: "array"
|
|
13378
|
+
},
|
|
13379
|
+
client_sessions: {
|
|
13380
|
+
items: { $ref: "#/components/schemas/client_session" },
|
|
13381
|
+
type: "array"
|
|
13382
|
+
},
|
|
13383
|
+
connect_webviews: {
|
|
13384
|
+
items: { $ref: "#/components/schemas/connect_webview" },
|
|
13385
|
+
type: "array"
|
|
13386
|
+
},
|
|
13387
|
+
connected_accounts: {
|
|
13388
|
+
items: { $ref: "#/components/schemas/connected_account" },
|
|
13389
|
+
type: "array"
|
|
13390
|
+
},
|
|
13391
|
+
customization_profiles: {
|
|
13392
|
+
items: { $ref: "#/components/schemas/customization_profile" },
|
|
13393
|
+
type: "array"
|
|
13394
|
+
},
|
|
13395
|
+
devices: {
|
|
13396
|
+
items: { $ref: "#/components/schemas/device" },
|
|
13397
|
+
type: "array"
|
|
13398
|
+
},
|
|
13399
|
+
events: {
|
|
13400
|
+
items: { $ref: "#/components/schemas/event" },
|
|
13401
|
+
type: "array"
|
|
13402
|
+
},
|
|
13403
|
+
instant_keys: {
|
|
13404
|
+
items: { $ref: "#/components/schemas/instant_key" },
|
|
13405
|
+
type: "array"
|
|
13406
|
+
},
|
|
13407
|
+
noise_thresholds: {
|
|
13408
|
+
items: { $ref: "#/components/schemas/noise_threshold" },
|
|
13409
|
+
type: "array"
|
|
13410
|
+
},
|
|
13411
|
+
spaces: {
|
|
13412
|
+
items: { $ref: "#/components/schemas/space" },
|
|
13413
|
+
type: "array"
|
|
13414
|
+
},
|
|
13415
|
+
thermostat_daily_programs: {
|
|
13416
|
+
items: { $ref: "#/components/schemas/thermostat_daily_program" },
|
|
13417
|
+
type: "array"
|
|
13418
|
+
},
|
|
13419
|
+
thermostat_schedules: {
|
|
13420
|
+
items: { $ref: "#/components/schemas/thermostat_schedule" },
|
|
13421
|
+
type: "array"
|
|
13422
|
+
},
|
|
13423
|
+
unmanaged_access_codes: {
|
|
13424
|
+
items: { $ref: "#/components/schemas/unmanaged_access_code" },
|
|
13425
|
+
type: "array"
|
|
13426
|
+
},
|
|
13427
|
+
unmanaged_acs_access_groups: {
|
|
13428
|
+
items: { $ref: "#/components/schemas/unmanaged_acs_access_group" },
|
|
13429
|
+
type: "array"
|
|
13430
|
+
},
|
|
13431
|
+
unmanaged_acs_credentials: {
|
|
13432
|
+
items: { $ref: "#/components/schemas/unmanaged_acs_credential" },
|
|
13433
|
+
type: "array"
|
|
13434
|
+
},
|
|
13435
|
+
unmanaged_acs_users: {
|
|
13436
|
+
items: { $ref: "#/components/schemas/unmanaged_acs_user" },
|
|
13437
|
+
type: "array"
|
|
13438
|
+
},
|
|
13439
|
+
unmanaged_devices: {
|
|
13440
|
+
items: { $ref: "#/components/schemas/unmanaged_device" },
|
|
13441
|
+
type: "array"
|
|
13442
|
+
},
|
|
13443
|
+
user_identities: {
|
|
13444
|
+
items: { $ref: "#/components/schemas/user_identity" },
|
|
13445
|
+
type: "array"
|
|
13446
|
+
},
|
|
13447
|
+
workspaces: {
|
|
13448
|
+
items: { $ref: "#/components/schemas/workspace" },
|
|
13449
|
+
type: "array"
|
|
13450
|
+
}
|
|
13451
|
+
},
|
|
13452
|
+
type: "object",
|
|
13453
|
+
"x-route-path": "/workspaces"
|
|
13454
|
+
},
|
|
13324
13455
|
bridge_client_session: {
|
|
13325
13456
|
description: "Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.",
|
|
13326
13457
|
properties: {
|
|
@@ -24021,6 +24152,10 @@ var openapi_default = {
|
|
|
24021
24152
|
salto_space_metadata: {
|
|
24022
24153
|
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
24023
24154
|
properties: {
|
|
24155
|
+
audit_on_keys: {
|
|
24156
|
+
description: "Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.",
|
|
24157
|
+
type: "boolean"
|
|
24158
|
+
},
|
|
24024
24159
|
door_description: {
|
|
24025
24160
|
description: "Description of the door in the Salto Space access system.",
|
|
24026
24161
|
type: "string"
|
|
@@ -32043,7 +32178,8 @@ var openapi_default = {
|
|
|
32043
32178
|
type: "array"
|
|
32044
32179
|
}
|
|
32045
32180
|
},
|
|
32046
|
-
type: "object"
|
|
32181
|
+
type: "object",
|
|
32182
|
+
"x-route-path": "/workspaces"
|
|
32047
32183
|
},
|
|
32048
32184
|
ok: { type: "boolean" }
|
|
32049
32185
|
},
|
|
@@ -32172,7 +32308,8 @@ var openapi_default = {
|
|
|
32172
32308
|
type: "array"
|
|
32173
32309
|
}
|
|
32174
32310
|
},
|
|
32175
|
-
type: "object"
|
|
32311
|
+
type: "object",
|
|
32312
|
+
"x-route-path": "/workspaces"
|
|
32176
32313
|
},
|
|
32177
32314
|
ok: { type: "boolean" }
|
|
32178
32315
|
},
|
|
@@ -33996,7 +34133,8 @@ var openapi_default = {
|
|
|
33996
34133
|
type: "array"
|
|
33997
34134
|
}
|
|
33998
34135
|
},
|
|
33999
|
-
type: "object"
|
|
34136
|
+
type: "object",
|
|
34137
|
+
"x-route-path": "/workspaces"
|
|
34000
34138
|
},
|
|
34001
34139
|
ok: { type: "boolean" }
|
|
34002
34140
|
},
|
|
@@ -34133,7 +34271,8 @@ var openapi_default = {
|
|
|
34133
34271
|
type: "array"
|
|
34134
34272
|
}
|
|
34135
34273
|
},
|
|
34136
|
-
type: "object"
|
|
34274
|
+
type: "object",
|
|
34275
|
+
"x-route-path": "/workspaces"
|
|
34137
34276
|
},
|
|
34138
34277
|
ok: { type: "boolean" }
|
|
34139
34278
|
},
|
|
@@ -58720,7 +58859,8 @@ var openapi_default = {
|
|
|
58720
58859
|
type: "array"
|
|
58721
58860
|
}
|
|
58722
58861
|
},
|
|
58723
|
-
type: "object"
|
|
58862
|
+
type: "object",
|
|
58863
|
+
"x-route-path": "/workspaces"
|
|
58724
58864
|
},
|
|
58725
58865
|
ok: { type: "boolean" }
|
|
58726
58866
|
},
|
|
@@ -58838,7 +58978,8 @@ var openapi_default = {
|
|
|
58838
58978
|
type: "array"
|
|
58839
58979
|
}
|
|
58840
58980
|
},
|
|
58841
|
-
type: "object"
|
|
58981
|
+
type: "object",
|
|
58982
|
+
"x-route-path": "/workspaces"
|
|
58842
58983
|
},
|
|
58843
58984
|
ok: { type: "boolean" }
|
|
58844
58985
|
},
|
|
@@ -66873,7 +67014,8 @@ var openapi_default = {
|
|
|
66873
67014
|
type: "array"
|
|
66874
67015
|
}
|
|
66875
67016
|
},
|
|
66876
|
-
type: "object"
|
|
67017
|
+
type: "object",
|
|
67018
|
+
"x-route-path": "/workspaces"
|
|
66877
67019
|
},
|
|
66878
67020
|
ok: { type: "boolean" }
|
|
66879
67021
|
},
|
|
@@ -67097,7 +67239,8 @@ var openapi_default = {
|
|
|
67097
67239
|
type: "array"
|
|
67098
67240
|
}
|
|
67099
67241
|
},
|
|
67100
|
-
type: "object"
|
|
67242
|
+
type: "object",
|
|
67243
|
+
"x-route-path": "/workspaces"
|
|
67101
67244
|
},
|
|
67102
67245
|
ok: { type: "boolean" }
|
|
67103
67246
|
},
|