@seamapi/types 1.733.0 → 1.734.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 +75 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +270 -40
- package/dist/index.cjs +75 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +62 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js +6 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +9 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +29 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -3
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +65 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +143 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +7 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +65 -0
- package/src/lib/seam/connect/route-types.ts +177 -0
|
@@ -9266,6 +9266,11 @@ export default {
|
|
|
9266
9266
|
enum: ['ios_phone', 'android_phone'],
|
|
9267
9267
|
type: 'string',
|
|
9268
9268
|
},
|
|
9269
|
+
{
|
|
9270
|
+
description: 'Device type for cameras.',
|
|
9271
|
+
enum: ['ring_camera'],
|
|
9272
|
+
type: 'string',
|
|
9273
|
+
},
|
|
9269
9274
|
],
|
|
9270
9275
|
},
|
|
9271
9276
|
display_name: {
|
|
@@ -10808,6 +10813,21 @@ export default {
|
|
|
10808
10813
|
required: ['device_id', 'device_name'],
|
|
10809
10814
|
type: 'object',
|
|
10810
10815
|
},
|
|
10816
|
+
ring_metadata: {
|
|
10817
|
+
description: 'Metadata for a Ring device.',
|
|
10818
|
+
properties: {
|
|
10819
|
+
device_id: {
|
|
10820
|
+
description: 'Device ID for a Ring device.',
|
|
10821
|
+
type: 'string',
|
|
10822
|
+
},
|
|
10823
|
+
device_name: {
|
|
10824
|
+
description: 'Device name for a Ring device.',
|
|
10825
|
+
type: 'string',
|
|
10826
|
+
},
|
|
10827
|
+
},
|
|
10828
|
+
required: ['device_id', 'device_name'],
|
|
10829
|
+
type: 'object',
|
|
10830
|
+
},
|
|
10811
10831
|
salto_ks_metadata: {
|
|
10812
10832
|
description: 'Metadata for a Salto KS device.',
|
|
10813
10833
|
properties: {
|
|
@@ -25019,6 +25039,11 @@ export default {
|
|
|
25019
25039
|
enum: ['ios_phone', 'android_phone'],
|
|
25020
25040
|
type: 'string',
|
|
25021
25041
|
},
|
|
25042
|
+
{
|
|
25043
|
+
description: 'Device type for cameras.',
|
|
25044
|
+
enum: ['ring_camera'],
|
|
25045
|
+
type: 'string',
|
|
25046
|
+
},
|
|
25022
25047
|
],
|
|
25023
25048
|
},
|
|
25024
25049
|
errors: {
|
|
@@ -46175,6 +46200,11 @@ export default {
|
|
|
46175
46200
|
enum: ['ios_phone', 'android_phone'],
|
|
46176
46201
|
type: 'string',
|
|
46177
46202
|
},
|
|
46203
|
+
{
|
|
46204
|
+
description: 'Device type for cameras.',
|
|
46205
|
+
enum: ['ring_camera'],
|
|
46206
|
+
type: 'string',
|
|
46207
|
+
},
|
|
46178
46208
|
],
|
|
46179
46209
|
},
|
|
46180
46210
|
},
|
|
@@ -46245,6 +46275,11 @@ export default {
|
|
|
46245
46275
|
enum: ['ios_phone', 'android_phone'],
|
|
46246
46276
|
type: 'string',
|
|
46247
46277
|
},
|
|
46278
|
+
{
|
|
46279
|
+
description: 'Device type for cameras.',
|
|
46280
|
+
enum: ['ring_camera'],
|
|
46281
|
+
type: 'string',
|
|
46282
|
+
},
|
|
46248
46283
|
],
|
|
46249
46284
|
},
|
|
46250
46285
|
type: 'array',
|
|
@@ -46596,6 +46631,11 @@ export default {
|
|
|
46596
46631
|
enum: ['ios_phone', 'android_phone'],
|
|
46597
46632
|
type: 'string',
|
|
46598
46633
|
},
|
|
46634
|
+
{
|
|
46635
|
+
description: 'Device type for cameras.',
|
|
46636
|
+
enum: ['ring_camera'],
|
|
46637
|
+
type: 'string',
|
|
46638
|
+
},
|
|
46599
46639
|
],
|
|
46600
46640
|
},
|
|
46601
46641
|
device_types: {
|
|
@@ -46662,6 +46702,11 @@ export default {
|
|
|
46662
46702
|
enum: ['ios_phone', 'android_phone'],
|
|
46663
46703
|
type: 'string',
|
|
46664
46704
|
},
|
|
46705
|
+
{
|
|
46706
|
+
description: 'Device type for cameras.',
|
|
46707
|
+
enum: ['ring_camera'],
|
|
46708
|
+
type: 'string',
|
|
46709
|
+
},
|
|
46665
46710
|
],
|
|
46666
46711
|
},
|
|
46667
46712
|
type: 'array',
|
|
@@ -47992,6 +48037,11 @@ export default {
|
|
|
47992
48037
|
enum: ['ios_phone', 'android_phone'],
|
|
47993
48038
|
type: 'string',
|
|
47994
48039
|
},
|
|
48040
|
+
{
|
|
48041
|
+
description: 'Device type for cameras.',
|
|
48042
|
+
enum: ['ring_camera'],
|
|
48043
|
+
type: 'string',
|
|
48044
|
+
},
|
|
47995
48045
|
],
|
|
47996
48046
|
},
|
|
47997
48047
|
},
|
|
@@ -48062,6 +48112,11 @@ export default {
|
|
|
48062
48112
|
enum: ['ios_phone', 'android_phone'],
|
|
48063
48113
|
type: 'string',
|
|
48064
48114
|
},
|
|
48115
|
+
{
|
|
48116
|
+
description: 'Device type for cameras.',
|
|
48117
|
+
enum: ['ring_camera'],
|
|
48118
|
+
type: 'string',
|
|
48119
|
+
},
|
|
48065
48120
|
],
|
|
48066
48121
|
},
|
|
48067
48122
|
type: 'array',
|
|
@@ -48412,6 +48467,11 @@ export default {
|
|
|
48412
48467
|
enum: ['ios_phone', 'android_phone'],
|
|
48413
48468
|
type: 'string',
|
|
48414
48469
|
},
|
|
48470
|
+
{
|
|
48471
|
+
description: 'Device type for cameras.',
|
|
48472
|
+
enum: ['ring_camera'],
|
|
48473
|
+
type: 'string',
|
|
48474
|
+
},
|
|
48415
48475
|
],
|
|
48416
48476
|
},
|
|
48417
48477
|
device_types: {
|
|
@@ -48478,6 +48538,11 @@ export default {
|
|
|
48478
48538
|
enum: ['ios_phone', 'android_phone'],
|
|
48479
48539
|
type: 'string',
|
|
48480
48540
|
},
|
|
48541
|
+
{
|
|
48542
|
+
description: 'Device type for cameras.',
|
|
48543
|
+
enum: ['ring_camera'],
|
|
48544
|
+
type: 'string',
|
|
48545
|
+
},
|
|
48481
48546
|
],
|
|
48482
48547
|
},
|
|
48483
48548
|
type: 'array',
|