@seamapi/types 1.55.0 → 1.56.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 +28 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -19
- package/lib/seam/connect/openapi.d.ts +26 -13
- package/lib/seam/connect/openapi.js +23 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +23 -6
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +2 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +10 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +25 -5
- package/src/lib/seam/connect/route-types.ts +27 -1
- package/src/lib/seam/connect/unstable/models/acs/system.ts +2 -0
- package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -223,7 +223,9 @@ var openapi_default = {
|
|
|
223
223
|
"alta_org",
|
|
224
224
|
"salto_site",
|
|
225
225
|
"brivo_system",
|
|
226
|
-
"hid_cm_org"
|
|
226
|
+
"hid_cm_org",
|
|
227
|
+
"visionline_system",
|
|
228
|
+
"assa_abloy_cs_system_user"
|
|
227
229
|
],
|
|
228
230
|
type: "string"
|
|
229
231
|
},
|
|
@@ -236,7 +238,9 @@ var openapi_default = {
|
|
|
236
238
|
"alta_org",
|
|
237
239
|
"salto_site",
|
|
238
240
|
"brivo_system",
|
|
239
|
-
"hid_cm_org"
|
|
241
|
+
"hid_cm_org",
|
|
242
|
+
"visionline_system",
|
|
243
|
+
"assa_abloy_cs_system_user"
|
|
240
244
|
],
|
|
241
245
|
type: "string"
|
|
242
246
|
},
|
|
@@ -1787,6 +1791,12 @@ var openapi_default = {
|
|
|
1787
1791
|
is_managed: { enum: [false], type: "boolean" },
|
|
1788
1792
|
properties: {
|
|
1789
1793
|
properties: {
|
|
1794
|
+
battery_level: {
|
|
1795
|
+
description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
|
|
1796
|
+
maximum: 1,
|
|
1797
|
+
minimum: 0,
|
|
1798
|
+
type: "number"
|
|
1799
|
+
},
|
|
1790
1800
|
image_alt_text: { type: "string" },
|
|
1791
1801
|
image_url: { type: "string" },
|
|
1792
1802
|
manufacturer: { type: "string" },
|
|
@@ -1799,7 +1809,11 @@ var openapi_default = {
|
|
|
1799
1809
|
type: "object"
|
|
1800
1810
|
},
|
|
1801
1811
|
name: { type: "string" },
|
|
1802
|
-
online: { type: "boolean" }
|
|
1812
|
+
online: { type: "boolean" },
|
|
1813
|
+
online_access_codes_enabled: {
|
|
1814
|
+
description: "Indicates whether it is currently possible to use online access codes for the device.",
|
|
1815
|
+
type: "boolean"
|
|
1816
|
+
}
|
|
1803
1817
|
},
|
|
1804
1818
|
required: ["name", "online", "model"],
|
|
1805
1819
|
type: "object"
|
|
@@ -4260,9 +4274,9 @@ var openapi_default = {
|
|
|
4260
4274
|
},
|
|
4261
4275
|
security: [
|
|
4262
4276
|
{ api_key: [] },
|
|
4263
|
-
{
|
|
4264
|
-
{
|
|
4265
|
-
{
|
|
4277
|
+
{ client_session: [] },
|
|
4278
|
+
{ pat_with_workspace: [] },
|
|
4279
|
+
{ console_session: [] }
|
|
4266
4280
|
],
|
|
4267
4281
|
summary: "/acs/entrances/list",
|
|
4268
4282
|
tags: [],
|
|
@@ -5518,6 +5532,7 @@ var openapi_default = {
|
|
|
5518
5532
|
"wyze",
|
|
5519
5533
|
"seam_passport",
|
|
5520
5534
|
"visionline",
|
|
5535
|
+
"assaabloy_credential_service",
|
|
5521
5536
|
"yale_access",
|
|
5522
5537
|
"hid_cm"
|
|
5523
5538
|
],
|
|
@@ -7443,9 +7458,12 @@ var openapi_default = {
|
|
|
7443
7458
|
action_attempt: {
|
|
7444
7459
|
$ref: "#/components/schemas/action_attempt"
|
|
7445
7460
|
},
|
|
7461
|
+
noise_threshold: {
|
|
7462
|
+
$ref: "#/components/schemas/noise_threshold"
|
|
7463
|
+
},
|
|
7446
7464
|
ok: { type: "boolean" }
|
|
7447
7465
|
},
|
|
7448
|
-
required: ["action_attempt", "ok"],
|
|
7466
|
+
required: ["action_attempt", "noise_threshold", "ok"],
|
|
7449
7467
|
type: "object"
|
|
7450
7468
|
}
|
|
7451
7469
|
}
|
|
@@ -9711,14 +9729,14 @@ var openapi_default = {
|
|
|
9711
9729
|
type: "string"
|
|
9712
9730
|
},
|
|
9713
9731
|
is_sandbox: { default: false, type: "boolean" },
|
|
9732
|
+
name: { type: "string" },
|
|
9714
9733
|
webview_logo_shape: {
|
|
9715
9734
|
enum: ["circle", "square"],
|
|
9716
9735
|
type: "string"
|
|
9717
9736
|
},
|
|
9718
|
-
webview_primary_button_color: { type: "string" }
|
|
9719
|
-
workspace_name: { type: "string" }
|
|
9737
|
+
webview_primary_button_color: { type: "string" }
|
|
9720
9738
|
},
|
|
9721
|
-
required: ["
|
|
9739
|
+
required: ["name", "connect_partner_name"],
|
|
9722
9740
|
type: "object"
|
|
9723
9741
|
}
|
|
9724
9742
|
}
|