@seamapi/types 1.657.0 → 1.658.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 +141 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +436 -0
- package/dist/index.cjs +141 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.js +7 -4
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +183 -0
- package/lib/seam/connect/openapi.js +127 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +253 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +35 -32
- package/src/lib/seam/connect/openapi.ts +127 -0
- package/src/lib/seam/connect/route-types.ts +253 -0
package/dist/connect.cjs
CHANGED
|
@@ -5620,7 +5620,12 @@ var batch = zod.z.object({
|
|
|
5620
5620
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
5621
5621
|
noise_thresholds: noise_threshold.array().optional(),
|
|
5622
5622
|
customization_profiles: customization_profile.array().optional()
|
|
5623
|
-
}).describe(
|
|
5623
|
+
}).describe(`
|
|
5624
|
+
---
|
|
5625
|
+
route_path: /workspaces
|
|
5626
|
+
---
|
|
5627
|
+
A batch of workspace resources.
|
|
5628
|
+
`);
|
|
5624
5629
|
var bridge = zod.z.object({
|
|
5625
5630
|
bridge_id: zod.z.string().uuid().describe("ID of Seam Bridge."),
|
|
5626
5631
|
workspace_id: zod.z.string().uuid().describe(
|
|
@@ -13321,6 +13326,125 @@ var openapi_default = {
|
|
|
13321
13326
|
],
|
|
13322
13327
|
"x-route-path": "/action_attempts"
|
|
13323
13328
|
},
|
|
13329
|
+
batch: {
|
|
13330
|
+
description: "A batch of workspace resources.",
|
|
13331
|
+
properties: {
|
|
13332
|
+
access_codes: {
|
|
13333
|
+
items: { $ref: "#/components/schemas/access_code" },
|
|
13334
|
+
type: "array"
|
|
13335
|
+
},
|
|
13336
|
+
access_grants: {
|
|
13337
|
+
items: { $ref: "#/components/schemas/access_grant" },
|
|
13338
|
+
type: "array"
|
|
13339
|
+
},
|
|
13340
|
+
access_methods: {
|
|
13341
|
+
items: { $ref: "#/components/schemas/access_method" },
|
|
13342
|
+
type: "array"
|
|
13343
|
+
},
|
|
13344
|
+
acs_access_groups: {
|
|
13345
|
+
items: { $ref: "#/components/schemas/acs_access_group" },
|
|
13346
|
+
type: "array"
|
|
13347
|
+
},
|
|
13348
|
+
acs_credentials: {
|
|
13349
|
+
items: { $ref: "#/components/schemas/acs_credential" },
|
|
13350
|
+
type: "array"
|
|
13351
|
+
},
|
|
13352
|
+
acs_encoders: {
|
|
13353
|
+
items: { $ref: "#/components/schemas/acs_encoder" },
|
|
13354
|
+
type: "array"
|
|
13355
|
+
},
|
|
13356
|
+
acs_entrances: {
|
|
13357
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
13358
|
+
type: "array"
|
|
13359
|
+
},
|
|
13360
|
+
acs_systems: {
|
|
13361
|
+
items: { $ref: "#/components/schemas/acs_system" },
|
|
13362
|
+
type: "array"
|
|
13363
|
+
},
|
|
13364
|
+
acs_users: {
|
|
13365
|
+
items: { $ref: "#/components/schemas/acs_user" },
|
|
13366
|
+
type: "array"
|
|
13367
|
+
},
|
|
13368
|
+
action_attempts: {
|
|
13369
|
+
items: { $ref: "#/components/schemas/action_attempt" },
|
|
13370
|
+
type: "array"
|
|
13371
|
+
},
|
|
13372
|
+
client_sessions: {
|
|
13373
|
+
items: { $ref: "#/components/schemas/client_session" },
|
|
13374
|
+
type: "array"
|
|
13375
|
+
},
|
|
13376
|
+
connect_webviews: {
|
|
13377
|
+
items: { $ref: "#/components/schemas/connect_webview" },
|
|
13378
|
+
type: "array"
|
|
13379
|
+
},
|
|
13380
|
+
connected_accounts: {
|
|
13381
|
+
items: { $ref: "#/components/schemas/connected_account" },
|
|
13382
|
+
type: "array"
|
|
13383
|
+
},
|
|
13384
|
+
customization_profiles: {
|
|
13385
|
+
items: { $ref: "#/components/schemas/customization_profile" },
|
|
13386
|
+
type: "array"
|
|
13387
|
+
},
|
|
13388
|
+
devices: {
|
|
13389
|
+
items: { $ref: "#/components/schemas/device" },
|
|
13390
|
+
type: "array"
|
|
13391
|
+
},
|
|
13392
|
+
events: {
|
|
13393
|
+
items: { $ref: "#/components/schemas/event" },
|
|
13394
|
+
type: "array"
|
|
13395
|
+
},
|
|
13396
|
+
instant_keys: {
|
|
13397
|
+
items: { $ref: "#/components/schemas/instant_key" },
|
|
13398
|
+
type: "array"
|
|
13399
|
+
},
|
|
13400
|
+
noise_thresholds: {
|
|
13401
|
+
items: { $ref: "#/components/schemas/noise_threshold" },
|
|
13402
|
+
type: "array"
|
|
13403
|
+
},
|
|
13404
|
+
spaces: {
|
|
13405
|
+
items: { $ref: "#/components/schemas/space" },
|
|
13406
|
+
type: "array"
|
|
13407
|
+
},
|
|
13408
|
+
thermostat_daily_programs: {
|
|
13409
|
+
items: { $ref: "#/components/schemas/thermostat_daily_program" },
|
|
13410
|
+
type: "array"
|
|
13411
|
+
},
|
|
13412
|
+
thermostat_schedules: {
|
|
13413
|
+
items: { $ref: "#/components/schemas/thermostat_schedule" },
|
|
13414
|
+
type: "array"
|
|
13415
|
+
},
|
|
13416
|
+
unmanaged_access_codes: {
|
|
13417
|
+
items: { $ref: "#/components/schemas/unmanaged_access_code" },
|
|
13418
|
+
type: "array"
|
|
13419
|
+
},
|
|
13420
|
+
unmanaged_acs_access_groups: {
|
|
13421
|
+
items: { $ref: "#/components/schemas/unmanaged_acs_access_group" },
|
|
13422
|
+
type: "array"
|
|
13423
|
+
},
|
|
13424
|
+
unmanaged_acs_credentials: {
|
|
13425
|
+
items: { $ref: "#/components/schemas/unmanaged_acs_credential" },
|
|
13426
|
+
type: "array"
|
|
13427
|
+
},
|
|
13428
|
+
unmanaged_acs_users: {
|
|
13429
|
+
items: { $ref: "#/components/schemas/unmanaged_acs_user" },
|
|
13430
|
+
type: "array"
|
|
13431
|
+
},
|
|
13432
|
+
unmanaged_devices: {
|
|
13433
|
+
items: { $ref: "#/components/schemas/unmanaged_device" },
|
|
13434
|
+
type: "array"
|
|
13435
|
+
},
|
|
13436
|
+
user_identities: {
|
|
13437
|
+
items: { $ref: "#/components/schemas/user_identity" },
|
|
13438
|
+
type: "array"
|
|
13439
|
+
},
|
|
13440
|
+
workspaces: {
|
|
13441
|
+
items: { $ref: "#/components/schemas/workspace" },
|
|
13442
|
+
type: "array"
|
|
13443
|
+
}
|
|
13444
|
+
},
|
|
13445
|
+
type: "object",
|
|
13446
|
+
"x-route-path": "/workspaces"
|
|
13447
|
+
},
|
|
13324
13448
|
bridge_client_session: {
|
|
13325
13449
|
description: "Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.",
|
|
13326
13450
|
properties: {
|
|
@@ -32043,7 +32167,8 @@ var openapi_default = {
|
|
|
32043
32167
|
type: "array"
|
|
32044
32168
|
}
|
|
32045
32169
|
},
|
|
32046
|
-
type: "object"
|
|
32170
|
+
type: "object",
|
|
32171
|
+
"x-route-path": "/workspaces"
|
|
32047
32172
|
},
|
|
32048
32173
|
ok: { type: "boolean" }
|
|
32049
32174
|
},
|
|
@@ -32172,7 +32297,8 @@ var openapi_default = {
|
|
|
32172
32297
|
type: "array"
|
|
32173
32298
|
}
|
|
32174
32299
|
},
|
|
32175
|
-
type: "object"
|
|
32300
|
+
type: "object",
|
|
32301
|
+
"x-route-path": "/workspaces"
|
|
32176
32302
|
},
|
|
32177
32303
|
ok: { type: "boolean" }
|
|
32178
32304
|
},
|
|
@@ -33996,7 +34122,8 @@ var openapi_default = {
|
|
|
33996
34122
|
type: "array"
|
|
33997
34123
|
}
|
|
33998
34124
|
},
|
|
33999
|
-
type: "object"
|
|
34125
|
+
type: "object",
|
|
34126
|
+
"x-route-path": "/workspaces"
|
|
34000
34127
|
},
|
|
34001
34128
|
ok: { type: "boolean" }
|
|
34002
34129
|
},
|
|
@@ -34133,7 +34260,8 @@ var openapi_default = {
|
|
|
34133
34260
|
type: "array"
|
|
34134
34261
|
}
|
|
34135
34262
|
},
|
|
34136
|
-
type: "object"
|
|
34263
|
+
type: "object",
|
|
34264
|
+
"x-route-path": "/workspaces"
|
|
34137
34265
|
},
|
|
34138
34266
|
ok: { type: "boolean" }
|
|
34139
34267
|
},
|
|
@@ -58720,7 +58848,8 @@ var openapi_default = {
|
|
|
58720
58848
|
type: "array"
|
|
58721
58849
|
}
|
|
58722
58850
|
},
|
|
58723
|
-
type: "object"
|
|
58851
|
+
type: "object",
|
|
58852
|
+
"x-route-path": "/workspaces"
|
|
58724
58853
|
},
|
|
58725
58854
|
ok: { type: "boolean" }
|
|
58726
58855
|
},
|
|
@@ -58838,7 +58967,8 @@ var openapi_default = {
|
|
|
58838
58967
|
type: "array"
|
|
58839
58968
|
}
|
|
58840
58969
|
},
|
|
58841
|
-
type: "object"
|
|
58970
|
+
type: "object",
|
|
58971
|
+
"x-route-path": "/workspaces"
|
|
58842
58972
|
},
|
|
58843
58973
|
ok: { type: "boolean" }
|
|
58844
58974
|
},
|
|
@@ -66873,7 +67003,8 @@ var openapi_default = {
|
|
|
66873
67003
|
type: "array"
|
|
66874
67004
|
}
|
|
66875
67005
|
},
|
|
66876
|
-
type: "object"
|
|
67006
|
+
type: "object",
|
|
67007
|
+
"x-route-path": "/workspaces"
|
|
66877
67008
|
},
|
|
66878
67009
|
ok: { type: "boolean" }
|
|
66879
67010
|
},
|
|
@@ -67097,7 +67228,8 @@ var openapi_default = {
|
|
|
67097
67228
|
type: "array"
|
|
67098
67229
|
}
|
|
67099
67230
|
},
|
|
67100
|
-
type: "object"
|
|
67231
|
+
type: "object",
|
|
67232
|
+
"x-route-path": "/workspaces"
|
|
67101
67233
|
},
|
|
67102
67234
|
ok: { type: "boolean" }
|
|
67103
67235
|
},
|