@seamapi/types 1.148.0 → 1.149.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 CHANGED
@@ -1139,7 +1139,9 @@ var openapi_default = {
1139
1139
  properties: {
1140
1140
  device_id: { type: "string" },
1141
1141
  device_name: { type: "string" },
1142
- keypad_battery_critical: { type: "boolean" }
1142
+ keypad_2_paired: { type: "boolean" },
1143
+ keypad_battery_critical: { type: "boolean" },
1144
+ keypad_paired: { type: "boolean" }
1143
1145
  },
1144
1146
  required: ["device_id", "device_name"],
1145
1147
  type: "object"
@@ -2215,6 +2217,14 @@ var openapi_default = {
2215
2217
  accessory_keypad: {
2216
2218
  description: "Represents the accessory keypad state.",
2217
2219
  properties: {
2220
+ battery: {
2221
+ description: "Indicates if the keypad battery properties.",
2222
+ properties: {
2223
+ level: { maximum: 1, minimum: 0, type: "number" }
2224
+ },
2225
+ required: ["level"],
2226
+ type: "object"
2227
+ },
2218
2228
  is_connected: {
2219
2229
  description: "Indicates if the accessory_keypad is connected to the device.",
2220
2230
  type: "boolean"
@@ -7335,9 +7345,10 @@ var openapi_default = {
7335
7345
  401: { description: "Unauthorized" }
7336
7346
  },
7337
7347
  security: [
7338
- { access_token: [], seam_workspace: [] },
7339
- { seam_client_session_token: [] },
7340
- { client_session_token: [] }
7348
+ { client_session: [] },
7349
+ { pat_with_workspace: [] },
7350
+ { console_session: [] },
7351
+ { api_key: [] }
7341
7352
  ],
7342
7353
  summary: "/connect_webviews/get",
7343
7354
  tags: ["/connect_webviews"],