@seamapi/types 1.533.0 → 1.535.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.
@@ -13178,7 +13178,7 @@ export type Routes = {
13178
13178
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
13179
13179
  is_encoding_required?: boolean | undefined;
13180
13180
  /** The actual PIN code for code access methods. */
13181
- code?: string | undefined;
13181
+ code?: (string | null) | undefined;
13182
13182
  /** ID of the customization profile associated with the access method. */
13183
13183
  customization_profile_id?: string | undefined;
13184
13184
  };
@@ -17193,7 +17193,7 @@ export type Routes = {
17193
17193
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
17194
17194
  is_encoding_required?: boolean | undefined;
17195
17195
  /** The actual PIN code for code access methods. */
17196
- code?: string | undefined;
17196
+ code?: (string | null) | undefined;
17197
17197
  /** ID of the customization profile associated with the access method. */
17198
17198
  customization_profile_id?: string | undefined;
17199
17199
  }[] | undefined;
@@ -20235,7 +20235,7 @@ export type Routes = {
20235
20235
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
20236
20236
  is_encoding_required?: boolean | undefined;
20237
20237
  /** The actual PIN code for code access methods. */
20238
- code?: string | undefined;
20238
+ code?: (string | null) | undefined;
20239
20239
  /** ID of the customization profile associated with the access method. */
20240
20240
  customization_profile_id?: string | undefined;
20241
20241
  }[];
@@ -25316,10 +25316,6 @@ export type Routes = {
25316
25316
  location_id?: (string | null) | undefined;
25317
25317
  /** ID of the space for which you want to list entrances. */
25318
25318
  space_id?: string | undefined;
25319
- /** ID of the access grant for which you want to retrieve all entrances. */
25320
- access_grant_id?: string | undefined;
25321
- /** ID of the access method for which you want to retrieve all entrances. */
25322
- access_method_id?: string | undefined;
25323
25319
  /** ID of the connected account for which you want to retrieve all entrances. */
25324
25320
  connected_account_id?: string | undefined;
25325
25321
  /** IDs of the entrances for which you want to retrieve all entrances. */
@@ -32865,8 +32861,6 @@ export type Routes = {
32865
32861
  space_id?: string | undefined;
32866
32862
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
32867
32863
  search?: string | undefined;
32868
- /** ID of the access method for which you want to retrieve all devices. */
32869
- access_method_id?: string | undefined;
32870
32864
  };
32871
32865
  formData: {};
32872
32866
  jsonResponse: {
@@ -34612,8 +34606,6 @@ export type Routes = {
34612
34606
  space_id?: string | undefined;
34613
34607
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
34614
34608
  search?: string | undefined;
34615
- /** ID of the access method for which you want to retrieve all devices. */
34616
- access_method_id?: string | undefined;
34617
34609
  };
34618
34610
  formData: {};
34619
34611
  jsonResponse: {
@@ -41327,8 +41319,6 @@ export type Routes = {
41327
41319
  space_id?: string | undefined;
41328
41320
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
41329
41321
  search?: string | undefined;
41330
- /** ID of the access method for which you want to retrieve all devices. */
41331
- access_method_id?: string | undefined;
41332
41322
  };
41333
41323
  formData: {};
41334
41324
  jsonResponse: {
@@ -48761,8 +48751,6 @@ export type Routes = {
48761
48751
  space_id?: string | undefined;
48762
48752
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
48763
48753
  search?: string | undefined;
48764
- /** ID of the access method for which you want to retrieve all devices. */
48765
- access_method_id?: string | undefined;
48766
48754
  };
48767
48755
  formData: {};
48768
48756
  jsonResponse: {
@@ -67722,8 +67710,6 @@ export type Routes = {
67722
67710
  space_id?: string | undefined;
67723
67711
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
67724
67712
  search?: string | undefined;
67725
- /** ID of the access method for which you want to retrieve all devices. */
67726
- access_method_id?: string | undefined;
67727
67713
  };
67728
67714
  formData: {};
67729
67715
  jsonResponse: {
@@ -83023,7 +83009,7 @@ export type Routes = {
83023
83009
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
83024
83010
  is_encoding_required?: boolean | undefined;
83025
83011
  /** The actual PIN code for code access methods. */
83026
- code?: string | undefined;
83012
+ code?: (string | null) | undefined;
83027
83013
  /** ID of the customization profile associated with the access method. */
83028
83014
  customization_profile_id?: string | undefined;
83029
83015
  }[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.533.0",
3
+ "version": "1.535.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -41,6 +41,7 @@ export const access_method = z.object({
41
41
  ),
42
42
  code: z
43
43
  .string()
44
+ .nullable()
44
45
  .optional()
45
46
  .describe('The actual PIN code for code access methods.'),
46
47
  customization_profile_id: z
@@ -1988,6 +1988,7 @@ export default {
1988
1988
  },
1989
1989
  code: {
1990
1990
  description: 'The actual PIN code for code access methods.',
1991
+ nullable: true,
1991
1992
  type: 'string',
1992
1993
  },
1993
1994
  created_at: {
@@ -33419,26 +33420,6 @@ export default {
33419
33420
  type: 'string',
33420
33421
  },
33421
33422
  },
33422
- {
33423
- in: 'query',
33424
- name: 'access_grant_id',
33425
- schema: {
33426
- description:
33427
- 'ID of the access grant for which you want to retrieve all entrances.',
33428
- format: 'uuid',
33429
- type: 'string',
33430
- },
33431
- },
33432
- {
33433
- in: 'query',
33434
- name: 'access_method_id',
33435
- schema: {
33436
- description:
33437
- 'ID of the access method for which you want to retrieve all entrances.',
33438
- format: 'uuid',
33439
- type: 'string',
33440
- },
33441
- },
33442
33423
  {
33443
33424
  in: 'query',
33444
33425
  name: 'connected_account_id',
@@ -33538,18 +33519,6 @@ export default {
33538
33519
  'application/json': {
33539
33520
  schema: {
33540
33521
  properties: {
33541
- access_grant_id: {
33542
- description:
33543
- 'ID of the access grant for which you want to retrieve all entrances.',
33544
- format: 'uuid',
33545
- type: 'string',
33546
- },
33547
- access_method_id: {
33548
- description:
33549
- 'ID of the access method for which you want to retrieve all entrances.',
33550
- format: 'uuid',
33551
- type: 'string',
33552
- },
33553
33522
  acs_credential_id: {
33554
33523
  description:
33555
33524
  'ID of the credential for which you want to retrieve all entrances.',
@@ -40821,16 +40790,6 @@ export default {
40821
40790
  type: 'string',
40822
40791
  },
40823
40792
  },
40824
- {
40825
- in: 'query',
40826
- name: 'access_method_id',
40827
- schema: {
40828
- description:
40829
- 'ID of the access method for which you want to retrieve all devices.',
40830
- format: 'uuid',
40831
- type: 'string',
40832
- },
40833
- },
40834
40793
  ],
40835
40794
  responses: {
40836
40795
  200: {
@@ -40879,12 +40838,6 @@ export default {
40879
40838
  'application/json': {
40880
40839
  schema: {
40881
40840
  properties: {
40882
- access_method_id: {
40883
- description:
40884
- 'ID of the access method for which you want to retrieve all devices.',
40885
- format: 'uuid',
40886
- type: 'string',
40887
- },
40888
40841
  connect_webview_id: {
40889
40842
  description:
40890
40843
  'ID of the Connect Webview for which you want to list devices.',
@@ -42166,16 +42119,6 @@ export default {
42166
42119
  type: 'string',
42167
42120
  },
42168
42121
  },
42169
- {
42170
- in: 'query',
42171
- name: 'access_method_id',
42172
- schema: {
42173
- description:
42174
- 'ID of the access method for which you want to retrieve all devices.',
42175
- format: 'uuid',
42176
- type: 'string',
42177
- },
42178
- },
42179
42122
  ],
42180
42123
  responses: {
42181
42124
  200: {
@@ -42221,12 +42164,6 @@ export default {
42221
42164
  'application/json': {
42222
42165
  schema: {
42223
42166
  properties: {
42224
- access_method_id: {
42225
- description:
42226
- 'ID of the access method for which you want to retrieve all devices.',
42227
- format: 'uuid',
42228
- type: 'string',
42229
- },
42230
42167
  connect_webview_id: {
42231
42168
  description:
42232
42169
  'ID of the Connect Webview for which you want to list devices.',
@@ -44495,16 +44432,6 @@ export default {
44495
44432
  type: 'string',
44496
44433
  },
44497
44434
  },
44498
- {
44499
- in: 'query',
44500
- name: 'access_method_id',
44501
- schema: {
44502
- description:
44503
- 'ID of the access method for which you want to retrieve all devices.',
44504
- format: 'uuid',
44505
- type: 'string',
44506
- },
44507
- },
44508
44435
  ],
44509
44436
  responses: {
44510
44437
  200: {
@@ -44555,12 +44482,6 @@ export default {
44555
44482
  'application/json': {
44556
44483
  schema: {
44557
44484
  properties: {
44558
- access_method_id: {
44559
- description:
44560
- 'ID of the access method for which you want to retrieve all devices.',
44561
- format: 'uuid',
44562
- type: 'string',
44563
- },
44564
44485
  connect_webview_id: {
44565
44486
  description:
44566
44487
  'ID of the Connect Webview for which you want to list devices.',
@@ -45327,16 +45248,6 @@ export default {
45327
45248
  type: 'string',
45328
45249
  },
45329
45250
  },
45330
- {
45331
- in: 'query',
45332
- name: 'access_method_id',
45333
- schema: {
45334
- description:
45335
- 'ID of the access method for which you want to retrieve all devices.',
45336
- format: 'uuid',
45337
- type: 'string',
45338
- },
45339
- },
45340
45251
  ],
45341
45252
  responses: {
45342
45253
  200: {
@@ -45387,12 +45298,6 @@ export default {
45387
45298
  'application/json': {
45388
45299
  schema: {
45389
45300
  properties: {
45390
- access_method_id: {
45391
- description:
45392
- 'ID of the access method for which you want to retrieve all devices.',
45393
- format: 'uuid',
45394
- type: 'string',
45395
- },
45396
45301
  connect_webview_id: {
45397
45302
  description:
45398
45303
  'ID of the Connect Webview for which you want to list devices.',
@@ -52641,16 +52546,6 @@ export default {
52641
52546
  type: 'string',
52642
52547
  },
52643
52548
  },
52644
- {
52645
- in: 'query',
52646
- name: 'access_method_id',
52647
- schema: {
52648
- description:
52649
- 'ID of the access method for which you want to retrieve all devices.',
52650
- format: 'uuid',
52651
- type: 'string',
52652
- },
52653
- },
52654
52549
  ],
52655
52550
  responses: {
52656
52551
  200: {
@@ -52701,12 +52596,6 @@ export default {
52701
52596
  'application/json': {
52702
52597
  schema: {
52703
52598
  properties: {
52704
- access_method_id: {
52705
- description:
52706
- 'ID of the access method for which you want to retrieve all devices.',
52707
- format: 'uuid',
52708
- type: 'string',
52709
- },
52710
52599
  connect_webview_id: {
52711
52600
  description:
52712
52601
  'ID of the Connect Webview for which you want to list devices.',
@@ -15070,7 +15070,7 @@ export type Routes = {
15070
15070
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
15071
15071
  is_encoding_required?: boolean | undefined
15072
15072
  /** The actual PIN code for code access methods. */
15073
- code?: string | undefined
15073
+ code?: (string | null) | undefined
15074
15074
  /** ID of the customization profile associated with the access method. */
15075
15075
  customization_profile_id?: string | undefined
15076
15076
  }
@@ -19975,7 +19975,7 @@ export type Routes = {
19975
19975
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
19976
19976
  is_encoding_required?: boolean | undefined
19977
19977
  /** The actual PIN code for code access methods. */
19978
- code?: string | undefined
19978
+ code?: (string | null) | undefined
19979
19979
  /** ID of the customization profile associated with the access method. */
19980
19980
  customization_profile_id?: string | undefined
19981
19981
  }[]
@@ -23488,7 +23488,7 @@ export type Routes = {
23488
23488
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
23489
23489
  is_encoding_required?: boolean | undefined
23490
23490
  /** The actual PIN code for code access methods. */
23491
- code?: string | undefined
23491
+ code?: (string | null) | undefined
23492
23492
  /** ID of the customization profile associated with the access method. */
23493
23493
  customization_profile_id?: string | undefined
23494
23494
  }[]
@@ -29383,10 +29383,6 @@ export type Routes = {
29383
29383
  location_id?: (string | null) | undefined
29384
29384
  /** ID of the space for which you want to list entrances. */
29385
29385
  space_id?: string | undefined
29386
- /** ID of the access grant for which you want to retrieve all entrances. */
29387
- access_grant_id?: string | undefined
29388
- /** ID of the access method for which you want to retrieve all entrances. */
29389
- access_method_id?: string | undefined
29390
29386
  /** ID of the connected account for which you want to retrieve all entrances. */
29391
29387
  connected_account_id?: string | undefined
29392
29388
  /** IDs of the entrances for which you want to retrieve all entrances. */
@@ -38375,8 +38371,6 @@ export type Routes = {
38375
38371
  space_id?: string | undefined
38376
38372
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
38377
38373
  search?: string | undefined
38378
- /** ID of the access method for which you want to retrieve all devices. */
38379
- access_method_id?: string | undefined
38380
38374
  }
38381
38375
  formData: {}
38382
38376
  jsonResponse: {
@@ -40742,8 +40736,6 @@ export type Routes = {
40742
40736
  space_id?: string | undefined
40743
40737
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
40744
40738
  search?: string | undefined
40745
- /** ID of the access method for which you want to retrieve all devices. */
40746
- access_method_id?: string | undefined
40747
40739
  }
40748
40740
  formData: {}
40749
40741
  jsonResponse: {
@@ -49138,8 +49130,6 @@ export type Routes = {
49138
49130
  space_id?: string | undefined
49139
49131
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
49140
49132
  search?: string | undefined
49141
- /** ID of the access method for which you want to retrieve all devices. */
49142
- access_method_id?: string | undefined
49143
49133
  }
49144
49134
  formData: {}
49145
49135
  jsonResponse: {
@@ -57958,8 +57948,6 @@ export type Routes = {
57958
57948
  space_id?: string | undefined
57959
57949
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
57960
57950
  search?: string | undefined
57961
- /** ID of the access method for which you want to retrieve all devices. */
57962
- access_method_id?: string | undefined
57963
57951
  }
57964
57952
  formData: {}
57965
57953
  jsonResponse: {
@@ -80525,8 +80513,6 @@ export type Routes = {
80525
80513
  space_id?: string | undefined
80526
80514
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
80527
80515
  search?: string | undefined
80528
- /** ID of the access method for which you want to retrieve all devices. */
80529
- access_method_id?: string | undefined
80530
80516
  }
80531
80517
  formData: {}
80532
80518
  jsonResponse: {
@@ -98802,7 +98788,7 @@ export type Routes = {
98802
98788
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
98803
98789
  is_encoding_required?: boolean | undefined
98804
98790
  /** The actual PIN code for code access methods. */
98805
- code?: string | undefined
98791
+ code?: (string | null) | undefined
98806
98792
  /** ID of the customization profile associated with the access method. */
98807
98793
  customization_profile_id?: string | undefined
98808
98794
  }[]