@seamapi/types 1.525.0 → 1.526.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 +9 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +107 -44
- package/dist/index.cjs +9 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +110 -55
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -5
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +14 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -5
- package/lib/seam/connect/openapi.d.ts +4 -1
- package/lib/seam/connect/openapi.js +4 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -17
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +5 -1
- package/src/lib/seam/connect/route-types.ts +51 -17
|
@@ -4989,12 +4989,15 @@ declare const _default: {
|
|
|
4989
4989
|
brivo_metadata: {
|
|
4990
4990
|
description: string;
|
|
4991
4991
|
properties: {
|
|
4992
|
+
activation_enabled: {
|
|
4993
|
+
description: string;
|
|
4994
|
+
type: string;
|
|
4995
|
+
};
|
|
4992
4996
|
device_name: {
|
|
4993
4997
|
description: string;
|
|
4994
4998
|
type: string;
|
|
4995
4999
|
};
|
|
4996
5000
|
};
|
|
4997
|
-
required: string[];
|
|
4998
5001
|
type: string;
|
|
4999
5002
|
};
|
|
5000
5003
|
controlbyweb_metadata: {
|
|
@@ -9212,12 +9212,15 @@ export default {
|
|
|
9212
9212
|
brivo_metadata: {
|
|
9213
9213
|
description: 'Metadata for a Brivo device.',
|
|
9214
9214
|
properties: {
|
|
9215
|
+
activation_enabled: {
|
|
9216
|
+
description: 'Indicates whether the Brivo access point has activation (remote unlock) enabled.',
|
|
9217
|
+
type: 'boolean',
|
|
9218
|
+
},
|
|
9215
9219
|
device_name: {
|
|
9216
9220
|
description: 'Device name for a Brivo device.',
|
|
9217
9221
|
type: 'string',
|
|
9218
9222
|
},
|
|
9219
9223
|
},
|
|
9220
|
-
required: ['device_name'],
|
|
9221
9224
|
type: 'object',
|
|
9222
9225
|
},
|
|
9223
9226
|
controlbyweb_metadata: {
|