@seamapi/types 1.28.0 → 1.30.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 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +21 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/lib/seam/connect/unstable/models/managed-device.d.ts +10 -0
- package/lib/seam/connect/unstable/models/managed-device.js +1 -0
- package/lib/seam/connect/unstable/models/managed-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +25 -4
- package/src/lib/seam/connect/route-types.ts +8 -0
- package/src/lib/seam/connect/unstable/models/managed-device.ts +1 -0
|
@@ -1300,6 +1300,7 @@ export interface Routes {
|
|
|
1300
1300
|
image_url?: string | undefined;
|
|
1301
1301
|
image_alt_text?: string | undefined;
|
|
1302
1302
|
serial_number?: string | undefined;
|
|
1303
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
1303
1304
|
} & {
|
|
1304
1305
|
august_metadata?: {
|
|
1305
1306
|
lock_id: string;
|
|
@@ -1673,6 +1674,7 @@ export interface Routes {
|
|
|
1673
1674
|
queryParams: {};
|
|
1674
1675
|
jsonBody: {};
|
|
1675
1676
|
commonParams: {
|
|
1677
|
+
/** List all devices owned by this connected account */
|
|
1676
1678
|
connected_account_id?: string | undefined;
|
|
1677
1679
|
connected_account_ids?: string[] | undefined;
|
|
1678
1680
|
connect_webview_id?: string | undefined;
|
|
@@ -1707,6 +1709,7 @@ export interface Routes {
|
|
|
1707
1709
|
image_url?: string | undefined;
|
|
1708
1710
|
image_alt_text?: string | undefined;
|
|
1709
1711
|
serial_number?: string | undefined;
|
|
1712
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
1710
1713
|
} & {
|
|
1711
1714
|
august_metadata?: {
|
|
1712
1715
|
lock_id: string;
|
|
@@ -2139,6 +2142,7 @@ export interface Routes {
|
|
|
2139
2142
|
queryParams: {};
|
|
2140
2143
|
jsonBody: {};
|
|
2141
2144
|
commonParams: {
|
|
2145
|
+
/** List all devices owned by this connected account */
|
|
2142
2146
|
connected_account_id?: string | undefined;
|
|
2143
2147
|
connected_account_ids?: string[] | undefined;
|
|
2144
2148
|
connect_webview_id?: string | undefined;
|
|
@@ -2358,6 +2362,7 @@ export interface Routes {
|
|
|
2358
2362
|
queryParams: {};
|
|
2359
2363
|
jsonBody: {};
|
|
2360
2364
|
commonParams: {
|
|
2365
|
+
/** List all devices owned by this connected account */
|
|
2361
2366
|
connected_account_id?: string | undefined;
|
|
2362
2367
|
connected_account_ids?: string[] | undefined;
|
|
2363
2368
|
connect_webview_id?: string | undefined;
|
|
@@ -2814,6 +2819,7 @@ export interface Routes {
|
|
|
2814
2819
|
image_url?: string | undefined;
|
|
2815
2820
|
image_alt_text?: string | undefined;
|
|
2816
2821
|
serial_number?: string | undefined;
|
|
2822
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
2817
2823
|
} & {
|
|
2818
2824
|
august_metadata?: {
|
|
2819
2825
|
lock_id: string;
|
|
@@ -3217,6 +3223,7 @@ export interface Routes {
|
|
|
3217
3223
|
queryParams: {};
|
|
3218
3224
|
jsonBody: {};
|
|
3219
3225
|
commonParams: {
|
|
3226
|
+
/** List all devices owned by this connected account */
|
|
3220
3227
|
connected_account_id?: string | undefined;
|
|
3221
3228
|
connected_account_ids?: string[] | undefined;
|
|
3222
3229
|
connect_webview_id?: string | undefined;
|
|
@@ -3251,6 +3258,7 @@ export interface Routes {
|
|
|
3251
3258
|
image_url?: string | undefined;
|
|
3252
3259
|
image_alt_text?: string | undefined;
|
|
3253
3260
|
serial_number?: string | undefined;
|
|
3261
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
3254
3262
|
} & {
|
|
3255
3263
|
august_metadata?: {
|
|
3256
3264
|
lock_id: string;
|
|
@@ -32,6 +32,7 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
32
32
|
image_url: z.ZodOptional<z.ZodString>;
|
|
33
33
|
image_alt_text: z.ZodOptional<z.ZodString>;
|
|
34
34
|
serial_number: z.ZodOptional<z.ZodString>;
|
|
35
|
+
supports_accessory_keypad: z.ZodOptional<z.ZodBoolean>;
|
|
35
36
|
}, "strip", z.ZodTypeAny, {
|
|
36
37
|
name: string;
|
|
37
38
|
online: boolean;
|
|
@@ -49,6 +50,7 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
49
50
|
image_url?: string | undefined;
|
|
50
51
|
image_alt_text?: string | undefined;
|
|
51
52
|
serial_number?: string | undefined;
|
|
53
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
52
54
|
}, {
|
|
53
55
|
name: string;
|
|
54
56
|
online: boolean;
|
|
@@ -66,6 +68,7 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
66
68
|
image_url?: string | undefined;
|
|
67
69
|
image_alt_text?: string | undefined;
|
|
68
70
|
serial_number?: string | undefined;
|
|
71
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
69
72
|
}>;
|
|
70
73
|
export declare const managed_device: z.ZodObject<{
|
|
71
74
|
device_id: z.ZodString;
|
|
@@ -100,6 +103,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
100
103
|
image_url: z.ZodOptional<z.ZodString>;
|
|
101
104
|
image_alt_text: z.ZodOptional<z.ZodString>;
|
|
102
105
|
serial_number: z.ZodOptional<z.ZodString>;
|
|
106
|
+
supports_accessory_keypad: z.ZodOptional<z.ZodBoolean>;
|
|
103
107
|
}, "strip", z.ZodTypeAny, {
|
|
104
108
|
name: string;
|
|
105
109
|
online: boolean;
|
|
@@ -117,6 +121,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
117
121
|
image_url?: string | undefined;
|
|
118
122
|
image_alt_text?: string | undefined;
|
|
119
123
|
serial_number?: string | undefined;
|
|
124
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
120
125
|
}, {
|
|
121
126
|
name: string;
|
|
122
127
|
online: boolean;
|
|
@@ -134,6 +139,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
134
139
|
image_url?: string | undefined;
|
|
135
140
|
image_alt_text?: string | undefined;
|
|
136
141
|
serial_number?: string | undefined;
|
|
142
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
137
143
|
}>, z.ZodObject<{
|
|
138
144
|
august_metadata: z.ZodOptional<z.ZodObject<{
|
|
139
145
|
lock_id: z.ZodString;
|
|
@@ -1791,6 +1797,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1791
1797
|
image_url?: string | undefined;
|
|
1792
1798
|
image_alt_text?: string | undefined;
|
|
1793
1799
|
serial_number?: string | undefined;
|
|
1800
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
1794
1801
|
} & {
|
|
1795
1802
|
august_metadata?: {
|
|
1796
1803
|
lock_id: string;
|
|
@@ -2155,6 +2162,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2155
2162
|
image_url?: string | undefined;
|
|
2156
2163
|
image_alt_text?: string | undefined;
|
|
2157
2164
|
serial_number?: string | undefined;
|
|
2165
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
2158
2166
|
} & {
|
|
2159
2167
|
august_metadata?: {
|
|
2160
2168
|
lock_id: string;
|
|
@@ -2540,6 +2548,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2540
2548
|
image_url?: string | undefined;
|
|
2541
2549
|
image_alt_text?: string | undefined;
|
|
2542
2550
|
serial_number?: string | undefined;
|
|
2551
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
2543
2552
|
} & {
|
|
2544
2553
|
august_metadata?: {
|
|
2545
2554
|
lock_id: string;
|
|
@@ -2904,6 +2913,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2904
2913
|
image_url?: string | undefined;
|
|
2905
2914
|
image_alt_text?: string | undefined;
|
|
2906
2915
|
serial_number?: string | undefined;
|
|
2916
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
2907
2917
|
} & {
|
|
2908
2918
|
august_metadata?: {
|
|
2909
2919
|
lock_id: string;
|
|
@@ -24,6 +24,7 @@ export const common_device_properties = z.object({
|
|
|
24
24
|
image_url: z.string().url().optional(),
|
|
25
25
|
image_alt_text: z.string().optional(),
|
|
26
26
|
serial_number: z.string().optional(),
|
|
27
|
+
supports_accessory_keypad: z.boolean().optional(),
|
|
27
28
|
});
|
|
28
29
|
export const managed_device = z.object({
|
|
29
30
|
device_id: z.string().uuid(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/managed-device.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;AAIzE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC;QACd,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE;KACtC,CAAC;IACF,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACxC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAClD,OAAO,EAAE,CAAC;SACP,MAAM,CAAC;QACN,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC/B,MAAM,EAAE,cAAc;KACvB,CAAC;SACD,QAAQ,EAAE;IACb,iBAAiB;IACjB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACtC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/managed-device.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;AAIzE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC;QACd,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE;KACtC,CAAC;IACF,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACxC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAClD,OAAO,EAAE,CAAC;SACP,MAAM,CAAC;QACN,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC/B,MAAM,EAAE,cAAc;KACvB,CAAC;SACD,QAAQ,EAAE;IACb,iBAAiB;IACjB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACtC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,yBAAyB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAClD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC5B,WAAW,EAAE,eAAe;IAC5B,sBAAsB,EAAE,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC;IAC7C,UAAU,EAAE,wBAAwB;SACjC,GAAG,CAAC,eAAe,CAAC;SACpB,GAAG,CAAC,qBAAqB,CAAC;IAC7B,QAAQ,EAAE,CAAC;QACT,qCAAqC;SACpC,MAAM,CAAC;QACN,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACpC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC;SACD,QAAQ,EAAE;IACb,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACvC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,QAAQ,EAAE,CAAC,CAAC,KAAK,CACf,CAAC,CAAC,MAAM,CAAC;QACP,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -443,6 +443,7 @@ export default {
|
|
|
443
443
|
name: { type: 'string' },
|
|
444
444
|
online: { type: 'boolean' },
|
|
445
445
|
serial_number: { type: 'string' },
|
|
446
|
+
supports_accessory_keypad: { type: 'boolean' },
|
|
446
447
|
},
|
|
447
448
|
required: ['online', 'name', 'model'],
|
|
448
449
|
type: 'object',
|
|
@@ -5043,7 +5044,12 @@ export default {
|
|
|
5043
5044
|
schema: {
|
|
5044
5045
|
properties: {
|
|
5045
5046
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
5046
|
-
connected_account_id: {
|
|
5047
|
+
connected_account_id: {
|
|
5048
|
+
description:
|
|
5049
|
+
'List all devices owned by this connected account',
|
|
5050
|
+
format: 'uuid',
|
|
5051
|
+
type: 'string',
|
|
5052
|
+
},
|
|
5047
5053
|
connected_account_ids: {
|
|
5048
5054
|
items: { format: 'uuid', type: 'string' },
|
|
5049
5055
|
minItems: 1,
|
|
@@ -5348,7 +5354,12 @@ export default {
|
|
|
5348
5354
|
schema: {
|
|
5349
5355
|
properties: {
|
|
5350
5356
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
5351
|
-
connected_account_id: {
|
|
5357
|
+
connected_account_id: {
|
|
5358
|
+
description:
|
|
5359
|
+
'List all devices owned by this connected account',
|
|
5360
|
+
format: 'uuid',
|
|
5361
|
+
type: 'string',
|
|
5362
|
+
},
|
|
5352
5363
|
connected_account_ids: {
|
|
5353
5364
|
items: { format: 'uuid', type: 'string' },
|
|
5354
5365
|
minItems: 1,
|
|
@@ -6145,7 +6156,12 @@ export default {
|
|
|
6145
6156
|
schema: {
|
|
6146
6157
|
properties: {
|
|
6147
6158
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
6148
|
-
connected_account_id: {
|
|
6159
|
+
connected_account_id: {
|
|
6160
|
+
description:
|
|
6161
|
+
'List all devices owned by this connected account',
|
|
6162
|
+
format: 'uuid',
|
|
6163
|
+
type: 'string',
|
|
6164
|
+
},
|
|
6149
6165
|
connected_account_ids: {
|
|
6150
6166
|
items: { format: 'uuid', type: 'string' },
|
|
6151
6167
|
minItems: 1,
|
|
@@ -7491,7 +7507,12 @@ export default {
|
|
|
7491
7507
|
schema: {
|
|
7492
7508
|
properties: {
|
|
7493
7509
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
7494
|
-
connected_account_id: {
|
|
7510
|
+
connected_account_id: {
|
|
7511
|
+
description:
|
|
7512
|
+
'List all devices owned by this connected account',
|
|
7513
|
+
format: 'uuid',
|
|
7514
|
+
type: 'string',
|
|
7515
|
+
},
|
|
7495
7516
|
connected_account_ids: {
|
|
7496
7517
|
items: { format: 'uuid', type: 'string' },
|
|
7497
7518
|
minItems: 1,
|
|
@@ -1426,6 +1426,7 @@ export interface Routes {
|
|
|
1426
1426
|
image_url?: string | undefined
|
|
1427
1427
|
image_alt_text?: string | undefined
|
|
1428
1428
|
serial_number?: string | undefined
|
|
1429
|
+
supports_accessory_keypad?: boolean | undefined
|
|
1429
1430
|
} & {
|
|
1430
1431
|
august_metadata?:
|
|
1431
1432
|
| {
|
|
@@ -1955,6 +1956,7 @@ export interface Routes {
|
|
|
1955
1956
|
queryParams: {}
|
|
1956
1957
|
jsonBody: {}
|
|
1957
1958
|
commonParams: {
|
|
1959
|
+
/** List all devices owned by this connected account */
|
|
1958
1960
|
connected_account_id?: string | undefined
|
|
1959
1961
|
connected_account_ids?: string[] | undefined
|
|
1960
1962
|
connect_webview_id?: string | undefined
|
|
@@ -2121,6 +2123,7 @@ export interface Routes {
|
|
|
2121
2123
|
image_url?: string | undefined
|
|
2122
2124
|
image_alt_text?: string | undefined
|
|
2123
2125
|
serial_number?: string | undefined
|
|
2126
|
+
supports_accessory_keypad?: boolean | undefined
|
|
2124
2127
|
} & {
|
|
2125
2128
|
august_metadata?:
|
|
2126
2129
|
| {
|
|
@@ -2740,6 +2743,7 @@ export interface Routes {
|
|
|
2740
2743
|
queryParams: {}
|
|
2741
2744
|
jsonBody: {}
|
|
2742
2745
|
commonParams: {
|
|
2746
|
+
/** List all devices owned by this connected account */
|
|
2743
2747
|
connected_account_id?: string | undefined
|
|
2744
2748
|
connected_account_ids?: string[] | undefined
|
|
2745
2749
|
connect_webview_id?: string | undefined
|
|
@@ -3185,6 +3189,7 @@ export interface Routes {
|
|
|
3185
3189
|
queryParams: {}
|
|
3186
3190
|
jsonBody: {}
|
|
3187
3191
|
commonParams: {
|
|
3192
|
+
/** List all devices owned by this connected account */
|
|
3188
3193
|
connected_account_id?: string | undefined
|
|
3189
3194
|
connected_account_ids?: string[] | undefined
|
|
3190
3195
|
connect_webview_id?: string | undefined
|
|
@@ -3788,6 +3793,7 @@ export interface Routes {
|
|
|
3788
3793
|
image_url?: string | undefined
|
|
3789
3794
|
image_alt_text?: string | undefined
|
|
3790
3795
|
serial_number?: string | undefined
|
|
3796
|
+
supports_accessory_keypad?: boolean | undefined
|
|
3791
3797
|
} & {
|
|
3792
3798
|
august_metadata?:
|
|
3793
3799
|
| {
|
|
@@ -4347,6 +4353,7 @@ export interface Routes {
|
|
|
4347
4353
|
queryParams: {}
|
|
4348
4354
|
jsonBody: {}
|
|
4349
4355
|
commonParams: {
|
|
4356
|
+
/** List all devices owned by this connected account */
|
|
4350
4357
|
connected_account_id?: string | undefined
|
|
4351
4358
|
connected_account_ids?: string[] | undefined
|
|
4352
4359
|
connect_webview_id?: string | undefined
|
|
@@ -4513,6 +4520,7 @@ export interface Routes {
|
|
|
4513
4520
|
image_url?: string | undefined
|
|
4514
4521
|
image_alt_text?: string | undefined
|
|
4515
4522
|
serial_number?: string | undefined
|
|
4523
|
+
supports_accessory_keypad?: boolean | undefined
|
|
4516
4524
|
} & {
|
|
4517
4525
|
august_metadata?:
|
|
4518
4526
|
| {
|
|
@@ -30,6 +30,7 @@ export const common_device_properties = z.object({
|
|
|
30
30
|
image_url: z.string().url().optional(),
|
|
31
31
|
image_alt_text: z.string().optional(),
|
|
32
32
|
serial_number: z.string().optional(),
|
|
33
|
+
supports_accessory_keypad: z.boolean().optional(),
|
|
33
34
|
})
|
|
34
35
|
|
|
35
36
|
export const managed_device = z.object({
|