@seamapi/types 1.118.0 → 1.119.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.
@@ -1679,7 +1679,7 @@ export interface Routes {
1679
1679
  custom_redirect_url?: string | undefined;
1680
1680
  custom_redirect_failure_url?: string | undefined;
1681
1681
  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' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
1682
- provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
1682
+ provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'internal_beta') | undefined;
1683
1683
  custom_metadata?: Record<string, string | boolean | null> | undefined;
1684
1684
  automatically_manage_new_devices?: boolean | undefined;
1685
1685
  wait_for_device_creation?: boolean | undefined;
@@ -2892,7 +2892,7 @@ export interface Routes {
2892
2892
  queryParams: {};
2893
2893
  jsonBody: {};
2894
2894
  commonParams: {
2895
- provider_category?: ('stable' | 'consumer_smartlocks') | undefined;
2895
+ provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
2896
2896
  };
2897
2897
  formData: {};
2898
2898
  jsonResponse: {
@@ -2900,7 +2900,7 @@ export interface Routes {
2900
2900
  device_provider_name: string;
2901
2901
  display_name: string;
2902
2902
  image_url: string;
2903
- provider_categories: Array<'stable' | 'consumer_smartlocks'>;
2903
+ provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
2904
2904
  }>;
2905
2905
  };
2906
2906
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.118.0",
3
+ "version": "1.119.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1724,7 +1724,15 @@ export default {
1724
1724
  display_name: { type: 'string' },
1725
1725
  image_url: { type: 'string' },
1726
1726
  provider_categories: {
1727
- items: { enum: ['stable', 'consumer_smartlocks'], type: 'string' },
1727
+ items: {
1728
+ enum: [
1729
+ 'stable',
1730
+ 'consumer_smartlocks',
1731
+ 'thermostats',
1732
+ 'noise_sensors',
1733
+ ],
1734
+ type: 'string',
1735
+ },
1728
1736
  type: 'array',
1729
1737
  },
1730
1738
  },
@@ -7023,7 +7031,13 @@ export default {
7023
7031
  type: 'string',
7024
7032
  },
7025
7033
  provider_category: {
7026
- enum: ['stable', 'consumer_smartlocks', 'internal_beta'],
7034
+ enum: [
7035
+ 'stable',
7036
+ 'consumer_smartlocks',
7037
+ 'thermostats',
7038
+ 'noise_sensors',
7039
+ 'internal_beta',
7040
+ ],
7027
7041
  type: 'string',
7028
7042
  },
7029
7043
  wait_for_device_creation: { type: 'boolean' },
@@ -7791,7 +7805,12 @@ export default {
7791
7805
  schema: {
7792
7806
  properties: {
7793
7807
  provider_category: {
7794
- enum: ['stable', 'consumer_smartlocks'],
7808
+ enum: [
7809
+ 'stable',
7810
+ 'consumer_smartlocks',
7811
+ 'thermostats',
7812
+ 'noise_sensors',
7813
+ ],
7795
7814
  type: 'string',
7796
7815
  },
7797
7816
  },
@@ -1917,7 +1917,13 @@ export interface Routes {
1917
1917
  >
1918
1918
  | undefined
1919
1919
  provider_category?:
1920
- | ('stable' | 'consumer_smartlocks' | 'internal_beta')
1920
+ | (
1921
+ | 'stable'
1922
+ | 'consumer_smartlocks'
1923
+ | 'thermostats'
1924
+ | 'noise_sensors'
1925
+ | 'internal_beta'
1926
+ )
1921
1927
  | undefined
1922
1928
  custom_metadata?: Record<string, string | boolean | null> | undefined
1923
1929
  automatically_manage_new_devices?: boolean | undefined
@@ -3666,7 +3672,9 @@ export interface Routes {
3666
3672
  queryParams: {}
3667
3673
  jsonBody: {}
3668
3674
  commonParams: {
3669
- provider_category?: ('stable' | 'consumer_smartlocks') | undefined
3675
+ provider_category?:
3676
+ | ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors')
3677
+ | undefined
3670
3678
  }
3671
3679
  formData: {}
3672
3680
  jsonResponse: {
@@ -3674,7 +3682,9 @@ export interface Routes {
3674
3682
  device_provider_name: string
3675
3683
  display_name: string
3676
3684
  image_url: string
3677
- provider_categories: Array<'stable' | 'consumer_smartlocks'>
3685
+ provider_categories: Array<
3686
+ 'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'
3687
+ >
3678
3688
  }>
3679
3689
  }
3680
3690
  }