@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.432.0",
3
+ "version": "1.433.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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: {