@seamapi/types 1.139.0 → 1.141.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 +86 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +226 -66
- package/lib/seam/connect/index.d.ts +2 -2
- package/lib/seam/connect/index.js +2 -2
- package/lib/seam/connect/index.js.map +1 -1
- package/lib/seam/connect/model-types.js.map +1 -0
- package/lib/seam/connect/models/connect-webview.js.map +1 -0
- package/lib/seam/connect/models/custom-metadata.js.map +1 -0
- package/lib/seam/connect/models/index.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +195 -66
- package/lib/seam/connect/openapi.js +78 -15
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +31 -0
- package/lib/seam/connect/schemas.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/entrance.d.ts +45 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js +7 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +22 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js +5 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +2 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/index.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +78 -15
- package/src/lib/seam/connect/route-types.ts +31 -0
- package/src/lib/seam/connect/unstable/models/acs/entrance.ts +11 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +7 -2
- package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +6 -4
- package/lib/seam/connect/stable/model-types.js.map +0 -1
- package/lib/seam/connect/stable/models/connect-webview.js.map +0 -1
- package/lib/seam/connect/stable/models/custom-metadata.js.map +0 -1
- package/lib/seam/connect/stable/models/index.js.map +0 -1
- package/lib/seam/connect/stable/schemas.js.map +0 -1
- /package/lib/seam/connect/{stable/model-types.d.ts → model-types.d.ts} +0 -0
- /package/lib/seam/connect/{stable/model-types.js → model-types.js} +0 -0
- /package/lib/seam/connect/{stable/models → models}/connect-webview.d.ts +0 -0
- /package/lib/seam/connect/{stable/models → models}/connect-webview.js +0 -0
- /package/lib/seam/connect/{stable/models → models}/custom-metadata.d.ts +0 -0
- /package/lib/seam/connect/{stable/models → models}/custom-metadata.js +0 -0
- /package/lib/seam/connect/{stable/models → models}/index.d.ts +0 -0
- /package/lib/seam/connect/{stable/models → models}/index.js +0 -0
- /package/lib/seam/connect/{stable/schemas.d.ts → schemas.d.ts} +0 -0
- /package/lib/seam/connect/{stable/schemas.js → schemas.js} +0 -0
- /package/src/lib/seam/connect/{stable/model-types.ts → model-types.ts} +0 -0
- /package/src/lib/seam/connect/{stable/models → models}/connect-webview.ts +0 -0
- /package/src/lib/seam/connect/{stable/models → models}/custom-metadata.ts +0 -0
- /package/src/lib/seam/connect/{stable/models → models}/index.ts +0 -0
- /package/src/lib/seam/connect/{stable/schemas.ts → schemas.ts} +0 -0
|
@@ -666,6 +666,9 @@ declare const _default: {
|
|
|
666
666
|
can_remotely_unlock: {
|
|
667
667
|
type: string;
|
|
668
668
|
};
|
|
669
|
+
can_simulate_removal: {
|
|
670
|
+
type: string;
|
|
671
|
+
};
|
|
669
672
|
capabilities_supported: {
|
|
670
673
|
description: string;
|
|
671
674
|
items: {
|
|
@@ -2314,6 +2317,9 @@ declare const _default: {
|
|
|
2314
2317
|
can_remotely_unlock: {
|
|
2315
2318
|
type: string;
|
|
2316
2319
|
};
|
|
2320
|
+
can_simulate_removal: {
|
|
2321
|
+
type: string;
|
|
2322
|
+
};
|
|
2317
2323
|
capabilities_supported: {
|
|
2318
2324
|
description: string;
|
|
2319
2325
|
items: {
|
|
@@ -2547,6 +2553,9 @@ declare const _default: {
|
|
|
2547
2553
|
can_remotely_unlock: {
|
|
2548
2554
|
type: string;
|
|
2549
2555
|
};
|
|
2556
|
+
can_simulate_removal: {
|
|
2557
|
+
type: string;
|
|
2558
|
+
};
|
|
2550
2559
|
capabilities_supported: {
|
|
2551
2560
|
description: string;
|
|
2552
2561
|
items: {
|
|
@@ -7120,6 +7129,25 @@ declare const _default: {
|
|
|
7120
7129
|
display_name: {
|
|
7121
7130
|
type: string;
|
|
7122
7131
|
};
|
|
7132
|
+
latch_metadata: {
|
|
7133
|
+
nullable: boolean;
|
|
7134
|
+
properties: {
|
|
7135
|
+
accessibility_type: {
|
|
7136
|
+
type: string;
|
|
7137
|
+
};
|
|
7138
|
+
is_connected: {
|
|
7139
|
+
type: string;
|
|
7140
|
+
};
|
|
7141
|
+
name: {
|
|
7142
|
+
type: string;
|
|
7143
|
+
};
|
|
7144
|
+
type: {
|
|
7145
|
+
type: string;
|
|
7146
|
+
};
|
|
7147
|
+
};
|
|
7148
|
+
required: string[];
|
|
7149
|
+
type: string;
|
|
7150
|
+
};
|
|
7123
7151
|
visionline_metadata: {
|
|
7124
7152
|
nullable: boolean;
|
|
7125
7153
|
properties: {
|
|
@@ -7319,6 +7347,25 @@ declare const _default: {
|
|
|
7319
7347
|
display_name: {
|
|
7320
7348
|
type: string;
|
|
7321
7349
|
};
|
|
7350
|
+
latch_metadata: {
|
|
7351
|
+
nullable: boolean;
|
|
7352
|
+
properties: {
|
|
7353
|
+
accessibility_type: {
|
|
7354
|
+
type: string;
|
|
7355
|
+
};
|
|
7356
|
+
is_connected: {
|
|
7357
|
+
type: string;
|
|
7358
|
+
};
|
|
7359
|
+
name: {
|
|
7360
|
+
type: string;
|
|
7361
|
+
};
|
|
7362
|
+
type: {
|
|
7363
|
+
type: string;
|
|
7364
|
+
};
|
|
7365
|
+
};
|
|
7366
|
+
required: string[];
|
|
7367
|
+
type: string;
|
|
7368
|
+
};
|
|
7322
7369
|
visionline_metadata: {
|
|
7323
7370
|
nullable: boolean;
|
|
7324
7371
|
properties: {
|
|
@@ -8230,6 +8277,25 @@ declare const _default: {
|
|
|
8230
8277
|
display_name: {
|
|
8231
8278
|
type: string;
|
|
8232
8279
|
};
|
|
8280
|
+
latch_metadata: {
|
|
8281
|
+
nullable: boolean;
|
|
8282
|
+
properties: {
|
|
8283
|
+
accessibility_type: {
|
|
8284
|
+
type: string;
|
|
8285
|
+
};
|
|
8286
|
+
is_connected: {
|
|
8287
|
+
type: string;
|
|
8288
|
+
};
|
|
8289
|
+
name: {
|
|
8290
|
+
type: string;
|
|
8291
|
+
};
|
|
8292
|
+
type: {
|
|
8293
|
+
type: string;
|
|
8294
|
+
};
|
|
8295
|
+
};
|
|
8296
|
+
required: string[];
|
|
8297
|
+
type: string;
|
|
8298
|
+
};
|
|
8233
8299
|
visionline_metadata: {
|
|
8234
8300
|
nullable: boolean;
|
|
8235
8301
|
properties: {
|
|
@@ -10436,20 +10502,25 @@ declare const _default: {
|
|
|
10436
10502
|
};
|
|
10437
10503
|
};
|
|
10438
10504
|
security: ({
|
|
10439
|
-
|
|
10440
|
-
|
|
10441
|
-
|
|
10442
|
-
|
|
10505
|
+
client_session: never[];
|
|
10506
|
+
pat_with_workspace?: never;
|
|
10507
|
+
console_session?: never;
|
|
10508
|
+
api_key?: never;
|
|
10443
10509
|
} | {
|
|
10444
|
-
|
|
10445
|
-
|
|
10446
|
-
|
|
10447
|
-
|
|
10510
|
+
pat_with_workspace: never[];
|
|
10511
|
+
client_session?: never;
|
|
10512
|
+
console_session?: never;
|
|
10513
|
+
api_key?: never;
|
|
10448
10514
|
} | {
|
|
10449
|
-
|
|
10450
|
-
|
|
10451
|
-
|
|
10452
|
-
|
|
10515
|
+
console_session: never[];
|
|
10516
|
+
client_session?: never;
|
|
10517
|
+
pat_with_workspace?: never;
|
|
10518
|
+
api_key?: never;
|
|
10519
|
+
} | {
|
|
10520
|
+
api_key: never[];
|
|
10521
|
+
client_session?: never;
|
|
10522
|
+
pat_with_workspace?: never;
|
|
10523
|
+
console_session?: never;
|
|
10453
10524
|
})[];
|
|
10454
10525
|
summary: string;
|
|
10455
10526
|
tags: string[];
|
|
@@ -11810,20 +11881,25 @@ declare const _default: {
|
|
|
11810
11881
|
};
|
|
11811
11882
|
};
|
|
11812
11883
|
security: ({
|
|
11813
|
-
|
|
11814
|
-
|
|
11815
|
-
|
|
11816
|
-
|
|
11884
|
+
client_session: never[];
|
|
11885
|
+
pat_with_workspace?: never;
|
|
11886
|
+
console_session?: never;
|
|
11887
|
+
api_key?: never;
|
|
11817
11888
|
} | {
|
|
11818
|
-
|
|
11819
|
-
|
|
11820
|
-
|
|
11821
|
-
|
|
11889
|
+
pat_with_workspace: never[];
|
|
11890
|
+
client_session?: never;
|
|
11891
|
+
console_session?: never;
|
|
11892
|
+
api_key?: never;
|
|
11822
11893
|
} | {
|
|
11823
|
-
|
|
11824
|
-
|
|
11825
|
-
|
|
11826
|
-
|
|
11894
|
+
console_session: never[];
|
|
11895
|
+
client_session?: never;
|
|
11896
|
+
pat_with_workspace?: never;
|
|
11897
|
+
api_key?: never;
|
|
11898
|
+
} | {
|
|
11899
|
+
api_key: never[];
|
|
11900
|
+
client_session?: never;
|
|
11901
|
+
pat_with_workspace?: never;
|
|
11902
|
+
console_session?: never;
|
|
11827
11903
|
})[];
|
|
11828
11904
|
summary: string;
|
|
11829
11905
|
tags: string[];
|
|
@@ -12038,20 +12114,25 @@ declare const _default: {
|
|
|
12038
12114
|
};
|
|
12039
12115
|
};
|
|
12040
12116
|
security: ({
|
|
12041
|
-
|
|
12042
|
-
|
|
12043
|
-
|
|
12044
|
-
|
|
12117
|
+
client_session: never[];
|
|
12118
|
+
pat_with_workspace?: never;
|
|
12119
|
+
console_session?: never;
|
|
12120
|
+
api_key?: never;
|
|
12045
12121
|
} | {
|
|
12046
|
-
|
|
12047
|
-
|
|
12048
|
-
|
|
12049
|
-
|
|
12122
|
+
pat_with_workspace: never[];
|
|
12123
|
+
client_session?: never;
|
|
12124
|
+
console_session?: never;
|
|
12125
|
+
api_key?: never;
|
|
12050
12126
|
} | {
|
|
12051
|
-
|
|
12052
|
-
|
|
12053
|
-
|
|
12054
|
-
|
|
12127
|
+
console_session: never[];
|
|
12128
|
+
client_session?: never;
|
|
12129
|
+
pat_with_workspace?: never;
|
|
12130
|
+
api_key?: never;
|
|
12131
|
+
} | {
|
|
12132
|
+
api_key: never[];
|
|
12133
|
+
client_session?: never;
|
|
12134
|
+
pat_with_workspace?: never;
|
|
12135
|
+
console_session?: never;
|
|
12055
12136
|
})[];
|
|
12056
12137
|
summary: string;
|
|
12057
12138
|
tags: string[];
|
|
@@ -13975,17 +14056,25 @@ declare const _default: {
|
|
|
13975
14056
|
};
|
|
13976
14057
|
};
|
|
13977
14058
|
security: ({
|
|
13978
|
-
api_key: never[];
|
|
13979
|
-
client_session?: never;
|
|
13980
|
-
pat_with_workspace?: never;
|
|
13981
|
-
} | {
|
|
13982
14059
|
client_session: never[];
|
|
13983
|
-
api_key?: never;
|
|
13984
14060
|
pat_with_workspace?: never;
|
|
14061
|
+
console_session?: never;
|
|
14062
|
+
api_key?: never;
|
|
13985
14063
|
} | {
|
|
13986
14064
|
pat_with_workspace: never[];
|
|
14065
|
+
client_session?: never;
|
|
14066
|
+
console_session?: never;
|
|
13987
14067
|
api_key?: never;
|
|
14068
|
+
} | {
|
|
14069
|
+
console_session: never[];
|
|
13988
14070
|
client_session?: never;
|
|
14071
|
+
pat_with_workspace?: never;
|
|
14072
|
+
api_key?: never;
|
|
14073
|
+
} | {
|
|
14074
|
+
api_key: never[];
|
|
14075
|
+
client_session?: never;
|
|
14076
|
+
pat_with_workspace?: never;
|
|
14077
|
+
console_session?: never;
|
|
13989
14078
|
})[];
|
|
13990
14079
|
summary: string;
|
|
13991
14080
|
tags: string[];
|
|
@@ -14043,17 +14132,25 @@ declare const _default: {
|
|
|
14043
14132
|
};
|
|
14044
14133
|
};
|
|
14045
14134
|
security: ({
|
|
14046
|
-
api_key: never[];
|
|
14047
|
-
client_session?: never;
|
|
14048
|
-
pat_with_workspace?: never;
|
|
14049
|
-
} | {
|
|
14050
14135
|
client_session: never[];
|
|
14051
|
-
api_key?: never;
|
|
14052
14136
|
pat_with_workspace?: never;
|
|
14137
|
+
console_session?: never;
|
|
14138
|
+
api_key?: never;
|
|
14053
14139
|
} | {
|
|
14054
14140
|
pat_with_workspace: never[];
|
|
14141
|
+
client_session?: never;
|
|
14142
|
+
console_session?: never;
|
|
14143
|
+
api_key?: never;
|
|
14144
|
+
} | {
|
|
14145
|
+
console_session: never[];
|
|
14146
|
+
client_session?: never;
|
|
14147
|
+
pat_with_workspace?: never;
|
|
14055
14148
|
api_key?: never;
|
|
14149
|
+
} | {
|
|
14150
|
+
api_key: never[];
|
|
14056
14151
|
client_session?: never;
|
|
14152
|
+
pat_with_workspace?: never;
|
|
14153
|
+
console_session?: never;
|
|
14057
14154
|
})[];
|
|
14058
14155
|
summary: string;
|
|
14059
14156
|
tags: string[];
|
|
@@ -14119,17 +14216,25 @@ declare const _default: {
|
|
|
14119
14216
|
};
|
|
14120
14217
|
};
|
|
14121
14218
|
security: ({
|
|
14122
|
-
api_key: never[];
|
|
14123
|
-
client_session?: never;
|
|
14124
|
-
pat_with_workspace?: never;
|
|
14125
|
-
} | {
|
|
14126
14219
|
client_session: never[];
|
|
14127
|
-
api_key?: never;
|
|
14128
14220
|
pat_with_workspace?: never;
|
|
14221
|
+
console_session?: never;
|
|
14222
|
+
api_key?: never;
|
|
14129
14223
|
} | {
|
|
14130
14224
|
pat_with_workspace: never[];
|
|
14225
|
+
client_session?: never;
|
|
14226
|
+
console_session?: never;
|
|
14227
|
+
api_key?: never;
|
|
14228
|
+
} | {
|
|
14229
|
+
console_session: never[];
|
|
14230
|
+
client_session?: never;
|
|
14231
|
+
pat_with_workspace?: never;
|
|
14131
14232
|
api_key?: never;
|
|
14233
|
+
} | {
|
|
14234
|
+
api_key: never[];
|
|
14132
14235
|
client_session?: never;
|
|
14236
|
+
pat_with_workspace?: never;
|
|
14237
|
+
console_session?: never;
|
|
14133
14238
|
})[];
|
|
14134
14239
|
summary: string;
|
|
14135
14240
|
tags: string[];
|
|
@@ -14201,17 +14306,25 @@ declare const _default: {
|
|
|
14201
14306
|
};
|
|
14202
14307
|
};
|
|
14203
14308
|
security: ({
|
|
14204
|
-
api_key: never[];
|
|
14205
|
-
client_session?: never;
|
|
14206
|
-
pat_with_workspace?: never;
|
|
14207
|
-
} | {
|
|
14208
14309
|
client_session: never[];
|
|
14209
|
-
api_key?: never;
|
|
14210
14310
|
pat_with_workspace?: never;
|
|
14311
|
+
console_session?: never;
|
|
14312
|
+
api_key?: never;
|
|
14211
14313
|
} | {
|
|
14212
14314
|
pat_with_workspace: never[];
|
|
14315
|
+
client_session?: never;
|
|
14316
|
+
console_session?: never;
|
|
14213
14317
|
api_key?: never;
|
|
14318
|
+
} | {
|
|
14319
|
+
console_session: never[];
|
|
14320
|
+
client_session?: never;
|
|
14321
|
+
pat_with_workspace?: never;
|
|
14322
|
+
api_key?: never;
|
|
14323
|
+
} | {
|
|
14324
|
+
api_key: never[];
|
|
14214
14325
|
client_session?: never;
|
|
14326
|
+
pat_with_workspace?: never;
|
|
14327
|
+
console_session?: never;
|
|
14215
14328
|
})[];
|
|
14216
14329
|
summary: string;
|
|
14217
14330
|
tags: string[];
|
|
@@ -14420,17 +14533,25 @@ declare const _default: {
|
|
|
14420
14533
|
};
|
|
14421
14534
|
};
|
|
14422
14535
|
security: ({
|
|
14423
|
-
api_key: never[];
|
|
14424
|
-
client_session?: never;
|
|
14425
|
-
pat_with_workspace?: never;
|
|
14426
|
-
} | {
|
|
14427
14536
|
client_session: never[];
|
|
14428
|
-
api_key?: never;
|
|
14429
14537
|
pat_with_workspace?: never;
|
|
14538
|
+
console_session?: never;
|
|
14539
|
+
api_key?: never;
|
|
14430
14540
|
} | {
|
|
14431
14541
|
pat_with_workspace: never[];
|
|
14542
|
+
client_session?: never;
|
|
14543
|
+
console_session?: never;
|
|
14432
14544
|
api_key?: never;
|
|
14545
|
+
} | {
|
|
14546
|
+
console_session: never[];
|
|
14433
14547
|
client_session?: never;
|
|
14548
|
+
pat_with_workspace?: never;
|
|
14549
|
+
api_key?: never;
|
|
14550
|
+
} | {
|
|
14551
|
+
api_key: never[];
|
|
14552
|
+
client_session?: never;
|
|
14553
|
+
pat_with_workspace?: never;
|
|
14554
|
+
console_session?: never;
|
|
14434
14555
|
})[];
|
|
14435
14556
|
summary: string;
|
|
14436
14557
|
tags: string[];
|
|
@@ -14498,17 +14619,25 @@ declare const _default: {
|
|
|
14498
14619
|
};
|
|
14499
14620
|
};
|
|
14500
14621
|
security: ({
|
|
14501
|
-
api_key: never[];
|
|
14502
|
-
client_session?: never;
|
|
14503
|
-
pat_with_workspace?: never;
|
|
14504
|
-
} | {
|
|
14505
14622
|
client_session: never[];
|
|
14506
|
-
api_key?: never;
|
|
14507
14623
|
pat_with_workspace?: never;
|
|
14624
|
+
console_session?: never;
|
|
14625
|
+
api_key?: never;
|
|
14508
14626
|
} | {
|
|
14509
14627
|
pat_with_workspace: never[];
|
|
14628
|
+
client_session?: never;
|
|
14629
|
+
console_session?: never;
|
|
14510
14630
|
api_key?: never;
|
|
14631
|
+
} | {
|
|
14632
|
+
console_session: never[];
|
|
14511
14633
|
client_session?: never;
|
|
14634
|
+
pat_with_workspace?: never;
|
|
14635
|
+
api_key?: never;
|
|
14636
|
+
} | {
|
|
14637
|
+
api_key: never[];
|
|
14638
|
+
client_session?: never;
|
|
14639
|
+
pat_with_workspace?: never;
|
|
14640
|
+
console_session?: never;
|
|
14512
14641
|
})[];
|
|
14513
14642
|
summary: string;
|
|
14514
14643
|
tags: string[];
|
|
@@ -507,6 +507,7 @@ export default {
|
|
|
507
507
|
can_program_online_access_codes: { type: 'boolean' },
|
|
508
508
|
can_remotely_lock: { type: 'boolean' },
|
|
509
509
|
can_remotely_unlock: { type: 'boolean' },
|
|
510
|
+
can_simulate_removal: { type: 'boolean' },
|
|
510
511
|
capabilities_supported: {
|
|
511
512
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
512
513
|
items: {
|
|
@@ -1852,6 +1853,7 @@ export default {
|
|
|
1852
1853
|
can_program_online_access_codes: { type: 'boolean' },
|
|
1853
1854
|
can_remotely_lock: { type: 'boolean' },
|
|
1854
1855
|
can_remotely_unlock: { type: 'boolean' },
|
|
1856
|
+
can_simulate_removal: { type: 'boolean' },
|
|
1855
1857
|
capabilities_supported: {
|
|
1856
1858
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
1857
1859
|
items: {
|
|
@@ -2066,6 +2068,7 @@ export default {
|
|
|
2066
2068
|
can_program_online_access_codes: { type: 'boolean' },
|
|
2067
2069
|
can_remotely_lock: { type: 'boolean' },
|
|
2068
2070
|
can_remotely_unlock: { type: 'boolean' },
|
|
2071
|
+
can_simulate_removal: { type: 'boolean' },
|
|
2069
2072
|
capabilities_supported: {
|
|
2070
2073
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
2071
2074
|
items: {
|
|
@@ -5233,6 +5236,22 @@ export default {
|
|
|
5233
5236
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5234
5237
|
created_at: { format: 'date-time', type: 'string' },
|
|
5235
5238
|
display_name: { type: 'string' },
|
|
5239
|
+
latch_metadata: {
|
|
5240
|
+
nullable: true,
|
|
5241
|
+
properties: {
|
|
5242
|
+
accessibility_type: { type: 'string' },
|
|
5243
|
+
is_connected: { type: 'boolean' },
|
|
5244
|
+
name: { type: 'string' },
|
|
5245
|
+
type: { type: 'string' },
|
|
5246
|
+
},
|
|
5247
|
+
required: [
|
|
5248
|
+
'accessibility_type',
|
|
5249
|
+
'name',
|
|
5250
|
+
'type',
|
|
5251
|
+
'is_connected',
|
|
5252
|
+
],
|
|
5253
|
+
type: 'object',
|
|
5254
|
+
},
|
|
5236
5255
|
visionline_metadata: {
|
|
5237
5256
|
nullable: true,
|
|
5238
5257
|
properties: {
|
|
@@ -5276,6 +5295,7 @@ export default {
|
|
|
5276
5295
|
'display_name',
|
|
5277
5296
|
'acs_system_id',
|
|
5278
5297
|
'created_at',
|
|
5298
|
+
'latch_metadata',
|
|
5279
5299
|
'visionline_metadata',
|
|
5280
5300
|
],
|
|
5281
5301
|
type: 'object',
|
|
@@ -5378,6 +5398,22 @@ export default {
|
|
|
5378
5398
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5379
5399
|
created_at: { format: 'date-time', type: 'string' },
|
|
5380
5400
|
display_name: { type: 'string' },
|
|
5401
|
+
latch_metadata: {
|
|
5402
|
+
nullable: true,
|
|
5403
|
+
properties: {
|
|
5404
|
+
accessibility_type: { type: 'string' },
|
|
5405
|
+
is_connected: { type: 'boolean' },
|
|
5406
|
+
name: { type: 'string' },
|
|
5407
|
+
type: { type: 'string' },
|
|
5408
|
+
},
|
|
5409
|
+
required: [
|
|
5410
|
+
'accessibility_type',
|
|
5411
|
+
'name',
|
|
5412
|
+
'type',
|
|
5413
|
+
'is_connected',
|
|
5414
|
+
],
|
|
5415
|
+
type: 'object',
|
|
5416
|
+
},
|
|
5381
5417
|
visionline_metadata: {
|
|
5382
5418
|
nullable: true,
|
|
5383
5419
|
properties: {
|
|
@@ -5421,6 +5457,7 @@ export default {
|
|
|
5421
5457
|
'display_name',
|
|
5422
5458
|
'acs_system_id',
|
|
5423
5459
|
'created_at',
|
|
5460
|
+
'latch_metadata',
|
|
5424
5461
|
'visionline_metadata',
|
|
5425
5462
|
],
|
|
5426
5463
|
type: 'object',
|
|
@@ -6008,6 +6045,22 @@ export default {
|
|
|
6008
6045
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6009
6046
|
created_at: { format: 'date-time', type: 'string' },
|
|
6010
6047
|
display_name: { type: 'string' },
|
|
6048
|
+
latch_metadata: {
|
|
6049
|
+
nullable: true,
|
|
6050
|
+
properties: {
|
|
6051
|
+
accessibility_type: { type: 'string' },
|
|
6052
|
+
is_connected: { type: 'boolean' },
|
|
6053
|
+
name: { type: 'string' },
|
|
6054
|
+
type: { type: 'string' },
|
|
6055
|
+
},
|
|
6056
|
+
required: [
|
|
6057
|
+
'accessibility_type',
|
|
6058
|
+
'name',
|
|
6059
|
+
'type',
|
|
6060
|
+
'is_connected',
|
|
6061
|
+
],
|
|
6062
|
+
type: 'object',
|
|
6063
|
+
},
|
|
6011
6064
|
visionline_metadata: {
|
|
6012
6065
|
nullable: true,
|
|
6013
6066
|
properties: {
|
|
@@ -6051,6 +6104,7 @@ export default {
|
|
|
6051
6104
|
'display_name',
|
|
6052
6105
|
'acs_system_id',
|
|
6053
6106
|
'created_at',
|
|
6107
|
+
'latch_metadata',
|
|
6054
6108
|
'visionline_metadata',
|
|
6055
6109
|
],
|
|
6056
6110
|
type: 'object',
|
|
@@ -7611,9 +7665,10 @@ export default {
|
|
|
7611
7665
|
401: { description: 'Unauthorized' },
|
|
7612
7666
|
},
|
|
7613
7667
|
security: [
|
|
7614
|
-
{
|
|
7615
|
-
{
|
|
7616
|
-
{
|
|
7668
|
+
{ client_session: [] },
|
|
7669
|
+
{ pat_with_workspace: [] },
|
|
7670
|
+
{ console_session: [] },
|
|
7671
|
+
{ api_key: [] },
|
|
7617
7672
|
],
|
|
7618
7673
|
summary: '/devices/get',
|
|
7619
7674
|
tags: ['/devices'],
|
|
@@ -8914,9 +8969,10 @@ export default {
|
|
|
8914
8969
|
401: { description: 'Unauthorized' },
|
|
8915
8970
|
},
|
|
8916
8971
|
security: [
|
|
8917
|
-
{
|
|
8918
|
-
{
|
|
8919
|
-
{
|
|
8972
|
+
{ client_session: [] },
|
|
8973
|
+
{ pat_with_workspace: [] },
|
|
8974
|
+
{ console_session: [] },
|
|
8975
|
+
{ api_key: [] },
|
|
8920
8976
|
],
|
|
8921
8977
|
summary: '/locks/get',
|
|
8922
8978
|
tags: ['/locks'],
|
|
@@ -9190,9 +9246,10 @@ export default {
|
|
|
9190
9246
|
401: { description: 'Unauthorized' },
|
|
9191
9247
|
},
|
|
9192
9248
|
security: [
|
|
9193
|
-
{
|
|
9194
|
-
{
|
|
9195
|
-
{
|
|
9249
|
+
{ client_session: [] },
|
|
9250
|
+
{ pat_with_workspace: [] },
|
|
9251
|
+
{ console_session: [] },
|
|
9252
|
+
{ api_key: [] },
|
|
9196
9253
|
],
|
|
9197
9254
|
summary: '/locks/lock_door',
|
|
9198
9255
|
tags: ['/locks'],
|
|
@@ -10466,9 +10523,10 @@ export default {
|
|
|
10466
10523
|
401: { description: 'Unauthorized' },
|
|
10467
10524
|
},
|
|
10468
10525
|
security: [
|
|
10469
|
-
{ api_key: [] },
|
|
10470
10526
|
{ client_session: [] },
|
|
10471
10527
|
{ pat_with_workspace: [] },
|
|
10528
|
+
{ console_session: [] },
|
|
10529
|
+
{ api_key: [] },
|
|
10472
10530
|
],
|
|
10473
10531
|
summary: '/thermostats/cool',
|
|
10474
10532
|
tags: ['/thermostats'],
|
|
@@ -10513,9 +10571,10 @@ export default {
|
|
|
10513
10571
|
401: { description: 'Unauthorized' },
|
|
10514
10572
|
},
|
|
10515
10573
|
security: [
|
|
10516
|
-
{ api_key: [] },
|
|
10517
10574
|
{ client_session: [] },
|
|
10518
10575
|
{ pat_with_workspace: [] },
|
|
10576
|
+
{ console_session: [] },
|
|
10577
|
+
{ api_key: [] },
|
|
10519
10578
|
],
|
|
10520
10579
|
summary: '/thermostats/get',
|
|
10521
10580
|
tags: ['/thermostats'],
|
|
@@ -10565,9 +10624,10 @@ export default {
|
|
|
10565
10624
|
401: { description: 'Unauthorized' },
|
|
10566
10625
|
},
|
|
10567
10626
|
security: [
|
|
10568
|
-
{ api_key: [] },
|
|
10569
10627
|
{ client_session: [] },
|
|
10570
10628
|
{ pat_with_workspace: [] },
|
|
10629
|
+
{ console_session: [] },
|
|
10630
|
+
{ api_key: [] },
|
|
10571
10631
|
],
|
|
10572
10632
|
summary: '/thermostats/heat',
|
|
10573
10633
|
tags: ['/thermostats'],
|
|
@@ -10619,9 +10679,10 @@ export default {
|
|
|
10619
10679
|
401: { description: 'Unauthorized' },
|
|
10620
10680
|
},
|
|
10621
10681
|
security: [
|
|
10622
|
-
{ api_key: [] },
|
|
10623
10682
|
{ client_session: [] },
|
|
10624
10683
|
{ pat_with_workspace: [] },
|
|
10684
|
+
{ console_session: [] },
|
|
10685
|
+
{ api_key: [] },
|
|
10625
10686
|
],
|
|
10626
10687
|
summary: '/thermostats/heat_cool',
|
|
10627
10688
|
tags: ['/thermostats'],
|
|
@@ -10891,9 +10952,10 @@ export default {
|
|
|
10891
10952
|
401: { description: 'Unauthorized' },
|
|
10892
10953
|
},
|
|
10893
10954
|
security: [
|
|
10894
|
-
{ api_key: [] },
|
|
10895
10955
|
{ client_session: [] },
|
|
10896
10956
|
{ pat_with_workspace: [] },
|
|
10957
|
+
{ console_session: [] },
|
|
10958
|
+
{ api_key: [] },
|
|
10897
10959
|
],
|
|
10898
10960
|
summary: '/thermostats/off',
|
|
10899
10961
|
tags: ['/thermostats'],
|
|
@@ -10943,9 +11005,10 @@ export default {
|
|
|
10943
11005
|
401: { description: 'Unauthorized' },
|
|
10944
11006
|
},
|
|
10945
11007
|
security: [
|
|
10946
|
-
{ api_key: [] },
|
|
10947
11008
|
{ client_session: [] },
|
|
10948
11009
|
{ pat_with_workspace: [] },
|
|
11010
|
+
{ console_session: [] },
|
|
11011
|
+
{ api_key: [] },
|
|
10949
11012
|
],
|
|
10950
11013
|
summary: '/thermostats/set_fan_mode',
|
|
10951
11014
|
tags: ['/thermostats'],
|