@seamapi/types 1.203.0 → 1.205.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 +18 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +60 -3
- package/lib/seam/connect/models/devices/device-provider.d.ts +22 -1
- package/lib/seam/connect/models/devices/device-provider.js +5 -2
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +26 -0
- package/lib/seam/connect/openapi.js +17 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +10 -6
- package/src/lib/seam/connect/openapi.ts +19 -3
- package/src/lib/seam/connect/route-types.ts +12 -2
package/dist/connect.cjs
CHANGED
|
@@ -924,7 +924,7 @@ var device_provider = zod.z.object({
|
|
|
924
924
|
display_name: zod.z.string(),
|
|
925
925
|
image_url: zod.z.string(),
|
|
926
926
|
provider_categories: zod.z.array(zod.z.enum(PUBLIC_PROVIDER_CATEGORIES))
|
|
927
|
-
});
|
|
927
|
+
}).extend(device_capability_flags2.shape);
|
|
928
928
|
var unmanaged_device = device.pick({
|
|
929
929
|
device_id: true,
|
|
930
930
|
device_type: true,
|
|
@@ -5574,6 +5574,13 @@ var openapi_default = {
|
|
|
5574
5574
|
},
|
|
5575
5575
|
device_provider: {
|
|
5576
5576
|
properties: {
|
|
5577
|
+
can_program_offline_access_codes: { type: "boolean" },
|
|
5578
|
+
can_program_online_access_codes: { type: "boolean" },
|
|
5579
|
+
can_remotely_lock: { type: "boolean" },
|
|
5580
|
+
can_remotely_unlock: { type: "boolean" },
|
|
5581
|
+
can_simulate_connection: { type: "boolean" },
|
|
5582
|
+
can_simulate_disconnection: { type: "boolean" },
|
|
5583
|
+
can_simulate_removal: { type: "boolean" },
|
|
5577
5584
|
device_provider_name: {
|
|
5578
5585
|
enum: [
|
|
5579
5586
|
"akuvox",
|
|
@@ -10358,11 +10365,14 @@ var openapi_default = {
|
|
|
10358
10365
|
additionalProperties: {
|
|
10359
10366
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
10360
10367
|
},
|
|
10361
|
-
description: "Returns
|
|
10368
|
+
description: "Returns webviews whose custom_metadata contains all of the provided key/value pairs.",
|
|
10362
10369
|
type: "object"
|
|
10363
10370
|
},
|
|
10364
10371
|
limit: { default: 500, format: "float", type: "number" },
|
|
10365
|
-
user_identifier_key: {
|
|
10372
|
+
user_identifier_key: {
|
|
10373
|
+
description: "Returns webviews that can be accessed by the provided user_identifier_key.",
|
|
10374
|
+
type: "string"
|
|
10375
|
+
}
|
|
10366
10376
|
},
|
|
10367
10377
|
type: "object"
|
|
10368
10378
|
}
|
|
@@ -10519,8 +10529,12 @@ var openapi_default = {
|
|
|
10519
10529
|
additionalProperties: {
|
|
10520
10530
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
10521
10531
|
},
|
|
10522
|
-
description: "Returns
|
|
10532
|
+
description: "Returns accounts whose custom_metadata contains all of the provided key/value pairs.",
|
|
10523
10533
|
type: "object"
|
|
10534
|
+
},
|
|
10535
|
+
user_identifier_key: {
|
|
10536
|
+
description: "Returns accounts that can be accessed by the provided user_identifier_key.",
|
|
10537
|
+
type: "string"
|
|
10524
10538
|
}
|
|
10525
10539
|
},
|
|
10526
10540
|
type: "object"
|