@seamapi/types 1.432.0 → 1.433.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 +14 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +0 -3
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +0 -3
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -16479,6 +16479,8 @@ export interface Routes {
|
|
|
16479
16479
|
access_grant_id?: string | undefined;
|
|
16480
16480
|
/** ID of the access method for which you want to retrieve all entrances. */
|
|
16481
16481
|
access_method_id?: string | undefined;
|
|
16482
|
+
/** ID of the connected account for which you want to retrieve all entrances. */
|
|
16483
|
+
connected_account_id?: string | undefined;
|
|
16482
16484
|
};
|
|
16483
16485
|
formData: {};
|
|
16484
16486
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -66,7 +66,6 @@ export type ProviderCategory = keyof typeof PROVIDER_CATEGORY_MAP
|
|
|
66
66
|
export const PROVIDER_CATEGORY_MAP = {
|
|
67
67
|
stable: [
|
|
68
68
|
'august',
|
|
69
|
-
'avigilon_alta',
|
|
70
69
|
'brivo',
|
|
71
70
|
'schlage',
|
|
72
71
|
'smartthings',
|
|
@@ -74,7 +73,6 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
74
73
|
'nuki',
|
|
75
74
|
'salto',
|
|
76
75
|
'salto_space',
|
|
77
|
-
'controlbyweb',
|
|
78
76
|
'minut',
|
|
79
77
|
'my_2n',
|
|
80
78
|
'kwikset',
|
|
@@ -82,7 +80,6 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
82
80
|
'noiseaware',
|
|
83
81
|
'igloohome',
|
|
84
82
|
'ecobee',
|
|
85
|
-
'four_suites',
|
|
86
83
|
'lockly',
|
|
87
84
|
'wyze',
|
|
88
85
|
'nest',
|
|
@@ -31108,6 +31108,16 @@ export default {
|
|
|
31108
31108
|
type: 'string',
|
|
31109
31109
|
},
|
|
31110
31110
|
},
|
|
31111
|
+
{
|
|
31112
|
+
in: 'query',
|
|
31113
|
+
name: 'connected_account_id',
|
|
31114
|
+
schema: {
|
|
31115
|
+
description:
|
|
31116
|
+
'ID of the connected account for which you want to retrieve all entrances.',
|
|
31117
|
+
format: 'uuid',
|
|
31118
|
+
type: 'string',
|
|
31119
|
+
},
|
|
31120
|
+
},
|
|
31111
31121
|
],
|
|
31112
31122
|
responses: {
|
|
31113
31123
|
200: {
|
|
@@ -31178,6 +31188,12 @@ export default {
|
|
|
31178
31188
|
format: 'uuid',
|
|
31179
31189
|
type: 'string',
|
|
31180
31190
|
},
|
|
31191
|
+
connected_account_id: {
|
|
31192
|
+
description:
|
|
31193
|
+
'ID of the connected account for which you want to retrieve all entrances.',
|
|
31194
|
+
format: 'uuid',
|
|
31195
|
+
type: 'string',
|
|
31196
|
+
},
|
|
31181
31197
|
location_id: {
|
|
31182
31198
|
deprecated: true,
|
|
31183
31199
|
format: 'uuid',
|
|
@@ -18660,6 +18660,8 @@ export interface Routes {
|
|
|
18660
18660
|
access_grant_id?: string | undefined
|
|
18661
18661
|
/** ID of the access method for which you want to retrieve all entrances. */
|
|
18662
18662
|
access_method_id?: string | undefined
|
|
18663
|
+
/** ID of the connected account for which you want to retrieve all entrances. */
|
|
18664
|
+
connected_account_id?: string | undefined
|
|
18663
18665
|
}
|
|
18664
18666
|
formData: {}
|
|
18665
18667
|
jsonResponse: {
|