@seamapi/types 1.173.0 → 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;
@@ -5987,6 +5999,7 @@ export interface Routes {
5987
5999
  device_manufacturer?: string;
5988
6000
  device_model?: string;
5989
6001
  };
6002
+ credential_manager_acs_system_id: string;
5990
6003
  assa_abloy_metadata?: {
5991
6004
  ble_capability?: boolean;
5992
6005
  hce_capability?: boolean;
@@ -6343,6 +6356,8 @@ export interface Routes {
6343
6356
  ---
6344
6357
  */
6345
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;
6346
6361
  } & {
6347
6362
  assa_abloy_credential_service_metadata?: ({
6348
6363
  has_active_endpoint: boolean;
@@ -6957,6 +6972,8 @@ export interface Routes {
6957
6972
  ---
6958
6973
  */
6959
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;
6960
6977
  } & {
6961
6978
  assa_abloy_credential_service_metadata?: ({
6962
6979
  has_active_endpoint: boolean;
@@ -7754,6 +7771,8 @@ export interface Routes {
7754
7771
  ---
7755
7772
  */
7756
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;
7757
7776
  } & {
7758
7777
  assa_abloy_credential_service_metadata?: ({
7759
7778
  has_active_endpoint: boolean;
@@ -8272,6 +8291,8 @@ export interface Routes {
8272
8291
  ---
8273
8292
  */
8274
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;
8275
8296
  } & {
8276
8297
  assa_abloy_credential_service_metadata?: ({
8277
8298
  has_active_endpoint: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.173.0",
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
  ],
@@ -9167,6 +9167,10 @@ export default {
9167
9167
  },
9168
9168
  type: 'object',
9169
9169
  },
9170
+ credential_manager_acs_system_id: {
9171
+ format: 'uuid',
9172
+ type: 'string',
9173
+ },
9170
9174
  custom_sdk_installation_id: { type: 'string' },
9171
9175
  phone_metadata: {
9172
9176
  default: {},
@@ -9190,7 +9194,10 @@ export default {
9190
9194
  },
9191
9195
  user_identity_id: { format: 'uuid', type: 'string' },
9192
9196
  },
9193
- required: ['user_identity_id'],
9197
+ required: [
9198
+ 'user_identity_id',
9199
+ 'credential_manager_acs_system_id',
9200
+ ],
9194
9201
  type: 'object',
9195
9202
  },
9196
9203
  },
@@ -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,6 +8306,7 @@ export interface Routes {
8294
8306
  device_manufacturer?: string
8295
8307
  device_model?: string
8296
8308
  }
8309
+ credential_manager_acs_system_id: string
8297
8310
  assa_abloy_metadata?: {
8298
8311
  ble_capability?: boolean
8299
8312
  hce_capability?: boolean
@@ -8710,6 +8723,8 @@ export interface Routes {
8710
8723
  ---
8711
8724
  */
8712
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
8713
8728
  } & {
8714
8729
  assa_abloy_credential_service_metadata?:
8715
8730
  | (
@@ -9679,6 +9694,8 @@ export interface Routes {
9679
9694
  ---
9680
9695
  */
9681
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
9682
9699
  } & {
9683
9700
  assa_abloy_credential_service_metadata?:
9684
9701
  | (
@@ -10704,6 +10721,8 @@ export interface Routes {
10704
10721
  ---
10705
10722
  */
10706
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
10707
10726
  } & {
10708
10727
  assa_abloy_credential_service_metadata?:
10709
10728
  | (
@@ -11442,6 +11461,8 @@ export interface Routes {
11442
11461
  ---
11443
11462
  */
11444
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
11445
11466
  } & {
11446
11467
  assa_abloy_credential_service_metadata?:
11447
11468
  | (