@seamapi/types 1.932.0 → 1.934.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 +127 -60
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +731 -475
- package/dist/index.cjs +127 -60
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +38 -38
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +11 -13
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +28 -28
- package/lib/seam/connect/models/devices/device-metadata.d.ts +44 -16
- package/lib/seam/connect/models/devices/device-metadata.js +14 -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 +95 -55
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +71 -43
- 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 +87 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +558 -371
- 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/capability-properties/access-code.ts +11 -13
- package/src/lib/seam/connect/models/devices/device-metadata.ts +15 -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 +87 -28
- package/src/lib/seam/connect/route-types.ts +595 -340
package/dist/index.cjs
CHANGED
|
@@ -97,19 +97,19 @@ var access_code_name_constraint = zod.z.object({
|
|
|
97
97
|
}).describe(`Name constraint for access codes.`);
|
|
98
98
|
var access_code_constraint = zod.z.union([access_code_code_constraint, access_code_name_constraint]).describe(`Access code constraint.`);
|
|
99
99
|
var time_frame_option_time_pair = zod.z.object({
|
|
100
|
-
display_name: zod.z.string().describe("Label for the
|
|
101
|
-
|
|
102
|
-
"
|
|
100
|
+
display_name: zod.z.string().describe("Label for the start/end time pairing."),
|
|
101
|
+
start_time: zod.z.string().describe(
|
|
102
|
+
"Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`."
|
|
103
103
|
),
|
|
104
|
-
|
|
105
|
-
"
|
|
104
|
+
end_time: zod.z.string().describe(
|
|
105
|
+
"End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date."
|
|
106
106
|
)
|
|
107
107
|
}).describe(
|
|
108
|
-
"Fixed
|
|
108
|
+
"Fixed start/end time pairing. The caller picks one whole pairing; the two times cannot be mixed across pairs."
|
|
109
109
|
);
|
|
110
110
|
var time_frame_option = zod.z.object({
|
|
111
111
|
display_name: zod.z.string().describe(
|
|
112
|
-
"Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
112
|
+
"Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`)."
|
|
113
113
|
),
|
|
114
114
|
min_duration: zod.z.string().optional().describe(
|
|
115
115
|
"Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum."
|
|
@@ -118,16 +118,16 @@ var time_frame_option = zod.z.object({
|
|
|
118
118
|
"Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum."
|
|
119
119
|
),
|
|
120
120
|
matching_start_end_time: zod.z.literal(true).optional().describe(
|
|
121
|
-
"When `true`, the
|
|
121
|
+
"When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`."
|
|
122
122
|
),
|
|
123
123
|
time_pairs: zod.z.array(time_frame_option_time_pair).optional().describe(
|
|
124
|
-
"Fixed
|
|
124
|
+
"Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`."
|
|
125
125
|
),
|
|
126
126
|
start_date_recurrence_rule: zod.z.string().optional().describe(
|
|
127
|
-
"iCalendar recurrence rule (RRULE) that the
|
|
127
|
+
"iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules."
|
|
128
128
|
),
|
|
129
129
|
end_date_recurrence_rule: zod.z.string().optional().describe(
|
|
130
|
-
"iCalendar recurrence rule (RRULE) that the
|
|
130
|
+
"iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules."
|
|
131
131
|
),
|
|
132
132
|
time_zone: zod.z.string().optional().describe(
|
|
133
133
|
"IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates."
|
|
@@ -1241,7 +1241,13 @@ var device_metadata = zod.z.object({
|
|
|
1241
1241
|
location_id: zod.z.string().nullable().describe(
|
|
1242
1242
|
`Location ID for a Korelock device. Required for timebound access codes.`
|
|
1243
1243
|
)
|
|
1244
|
-
}).partial().describe(`Metadata for a Korelock device.`)
|
|
1244
|
+
}).partial().describe(`Metadata for a Korelock device.`),
|
|
1245
|
+
kisi_metadata: zod.z.object({
|
|
1246
|
+
lock_id: zod.z.number().describe(`Lock ID for a Kisi device.`),
|
|
1247
|
+
lock_name: zod.z.string().describe(`Lock name for a Kisi device.`),
|
|
1248
|
+
place_name: zod.z.string().nullable().describe(`Place name for a Kisi device.`),
|
|
1249
|
+
description: zod.z.string().nullable().describe(`Description for a Kisi device.`)
|
|
1250
|
+
}).describe(`Metadata for a Kisi device.`)
|
|
1245
1251
|
}).partial().describe(`
|
|
1246
1252
|
---
|
|
1247
1253
|
property_group_key: provider_metadata
|
|
@@ -1276,7 +1282,8 @@ var LOCK_DEVICE_TYPE = {
|
|
|
1276
1282
|
AKILES_LOCK: "akiles_lock",
|
|
1277
1283
|
ULTRALOQ_LOCK: "ultraloq_lock",
|
|
1278
1284
|
KEYINCODE_LOCK: "keyincode_lock",
|
|
1279
|
-
OMNITEC_LOCK: "omnitec_lock"
|
|
1285
|
+
OMNITEC_LOCK: "omnitec_lock",
|
|
1286
|
+
KISI_LOCK: "kisi_lock"
|
|
1280
1287
|
};
|
|
1281
1288
|
var lock_device_type = zod.z.enum(
|
|
1282
1289
|
Object.values(LOCK_DEVICE_TYPE)
|
|
@@ -2250,7 +2257,8 @@ var DEVICE_PROVIDERS = {
|
|
|
2250
2257
|
HOSTAWAY: "hostaway",
|
|
2251
2258
|
GUESTY: "guesty",
|
|
2252
2259
|
ACUITY_SCHEDULING: "acuity_scheduling",
|
|
2253
|
-
OMNITEC: "omnitec"
|
|
2260
|
+
OMNITEC: "omnitec",
|
|
2261
|
+
KISI: "kisi"
|
|
2254
2262
|
};
|
|
2255
2263
|
var ALL_DEVICE_PROVIDERS = Object.values(DEVICE_PROVIDERS);
|
|
2256
2264
|
var PROVIDER_CATEGORY_MAP = {
|
|
@@ -2317,7 +2325,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2317
2325
|
"sifely",
|
|
2318
2326
|
"thirty_three_lock"
|
|
2319
2327
|
],
|
|
2320
|
-
beta: [],
|
|
2328
|
+
beta: ["kisi"],
|
|
2321
2329
|
thermostats: ["ecobee", "nest", "sensi", "honeywell_resideo", "first_alert"],
|
|
2322
2330
|
noise_sensors: ["minut", "noiseaware"],
|
|
2323
2331
|
access_control_systems: [
|
|
@@ -19059,7 +19067,8 @@ var openapi = {
|
|
|
19059
19067
|
"akiles_lock",
|
|
19060
19068
|
"ultraloq_lock",
|
|
19061
19069
|
"keyincode_lock",
|
|
19062
|
-
"omnitec_lock"
|
|
19070
|
+
"omnitec_lock",
|
|
19071
|
+
"kisi_lock"
|
|
19063
19072
|
],
|
|
19064
19073
|
type: "string"
|
|
19065
19074
|
},
|
|
@@ -20430,6 +20439,37 @@ var openapi = {
|
|
|
20430
20439
|
},
|
|
20431
20440
|
type: "object"
|
|
20432
20441
|
},
|
|
20442
|
+
kisi_metadata: {
|
|
20443
|
+
description: "Metadata for a Kisi device.",
|
|
20444
|
+
properties: {
|
|
20445
|
+
description: {
|
|
20446
|
+
description: "Description for a Kisi device.",
|
|
20447
|
+
nullable: true,
|
|
20448
|
+
type: "string"
|
|
20449
|
+
},
|
|
20450
|
+
lock_id: {
|
|
20451
|
+
description: "Lock ID for a Kisi device.",
|
|
20452
|
+
format: "float",
|
|
20453
|
+
type: "number"
|
|
20454
|
+
},
|
|
20455
|
+
lock_name: {
|
|
20456
|
+
description: "Lock name for a Kisi device.",
|
|
20457
|
+
type: "string"
|
|
20458
|
+
},
|
|
20459
|
+
place_name: {
|
|
20460
|
+
description: "Place name for a Kisi device.",
|
|
20461
|
+
nullable: true,
|
|
20462
|
+
type: "string"
|
|
20463
|
+
}
|
|
20464
|
+
},
|
|
20465
|
+
required: [
|
|
20466
|
+
"lock_id",
|
|
20467
|
+
"lock_name",
|
|
20468
|
+
"place_name",
|
|
20469
|
+
"description"
|
|
20470
|
+
],
|
|
20471
|
+
type: "object"
|
|
20472
|
+
},
|
|
20433
20473
|
korelock_metadata: {
|
|
20434
20474
|
description: "Metadata for a Korelock device.",
|
|
20435
20475
|
properties: {
|
|
@@ -21326,15 +21366,15 @@ var openapi = {
|
|
|
21326
21366
|
description: "One way to make a code: a duration band plus the time-of-day and date rules that apply within it. Absence of a rule means unrestricted on that axis.",
|
|
21327
21367
|
properties: {
|
|
21328
21368
|
display_name: {
|
|
21329
|
-
description: "Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
21369
|
+
description: "Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`).",
|
|
21330
21370
|
type: "string"
|
|
21331
21371
|
},
|
|
21332
21372
|
end_date_recurrence_rule: {
|
|
21333
|
-
description: "iCalendar recurrence rule (RRULE) that the
|
|
21373
|
+
description: "iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules.",
|
|
21334
21374
|
type: "string"
|
|
21335
21375
|
},
|
|
21336
21376
|
matching_start_end_time: {
|
|
21337
|
-
description: "When `true`, the
|
|
21377
|
+
description: "When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`.",
|
|
21338
21378
|
enum: [true],
|
|
21339
21379
|
type: "boolean"
|
|
21340
21380
|
},
|
|
@@ -21347,31 +21387,31 @@ var openapi = {
|
|
|
21347
21387
|
type: "string"
|
|
21348
21388
|
},
|
|
21349
21389
|
start_date_recurrence_rule: {
|
|
21350
|
-
description: "iCalendar recurrence rule (RRULE) that the
|
|
21390
|
+
description: "iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules.",
|
|
21351
21391
|
type: "string"
|
|
21352
21392
|
},
|
|
21353
21393
|
time_pairs: {
|
|
21354
|
-
description: "Fixed
|
|
21394
|
+
description: "Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`.",
|
|
21355
21395
|
items: {
|
|
21356
|
-
description: "Fixed
|
|
21396
|
+
description: "Fixed start/end time pairing. The caller picks one whole pairing; the two times cannot be mixed across pairs.",
|
|
21357
21397
|
properties: {
|
|
21358
|
-
|
|
21359
|
-
description: "
|
|
21398
|
+
display_name: {
|
|
21399
|
+
description: "Label for the start/end time pairing.",
|
|
21360
21400
|
type: "string"
|
|
21361
21401
|
},
|
|
21362
|
-
|
|
21363
|
-
description: "
|
|
21402
|
+
end_time: {
|
|
21403
|
+
description: "End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date.",
|
|
21364
21404
|
type: "string"
|
|
21365
21405
|
},
|
|
21366
|
-
|
|
21367
|
-
description: "
|
|
21406
|
+
start_time: {
|
|
21407
|
+
description: "Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`.",
|
|
21368
21408
|
type: "string"
|
|
21369
21409
|
}
|
|
21370
21410
|
},
|
|
21371
21411
|
required: [
|
|
21372
21412
|
"display_name",
|
|
21373
|
-
"
|
|
21374
|
-
"
|
|
21413
|
+
"start_time",
|
|
21414
|
+
"end_time"
|
|
21375
21415
|
],
|
|
21376
21416
|
type: "object"
|
|
21377
21417
|
},
|
|
@@ -21394,15 +21434,15 @@ var openapi = {
|
|
|
21394
21434
|
description: "One way to make a code: a duration band plus the time-of-day and date rules that apply within it. Absence of a rule means unrestricted on that axis.",
|
|
21395
21435
|
properties: {
|
|
21396
21436
|
display_name: {
|
|
21397
|
-
description: "Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
21437
|
+
description: "Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`).",
|
|
21398
21438
|
type: "string"
|
|
21399
21439
|
},
|
|
21400
21440
|
end_date_recurrence_rule: {
|
|
21401
|
-
description: "iCalendar recurrence rule (RRULE) that the
|
|
21441
|
+
description: "iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules.",
|
|
21402
21442
|
type: "string"
|
|
21403
21443
|
},
|
|
21404
21444
|
matching_start_end_time: {
|
|
21405
|
-
description: "When `true`, the
|
|
21445
|
+
description: "When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`.",
|
|
21406
21446
|
enum: [true],
|
|
21407
21447
|
type: "boolean"
|
|
21408
21448
|
},
|
|
@@ -21415,31 +21455,31 @@ var openapi = {
|
|
|
21415
21455
|
type: "string"
|
|
21416
21456
|
},
|
|
21417
21457
|
start_date_recurrence_rule: {
|
|
21418
|
-
description: "iCalendar recurrence rule (RRULE) that the
|
|
21458
|
+
description: "iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules.",
|
|
21419
21459
|
type: "string"
|
|
21420
21460
|
},
|
|
21421
21461
|
time_pairs: {
|
|
21422
|
-
description: "Fixed
|
|
21462
|
+
description: "Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`.",
|
|
21423
21463
|
items: {
|
|
21424
|
-
description: "Fixed
|
|
21464
|
+
description: "Fixed start/end time pairing. The caller picks one whole pairing; the two times cannot be mixed across pairs.",
|
|
21425
21465
|
properties: {
|
|
21426
|
-
|
|
21427
|
-
description: "
|
|
21466
|
+
display_name: {
|
|
21467
|
+
description: "Label for the start/end time pairing.",
|
|
21428
21468
|
type: "string"
|
|
21429
21469
|
},
|
|
21430
|
-
|
|
21431
|
-
description: "
|
|
21470
|
+
end_time: {
|
|
21471
|
+
description: "End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date.",
|
|
21432
21472
|
type: "string"
|
|
21433
21473
|
},
|
|
21434
|
-
|
|
21435
|
-
description: "
|
|
21474
|
+
start_time: {
|
|
21475
|
+
description: "Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`.",
|
|
21436
21476
|
type: "string"
|
|
21437
21477
|
}
|
|
21438
21478
|
},
|
|
21439
21479
|
required: [
|
|
21440
21480
|
"display_name",
|
|
21441
|
-
"
|
|
21442
|
-
"
|
|
21481
|
+
"start_time",
|
|
21482
|
+
"end_time"
|
|
21443
21483
|
],
|
|
21444
21484
|
type: "object"
|
|
21445
21485
|
},
|
|
@@ -23029,7 +23069,8 @@ var openapi = {
|
|
|
23029
23069
|
"hostaway",
|
|
23030
23070
|
"guesty",
|
|
23031
23071
|
"acuity_scheduling",
|
|
23032
|
-
"omnitec"
|
|
23072
|
+
"omnitec",
|
|
23073
|
+
"kisi"
|
|
23033
23074
|
],
|
|
23034
23075
|
type: "string"
|
|
23035
23076
|
},
|
|
@@ -36574,7 +36615,8 @@ var openapi = {
|
|
|
36574
36615
|
"akiles_lock",
|
|
36575
36616
|
"ultraloq_lock",
|
|
36576
36617
|
"keyincode_lock",
|
|
36577
|
-
"omnitec_lock"
|
|
36618
|
+
"omnitec_lock",
|
|
36619
|
+
"kisi_lock"
|
|
36578
36620
|
],
|
|
36579
36621
|
type: "string"
|
|
36580
36622
|
},
|
|
@@ -55074,6 +55116,7 @@ var openapi = {
|
|
|
55074
55116
|
"guesty",
|
|
55075
55117
|
"acuity_scheduling",
|
|
55076
55118
|
"omnitec",
|
|
55119
|
+
"kisi",
|
|
55077
55120
|
"yale_access",
|
|
55078
55121
|
"hid_cm",
|
|
55079
55122
|
"google_nest",
|
|
@@ -59021,7 +59064,8 @@ var openapi = {
|
|
|
59021
59064
|
"akiles_lock",
|
|
59022
59065
|
"ultraloq_lock",
|
|
59023
59066
|
"keyincode_lock",
|
|
59024
|
-
"omnitec_lock"
|
|
59067
|
+
"omnitec_lock",
|
|
59068
|
+
"kisi_lock"
|
|
59025
59069
|
],
|
|
59026
59070
|
type: "string"
|
|
59027
59071
|
},
|
|
@@ -59097,7 +59141,8 @@ var openapi = {
|
|
|
59097
59141
|
"akiles_lock",
|
|
59098
59142
|
"ultraloq_lock",
|
|
59099
59143
|
"keyincode_lock",
|
|
59100
|
-
"omnitec_lock"
|
|
59144
|
+
"omnitec_lock",
|
|
59145
|
+
"kisi_lock"
|
|
59101
59146
|
],
|
|
59102
59147
|
type: "string"
|
|
59103
59148
|
},
|
|
@@ -59173,6 +59218,7 @@ var openapi = {
|
|
|
59173
59218
|
"dormakaba_oracode",
|
|
59174
59219
|
"tedee",
|
|
59175
59220
|
"keyincode",
|
|
59221
|
+
"kisi",
|
|
59176
59222
|
"akiles",
|
|
59177
59223
|
"ecobee",
|
|
59178
59224
|
"honeywell_resideo",
|
|
@@ -59192,6 +59238,7 @@ var openapi = {
|
|
|
59192
59238
|
"guesty",
|
|
59193
59239
|
"acuity_scheduling",
|
|
59194
59240
|
"omnitec",
|
|
59241
|
+
"kisi",
|
|
59195
59242
|
"slack"
|
|
59196
59243
|
],
|
|
59197
59244
|
type: "string"
|
|
@@ -59464,7 +59511,8 @@ var openapi = {
|
|
|
59464
59511
|
"akiles_lock",
|
|
59465
59512
|
"ultraloq_lock",
|
|
59466
59513
|
"keyincode_lock",
|
|
59467
|
-
"omnitec_lock"
|
|
59514
|
+
"omnitec_lock",
|
|
59515
|
+
"kisi_lock"
|
|
59468
59516
|
],
|
|
59469
59517
|
type: "string"
|
|
59470
59518
|
},
|
|
@@ -59536,7 +59584,8 @@ var openapi = {
|
|
|
59536
59584
|
"akiles_lock",
|
|
59537
59585
|
"ultraloq_lock",
|
|
59538
59586
|
"keyincode_lock",
|
|
59539
|
-
"omnitec_lock"
|
|
59587
|
+
"omnitec_lock",
|
|
59588
|
+
"kisi_lock"
|
|
59540
59589
|
],
|
|
59541
59590
|
type: "string"
|
|
59542
59591
|
},
|
|
@@ -59672,6 +59721,7 @@ var openapi = {
|
|
|
59672
59721
|
"dormakaba_oracode",
|
|
59673
59722
|
"tedee",
|
|
59674
59723
|
"keyincode",
|
|
59724
|
+
"kisi",
|
|
59675
59725
|
"akiles",
|
|
59676
59726
|
"ecobee",
|
|
59677
59727
|
"honeywell_resideo",
|
|
@@ -59691,6 +59741,7 @@ var openapi = {
|
|
|
59691
59741
|
"guesty",
|
|
59692
59742
|
"acuity_scheduling",
|
|
59693
59743
|
"omnitec",
|
|
59744
|
+
"kisi",
|
|
59694
59745
|
"slack"
|
|
59695
59746
|
],
|
|
59696
59747
|
type: "string"
|
|
@@ -61770,7 +61821,8 @@ var openapi = {
|
|
|
61770
61821
|
"akiles_lock",
|
|
61771
61822
|
"ultraloq_lock",
|
|
61772
61823
|
"keyincode_lock",
|
|
61773
|
-
"omnitec_lock"
|
|
61824
|
+
"omnitec_lock",
|
|
61825
|
+
"kisi_lock"
|
|
61774
61826
|
],
|
|
61775
61827
|
type: "string"
|
|
61776
61828
|
},
|
|
@@ -61846,7 +61898,8 @@ var openapi = {
|
|
|
61846
61898
|
"akiles_lock",
|
|
61847
61899
|
"ultraloq_lock",
|
|
61848
61900
|
"keyincode_lock",
|
|
61849
|
-
"omnitec_lock"
|
|
61901
|
+
"omnitec_lock",
|
|
61902
|
+
"kisi_lock"
|
|
61850
61903
|
],
|
|
61851
61904
|
type: "string"
|
|
61852
61905
|
},
|
|
@@ -61922,6 +61975,7 @@ var openapi = {
|
|
|
61922
61975
|
"dormakaba_oracode",
|
|
61923
61976
|
"tedee",
|
|
61924
61977
|
"keyincode",
|
|
61978
|
+
"kisi",
|
|
61925
61979
|
"akiles",
|
|
61926
61980
|
"ecobee",
|
|
61927
61981
|
"honeywell_resideo",
|
|
@@ -61941,6 +61995,7 @@ var openapi = {
|
|
|
61941
61995
|
"guesty",
|
|
61942
61996
|
"acuity_scheduling",
|
|
61943
61997
|
"omnitec",
|
|
61998
|
+
"kisi",
|
|
61944
61999
|
"slack"
|
|
61945
62000
|
],
|
|
61946
62001
|
type: "string"
|
|
@@ -62212,7 +62267,8 @@ var openapi = {
|
|
|
62212
62267
|
"akiles_lock",
|
|
62213
62268
|
"ultraloq_lock",
|
|
62214
62269
|
"keyincode_lock",
|
|
62215
|
-
"omnitec_lock"
|
|
62270
|
+
"omnitec_lock",
|
|
62271
|
+
"kisi_lock"
|
|
62216
62272
|
],
|
|
62217
62273
|
type: "string"
|
|
62218
62274
|
},
|
|
@@ -62284,7 +62340,8 @@ var openapi = {
|
|
|
62284
62340
|
"akiles_lock",
|
|
62285
62341
|
"ultraloq_lock",
|
|
62286
62342
|
"keyincode_lock",
|
|
62287
|
-
"omnitec_lock"
|
|
62343
|
+
"omnitec_lock",
|
|
62344
|
+
"kisi_lock"
|
|
62288
62345
|
],
|
|
62289
62346
|
type: "string"
|
|
62290
62347
|
},
|
|
@@ -62420,6 +62477,7 @@ var openapi = {
|
|
|
62420
62477
|
"dormakaba_oracode",
|
|
62421
62478
|
"tedee",
|
|
62422
62479
|
"keyincode",
|
|
62480
|
+
"kisi",
|
|
62423
62481
|
"akiles",
|
|
62424
62482
|
"ecobee",
|
|
62425
62483
|
"honeywell_resideo",
|
|
@@ -62439,6 +62497,7 @@ var openapi = {
|
|
|
62439
62497
|
"guesty",
|
|
62440
62498
|
"acuity_scheduling",
|
|
62441
62499
|
"omnitec",
|
|
62500
|
+
"kisi",
|
|
62442
62501
|
"slack"
|
|
62443
62502
|
],
|
|
62444
62503
|
type: "string"
|
|
@@ -64451,7 +64510,8 @@ var openapi = {
|
|
|
64451
64510
|
"akiles_lock",
|
|
64452
64511
|
"ultraloq_lock",
|
|
64453
64512
|
"keyincode_lock",
|
|
64454
|
-
"omnitec_lock"
|
|
64513
|
+
"omnitec_lock",
|
|
64514
|
+
"kisi_lock"
|
|
64455
64515
|
],
|
|
64456
64516
|
type: "string"
|
|
64457
64517
|
}
|
|
@@ -64491,7 +64551,8 @@ var openapi = {
|
|
|
64491
64551
|
"akiles_lock",
|
|
64492
64552
|
"ultraloq_lock",
|
|
64493
64553
|
"keyincode_lock",
|
|
64494
|
-
"omnitec_lock"
|
|
64554
|
+
"omnitec_lock",
|
|
64555
|
+
"kisi_lock"
|
|
64495
64556
|
],
|
|
64496
64557
|
type: "string"
|
|
64497
64558
|
},
|
|
@@ -64529,11 +64590,13 @@ var openapi = {
|
|
|
64529
64590
|
"dormakaba_oracode",
|
|
64530
64591
|
"tedee",
|
|
64531
64592
|
"keyincode",
|
|
64593
|
+
"kisi",
|
|
64532
64594
|
"akiles",
|
|
64533
64595
|
"korelock",
|
|
64534
64596
|
"smartthings",
|
|
64535
64597
|
"ultraloq",
|
|
64536
|
-
"omnitec"
|
|
64598
|
+
"omnitec",
|
|
64599
|
+
"kisi"
|
|
64537
64600
|
],
|
|
64538
64601
|
type: "string"
|
|
64539
64602
|
}
|
|
@@ -64804,7 +64867,8 @@ var openapi = {
|
|
|
64804
64867
|
"akiles_lock",
|
|
64805
64868
|
"ultraloq_lock",
|
|
64806
64869
|
"keyincode_lock",
|
|
64807
|
-
"omnitec_lock"
|
|
64870
|
+
"omnitec_lock",
|
|
64871
|
+
"kisi_lock"
|
|
64808
64872
|
],
|
|
64809
64873
|
type: "string"
|
|
64810
64874
|
},
|
|
@@ -64840,7 +64904,8 @@ var openapi = {
|
|
|
64840
64904
|
"akiles_lock",
|
|
64841
64905
|
"ultraloq_lock",
|
|
64842
64906
|
"keyincode_lock",
|
|
64843
|
-
"omnitec_lock"
|
|
64907
|
+
"omnitec_lock",
|
|
64908
|
+
"kisi_lock"
|
|
64844
64909
|
],
|
|
64845
64910
|
type: "string"
|
|
64846
64911
|
},
|
|
@@ -64938,11 +65003,13 @@ var openapi = {
|
|
|
64938
65003
|
"dormakaba_oracode",
|
|
64939
65004
|
"tedee",
|
|
64940
65005
|
"keyincode",
|
|
65006
|
+
"kisi",
|
|
64941
65007
|
"akiles",
|
|
64942
65008
|
"korelock",
|
|
64943
65009
|
"smartthings",
|
|
64944
65010
|
"ultraloq",
|
|
64945
|
-
"omnitec"
|
|
65011
|
+
"omnitec",
|
|
65012
|
+
"kisi"
|
|
64946
65013
|
],
|
|
64947
65014
|
type: "string"
|
|
64948
65015
|
},
|