@seamapi/types 1.773.0 → 1.774.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 +22 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +188 -94
- package/dist/index.cjs +22 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +48 -34
- package/lib/seam/connect/models/devices/device.d.ts +14 -9
- package/lib/seam/connect/models/devices/device.js +8 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +14 -9
- package/lib/seam/connect/openapi.d.ts +12 -2
- package/lib/seam/connect/openapi.js +14 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -40
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +8 -3
- package/src/lib/seam/connect/openapi.ts +14 -6
- package/src/lib/seam/connect/route-types.ts +260 -160
package/dist/index.cjs
CHANGED
|
@@ -1817,9 +1817,15 @@ var device = zod.z.object({
|
|
|
1817
1817
|
location: zod.z.object({
|
|
1818
1818
|
location_name: zod.z.string().optional().describe(`Name of the device location.
|
|
1819
1819
|
`),
|
|
1820
|
-
|
|
1820
|
+
time_zone: zod.z.string().optional().describe(`Time zone of the device location.
|
|
1821
|
+
`),
|
|
1822
|
+
timezone: zod.z.string().optional().describe(`
|
|
1823
|
+
---
|
|
1824
|
+
deprecated: Use \`time_zone\` instead.
|
|
1825
|
+
---
|
|
1826
|
+
Time zone of the device location.
|
|
1821
1827
|
`)
|
|
1822
|
-
}).
|
|
1828
|
+
}).optional().describe(`
|
|
1823
1829
|
---
|
|
1824
1830
|
property_group_key: hardware
|
|
1825
1831
|
---
|
|
@@ -17077,15 +17083,20 @@ var openapi_default = {
|
|
|
17077
17083
|
},
|
|
17078
17084
|
location: {
|
|
17079
17085
|
description: "Location information for the device.",
|
|
17080
|
-
nullable: true,
|
|
17081
17086
|
properties: {
|
|
17082
17087
|
location_name: {
|
|
17083
17088
|
description: "Name of the device location.\n ",
|
|
17084
17089
|
type: "string"
|
|
17085
17090
|
},
|
|
17086
|
-
|
|
17091
|
+
time_zone: {
|
|
17087
17092
|
description: "Time zone of the device location.\n ",
|
|
17088
17093
|
type: "string"
|
|
17094
|
+
},
|
|
17095
|
+
timezone: {
|
|
17096
|
+
deprecated: true,
|
|
17097
|
+
description: "Time zone of the device location.",
|
|
17098
|
+
type: "string",
|
|
17099
|
+
"x-deprecated": "Use `time_zone` instead."
|
|
17089
17100
|
}
|
|
17090
17101
|
},
|
|
17091
17102
|
type: "object",
|
|
@@ -20010,7 +20021,6 @@ var openapi_default = {
|
|
|
20010
20021
|
"display_name",
|
|
20011
20022
|
"capabilities_supported",
|
|
20012
20023
|
"properties",
|
|
20013
|
-
"location",
|
|
20014
20024
|
"connected_account_id",
|
|
20015
20025
|
"workspace_id",
|
|
20016
20026
|
"errors",
|
|
@@ -33439,15 +33449,20 @@ var openapi_default = {
|
|
|
33439
33449
|
is_managed: { enum: [false], type: "boolean" },
|
|
33440
33450
|
location: {
|
|
33441
33451
|
description: "Location information for the device.",
|
|
33442
|
-
nullable: true,
|
|
33443
33452
|
properties: {
|
|
33444
33453
|
location_name: {
|
|
33445
33454
|
description: "Name of the device location.\n ",
|
|
33446
33455
|
type: "string"
|
|
33447
33456
|
},
|
|
33448
|
-
|
|
33457
|
+
time_zone: {
|
|
33449
33458
|
description: "Time zone of the device location.\n ",
|
|
33450
33459
|
type: "string"
|
|
33460
|
+
},
|
|
33461
|
+
timezone: {
|
|
33462
|
+
deprecated: true,
|
|
33463
|
+
description: "Time zone of the device location.",
|
|
33464
|
+
type: "string",
|
|
33465
|
+
"x-deprecated": "Use `time_zone` instead."
|
|
33451
33466
|
}
|
|
33452
33467
|
},
|
|
33453
33468
|
type: "object",
|
|
@@ -34138,7 +34153,6 @@ var openapi_default = {
|
|
|
34138
34153
|
"device_id",
|
|
34139
34154
|
"device_type",
|
|
34140
34155
|
"connected_account_id",
|
|
34141
|
-
"location",
|
|
34142
34156
|
"capabilities_supported",
|
|
34143
34157
|
"workspace_id",
|
|
34144
34158
|
"errors",
|