@seamapi/types 1.148.0 → 1.148.1
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 +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -2648,6 +2648,18 @@ declare const _default: {
|
|
|
2648
2648
|
accessory_keypad: {
|
|
2649
2649
|
description: string;
|
|
2650
2650
|
properties: {
|
|
2651
|
+
battery: {
|
|
2652
|
+
description: string;
|
|
2653
|
+
properties: {
|
|
2654
|
+
level: {
|
|
2655
|
+
maximum: number;
|
|
2656
|
+
minimum: number;
|
|
2657
|
+
type: string;
|
|
2658
|
+
};
|
|
2659
|
+
};
|
|
2660
|
+
required: string[];
|
|
2661
|
+
type: string;
|
|
2662
|
+
};
|
|
2651
2663
|
is_connected: {
|
|
2652
2664
|
description: string;
|
|
2653
2665
|
type: string;
|
|
@@ -20337,6 +20349,10 @@ interface Routes {
|
|
|
20337
20349
|
accessory_keypad?: {
|
|
20338
20350
|
/** Indicates if the accessory_keypad is connected to the device. */
|
|
20339
20351
|
is_connected: boolean;
|
|
20352
|
+
/** Indicates if the keypad battery properties. */
|
|
20353
|
+
battery?: {
|
|
20354
|
+
level: number;
|
|
20355
|
+
} | undefined;
|
|
20340
20356
|
} | undefined;
|
|
20341
20357
|
/**
|
|
20342
20358
|
---
|
|
@@ -20440,6 +20456,10 @@ interface Routes {
|
|
|
20440
20456
|
accessory_keypad?: {
|
|
20441
20457
|
/** Indicates if the accessory_keypad is connected to the device. */
|
|
20442
20458
|
is_connected: boolean;
|
|
20459
|
+
/** Indicates if the keypad battery properties. */
|
|
20460
|
+
battery?: {
|
|
20461
|
+
level: number;
|
|
20462
|
+
} | undefined;
|
|
20443
20463
|
} | undefined;
|
|
20444
20464
|
/**
|
|
20445
20465
|
---
|
|
@@ -2574,6 +2574,18 @@ declare const _default: {
|
|
|
2574
2574
|
accessory_keypad: {
|
|
2575
2575
|
description: string;
|
|
2576
2576
|
properties: {
|
|
2577
|
+
battery: {
|
|
2578
|
+
description: string;
|
|
2579
|
+
properties: {
|
|
2580
|
+
level: {
|
|
2581
|
+
maximum: number;
|
|
2582
|
+
minimum: number;
|
|
2583
|
+
type: string;
|
|
2584
|
+
};
|
|
2585
|
+
};
|
|
2586
|
+
required: string[];
|
|
2587
|
+
type: string;
|
|
2588
|
+
};
|
|
2577
2589
|
is_connected: {
|
|
2578
2590
|
description: string;
|
|
2579
2591
|
type: string;
|
|
@@ -2164,6 +2164,14 @@ export default {
|
|
|
2164
2164
|
accessory_keypad: {
|
|
2165
2165
|
description: 'Represents the accessory keypad state.',
|
|
2166
2166
|
properties: {
|
|
2167
|
+
battery: {
|
|
2168
|
+
description: 'Indicates if the keypad battery properties.',
|
|
2169
|
+
properties: {
|
|
2170
|
+
level: { maximum: 1, minimum: 0, type: 'number' },
|
|
2171
|
+
},
|
|
2172
|
+
required: ['level'],
|
|
2173
|
+
type: 'object',
|
|
2174
|
+
},
|
|
2167
2175
|
is_connected: {
|
|
2168
2176
|
description: 'Indicates if the accessory_keypad is connected to the device.',
|
|
2169
2177
|
type: 'boolean',
|