@seamapi/types 1.524.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 +19 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +110 -45
- package/dist/index.cjs +19 -5
- 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 +6 -1
- package/lib/seam/connect/openapi.js +14 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +52 -18
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +15 -3
- package/src/lib/seam/connect/route-types.ts +52 -18
|
@@ -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: {
|
|
@@ -38007,6 +38010,7 @@ declare const _default: {
|
|
|
38007
38010
|
properties: {
|
|
38008
38011
|
automation_id: {
|
|
38009
38012
|
format: string;
|
|
38013
|
+
nullable: boolean;
|
|
38010
38014
|
type: string;
|
|
38011
38015
|
};
|
|
38012
38016
|
automation_result: {
|
|
@@ -38171,6 +38175,7 @@ declare const _default: {
|
|
|
38171
38175
|
properties: {
|
|
38172
38176
|
automation_id: {
|
|
38173
38177
|
format: string;
|
|
38178
|
+
nullable: boolean;
|
|
38174
38179
|
type: string;
|
|
38175
38180
|
};
|
|
38176
38181
|
automation_result: {
|
|
@@ -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: {
|
|
@@ -43890,7 +43893,11 @@ export default {
|
|
|
43890
43893
|
automation_runs: {
|
|
43891
43894
|
items: {
|
|
43892
43895
|
properties: {
|
|
43893
|
-
automation_id: {
|
|
43896
|
+
automation_id: {
|
|
43897
|
+
format: 'uuid',
|
|
43898
|
+
nullable: true,
|
|
43899
|
+
type: 'string',
|
|
43900
|
+
},
|
|
43894
43901
|
automation_result: {
|
|
43895
43902
|
properties: {
|
|
43896
43903
|
actions: {
|
|
@@ -44039,7 +44046,11 @@ export default {
|
|
|
44039
44046
|
automation_runs: {
|
|
44040
44047
|
items: {
|
|
44041
44048
|
properties: {
|
|
44042
|
-
automation_id: {
|
|
44049
|
+
automation_id: {
|
|
44050
|
+
format: 'uuid',
|
|
44051
|
+
nullable: true,
|
|
44052
|
+
type: 'string',
|
|
44053
|
+
},
|
|
44043
44054
|
automation_result: {
|
|
44044
44055
|
properties: {
|
|
44045
44056
|
actions: {
|