@seamapi/types 1.733.0 → 1.735.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 +108 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +312 -59
- package/dist/index.cjs +108 -21
- 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 +50 -18
- package/lib/seam/connect/openapi.js +98 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +150 -25
- 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 +100 -20
- package/src/lib/seam/connect/route-types.ts +190 -4
|
@@ -6550,6 +6550,21 @@ declare const _default: {
|
|
|
6550
6550
|
required: string[];
|
|
6551
6551
|
type: string;
|
|
6552
6552
|
};
|
|
6553
|
+
ring_metadata: {
|
|
6554
|
+
description: string;
|
|
6555
|
+
properties: {
|
|
6556
|
+
device_id: {
|
|
6557
|
+
description: string;
|
|
6558
|
+
type: string;
|
|
6559
|
+
};
|
|
6560
|
+
device_name: {
|
|
6561
|
+
description: string;
|
|
6562
|
+
type: string;
|
|
6563
|
+
};
|
|
6564
|
+
};
|
|
6565
|
+
required: string[];
|
|
6566
|
+
type: string;
|
|
6567
|
+
};
|
|
6553
6568
|
salto_ks_metadata: {
|
|
6554
6569
|
description: string;
|
|
6555
6570
|
properties: {
|
|
@@ -24941,16 +24956,6 @@ declare const _default: {
|
|
|
24941
24956
|
delete: {
|
|
24942
24957
|
description: string;
|
|
24943
24958
|
operationId: string;
|
|
24944
|
-
parameters: {
|
|
24945
|
-
in: string;
|
|
24946
|
-
name: string;
|
|
24947
|
-
required: boolean;
|
|
24948
|
-
schema: {
|
|
24949
|
-
description: string;
|
|
24950
|
-
format: string;
|
|
24951
|
-
type: string;
|
|
24952
|
-
};
|
|
24953
|
-
}[];
|
|
24954
24959
|
responses: {
|
|
24955
24960
|
200: {
|
|
24956
24961
|
content: {
|
|
@@ -25011,15 +25016,42 @@ declare const _default: {
|
|
|
25011
25016
|
content: {
|
|
25012
25017
|
'application/json': {
|
|
25013
25018
|
schema: {
|
|
25014
|
-
|
|
25015
|
-
|
|
25016
|
-
|
|
25017
|
-
|
|
25018
|
-
|
|
25019
|
+
oneOf: ({
|
|
25020
|
+
properties: {
|
|
25021
|
+
access_method_id: {
|
|
25022
|
+
description: string;
|
|
25023
|
+
format: string;
|
|
25024
|
+
type: string;
|
|
25025
|
+
};
|
|
25026
|
+
access_grant_id?: never;
|
|
25027
|
+
reservation_key?: never;
|
|
25019
25028
|
};
|
|
25020
|
-
|
|
25021
|
-
|
|
25022
|
-
|
|
25029
|
+
required: string[];
|
|
25030
|
+
type: string;
|
|
25031
|
+
} | {
|
|
25032
|
+
properties: {
|
|
25033
|
+
access_grant_id: {
|
|
25034
|
+
description: string;
|
|
25035
|
+
format: string;
|
|
25036
|
+
type: string;
|
|
25037
|
+
};
|
|
25038
|
+
access_method_id?: never;
|
|
25039
|
+
reservation_key?: never;
|
|
25040
|
+
};
|
|
25041
|
+
required: string[];
|
|
25042
|
+
type: string;
|
|
25043
|
+
} | {
|
|
25044
|
+
properties: {
|
|
25045
|
+
reservation_key: {
|
|
25046
|
+
description: string;
|
|
25047
|
+
type: string;
|
|
25048
|
+
};
|
|
25049
|
+
access_method_id?: never;
|
|
25050
|
+
access_grant_id?: never;
|
|
25051
|
+
};
|
|
25052
|
+
required: string[];
|
|
25053
|
+
type: string;
|
|
25054
|
+
})[];
|
|
25023
25055
|
};
|
|
25024
25056
|
};
|
|
25025
25057
|
};
|
|
@@ -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: {
|
|
@@ -32851,18 +32876,6 @@ export default {
|
|
|
32851
32876
|
delete: {
|
|
32852
32877
|
description: 'Deletes an access method.',
|
|
32853
32878
|
operationId: 'accessMethodsDeleteDelete',
|
|
32854
|
-
parameters: [
|
|
32855
|
-
{
|
|
32856
|
-
in: 'query',
|
|
32857
|
-
name: 'access_method_id',
|
|
32858
|
-
required: true,
|
|
32859
|
-
schema: {
|
|
32860
|
-
description: 'ID of access method to get.',
|
|
32861
|
-
format: 'uuid',
|
|
32862
|
-
type: 'string',
|
|
32863
|
-
},
|
|
32864
|
-
},
|
|
32865
|
-
],
|
|
32866
32879
|
responses: {
|
|
32867
32880
|
200: {
|
|
32868
32881
|
content: {
|
|
@@ -32900,15 +32913,40 @@ export default {
|
|
|
32900
32913
|
content: {
|
|
32901
32914
|
'application/json': {
|
|
32902
32915
|
schema: {
|
|
32903
|
-
|
|
32904
|
-
|
|
32905
|
-
|
|
32906
|
-
|
|
32907
|
-
|
|
32916
|
+
oneOf: [
|
|
32917
|
+
{
|
|
32918
|
+
properties: {
|
|
32919
|
+
access_method_id: {
|
|
32920
|
+
description: 'ID of access method to delete.',
|
|
32921
|
+
format: 'uuid',
|
|
32922
|
+
type: 'string',
|
|
32923
|
+
},
|
|
32924
|
+
},
|
|
32925
|
+
required: ['access_method_id'],
|
|
32926
|
+
type: 'object',
|
|
32908
32927
|
},
|
|
32909
|
-
|
|
32910
|
-
|
|
32911
|
-
|
|
32928
|
+
{
|
|
32929
|
+
properties: {
|
|
32930
|
+
access_grant_id: {
|
|
32931
|
+
description: 'ID of access grant whose access methods should be deleted.',
|
|
32932
|
+
format: 'uuid',
|
|
32933
|
+
type: 'string',
|
|
32934
|
+
},
|
|
32935
|
+
},
|
|
32936
|
+
required: ['access_grant_id'],
|
|
32937
|
+
type: 'object',
|
|
32938
|
+
},
|
|
32939
|
+
{
|
|
32940
|
+
properties: {
|
|
32941
|
+
reservation_key: {
|
|
32942
|
+
description: 'Reservation key of the access grant whose access methods should be deleted.',
|
|
32943
|
+
type: 'string',
|
|
32944
|
+
},
|
|
32945
|
+
},
|
|
32946
|
+
required: ['reservation_key'],
|
|
32947
|
+
type: 'object',
|
|
32948
|
+
},
|
|
32949
|
+
],
|
|
32912
32950
|
},
|
|
32913
32951
|
},
|
|
32914
32952
|
},
|
|
@@ -46175,6 +46213,11 @@ export default {
|
|
|
46175
46213
|
enum: ['ios_phone', 'android_phone'],
|
|
46176
46214
|
type: 'string',
|
|
46177
46215
|
},
|
|
46216
|
+
{
|
|
46217
|
+
description: 'Device type for cameras.',
|
|
46218
|
+
enum: ['ring_camera'],
|
|
46219
|
+
type: 'string',
|
|
46220
|
+
},
|
|
46178
46221
|
],
|
|
46179
46222
|
},
|
|
46180
46223
|
},
|
|
@@ -46245,6 +46288,11 @@ export default {
|
|
|
46245
46288
|
enum: ['ios_phone', 'android_phone'],
|
|
46246
46289
|
type: 'string',
|
|
46247
46290
|
},
|
|
46291
|
+
{
|
|
46292
|
+
description: 'Device type for cameras.',
|
|
46293
|
+
enum: ['ring_camera'],
|
|
46294
|
+
type: 'string',
|
|
46295
|
+
},
|
|
46248
46296
|
],
|
|
46249
46297
|
},
|
|
46250
46298
|
type: 'array',
|
|
@@ -46596,6 +46644,11 @@ export default {
|
|
|
46596
46644
|
enum: ['ios_phone', 'android_phone'],
|
|
46597
46645
|
type: 'string',
|
|
46598
46646
|
},
|
|
46647
|
+
{
|
|
46648
|
+
description: 'Device type for cameras.',
|
|
46649
|
+
enum: ['ring_camera'],
|
|
46650
|
+
type: 'string',
|
|
46651
|
+
},
|
|
46599
46652
|
],
|
|
46600
46653
|
},
|
|
46601
46654
|
device_types: {
|
|
@@ -46662,6 +46715,11 @@ export default {
|
|
|
46662
46715
|
enum: ['ios_phone', 'android_phone'],
|
|
46663
46716
|
type: 'string',
|
|
46664
46717
|
},
|
|
46718
|
+
{
|
|
46719
|
+
description: 'Device type for cameras.',
|
|
46720
|
+
enum: ['ring_camera'],
|
|
46721
|
+
type: 'string',
|
|
46722
|
+
},
|
|
46665
46723
|
],
|
|
46666
46724
|
},
|
|
46667
46725
|
type: 'array',
|
|
@@ -47992,6 +48050,11 @@ export default {
|
|
|
47992
48050
|
enum: ['ios_phone', 'android_phone'],
|
|
47993
48051
|
type: 'string',
|
|
47994
48052
|
},
|
|
48053
|
+
{
|
|
48054
|
+
description: 'Device type for cameras.',
|
|
48055
|
+
enum: ['ring_camera'],
|
|
48056
|
+
type: 'string',
|
|
48057
|
+
},
|
|
47995
48058
|
],
|
|
47996
48059
|
},
|
|
47997
48060
|
},
|
|
@@ -48062,6 +48125,11 @@ export default {
|
|
|
48062
48125
|
enum: ['ios_phone', 'android_phone'],
|
|
48063
48126
|
type: 'string',
|
|
48064
48127
|
},
|
|
48128
|
+
{
|
|
48129
|
+
description: 'Device type for cameras.',
|
|
48130
|
+
enum: ['ring_camera'],
|
|
48131
|
+
type: 'string',
|
|
48132
|
+
},
|
|
48065
48133
|
],
|
|
48066
48134
|
},
|
|
48067
48135
|
type: 'array',
|
|
@@ -48412,6 +48480,11 @@ export default {
|
|
|
48412
48480
|
enum: ['ios_phone', 'android_phone'],
|
|
48413
48481
|
type: 'string',
|
|
48414
48482
|
},
|
|
48483
|
+
{
|
|
48484
|
+
description: 'Device type for cameras.',
|
|
48485
|
+
enum: ['ring_camera'],
|
|
48486
|
+
type: 'string',
|
|
48487
|
+
},
|
|
48415
48488
|
],
|
|
48416
48489
|
},
|
|
48417
48490
|
device_types: {
|
|
@@ -48478,6 +48551,11 @@ export default {
|
|
|
48478
48551
|
enum: ['ios_phone', 'android_phone'],
|
|
48479
48552
|
type: 'string',
|
|
48480
48553
|
},
|
|
48554
|
+
{
|
|
48555
|
+
description: 'Device type for cameras.',
|
|
48556
|
+
enum: ['ring_camera'],
|
|
48557
|
+
type: 'string',
|
|
48558
|
+
},
|
|
48481
48559
|
],
|
|
48482
48560
|
},
|
|
48483
48561
|
type: 'array',
|