@seamapi/types 1.500.0 → 1.501.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 +44 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -13
- package/dist/index.cjs +44 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/batch.d.ts +98 -12
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/{customization_profiles/customization_profile.js → customization-profiles/customization-profile.js} +1 -1
- package/lib/seam/connect/models/{customization_profiles/customization_profile.js.map → customization-profiles/customization-profile.js.map} +1 -1
- package/lib/seam/connect/models/customization-profiles/index.d.ts +1 -0
- package/lib/seam/connect/models/customization-profiles/index.js +2 -0
- package/lib/seam/connect/models/customization-profiles/index.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +1 -1
- package/lib/seam/connect/models/index.js +1 -1
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +4 -4
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/customization-profiles/index.ts +1 -0
- package/src/lib/seam/connect/models/index.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +24 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
- package/lib/seam/connect/models/{customization_profiles/customization_profile.d.ts → customization-profiles/customization-profile.d.ts} +2 -2
- /package/src/lib/seam/connect/models/{customization_profiles/customization_profile.ts → customization-profiles/customization-profile.ts} +0 -0
package/dist/connect.cjs
CHANGED
|
@@ -4020,6 +4020,22 @@ var connect_webview = zod.z.object({
|
|
|
4020
4020
|
|
|
4021
4021
|
To list all providers within a category, use \`/devices/list_device_providers\` with the desired \`provider_category\` filter. To list all provider keys, use \`/devices/list_device_providers\` with no filters.
|
|
4022
4022
|
`);
|
|
4023
|
+
var customization_profile = zod.z.object({
|
|
4024
|
+
workspace_id: zod.z.string().uuid(),
|
|
4025
|
+
name: zod.z.string().nullable(),
|
|
4026
|
+
customization_profile_id: zod.z.string().uuid(),
|
|
4027
|
+
created_at: zod.z.string().datetime(),
|
|
4028
|
+
logo_url: zod.z.string().url().optional(),
|
|
4029
|
+
primary_color: zod.z.string().optional(),
|
|
4030
|
+
secondary_color: zod.z.string().optional()
|
|
4031
|
+
}).describe(`
|
|
4032
|
+
---
|
|
4033
|
+
title: Customization Profile
|
|
4034
|
+
undocumented: Unreleased.
|
|
4035
|
+
route_path: /workspaces/customization_profiles
|
|
4036
|
+
---
|
|
4037
|
+
A customization profile.
|
|
4038
|
+
`);
|
|
4023
4039
|
var common_event = zod.z.object({
|
|
4024
4040
|
event_id: zod.z.string().uuid().describe("ID of the event."),
|
|
4025
4041
|
workspace_id: zod.z.string().uuid().describe(
|
|
@@ -5364,7 +5380,8 @@ zod.z.object({
|
|
|
5364
5380
|
unmanaged_access_codes: unmanaged_access_code.array().optional(),
|
|
5365
5381
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
5366
5382
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
5367
|
-
noise_thresholds: noise_threshold.array().optional()
|
|
5383
|
+
noise_thresholds: noise_threshold.array().optional(),
|
|
5384
|
+
customization_profiles: customization_profile.array().optional()
|
|
5368
5385
|
}).describe("A batch of workspace resources.");
|
|
5369
5386
|
var batch = zod.z.object({
|
|
5370
5387
|
batch_type: zod.z.enum([
|
|
@@ -5398,7 +5415,8 @@ var batch = zod.z.object({
|
|
|
5398
5415
|
unmanaged_access_codes: unmanaged_access_code.array().optional(),
|
|
5399
5416
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
5400
5417
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
5401
|
-
noise_thresholds: noise_threshold.array().optional()
|
|
5418
|
+
noise_thresholds: noise_threshold.array().optional(),
|
|
5419
|
+
customization_profiles: customization_profile.array().optional()
|
|
5402
5420
|
}).describe("A batch of workspace resources.");
|
|
5403
5421
|
var bridge = zod.z.object({
|
|
5404
5422
|
bridge_id: zod.z.string().uuid().describe("ID of Seam Bridge."),
|
|
@@ -5477,22 +5495,6 @@ var bridge_client_session = zod.z.object({
|
|
|
5477
5495
|
---
|
|
5478
5496
|
Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.
|
|
5479
5497
|
`);
|
|
5480
|
-
var customization_profile = zod.z.object({
|
|
5481
|
-
workspace_id: zod.z.string().uuid(),
|
|
5482
|
-
name: zod.z.string().nullable(),
|
|
5483
|
-
customization_profile_id: zod.z.string().uuid(),
|
|
5484
|
-
created_at: zod.z.string().datetime(),
|
|
5485
|
-
logo_url: zod.z.string().url().optional(),
|
|
5486
|
-
primary_color: zod.z.string().optional(),
|
|
5487
|
-
secondary_color: zod.z.string().optional()
|
|
5488
|
-
}).describe(`
|
|
5489
|
-
---
|
|
5490
|
-
title: Customization Profile
|
|
5491
|
-
undocumented: Unreleased.
|
|
5492
|
-
route_path: /workspaces/customization_profiles
|
|
5493
|
-
---
|
|
5494
|
-
A customization profile.
|
|
5495
|
-
`);
|
|
5496
5498
|
var pagination = zod.z.object({
|
|
5497
5499
|
next_page_cursor: zod.z.string().base64().nullable().describe(
|
|
5498
5500
|
"Opaque value that can be used to select the next page of results via the `page_cursor` parameter."
|
|
@@ -31952,6 +31954,12 @@ var openapi_default = {
|
|
|
31952
31954
|
},
|
|
31953
31955
|
type: "array"
|
|
31954
31956
|
},
|
|
31957
|
+
customization_profiles: {
|
|
31958
|
+
items: {
|
|
31959
|
+
$ref: "#/components/schemas/customization_profile"
|
|
31960
|
+
},
|
|
31961
|
+
type: "array"
|
|
31962
|
+
},
|
|
31955
31963
|
devices: {
|
|
31956
31964
|
items: { $ref: "#/components/schemas/device" },
|
|
31957
31965
|
type: "array"
|
|
@@ -32165,6 +32173,12 @@ var openapi_default = {
|
|
|
32165
32173
|
},
|
|
32166
32174
|
type: "array"
|
|
32167
32175
|
},
|
|
32176
|
+
customization_profiles: {
|
|
32177
|
+
items: {
|
|
32178
|
+
$ref: "#/components/schemas/customization_profile"
|
|
32179
|
+
},
|
|
32180
|
+
type: "array"
|
|
32181
|
+
},
|
|
32168
32182
|
devices: {
|
|
32169
32183
|
items: { $ref: "#/components/schemas/device" },
|
|
32170
32184
|
type: "array"
|
|
@@ -58073,6 +58087,12 @@ var openapi_default = {
|
|
|
58073
58087
|
},
|
|
58074
58088
|
type: "array"
|
|
58075
58089
|
},
|
|
58090
|
+
customization_profiles: {
|
|
58091
|
+
items: {
|
|
58092
|
+
$ref: "#/components/schemas/customization_profile"
|
|
58093
|
+
},
|
|
58094
|
+
type: "array"
|
|
58095
|
+
},
|
|
58076
58096
|
devices: {
|
|
58077
58097
|
items: { $ref: "#/components/schemas/device" },
|
|
58078
58098
|
type: "array"
|
|
@@ -58266,6 +58286,12 @@ var openapi_default = {
|
|
|
58266
58286
|
},
|
|
58267
58287
|
type: "array"
|
|
58268
58288
|
},
|
|
58289
|
+
customization_profiles: {
|
|
58290
|
+
items: {
|
|
58291
|
+
$ref: "#/components/schemas/customization_profile"
|
|
58292
|
+
},
|
|
58293
|
+
type: "array"
|
|
58294
|
+
},
|
|
58269
58295
|
devices: {
|
|
58270
58296
|
items: { $ref: "#/components/schemas/device" },
|
|
58271
58297
|
type: "array"
|