@seamapi/types 1.117.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.
@@ -9517,6 +9517,9 @@ declare const _default: {
9517
9517
  user_identifier_key: {
9518
9518
  type: string;
9519
9519
  };
9520
+ user_identity_id: {
9521
+ type: string;
9522
+ };
9520
9523
  without_user_identifier_key: {
9521
9524
  type: string;
9522
9525
  };
@@ -18687,6 +18690,7 @@ interface Routes {
18687
18690
  user_identifier_key?: string | undefined;
18688
18691
  connect_webview_id?: string | undefined;
18689
18692
  without_user_identifier_key?: boolean | undefined;
18693
+ user_identity_id?: string | undefined;
18690
18694
  };
18691
18695
  formData: {};
18692
18696
  jsonResponse: {
@@ -18722,7 +18726,7 @@ interface Routes {
18722
18726
  custom_redirect_url?: string | undefined;
18723
18727
  custom_redirect_failure_url?: string | undefined;
18724
18728
  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;
18725
- provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
18729
+ provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'internal_beta') | undefined;
18726
18730
  custom_metadata?: Record<string, string | boolean | null> | undefined;
18727
18731
  automatically_manage_new_devices?: boolean | undefined;
18728
18732
  wait_for_device_creation?: boolean | undefined;
@@ -19935,7 +19939,7 @@ interface Routes {
19935
19939
  queryParams: {};
19936
19940
  jsonBody: {};
19937
19941
  commonParams: {
19938
- provider_category?: ('stable' | 'consumer_smartlocks') | undefined;
19942
+ provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
19939
19943
  };
19940
19944
  formData: {};
19941
19945
  jsonResponse: {
@@ -19943,7 +19947,7 @@ interface Routes {
19943
19947
  device_provider_name: string;
19944
19948
  display_name: string;
19945
19949
  image_url: string;
19946
- provider_categories: Array<'stable' | 'consumer_smartlocks'>;
19950
+ provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
19947
19951
  }>;
19948
19952
  };
19949
19953
  };
@@ -9443,6 +9443,9 @@ declare const _default: {
9443
9443
  user_identifier_key: {
9444
9444
  type: string;
9445
9445
  };
9446
+ user_identity_id: {
9447
+ type: string;
9448
+ };
9446
9449
  without_user_identifier_key: {
9447
9450
  type: string;
9448
9451
  };
@@ -1683,7 +1683,15 @@ export default {
1683
1683
  display_name: { type: 'string' },
1684
1684
  image_url: { type: 'string' },
1685
1685
  provider_categories: {
1686
- items: { enum: ['stable', 'consumer_smartlocks'], type: 'string' },
1686
+ items: {
1687
+ enum: [
1688
+ 'stable',
1689
+ 'consumer_smartlocks',
1690
+ 'thermostats',
1691
+ 'noise_sensors',
1692
+ ],
1693
+ type: 'string',
1694
+ },
1687
1695
  type: 'array',
1688
1696
  },
1689
1697
  },
@@ -6795,6 +6803,7 @@ export default {
6795
6803
  client_session_id: { type: 'string' },
6796
6804
  connect_webview_id: { type: 'string' },
6797
6805
  user_identifier_key: { type: 'string' },
6806
+ user_identity_id: { type: 'string' },
6798
6807
  without_user_identifier_key: { type: 'boolean' },
6799
6808
  },
6800
6809
  type: 'object',
@@ -6953,7 +6962,13 @@ export default {
6953
6962
  type: 'string',
6954
6963
  },
6955
6964
  provider_category: {
6956
- enum: ['stable', 'consumer_smartlocks', 'internal_beta'],
6965
+ enum: [
6966
+ 'stable',
6967
+ 'consumer_smartlocks',
6968
+ 'thermostats',
6969
+ 'noise_sensors',
6970
+ 'internal_beta',
6971
+ ],
6957
6972
  type: 'string',
6958
6973
  },
6959
6974
  wait_for_device_creation: { type: 'boolean' },
@@ -7718,7 +7733,12 @@ export default {
7718
7733
  schema: {
7719
7734
  properties: {
7720
7735
  provider_category: {
7721
- enum: ['stable', 'consumer_smartlocks'],
7736
+ enum: [
7737
+ 'stable',
7738
+ 'consumer_smartlocks',
7739
+ 'thermostats',
7740
+ 'noise_sensors',
7741
+ ],
7722
7742
  type: 'string',
7723
7743
  },
7724
7744
  },