@seamapi/types 1.539.0 → 1.540.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.
@@ -4181,7 +4181,8 @@ export type Routes = {
4181
4181
  queryParams: {};
4182
4182
  jsonBody: {};
4183
4183
  commonParams: {
4184
- customer_ids?: string[] | undefined;
4184
+ /** Customer key for which you want to list access codes. */
4185
+ customer_key?: string | undefined;
4185
4186
  /** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
4186
4187
  device_id?: string | undefined;
4187
4188
  /** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.539.0",
3
+ "version": "1.540.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -26261,10 +26261,11 @@ export default {
26261
26261
  parameters: [
26262
26262
  {
26263
26263
  in: 'query',
26264
- name: 'customer_ids',
26264
+ name: 'customer_key',
26265
26265
  schema: {
26266
- items: { format: 'uuid', type: 'string' },
26267
- type: 'array',
26266
+ description:
26267
+ 'Customer key for which you want to list access codes.',
26268
+ type: 'string',
26268
26269
  },
26269
26270
  },
26270
26271
  {
@@ -26371,9 +26372,10 @@ export default {
26371
26372
  items: { format: 'uuid', type: 'string' },
26372
26373
  type: 'array',
26373
26374
  },
26374
- customer_ids: {
26375
- items: { format: 'uuid', type: 'string' },
26376
- type: 'array',
26375
+ customer_key: {
26376
+ description:
26377
+ 'Customer key for which you want to list access codes.',
26378
+ type: 'string',
26377
26379
  },
26378
26380
  device_id: {
26379
26381
  description:
@@ -4716,7 +4716,8 @@ export type Routes = {
4716
4716
  queryParams: {}
4717
4717
  jsonBody: {}
4718
4718
  commonParams: {
4719
- customer_ids?: string[] | undefined
4719
+ /** Customer key for which you want to list access codes. */
4720
+ customer_key?: string | undefined
4720
4721
  /** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
4721
4722
  device_id?: string | undefined
4722
4723
  /** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */