@seamapi/types 1.182.0 → 1.183.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.
@@ -5650,6 +5650,8 @@ export interface Routes {
5650
5650
  supports_offline_access_codes?: boolean | undefined;
5651
5651
  /** Indicates current noise level in decibels, if the device supports noise detection. */
5652
5652
  noise_level_decibels?: number | undefined;
5653
+ /** Array of noise threshold IDs that are currently triggering. */
5654
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
5653
5655
  } & {
5654
5656
  assa_abloy_credential_service_metadata?: ({
5655
5657
  has_active_endpoint: boolean;
@@ -6194,6 +6196,8 @@ export interface Routes {
6194
6196
  supports_offline_access_codes?: boolean | undefined;
6195
6197
  /** Indicates current noise level in decibels, if the device supports noise detection. */
6196
6198
  noise_level_decibels?: number | undefined;
6199
+ /** Array of noise threshold IDs that are currently triggering. */
6200
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
6197
6201
  } & {
6198
6202
  assa_abloy_credential_service_metadata?: ({
6199
6203
  has_active_endpoint: boolean;
@@ -7060,6 +7064,8 @@ export interface Routes {
7060
7064
  supports_offline_access_codes?: boolean | undefined;
7061
7065
  /** Indicates current noise level in decibels, if the device supports noise detection. */
7062
7066
  noise_level_decibels?: number | undefined;
7067
+ /** Array of noise threshold IDs that are currently triggering. */
7068
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
7063
7069
  } & {
7064
7070
  assa_abloy_credential_service_metadata?: ({
7065
7071
  has_active_endpoint: boolean;
@@ -7579,6 +7585,8 @@ export interface Routes {
7579
7585
  supports_offline_access_codes?: boolean | undefined;
7580
7586
  /** Indicates current noise level in decibels, if the device supports noise detection. */
7581
7587
  noise_level_decibels?: number | undefined;
7588
+ /** Array of noise threshold IDs that are currently triggering. */
7589
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
7582
7590
  } & {
7583
7591
  assa_abloy_credential_service_metadata?: ({
7584
7592
  has_active_endpoint: boolean;
@@ -8123,6 +8131,8 @@ export interface Routes {
8123
8131
  supports_offline_access_codes?: boolean | undefined;
8124
8132
  /** Indicates current noise level in decibels, if the device supports noise detection. */
8125
8133
  noise_level_decibels?: number | undefined;
8134
+ /** Array of noise threshold IDs that are currently triggering. */
8135
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
8126
8136
  } & {
8127
8137
  assa_abloy_credential_service_metadata?: ({
8128
8138
  has_active_endpoint: boolean;
@@ -8642,6 +8652,8 @@ export interface Routes {
8642
8652
  supports_offline_access_codes?: boolean | undefined;
8643
8653
  /** Indicates current noise level in decibels, if the device supports noise detection. */
8644
8654
  noise_level_decibels?: number | undefined;
8655
+ /** Array of noise threshold IDs that are currently triggering. */
8656
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
8645
8657
  } & {
8646
8658
  assa_abloy_credential_service_metadata?: ({
8647
8659
  has_active_endpoint: boolean;
@@ -13188,6 +13200,8 @@ export interface Routes {
13188
13200
  supports_offline_access_codes?: boolean | undefined;
13189
13201
  /** Indicates current noise level in decibels, if the device supports noise detection. */
13190
13202
  noise_level_decibels?: number | undefined;
13203
+ /** Array of noise threshold IDs that are currently triggering. */
13204
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
13191
13205
  } & {
13192
13206
  assa_abloy_credential_service_metadata?: ({
13193
13207
  has_active_endpoint: boolean;
@@ -14936,6 +14950,8 @@ export interface Routes {
14936
14950
  supports_offline_access_codes?: boolean | undefined;
14937
14951
  /** Indicates current noise level in decibels, if the device supports noise detection. */
14938
14952
  noise_level_decibels?: number | undefined;
14953
+ /** Array of noise threshold IDs that are currently triggering. */
14954
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
14939
14955
  } & {
14940
14956
  assa_abloy_credential_service_metadata?: ({
14941
14957
  has_active_endpoint: boolean;
@@ -16867,6 +16883,8 @@ export interface Routes {
16867
16883
  supports_offline_access_codes?: boolean | undefined;
16868
16884
  /** Indicates current noise level in decibels, if the device supports noise detection. */
16869
16885
  noise_level_decibels?: number | undefined;
16886
+ /** Array of noise threshold IDs that are currently triggering. */
16887
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
16870
16888
  } & {
16871
16889
  assa_abloy_credential_service_metadata?: ({
16872
16890
  has_active_endpoint: boolean;
@@ -17391,6 +17409,8 @@ export interface Routes {
17391
17409
  supports_offline_access_codes?: boolean | undefined;
17392
17410
  /** Indicates current noise level in decibels, if the device supports noise detection. */
17393
17411
  noise_level_decibels?: number | undefined;
17412
+ /** Array of noise threshold IDs that are currently triggering. */
17413
+ currently_triggering_noise_threshold_ids?: string[] | undefined;
17394
17414
  } & {
17395
17415
  assa_abloy_credential_service_metadata?: ({
17396
17416
  has_active_endpoint: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.182.0",
3
+ "version": "1.183.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -155,6 +155,10 @@ export const common_device_properties = z.object({
155
155
  'Indicates current noise level in decibels, if the device supports noise detection.',
156
156
  )
157
157
  .optional(),
158
+ currently_triggering_noise_threshold_ids: z
159
+ .array(z.string())
160
+ .describe('Array of noise threshold IDs that are currently triggering.')
161
+ .optional(),
158
162
  })
159
163
 
160
164
  export const managed_device = z
@@ -1998,6 +1998,12 @@ export default {
1998
1998
  minimum: 0,
1999
1999
  type: 'number',
2000
2000
  },
2001
+ currently_triggering_noise_threshold_ids: {
2002
+ description:
2003
+ 'Array of noise threshold IDs that are currently triggering.',
2004
+ items: { type: 'string' },
2005
+ type: 'array',
2006
+ },
2001
2007
  has_direct_power: {
2002
2008
  description:
2003
2009
  'Indicates whether the device has direct power.',
@@ -6255,6 +6255,8 @@ export interface Routes {
6255
6255
  supports_offline_access_codes?: boolean | undefined
6256
6256
  /** Indicates current noise level in decibels, if the device supports noise detection. */
6257
6257
  noise_level_decibels?: number | undefined
6258
+ /** Array of noise threshold IDs that are currently triggering. */
6259
+ currently_triggering_noise_threshold_ids?: string[] | undefined
6258
6260
  } & {
6259
6261
  assa_abloy_credential_service_metadata?:
6260
6262
  | (
@@ -7148,6 +7150,8 @@ export interface Routes {
7148
7150
  supports_offline_access_codes?: boolean | undefined
7149
7151
  /** Indicates current noise level in decibels, if the device supports noise detection. */
7150
7152
  noise_level_decibels?: number | undefined
7153
+ /** Array of noise threshold IDs that are currently triggering. */
7154
+ currently_triggering_noise_threshold_ids?: string[] | undefined
7151
7155
  } & {
7152
7156
  assa_abloy_credential_service_metadata?:
7153
7157
  | (
@@ -8636,6 +8640,8 @@ export interface Routes {
8636
8640
  supports_offline_access_codes?: boolean | undefined
8637
8641
  /** Indicates current noise level in decibels, if the device supports noise detection. */
8638
8642
  noise_level_decibels?: number | undefined
8643
+ /** Array of noise threshold IDs that are currently triggering. */
8644
+ currently_triggering_noise_threshold_ids?: string[] | undefined
8639
8645
  } & {
8640
8646
  assa_abloy_credential_service_metadata?:
8641
8647
  | (
@@ -9375,6 +9381,8 @@ export interface Routes {
9375
9381
  supports_offline_access_codes?: boolean | undefined
9376
9382
  /** Indicates current noise level in decibels, if the device supports noise detection. */
9377
9383
  noise_level_decibels?: number | undefined
9384
+ /** Array of noise threshold IDs that are currently triggering. */
9385
+ currently_triggering_noise_threshold_ids?: string[] | undefined
9378
9386
  } & {
9379
9387
  assa_abloy_credential_service_metadata?:
9380
9388
  | (
@@ -10268,6 +10276,8 @@ export interface Routes {
10268
10276
  supports_offline_access_codes?: boolean | undefined
10269
10277
  /** Indicates current noise level in decibels, if the device supports noise detection. */
10270
10278
  noise_level_decibels?: number | undefined
10279
+ /** Array of noise threshold IDs that are currently triggering. */
10280
+ currently_triggering_noise_threshold_ids?: string[] | undefined
10271
10281
  } & {
10272
10282
  assa_abloy_credential_service_metadata?:
10273
10283
  | (
@@ -11007,6 +11017,8 @@ export interface Routes {
11007
11017
  supports_offline_access_codes?: boolean | undefined
11008
11018
  /** Indicates current noise level in decibels, if the device supports noise detection. */
11009
11019
  noise_level_decibels?: number | undefined
11020
+ /** Array of noise threshold IDs that are currently triggering. */
11021
+ currently_triggering_noise_threshold_ids?: string[] | undefined
11010
11022
  } & {
11011
11023
  assa_abloy_credential_service_metadata?:
11012
11024
  | (
@@ -16061,6 +16073,8 @@ export interface Routes {
16061
16073
  supports_offline_access_codes?: boolean | undefined
16062
16074
  /** Indicates current noise level in decibels, if the device supports noise detection. */
16063
16075
  noise_level_decibels?: number | undefined
16076
+ /** Array of noise threshold IDs that are currently triggering. */
16077
+ currently_triggering_noise_threshold_ids?: string[] | undefined
16064
16078
  } & {
16065
16079
  assa_abloy_credential_service_metadata?:
16066
16080
  | (
@@ -18248,6 +18262,8 @@ export interface Routes {
18248
18262
  supports_offline_access_codes?: boolean | undefined
18249
18263
  /** Indicates current noise level in decibels, if the device supports noise detection. */
18250
18264
  noise_level_decibels?: number | undefined
18265
+ /** Array of noise threshold IDs that are currently triggering. */
18266
+ currently_triggering_noise_threshold_ids?: string[] | undefined
18251
18267
  } & {
18252
18268
  assa_abloy_credential_service_metadata?:
18253
18269
  | (
@@ -20491,6 +20507,8 @@ export interface Routes {
20491
20507
  supports_offline_access_codes?: boolean | undefined
20492
20508
  /** Indicates current noise level in decibels, if the device supports noise detection. */
20493
20509
  noise_level_decibels?: number | undefined
20510
+ /** Array of noise threshold IDs that are currently triggering. */
20511
+ currently_triggering_noise_threshold_ids?: string[] | undefined
20494
20512
  } & {
20495
20513
  assa_abloy_credential_service_metadata?:
20496
20514
  | (
@@ -21235,6 +21253,8 @@ export interface Routes {
21235
21253
  supports_offline_access_codes?: boolean | undefined
21236
21254
  /** Indicates current noise level in decibels, if the device supports noise detection. */
21237
21255
  noise_level_decibels?: number | undefined
21256
+ /** Array of noise threshold IDs that are currently triggering. */
21257
+ currently_triggering_noise_threshold_ids?: string[] | undefined
21238
21258
  } & {
21239
21259
  assa_abloy_credential_service_metadata?:
21240
21260
  | (