@seamapi/types 1.933.0 → 1.935.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 +93 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +345 -43
- package/dist/index.cjs +93 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +33 -0
- package/lib/seam/connect/models/devices/device-metadata.js +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +50 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +36 -3
- package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
- package/lib/seam/connect/openapi.js +63 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +252 -31
- package/lib/seam/devicedb/models/device-model.d.ts +4 -4
- package/lib/seam/devicedb/route-specs.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +19 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +64 -0
- package/src/lib/seam/connect/route-types.ts +289 -0
|
@@ -132,6 +132,7 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
132
132
|
workspace_id: string;
|
|
133
133
|
created_at: string;
|
|
134
134
|
connected_account_id: string;
|
|
135
|
+
description: string;
|
|
135
136
|
from: {
|
|
136
137
|
name: string | null;
|
|
137
138
|
};
|
|
@@ -142,7 +143,6 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
142
143
|
event_id: string;
|
|
143
144
|
occurred_at: string;
|
|
144
145
|
event_type: "access_code.name_changed";
|
|
145
|
-
description: string;
|
|
146
146
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
147
147
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
148
148
|
}, {
|
|
@@ -150,6 +150,7 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
150
150
|
workspace_id: string;
|
|
151
151
|
created_at: string;
|
|
152
152
|
connected_account_id: string;
|
|
153
|
+
description: string;
|
|
153
154
|
from: {
|
|
154
155
|
name: string | null;
|
|
155
156
|
};
|
|
@@ -160,7 +161,6 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
160
161
|
event_id: string;
|
|
161
162
|
occurred_at: string;
|
|
162
163
|
event_type: "access_code.name_changed";
|
|
163
|
-
description: string;
|
|
164
164
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
165
165
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
166
166
|
}>;
|
|
@@ -198,6 +198,7 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
198
198
|
workspace_id: string;
|
|
199
199
|
created_at: string;
|
|
200
200
|
connected_account_id: string;
|
|
201
|
+
description: string;
|
|
201
202
|
from: {
|
|
202
203
|
code: string | null;
|
|
203
204
|
};
|
|
@@ -208,7 +209,6 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
208
209
|
event_id: string;
|
|
209
210
|
occurred_at: string;
|
|
210
211
|
event_type: "access_code.code_changed";
|
|
211
|
-
description: string;
|
|
212
212
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
213
213
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
214
214
|
}, {
|
|
@@ -216,6 +216,7 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
216
216
|
workspace_id: string;
|
|
217
217
|
created_at: string;
|
|
218
218
|
connected_account_id: string;
|
|
219
|
+
description: string;
|
|
219
220
|
from: {
|
|
220
221
|
code: string | null;
|
|
221
222
|
};
|
|
@@ -226,7 +227,6 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
226
227
|
event_id: string;
|
|
227
228
|
occurred_at: string;
|
|
228
229
|
event_type: "access_code.code_changed";
|
|
229
|
-
description: string;
|
|
230
230
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
231
231
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
232
232
|
}>;
|
|
@@ -270,6 +270,7 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
270
270
|
workspace_id: string;
|
|
271
271
|
created_at: string;
|
|
272
272
|
connected_account_id: string;
|
|
273
|
+
description: string;
|
|
273
274
|
from: {
|
|
274
275
|
starts_at: string | null;
|
|
275
276
|
ends_at: string | null;
|
|
@@ -282,7 +283,6 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
282
283
|
event_id: string;
|
|
283
284
|
occurred_at: string;
|
|
284
285
|
event_type: "access_code.time_frame_changed";
|
|
285
|
-
description: string;
|
|
286
286
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
287
287
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
288
288
|
}, {
|
|
@@ -290,6 +290,7 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
290
290
|
workspace_id: string;
|
|
291
291
|
created_at: string;
|
|
292
292
|
connected_account_id: string;
|
|
293
|
+
description: string;
|
|
293
294
|
from: {
|
|
294
295
|
starts_at: string | null;
|
|
295
296
|
ends_at: string | null;
|
|
@@ -302,7 +303,6 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
302
303
|
event_id: string;
|
|
303
304
|
occurred_at: string;
|
|
304
305
|
event_type: "access_code.time_frame_changed";
|
|
305
|
-
description: string;
|
|
306
306
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
307
307
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
308
308
|
}>;
|
|
@@ -1758,6 +1758,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1758
1758
|
workspace_id: string;
|
|
1759
1759
|
created_at: string;
|
|
1760
1760
|
connected_account_id: string;
|
|
1761
|
+
description: string;
|
|
1761
1762
|
from: {
|
|
1762
1763
|
name: string | null;
|
|
1763
1764
|
};
|
|
@@ -1768,7 +1769,6 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1768
1769
|
event_id: string;
|
|
1769
1770
|
occurred_at: string;
|
|
1770
1771
|
event_type: "access_code.name_changed";
|
|
1771
|
-
description: string;
|
|
1772
1772
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1773
1773
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1774
1774
|
}, {
|
|
@@ -1776,6 +1776,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1776
1776
|
workspace_id: string;
|
|
1777
1777
|
created_at: string;
|
|
1778
1778
|
connected_account_id: string;
|
|
1779
|
+
description: string;
|
|
1779
1780
|
from: {
|
|
1780
1781
|
name: string | null;
|
|
1781
1782
|
};
|
|
@@ -1786,7 +1787,6 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1786
1787
|
event_id: string;
|
|
1787
1788
|
occurred_at: string;
|
|
1788
1789
|
event_type: "access_code.name_changed";
|
|
1789
|
-
description: string;
|
|
1790
1790
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1791
1791
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1792
1792
|
}>, z.ZodObject<{
|
|
@@ -1822,6 +1822,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1822
1822
|
workspace_id: string;
|
|
1823
1823
|
created_at: string;
|
|
1824
1824
|
connected_account_id: string;
|
|
1825
|
+
description: string;
|
|
1825
1826
|
from: {
|
|
1826
1827
|
code: string | null;
|
|
1827
1828
|
};
|
|
@@ -1832,7 +1833,6 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1832
1833
|
event_id: string;
|
|
1833
1834
|
occurred_at: string;
|
|
1834
1835
|
event_type: "access_code.code_changed";
|
|
1835
|
-
description: string;
|
|
1836
1836
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1837
1837
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1838
1838
|
}, {
|
|
@@ -1840,6 +1840,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1840
1840
|
workspace_id: string;
|
|
1841
1841
|
created_at: string;
|
|
1842
1842
|
connected_account_id: string;
|
|
1843
|
+
description: string;
|
|
1843
1844
|
from: {
|
|
1844
1845
|
code: string | null;
|
|
1845
1846
|
};
|
|
@@ -1850,7 +1851,6 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1850
1851
|
event_id: string;
|
|
1851
1852
|
occurred_at: string;
|
|
1852
1853
|
event_type: "access_code.code_changed";
|
|
1853
|
-
description: string;
|
|
1854
1854
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1855
1855
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1856
1856
|
}>, z.ZodObject<{
|
|
@@ -1892,6 +1892,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1892
1892
|
workspace_id: string;
|
|
1893
1893
|
created_at: string;
|
|
1894
1894
|
connected_account_id: string;
|
|
1895
|
+
description: string;
|
|
1895
1896
|
from: {
|
|
1896
1897
|
starts_at: string | null;
|
|
1897
1898
|
ends_at: string | null;
|
|
@@ -1904,7 +1905,6 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1904
1905
|
event_id: string;
|
|
1905
1906
|
occurred_at: string;
|
|
1906
1907
|
event_type: "access_code.time_frame_changed";
|
|
1907
|
-
description: string;
|
|
1908
1908
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1909
1909
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1910
1910
|
}, {
|
|
@@ -1912,6 +1912,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1912
1912
|
workspace_id: string;
|
|
1913
1913
|
created_at: string;
|
|
1914
1914
|
connected_account_id: string;
|
|
1915
|
+
description: string;
|
|
1915
1916
|
from: {
|
|
1916
1917
|
starts_at: string | null;
|
|
1917
1918
|
ends_at: string | null;
|
|
@@ -1924,7 +1925,6 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1924
1925
|
event_id: string;
|
|
1925
1926
|
occurred_at: string;
|
|
1926
1927
|
event_type: "access_code.time_frame_changed";
|
|
1927
|
-
description: string;
|
|
1928
1928
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1929
1929
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1930
1930
|
}>, z.ZodObject<{
|
|
@@ -128,6 +128,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
128
128
|
workspace_id: string;
|
|
129
129
|
created_at: string;
|
|
130
130
|
connected_account_id: string;
|
|
131
|
+
description: string;
|
|
131
132
|
from: {
|
|
132
133
|
name: string | null;
|
|
133
134
|
};
|
|
@@ -138,7 +139,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
138
139
|
event_id: string;
|
|
139
140
|
occurred_at: string;
|
|
140
141
|
event_type: "access_code.name_changed";
|
|
141
|
-
description: string;
|
|
142
142
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
143
143
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
144
144
|
}, {
|
|
@@ -146,6 +146,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
146
146
|
workspace_id: string;
|
|
147
147
|
created_at: string;
|
|
148
148
|
connected_account_id: string;
|
|
149
|
+
description: string;
|
|
149
150
|
from: {
|
|
150
151
|
name: string | null;
|
|
151
152
|
};
|
|
@@ -156,7 +157,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
156
157
|
event_id: string;
|
|
157
158
|
occurred_at: string;
|
|
158
159
|
event_type: "access_code.name_changed";
|
|
159
|
-
description: string;
|
|
160
160
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
161
161
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
162
162
|
}>, z.ZodObject<{
|
|
@@ -192,6 +192,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
192
192
|
workspace_id: string;
|
|
193
193
|
created_at: string;
|
|
194
194
|
connected_account_id: string;
|
|
195
|
+
description: string;
|
|
195
196
|
from: {
|
|
196
197
|
code: string | null;
|
|
197
198
|
};
|
|
@@ -202,7 +203,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
202
203
|
event_id: string;
|
|
203
204
|
occurred_at: string;
|
|
204
205
|
event_type: "access_code.code_changed";
|
|
205
|
-
description: string;
|
|
206
206
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
207
207
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
208
208
|
}, {
|
|
@@ -210,6 +210,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
210
210
|
workspace_id: string;
|
|
211
211
|
created_at: string;
|
|
212
212
|
connected_account_id: string;
|
|
213
|
+
description: string;
|
|
213
214
|
from: {
|
|
214
215
|
code: string | null;
|
|
215
216
|
};
|
|
@@ -220,7 +221,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
220
221
|
event_id: string;
|
|
221
222
|
occurred_at: string;
|
|
222
223
|
event_type: "access_code.code_changed";
|
|
223
|
-
description: string;
|
|
224
224
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
225
225
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
226
226
|
}>, z.ZodObject<{
|
|
@@ -262,6 +262,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
262
262
|
workspace_id: string;
|
|
263
263
|
created_at: string;
|
|
264
264
|
connected_account_id: string;
|
|
265
|
+
description: string;
|
|
265
266
|
from: {
|
|
266
267
|
starts_at: string | null;
|
|
267
268
|
ends_at: string | null;
|
|
@@ -274,7 +275,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
274
275
|
event_id: string;
|
|
275
276
|
occurred_at: string;
|
|
276
277
|
event_type: "access_code.time_frame_changed";
|
|
277
|
-
description: string;
|
|
278
278
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
279
279
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
280
280
|
}, {
|
|
@@ -282,6 +282,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
282
282
|
workspace_id: string;
|
|
283
283
|
created_at: string;
|
|
284
284
|
connected_account_id: string;
|
|
285
|
+
description: string;
|
|
285
286
|
from: {
|
|
286
287
|
starts_at: string | null;
|
|
287
288
|
ends_at: string | null;
|
|
@@ -294,7 +295,6 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
294
295
|
event_id: string;
|
|
295
296
|
occurred_at: string;
|
|
296
297
|
event_type: "access_code.time_frame_changed";
|
|
297
|
-
description: string;
|
|
298
298
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
299
299
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
300
300
|
}>, z.ZodObject<{
|
|
@@ -11519,6 +11519,7 @@ const openapi = {
|
|
|
11519
11519
|
'ultraloq_lock',
|
|
11520
11520
|
'keyincode_lock',
|
|
11521
11521
|
'omnitec_lock',
|
|
11522
|
+
'kisi_lock',
|
|
11522
11523
|
],
|
|
11523
11524
|
type: 'string',
|
|
11524
11525
|
},
|
|
@@ -12889,6 +12890,37 @@ const openapi = {
|
|
|
12889
12890
|
},
|
|
12890
12891
|
type: 'object',
|
|
12891
12892
|
},
|
|
12893
|
+
kisi_metadata: {
|
|
12894
|
+
description: 'Metadata for a Kisi device.',
|
|
12895
|
+
properties: {
|
|
12896
|
+
description: {
|
|
12897
|
+
description: 'Description for a Kisi device.',
|
|
12898
|
+
nullable: true,
|
|
12899
|
+
type: 'string',
|
|
12900
|
+
},
|
|
12901
|
+
lock_id: {
|
|
12902
|
+
description: 'Lock ID for a Kisi device.',
|
|
12903
|
+
format: 'float',
|
|
12904
|
+
type: 'number',
|
|
12905
|
+
},
|
|
12906
|
+
lock_name: {
|
|
12907
|
+
description: 'Lock name for a Kisi device.',
|
|
12908
|
+
type: 'string',
|
|
12909
|
+
},
|
|
12910
|
+
place_name: {
|
|
12911
|
+
description: 'Place name for a Kisi device.',
|
|
12912
|
+
nullable: true,
|
|
12913
|
+
type: 'string',
|
|
12914
|
+
},
|
|
12915
|
+
},
|
|
12916
|
+
required: [
|
|
12917
|
+
'lock_id',
|
|
12918
|
+
'lock_name',
|
|
12919
|
+
'place_name',
|
|
12920
|
+
'description',
|
|
12921
|
+
],
|
|
12922
|
+
type: 'object',
|
|
12923
|
+
},
|
|
12892
12924
|
korelock_metadata: {
|
|
12893
12925
|
description: 'Metadata for a Korelock device.',
|
|
12894
12926
|
properties: {
|
|
@@ -13172,6 +13204,10 @@ const openapi = {
|
|
|
13172
13204
|
description: 'Whether the Omnitec lock has a connected gateway for remote operations.',
|
|
13173
13205
|
type: 'boolean',
|
|
13174
13206
|
},
|
|
13207
|
+
lock_alias: {
|
|
13208
|
+
description: 'Operator-assigned alias for an Omnitec device.',
|
|
13209
|
+
type: 'string',
|
|
13210
|
+
},
|
|
13175
13211
|
lock_id: {
|
|
13176
13212
|
description: 'Lock ID for an Omnitec device.',
|
|
13177
13213
|
format: 'float',
|
|
@@ -15489,6 +15525,7 @@ const openapi = {
|
|
|
15489
15525
|
'guesty',
|
|
15490
15526
|
'acuity_scheduling',
|
|
15491
15527
|
'omnitec',
|
|
15528
|
+
'kisi',
|
|
15492
15529
|
],
|
|
15493
15530
|
type: 'string',
|
|
15494
15531
|
},
|
|
@@ -29034,6 +29071,7 @@ const openapi = {
|
|
|
29034
29071
|
'ultraloq_lock',
|
|
29035
29072
|
'keyincode_lock',
|
|
29036
29073
|
'omnitec_lock',
|
|
29074
|
+
'kisi_lock',
|
|
29037
29075
|
],
|
|
29038
29076
|
type: 'string',
|
|
29039
29077
|
},
|
|
@@ -47533,6 +47571,7 @@ const openapi = {
|
|
|
47533
47571
|
'guesty',
|
|
47534
47572
|
'acuity_scheduling',
|
|
47535
47573
|
'omnitec',
|
|
47574
|
+
'kisi',
|
|
47536
47575
|
'yale_access',
|
|
47537
47576
|
'hid_cm',
|
|
47538
47577
|
'google_nest',
|
|
@@ -51481,6 +51520,7 @@ const openapi = {
|
|
|
51481
51520
|
'ultraloq_lock',
|
|
51482
51521
|
'keyincode_lock',
|
|
51483
51522
|
'omnitec_lock',
|
|
51523
|
+
'kisi_lock',
|
|
51484
51524
|
],
|
|
51485
51525
|
type: 'string',
|
|
51486
51526
|
},
|
|
@@ -51557,6 +51597,7 @@ const openapi = {
|
|
|
51557
51597
|
'ultraloq_lock',
|
|
51558
51598
|
'keyincode_lock',
|
|
51559
51599
|
'omnitec_lock',
|
|
51600
|
+
'kisi_lock',
|
|
51560
51601
|
],
|
|
51561
51602
|
type: 'string',
|
|
51562
51603
|
},
|
|
@@ -51632,6 +51673,7 @@ const openapi = {
|
|
|
51632
51673
|
'dormakaba_oracode',
|
|
51633
51674
|
'tedee',
|
|
51634
51675
|
'keyincode',
|
|
51676
|
+
'kisi',
|
|
51635
51677
|
'akiles',
|
|
51636
51678
|
'ecobee',
|
|
51637
51679
|
'honeywell_resideo',
|
|
@@ -51651,6 +51693,7 @@ const openapi = {
|
|
|
51651
51693
|
'guesty',
|
|
51652
51694
|
'acuity_scheduling',
|
|
51653
51695
|
'omnitec',
|
|
51696
|
+
'kisi',
|
|
51654
51697
|
'slack',
|
|
51655
51698
|
],
|
|
51656
51699
|
type: 'string',
|
|
@@ -51924,6 +51967,7 @@ const openapi = {
|
|
|
51924
51967
|
'ultraloq_lock',
|
|
51925
51968
|
'keyincode_lock',
|
|
51926
51969
|
'omnitec_lock',
|
|
51970
|
+
'kisi_lock',
|
|
51927
51971
|
],
|
|
51928
51972
|
type: 'string',
|
|
51929
51973
|
},
|
|
@@ -51996,6 +52040,7 @@ const openapi = {
|
|
|
51996
52040
|
'ultraloq_lock',
|
|
51997
52041
|
'keyincode_lock',
|
|
51998
52042
|
'omnitec_lock',
|
|
52043
|
+
'kisi_lock',
|
|
51999
52044
|
],
|
|
52000
52045
|
type: 'string',
|
|
52001
52046
|
},
|
|
@@ -52131,6 +52176,7 @@ const openapi = {
|
|
|
52131
52176
|
'dormakaba_oracode',
|
|
52132
52177
|
'tedee',
|
|
52133
52178
|
'keyincode',
|
|
52179
|
+
'kisi',
|
|
52134
52180
|
'akiles',
|
|
52135
52181
|
'ecobee',
|
|
52136
52182
|
'honeywell_resideo',
|
|
@@ -52150,6 +52196,7 @@ const openapi = {
|
|
|
52150
52196
|
'guesty',
|
|
52151
52197
|
'acuity_scheduling',
|
|
52152
52198
|
'omnitec',
|
|
52199
|
+
'kisi',
|
|
52153
52200
|
'slack',
|
|
52154
52201
|
],
|
|
52155
52202
|
type: 'string',
|
|
@@ -54230,6 +54277,7 @@ const openapi = {
|
|
|
54230
54277
|
'ultraloq_lock',
|
|
54231
54278
|
'keyincode_lock',
|
|
54232
54279
|
'omnitec_lock',
|
|
54280
|
+
'kisi_lock',
|
|
54233
54281
|
],
|
|
54234
54282
|
type: 'string',
|
|
54235
54283
|
},
|
|
@@ -54306,6 +54354,7 @@ const openapi = {
|
|
|
54306
54354
|
'ultraloq_lock',
|
|
54307
54355
|
'keyincode_lock',
|
|
54308
54356
|
'omnitec_lock',
|
|
54357
|
+
'kisi_lock',
|
|
54309
54358
|
],
|
|
54310
54359
|
type: 'string',
|
|
54311
54360
|
},
|
|
@@ -54381,6 +54430,7 @@ const openapi = {
|
|
|
54381
54430
|
'dormakaba_oracode',
|
|
54382
54431
|
'tedee',
|
|
54383
54432
|
'keyincode',
|
|
54433
|
+
'kisi',
|
|
54384
54434
|
'akiles',
|
|
54385
54435
|
'ecobee',
|
|
54386
54436
|
'honeywell_resideo',
|
|
@@ -54400,6 +54450,7 @@ const openapi = {
|
|
|
54400
54450
|
'guesty',
|
|
54401
54451
|
'acuity_scheduling',
|
|
54402
54452
|
'omnitec',
|
|
54453
|
+
'kisi',
|
|
54403
54454
|
'slack',
|
|
54404
54455
|
],
|
|
54405
54456
|
type: 'string',
|
|
@@ -54672,6 +54723,7 @@ const openapi = {
|
|
|
54672
54723
|
'ultraloq_lock',
|
|
54673
54724
|
'keyincode_lock',
|
|
54674
54725
|
'omnitec_lock',
|
|
54726
|
+
'kisi_lock',
|
|
54675
54727
|
],
|
|
54676
54728
|
type: 'string',
|
|
54677
54729
|
},
|
|
@@ -54744,6 +54796,7 @@ const openapi = {
|
|
|
54744
54796
|
'ultraloq_lock',
|
|
54745
54797
|
'keyincode_lock',
|
|
54746
54798
|
'omnitec_lock',
|
|
54799
|
+
'kisi_lock',
|
|
54747
54800
|
],
|
|
54748
54801
|
type: 'string',
|
|
54749
54802
|
},
|
|
@@ -54879,6 +54932,7 @@ const openapi = {
|
|
|
54879
54932
|
'dormakaba_oracode',
|
|
54880
54933
|
'tedee',
|
|
54881
54934
|
'keyincode',
|
|
54935
|
+
'kisi',
|
|
54882
54936
|
'akiles',
|
|
54883
54937
|
'ecobee',
|
|
54884
54938
|
'honeywell_resideo',
|
|
@@ -54898,6 +54952,7 @@ const openapi = {
|
|
|
54898
54952
|
'guesty',
|
|
54899
54953
|
'acuity_scheduling',
|
|
54900
54954
|
'omnitec',
|
|
54955
|
+
'kisi',
|
|
54901
54956
|
'slack',
|
|
54902
54957
|
],
|
|
54903
54958
|
type: 'string',
|
|
@@ -56911,6 +56966,7 @@ const openapi = {
|
|
|
56911
56966
|
'ultraloq_lock',
|
|
56912
56967
|
'keyincode_lock',
|
|
56913
56968
|
'omnitec_lock',
|
|
56969
|
+
'kisi_lock',
|
|
56914
56970
|
],
|
|
56915
56971
|
type: 'string',
|
|
56916
56972
|
},
|
|
@@ -56951,6 +57007,7 @@ const openapi = {
|
|
|
56951
57007
|
'ultraloq_lock',
|
|
56952
57008
|
'keyincode_lock',
|
|
56953
57009
|
'omnitec_lock',
|
|
57010
|
+
'kisi_lock',
|
|
56954
57011
|
],
|
|
56955
57012
|
type: 'string',
|
|
56956
57013
|
},
|
|
@@ -56988,11 +57045,13 @@ const openapi = {
|
|
|
56988
57045
|
'dormakaba_oracode',
|
|
56989
57046
|
'tedee',
|
|
56990
57047
|
'keyincode',
|
|
57048
|
+
'kisi',
|
|
56991
57049
|
'akiles',
|
|
56992
57050
|
'korelock',
|
|
56993
57051
|
'smartthings',
|
|
56994
57052
|
'ultraloq',
|
|
56995
57053
|
'omnitec',
|
|
57054
|
+
'kisi',
|
|
56996
57055
|
],
|
|
56997
57056
|
type: 'string',
|
|
56998
57057
|
},
|
|
@@ -57264,6 +57323,7 @@ const openapi = {
|
|
|
57264
57323
|
'ultraloq_lock',
|
|
57265
57324
|
'keyincode_lock',
|
|
57266
57325
|
'omnitec_lock',
|
|
57326
|
+
'kisi_lock',
|
|
57267
57327
|
],
|
|
57268
57328
|
type: 'string',
|
|
57269
57329
|
},
|
|
@@ -57300,6 +57360,7 @@ const openapi = {
|
|
|
57300
57360
|
'ultraloq_lock',
|
|
57301
57361
|
'keyincode_lock',
|
|
57302
57362
|
'omnitec_lock',
|
|
57363
|
+
'kisi_lock',
|
|
57303
57364
|
],
|
|
57304
57365
|
type: 'string',
|
|
57305
57366
|
},
|
|
@@ -57397,11 +57458,13 @@ const openapi = {
|
|
|
57397
57458
|
'dormakaba_oracode',
|
|
57398
57459
|
'tedee',
|
|
57399
57460
|
'keyincode',
|
|
57461
|
+
'kisi',
|
|
57400
57462
|
'akiles',
|
|
57401
57463
|
'korelock',
|
|
57402
57464
|
'smartthings',
|
|
57403
57465
|
'ultraloq',
|
|
57404
57466
|
'omnitec',
|
|
57467
|
+
'kisi',
|
|
57405
57468
|
],
|
|
57406
57469
|
type: 'string',
|
|
57407
57470
|
},
|