@seamapi/types 1.782.0 → 1.783.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.
@@ -10785,6 +10785,8 @@ export type Routes = {
10785
10785
  device_count: number;
10786
10786
  /** Number of entrances in the space. */
10787
10787
  acs_entrance_count: number;
10788
+ /** Customer key associated with the space. */
10789
+ customer_key?: string | undefined;
10788
10790
  /** */
10789
10791
  parent_space_id?: string | undefined;
10790
10792
  /** */
@@ -15101,6 +15103,8 @@ export type Routes = {
15101
15103
  device_count: number;
15102
15104
  /** Number of entrances in the space. */
15103
15105
  acs_entrance_count: number;
15106
+ /** Customer key associated with the space. */
15107
+ customer_key?: string | undefined;
15104
15108
  /** */
15105
15109
  parent_space_id?: string | undefined;
15106
15110
  /** */
@@ -66730,6 +66734,8 @@ export type Routes = {
66730
66734
  device_count: number;
66731
66735
  /** Number of entrances in the space. */
66732
66736
  acs_entrance_count: number;
66737
+ /** Customer key associated with the space. */
66738
+ customer_key?: string | undefined;
66733
66739
  /** */
66734
66740
  parent_space_id?: string | undefined;
66735
66741
  /** */
@@ -66770,6 +66776,8 @@ export type Routes = {
66770
66776
  device_count: number;
66771
66777
  /** Number of entrances in the space. */
66772
66778
  acs_entrance_count: number;
66779
+ /** Customer key associated with the space. */
66780
+ customer_key?: string | undefined;
66773
66781
  /** */
66774
66782
  parent_space_id?: string | undefined;
66775
66783
  /** */
@@ -67791,6 +67799,8 @@ export type Routes = {
67791
67799
  device_count: number;
67792
67800
  /** Number of entrances in the space. */
67793
67801
  acs_entrance_count: number;
67802
+ /** Customer key associated with the space. */
67803
+ customer_key?: string | undefined;
67794
67804
  /** */
67795
67805
  parent_space_id?: string | undefined;
67796
67806
  /** */
@@ -67844,6 +67854,8 @@ export type Routes = {
67844
67854
  device_count: number;
67845
67855
  /** Number of entrances in the space. */
67846
67856
  acs_entrance_count: number;
67857
+ /** Customer key associated with the space. */
67858
+ customer_key?: string | undefined;
67847
67859
  /** */
67848
67860
  parent_space_id?: string | undefined;
67849
67861
  /** */
@@ -67886,6 +67898,8 @@ export type Routes = {
67886
67898
  device_count: number;
67887
67899
  /** Number of entrances in the space. */
67888
67900
  acs_entrance_count: number;
67901
+ /** Customer key associated with the space. */
67902
+ customer_key?: string | undefined;
67889
67903
  /** */
67890
67904
  parent_space_id?: string | undefined;
67891
67905
  /** */
@@ -69722,7 +69736,7 @@ export type Routes = {
69722
69736
  commonParams: {
69723
69737
  /** Customer key for which you want to list spaces. */
69724
69738
  customer_key?: string | undefined;
69725
- /** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
69739
+ /** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`. */
69726
69740
  search?: string | undefined;
69727
69741
  /** Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account. */
69728
69742
  connected_account_id?: string | undefined;
@@ -69752,6 +69766,8 @@ export type Routes = {
69752
69766
  device_count: number;
69753
69767
  /** Number of entrances in the space. */
69754
69768
  acs_entrance_count: number;
69769
+ /** Customer key associated with the space. */
69770
+ customer_key?: string | undefined;
69755
69771
  /** */
69756
69772
  parent_space_id?: string | undefined;
69757
69773
  /** */
@@ -69838,6 +69854,8 @@ export type Routes = {
69838
69854
  device_count: number;
69839
69855
  /** Number of entrances in the space. */
69840
69856
  acs_entrance_count: number;
69857
+ /** Customer key associated with the space. */
69858
+ customer_key?: string | undefined;
69841
69859
  /** */
69842
69860
  parent_space_id?: string | undefined;
69843
69861
  /** */
@@ -94996,6 +95014,8 @@ export type Routes = {
94996
95014
  device_count: number;
94997
95015
  /** Number of entrances in the space. */
94998
95016
  acs_entrance_count: number;
95017
+ /** Customer key associated with the space. */
95018
+ customer_key?: string | undefined;
94999
95019
  /** */
95000
95020
  parent_space_id?: string | undefined;
95001
95021
  /** */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.782.0",
3
+ "version": "1.783.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -20,6 +20,10 @@ export const space = z.object({
20
20
  .describe('Date and time at which the space was created.'),
21
21
  device_count: z.number().describe('Number of devices in the space.'),
22
22
  acs_entrance_count: z.number().describe('Number of entrances in the space.'),
23
+ customer_key: z
24
+ .string()
25
+ .optional()
26
+ .describe('Customer key associated with the space.'),
23
27
  parent_space_id: z.string().uuid().optional().describe(`
24
28
  ---
25
29
  undocumented: Only used internally.
@@ -25394,6 +25394,10 @@ export default {
25394
25394
  format: 'date-time',
25395
25395
  type: 'string',
25396
25396
  },
25397
+ customer_key: {
25398
+ description: 'Customer key associated with the space.',
25399
+ type: 'string',
25400
+ },
25397
25401
  device_count: {
25398
25402
  description: 'Number of devices in the space.',
25399
25403
  format: 'float',
@@ -72936,7 +72940,7 @@ export default {
72936
72940
  name: 'search',
72937
72941
  schema: {
72938
72942
  description:
72939
- 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
72943
+ 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
72940
72944
  minLength: 1,
72941
72945
  type: 'string',
72942
72946
  },
@@ -73056,7 +73060,7 @@ export default {
73056
73060
  },
73057
73061
  search: {
73058
73062
  description:
73059
- 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
73063
+ 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
73060
73064
  minLength: 1,
73061
73065
  type: 'string',
73062
73066
  },
@@ -12224,6 +12224,8 @@ export type Routes = {
12224
12224
  device_count: number
12225
12225
  /** Number of entrances in the space. */
12226
12226
  acs_entrance_count: number
12227
+ /** Customer key associated with the space. */
12228
+ customer_key?: string | undefined
12227
12229
  /** */
12228
12230
  parent_space_id?: string | undefined
12229
12231
  /** */
@@ -17329,6 +17331,8 @@ export type Routes = {
17329
17331
  device_count: number
17330
17332
  /** Number of entrances in the space. */
17331
17333
  acs_entrance_count: number
17334
+ /** Customer key associated with the space. */
17335
+ customer_key?: string | undefined
17332
17336
  /** */
17333
17337
  parent_space_id?: string | undefined
17334
17338
  /** */
@@ -79317,6 +79321,8 @@ export type Routes = {
79317
79321
  device_count: number
79318
79322
  /** Number of entrances in the space. */
79319
79323
  acs_entrance_count: number
79324
+ /** Customer key associated with the space. */
79325
+ customer_key?: string | undefined
79320
79326
  /** */
79321
79327
  parent_space_id?: string | undefined
79322
79328
  /** */
@@ -79357,6 +79363,8 @@ export type Routes = {
79357
79363
  device_count: number
79358
79364
  /** Number of entrances in the space. */
79359
79365
  acs_entrance_count: number
79366
+ /** Customer key associated with the space. */
79367
+ customer_key?: string | undefined
79360
79368
  /** */
79361
79369
  parent_space_id?: string | undefined
79362
79370
  /** */
@@ -80487,6 +80495,8 @@ export type Routes = {
80487
80495
  device_count: number
80488
80496
  /** Number of entrances in the space. */
80489
80497
  acs_entrance_count: number
80498
+ /** Customer key associated with the space. */
80499
+ customer_key?: string | undefined
80490
80500
  /** */
80491
80501
  parent_space_id?: string | undefined
80492
80502
  /** */
@@ -80542,6 +80552,8 @@ export type Routes = {
80542
80552
  device_count: number
80543
80553
  /** Number of entrances in the space. */
80544
80554
  acs_entrance_count: number
80555
+ /** Customer key associated with the space. */
80556
+ customer_key?: string | undefined
80545
80557
  /** */
80546
80558
  parent_space_id?: string | undefined
80547
80559
  /** */
@@ -80603,6 +80615,8 @@ export type Routes = {
80603
80615
  device_count: number
80604
80616
  /** Number of entrances in the space. */
80605
80617
  acs_entrance_count: number
80618
+ /** Customer key associated with the space. */
80619
+ customer_key?: string | undefined
80606
80620
  /** */
80607
80621
  parent_space_id?: string | undefined
80608
80622
  /** */
@@ -82908,7 +82922,7 @@ export type Routes = {
82908
82922
  commonParams: {
82909
82923
  /** Customer key for which you want to list spaces. */
82910
82924
  customer_key?: string | undefined
82911
- /** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
82925
+ /** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`. */
82912
82926
  search?: string | undefined
82913
82927
  /** Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account. */
82914
82928
  connected_account_id?: string | undefined
@@ -82938,6 +82952,8 @@ export type Routes = {
82938
82952
  device_count: number
82939
82953
  /** Number of entrances in the space. */
82940
82954
  acs_entrance_count: number
82955
+ /** Customer key associated with the space. */
82956
+ customer_key?: string | undefined
82941
82957
  /** */
82942
82958
  parent_space_id?: string | undefined
82943
82959
  /** */
@@ -83024,6 +83040,8 @@ export type Routes = {
83024
83040
  device_count: number
83025
83041
  /** Number of entrances in the space. */
83026
83042
  acs_entrance_count: number
83043
+ /** Customer key associated with the space. */
83044
+ customer_key?: string | undefined
83027
83045
  /** */
83028
83046
  parent_space_id?: string | undefined
83029
83047
  /** */
@@ -112909,6 +112927,8 @@ export type Routes = {
112909
112927
  device_count: number
112910
112928
  /** Number of entrances in the space. */
112911
112929
  acs_entrance_count: number
112930
+ /** Customer key associated with the space. */
112931
+ customer_key?: string | undefined
112912
112932
  /** */
112913
112933
  parent_space_id?: string | undefined
112914
112934
  /** */