@seamapi/types 1.454.0 → 1.456.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 +20 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +57 -37
- package/dist/index.cjs +20 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -3
- package/lib/seam/connect/models/access-grants/access-method.js +4 -1
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -6
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +26 -26
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
- package/lib/seam/connect/models/phones/phone-session.d.ts +10 -10
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +19 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +4 -1
- package/src/lib/seam/connect/openapi.ts +20 -0
- package/src/lib/seam/connect/route-types.ts +17 -4
package/dist/connect.cjs
CHANGED
|
@@ -7262,9 +7262,14 @@ var openapi_default = {
|
|
|
7262
7262
|
description: "Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.",
|
|
7263
7263
|
type: "boolean"
|
|
7264
7264
|
},
|
|
7265
|
+
is_issued: {
|
|
7266
|
+
description: "Indicates whether the access method has been issued.",
|
|
7267
|
+
type: "boolean"
|
|
7268
|
+
},
|
|
7265
7269
|
issued_at: {
|
|
7266
7270
|
description: "Date and time at which the access method was issued.",
|
|
7267
7271
|
format: "date-time",
|
|
7272
|
+
nullable: true,
|
|
7268
7273
|
type: "string"
|
|
7269
7274
|
},
|
|
7270
7275
|
mode: {
|
|
@@ -7283,7 +7288,9 @@ var openapi_default = {
|
|
|
7283
7288
|
"access_method_id",
|
|
7284
7289
|
"display_name",
|
|
7285
7290
|
"mode",
|
|
7286
|
-
"created_at"
|
|
7291
|
+
"created_at",
|
|
7292
|
+
"issued_at",
|
|
7293
|
+
"is_issued"
|
|
7287
7294
|
],
|
|
7288
7295
|
type: "object",
|
|
7289
7296
|
"x-draft": "Early access.",
|
|
@@ -52420,6 +52427,18 @@ var openapi_default = {
|
|
|
52420
52427
|
},
|
|
52421
52428
|
required: ["hvac_mode_setting", "device_id"],
|
|
52422
52429
|
type: "object"
|
|
52430
|
+
},
|
|
52431
|
+
{
|
|
52432
|
+
properties: {
|
|
52433
|
+
device_id: {
|
|
52434
|
+
description: "ID of the thermostat device for which you want to set the HVAC mode.",
|
|
52435
|
+
format: "uuid",
|
|
52436
|
+
type: "string"
|
|
52437
|
+
},
|
|
52438
|
+
hvac_mode_setting: { enum: ["eco"], type: "string" }
|
|
52439
|
+
},
|
|
52440
|
+
required: ["hvac_mode_setting", "device_id"],
|
|
52441
|
+
type: "object"
|
|
52423
52442
|
}
|
|
52424
52443
|
]
|
|
52425
52444
|
}
|