@seamapi/types 1.269.1 → 1.270.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.
@@ -7786,7 +7786,7 @@ export interface Routes {
7786
7786
  device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
7787
7787
  custom_redirect_url?: string | undefined;
7788
7788
  custom_redirect_failure_url?: string | undefined;
7789
- accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
7789
+ accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
7790
7790
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
7791
7791
  custom_metadata?: Record<string, string | boolean | null> | undefined;
7792
7792
  automatically_manage_new_devices?: boolean;
@@ -8978,7 +8978,7 @@ export interface Routes {
8978
8978
  formData: {};
8979
8979
  jsonResponse: {
8980
8980
  device_providers: Array<{
8981
- device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles';
8981
+ device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio';
8982
8982
  display_name: string;
8983
8983
  image_url: string;
8984
8984
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.269.1",
3
+ "version": "1.270.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -41,6 +41,7 @@ export const DEVICE_PROVIDERS = {
41
41
  HONEYWELL_RESIDEO: 'honeywell_resideo',
42
42
  LATCH: 'latch',
43
43
  AKILES: 'akiles',
44
+ VOSTIO: 'vostio',
44
45
  } as const
45
46
 
46
47
  export type DeviceProviderName =
@@ -4227,6 +4227,7 @@ export default {
4227
4227
  'honeywell_resideo',
4228
4228
  'latch',
4229
4229
  'akiles',
4230
+ 'vostio',
4230
4231
  ],
4231
4232
  type: 'string',
4232
4233
  },
@@ -10850,6 +10851,7 @@ export default {
10850
10851
  'honeywell_resideo',
10851
10852
  'latch',
10852
10853
  'akiles',
10854
+ 'vostio',
10853
10855
  'yale_access',
10854
10856
  'hid_cm',
10855
10857
  'google_nest',
@@ -9160,6 +9160,7 @@ export interface Routes {
9160
9160
  | 'honeywell_resideo'
9161
9161
  | 'latch'
9162
9162
  | 'akiles'
9163
+ | 'vostio'
9163
9164
  | 'yale_access'
9164
9165
  | 'hid_cm'
9165
9166
  | 'google_nest'
@@ -10914,6 +10915,7 @@ export interface Routes {
10914
10915
  | 'honeywell_resideo'
10915
10916
  | 'latch'
10916
10917
  | 'akiles'
10918
+ | 'vostio'
10917
10919
  display_name: string
10918
10920
  image_url: string
10919
10921
  provider_categories: Array<