@seamapi/types 1.173.1 → 1.174.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.
@@ -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;
@@ -6344,6 +6356,8 @@ export interface Routes {
6344
6356
  ---
6345
6357
  */
6346
6358
  supports_offline_access_codes?: boolean | undefined;
6359
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
6360
+ noise_level_decibels?: number | undefined;
6347
6361
  } & {
6348
6362
  assa_abloy_credential_service_metadata?: ({
6349
6363
  has_active_endpoint: boolean;
@@ -6958,6 +6972,8 @@ export interface Routes {
6958
6972
  ---
6959
6973
  */
6960
6974
  supports_offline_access_codes?: boolean | undefined;
6975
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
6976
+ noise_level_decibels?: number | undefined;
6961
6977
  } & {
6962
6978
  assa_abloy_credential_service_metadata?: ({
6963
6979
  has_active_endpoint: boolean;
@@ -7755,6 +7771,8 @@ export interface Routes {
7755
7771
  ---
7756
7772
  */
7757
7773
  supports_offline_access_codes?: boolean | undefined;
7774
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
7775
+ noise_level_decibels?: number | undefined;
7758
7776
  } & {
7759
7777
  assa_abloy_credential_service_metadata?: ({
7760
7778
  has_active_endpoint: boolean;
@@ -8273,6 +8291,8 @@ export interface Routes {
8273
8291
  ---
8274
8292
  */
8275
8293
  supports_offline_access_codes?: boolean | undefined;
8294
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
8295
+ noise_level_decibels?: number | undefined;
8276
8296
  } & {
8277
8297
  assa_abloy_credential_service_metadata?: ({
8278
8298
  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.0",
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
  ],
@@ -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
  | (
@@ -8711,6 +8723,8 @@ export interface Routes {
8711
8723
  ---
8712
8724
  */
8713
8725
  supports_offline_access_codes?: boolean | undefined
8726
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
8727
+ noise_level_decibels?: number | undefined
8714
8728
  } & {
8715
8729
  assa_abloy_credential_service_metadata?:
8716
8730
  | (
@@ -9680,6 +9694,8 @@ export interface Routes {
9680
9694
  ---
9681
9695
  */
9682
9696
  supports_offline_access_codes?: boolean | undefined
9697
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
9698
+ noise_level_decibels?: number | undefined
9683
9699
  } & {
9684
9700
  assa_abloy_credential_service_metadata?:
9685
9701
  | (
@@ -10705,6 +10721,8 @@ export interface Routes {
10705
10721
  ---
10706
10722
  */
10707
10723
  supports_offline_access_codes?: boolean | undefined
10724
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
10725
+ noise_level_decibels?: number | undefined
10708
10726
  } & {
10709
10727
  assa_abloy_credential_service_metadata?:
10710
10728
  | (
@@ -11443,6 +11461,8 @@ export interface Routes {
11443
11461
  ---
11444
11462
  */
11445
11463
  supports_offline_access_codes?: boolean | undefined
11464
+ /** Indicates current noise level in decibels, if the device supports noise detection. */
11465
+ noise_level_decibels?: number | undefined
11446
11466
  } & {
11447
11467
  assa_abloy_credential_service_metadata?:
11448
11468
  | (