@seamapi/types 1.173.1 → 1.174.1

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.
@@ -2233,6 +2233,8 @@ export interface Routes {
2233
2233
  ---
2234
2234
  */
2235
2235
  supports_offline_access_codes?: boolean | undefined;
2236
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
2237
+ noise_level_decibels?: number | undefined;
2236
2238
  } & {
2237
2239
  assa_abloy_credential_service_metadata?: ({
2238
2240
  has_active_endpoint: boolean;
@@ -2771,6 +2773,8 @@ export interface Routes {
2771
2773
  ---
2772
2774
  */
2773
2775
  supports_offline_access_codes?: boolean | undefined;
2776
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
2777
+ noise_level_decibels?: number | undefined;
2774
2778
  } & {
2775
2779
  assa_abloy_credential_service_metadata?: ({
2776
2780
  has_active_endpoint: boolean;
@@ -3623,6 +3627,8 @@ export interface Routes {
3623
3627
  ---
3624
3628
  */
3625
3629
  supports_offline_access_codes?: boolean | undefined;
3630
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
3631
+ noise_level_decibels?: number | undefined;
3626
3632
  } & {
3627
3633
  assa_abloy_credential_service_metadata?: ({
3628
3634
  has_active_endpoint: boolean;
@@ -4136,6 +4142,8 @@ export interface Routes {
4136
4142
  ---
4137
4143
  */
4138
4144
  supports_offline_access_codes?: boolean | undefined;
4145
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
4146
+ noise_level_decibels?: number | undefined;
4139
4147
  } & {
4140
4148
  assa_abloy_credential_service_metadata?: ({
4141
4149
  has_active_endpoint: boolean;
@@ -4674,6 +4682,8 @@ export interface Routes {
4674
4682
  ---
4675
4683
  */
4676
4684
  supports_offline_access_codes?: boolean | undefined;
4685
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
4686
+ noise_level_decibels?: number | undefined;
4677
4687
  } & {
4678
4688
  assa_abloy_credential_service_metadata?: ({
4679
4689
  has_active_endpoint: boolean;
@@ -5187,6 +5197,8 @@ export interface Routes {
5187
5197
  ---
5188
5198
  */
5189
5199
  supports_offline_access_codes?: boolean | undefined;
5200
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
5201
+ noise_level_decibels?: number | undefined;
5190
5202
  } & {
5191
5203
  assa_abloy_credential_service_metadata?: ({
5192
5204
  has_active_endpoint: boolean;
@@ -5987,7 +5999,6 @@ export interface Routes {
5987
5999
  device_manufacturer?: string;
5988
6000
  device_model?: string;
5989
6001
  };
5990
- credential_manager_acs_system_id: string;
5991
6002
  assa_abloy_metadata?: {
5992
6003
  ble_capability?: boolean;
5993
6004
  hce_capability?: boolean;
@@ -6344,6 +6355,8 @@ export interface Routes {
6344
6355
  ---
6345
6356
  */
6346
6357
  supports_offline_access_codes?: boolean | undefined;
6358
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
6359
+ noise_level_decibels?: number | undefined;
6347
6360
  } & {
6348
6361
  assa_abloy_credential_service_metadata?: ({
6349
6362
  has_active_endpoint: boolean;
@@ -6958,6 +6971,8 @@ export interface Routes {
6958
6971
  ---
6959
6972
  */
6960
6973
  supports_offline_access_codes?: boolean | undefined;
6974
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
6975
+ noise_level_decibels?: number | undefined;
6961
6976
  } & {
6962
6977
  assa_abloy_credential_service_metadata?: ({
6963
6978
  has_active_endpoint: boolean;
@@ -7755,6 +7770,8 @@ export interface Routes {
7755
7770
  ---
7756
7771
  */
7757
7772
  supports_offline_access_codes?: boolean | undefined;
7773
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
7774
+ noise_level_decibels?: number | undefined;
7758
7775
  } & {
7759
7776
  assa_abloy_credential_service_metadata?: ({
7760
7777
  has_active_endpoint: boolean;
@@ -8273,6 +8290,8 @@ export interface Routes {
8273
8290
  ---
8274
8291
  */
8275
8292
  supports_offline_access_codes?: boolean | undefined;
8293
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
8294
+ noise_level_decibels?: number | undefined;
8276
8295
  } & {
8277
8296
  assa_abloy_credential_service_metadata?: ({
8278
8297
  has_active_endpoint: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.173.1",
3
+ "version": "1.174.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -143,6 +143,12 @@ export const common_device_properties = z.object({
143
143
  `,
144
144
  )
145
145
  .optional(),
146
+ noise_level_decibels: z
147
+ .number()
148
+ .describe(
149
+ 'Indicates current noise level in decibels, if the device supports noise detection.',
150
+ )
151
+ .optional(),
146
152
  })
147
153
 
148
154
  export const managed_device = z
@@ -1006,6 +1006,11 @@ export default {
1006
1006
  '\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ',
1007
1007
  type: 'string',
1008
1008
  },
1009
+ noise_level_decibels: {
1010
+ description:
1011
+ 'Indicates current noise level in decibels, if the device supports noise detection.',
1012
+ type: 'number',
1013
+ },
1009
1014
  offline_access_codes_enabled: {
1010
1015
  description:
1011
1016
  'Indicates whether it is currently possible to use offline access codes for the device.',
@@ -3891,7 +3896,6 @@ export default {
3891
3896
  401: { description: 'Unauthorized' },
3892
3897
  },
3893
3898
  security: [
3894
- { client_session: [] },
3895
3899
  { pat_with_workspace: [] },
3896
3900
  { console_session: [] },
3897
3901
  { api_key: [] },
@@ -3934,7 +3938,6 @@ export default {
3934
3938
  401: { description: 'Unauthorized' },
3935
3939
  },
3936
3940
  security: [
3937
- { client_session: [] },
3938
3941
  { pat_with_workspace: [] },
3939
3942
  { console_session: [] },
3940
3943
  { api_key: [] },
@@ -3982,7 +3985,6 @@ export default {
3982
3985
  401: { description: 'Unauthorized' },
3983
3986
  },
3984
3987
  security: [
3985
- { client_session: [] },
3986
3988
  { pat_with_workspace: [] },
3987
3989
  { console_session: [] },
3988
3990
  { api_key: [] },
@@ -4083,7 +4085,6 @@ export default {
4083
4085
  401: { description: 'Unauthorized' },
4084
4086
  },
4085
4087
  security: [
4086
- { client_session: [] },
4087
4088
  { pat_with_workspace: [] },
4088
4089
  { console_session: [] },
4089
4090
  { api_key: [] },
@@ -4949,7 +4950,6 @@ export default {
4949
4950
  },
4950
4951
  security: [
4951
4952
  { api_key: [] },
4952
- { client_session: [] },
4953
4953
  { pat_with_workspace: [] },
4954
4954
  { console_session: [] },
4955
4955
  ],
@@ -9167,10 +9167,6 @@ export default {
9167
9167
  },
9168
9168
  type: 'object',
9169
9169
  },
9170
- credential_manager_acs_system_id: {
9171
- format: 'uuid',
9172
- type: 'string',
9173
- },
9174
9170
  custom_sdk_installation_id: { type: 'string' },
9175
9171
  phone_metadata: {
9176
9172
  default: {},
@@ -9194,10 +9190,7 @@ export default {
9194
9190
  },
9195
9191
  user_identity_id: { format: 'uuid', type: 'string' },
9196
9192
  },
9197
- required: [
9198
- 'user_identity_id',
9199
- 'credential_manager_acs_system_id',
9200
- ],
9193
+ required: ['user_identity_id'],
9201
9194
  type: 'object',
9202
9195
  },
9203
9196
  },
@@ -2586,6 +2586,8 @@ export interface Routes {
2586
2586
  ---
2587
2587
  */
2588
2588
  supports_offline_access_codes?: boolean | undefined
2589
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
2590
+ noise_level_decibels?: number | undefined
2589
2591
  } & {
2590
2592
  assa_abloy_credential_service_metadata?:
2591
2593
  | (
@@ -3473,6 +3475,8 @@ export interface Routes {
3473
3475
  ---
3474
3476
  */
3475
3477
  supports_offline_access_codes?: boolean | undefined
3478
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
3479
+ noise_level_decibels?: number | undefined
3476
3480
  } & {
3477
3481
  assa_abloy_credential_service_metadata?:
3478
3482
  | (
@@ -4945,6 +4949,8 @@ export interface Routes {
4945
4949
  ---
4946
4950
  */
4947
4951
  supports_offline_access_codes?: boolean | undefined
4952
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
4953
+ noise_level_decibels?: number | undefined
4948
4954
  } & {
4949
4955
  assa_abloy_credential_service_metadata?:
4950
4956
  | (
@@ -5678,6 +5684,8 @@ export interface Routes {
5678
5684
  ---
5679
5685
  */
5680
5686
  supports_offline_access_codes?: boolean | undefined
5687
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
5688
+ noise_level_decibels?: number | undefined
5681
5689
  } & {
5682
5690
  assa_abloy_credential_service_metadata?:
5683
5691
  | (
@@ -6565,6 +6573,8 @@ export interface Routes {
6565
6573
  ---
6566
6574
  */
6567
6575
  supports_offline_access_codes?: boolean | undefined
6576
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
6577
+ noise_level_decibels?: number | undefined
6568
6578
  } & {
6569
6579
  assa_abloy_credential_service_metadata?:
6570
6580
  | (
@@ -7298,6 +7308,8 @@ export interface Routes {
7298
7308
  ---
7299
7309
  */
7300
7310
  supports_offline_access_codes?: boolean | undefined
7311
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
7312
+ noise_level_decibels?: number | undefined
7301
7313
  } & {
7302
7314
  assa_abloy_credential_service_metadata?:
7303
7315
  | (
@@ -8294,7 +8306,6 @@ export interface Routes {
8294
8306
  device_manufacturer?: string
8295
8307
  device_model?: string
8296
8308
  }
8297
- credential_manager_acs_system_id: string
8298
8309
  assa_abloy_metadata?: {
8299
8310
  ble_capability?: boolean
8300
8311
  hce_capability?: boolean
@@ -8711,6 +8722,8 @@ export interface Routes {
8711
8722
  ---
8712
8723
  */
8713
8724
  supports_offline_access_codes?: boolean | undefined
8725
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
8726
+ noise_level_decibels?: number | undefined
8714
8727
  } & {
8715
8728
  assa_abloy_credential_service_metadata?:
8716
8729
  | (
@@ -9680,6 +9693,8 @@ export interface Routes {
9680
9693
  ---
9681
9694
  */
9682
9695
  supports_offline_access_codes?: boolean | undefined
9696
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
9697
+ noise_level_decibels?: number | undefined
9683
9698
  } & {
9684
9699
  assa_abloy_credential_service_metadata?:
9685
9700
  | (
@@ -10705,6 +10720,8 @@ export interface Routes {
10705
10720
  ---
10706
10721
  */
10707
10722
  supports_offline_access_codes?: boolean | undefined
10723
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
10724
+ noise_level_decibels?: number | undefined
10708
10725
  } & {
10709
10726
  assa_abloy_credential_service_metadata?:
10710
10727
  | (
@@ -11443,6 +11460,8 @@ export interface Routes {
11443
11460
  ---
11444
11461
  */
11445
11462
  supports_offline_access_codes?: boolean | undefined
11463
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
11464
+ noise_level_decibels?: number | undefined
11446
11465
  } & {
11447
11466
  assa_abloy_credential_service_metadata?:
11448
11467
  | (