@seamapi/types 1.782.0 → 1.783.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 +7 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -1
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -0
- package/lib/seam/connect/models/spaces/space.d.ts +3 -0
- package/lib/seam/connect/models/spaces/space.js +4 -0
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +6 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/spaces/space.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +6 -2
- package/src/lib/seam/connect/route-types.ts +21 -1
package/dist/connect.cjs
CHANGED
|
@@ -6291,6 +6291,7 @@ var space = zod.z.object({
|
|
|
6291
6291
|
created_at: zod.z.string().datetime().describe("Date and time at which the space was created."),
|
|
6292
6292
|
device_count: zod.z.number().describe("Number of devices in the space."),
|
|
6293
6293
|
acs_entrance_count: zod.z.number().describe("Number of entrances in the space."),
|
|
6294
|
+
customer_key: zod.z.string().optional().describe("Customer key associated with the space."),
|
|
6294
6295
|
parent_space_id: zod.z.string().uuid().optional().describe(`
|
|
6295
6296
|
---
|
|
6296
6297
|
undocumented: Only used internally.
|
|
@@ -29514,6 +29515,10 @@ var openapi_default = {
|
|
|
29514
29515
|
format: "date-time",
|
|
29515
29516
|
type: "string"
|
|
29516
29517
|
},
|
|
29518
|
+
customer_key: {
|
|
29519
|
+
description: "Customer key associated with the space.",
|
|
29520
|
+
type: "string"
|
|
29521
|
+
},
|
|
29517
29522
|
device_count: {
|
|
29518
29523
|
description: "Number of devices in the space.",
|
|
29519
29524
|
format: "float",
|
|
@@ -74043,7 +74048,7 @@ var openapi_default = {
|
|
|
74043
74048
|
in: "query",
|
|
74044
74049
|
name: "search",
|
|
74045
74050
|
schema: {
|
|
74046
|
-
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
74051
|
+
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.",
|
|
74047
74052
|
minLength: 1,
|
|
74048
74053
|
type: "string"
|
|
74049
74054
|
}
|
|
@@ -74156,7 +74161,7 @@ var openapi_default = {
|
|
|
74156
74161
|
type: "string"
|
|
74157
74162
|
},
|
|
74158
74163
|
search: {
|
|
74159
|
-
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
74164
|
+
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.",
|
|
74160
74165
|
minLength: 1,
|
|
74161
74166
|
type: "string"
|
|
74162
74167
|
},
|