@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.
@@ -65406,13 +65406,10 @@ declare const _default: {
65406
65406
  in: string;
65407
65407
  name: string;
65408
65408
  schema: {
65409
- items: {
65410
- format: string;
65411
- type: string;
65412
- };
65409
+ description: string;
65413
65410
  type: string;
65414
- description?: never;
65415
65411
  format?: never;
65412
+ items?: never;
65416
65413
  default?: never;
65417
65414
  nullable?: never;
65418
65415
  };
@@ -65441,17 +65438,6 @@ declare const _default: {
65441
65438
  default?: never;
65442
65439
  nullable?: never;
65443
65440
  };
65444
- } | {
65445
- in: string;
65446
- name: string;
65447
- schema: {
65448
- description: string;
65449
- type: string;
65450
- items?: never;
65451
- format?: never;
65452
- default?: never;
65453
- nullable?: never;
65454
- };
65455
65441
  } | {
65456
65442
  in: string;
65457
65443
  name: string;
@@ -65470,8 +65456,8 @@ declare const _default: {
65470
65456
  description: string;
65471
65457
  nullable: boolean;
65472
65458
  type: string;
65473
- items?: never;
65474
65459
  format?: never;
65460
+ items?: never;
65475
65461
  default?: never;
65476
65462
  };
65477
65463
  })[];
@@ -65563,11 +65549,8 @@ declare const _default: {
65563
65549
  };
65564
65550
  type: string;
65565
65551
  };
65566
- customer_ids: {
65567
- items: {
65568
- format: string;
65569
- type: string;
65570
- };
65552
+ customer_key: {
65553
+ description: string;
65571
65554
  type: string;
65572
65555
  };
65573
65556
  device_id: {
@@ -106394,7 +106377,8 @@ type Routes = {
106394
106377
  queryParams: {};
106395
106378
  jsonBody: {};
106396
106379
  commonParams: {
106397
- customer_ids?: string[] | undefined;
106380
+ /** Customer key for which you want to list access codes. */
106381
+ customer_key?: string | undefined;
106398
106382
  /** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
106399
106383
  device_id?: string | undefined;
106400
106384
  /** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */
package/dist/index.cjs CHANGED
@@ -29092,10 +29092,10 @@ var openapi_default = {
29092
29092
  parameters: [
29093
29093
  {
29094
29094
  in: "query",
29095
- name: "customer_ids",
29095
+ name: "customer_key",
29096
29096
  schema: {
29097
- items: { format: "uuid", type: "string" },
29098
- type: "array"
29097
+ description: "Customer key for which you want to list access codes.",
29098
+ type: "string"
29099
29099
  }
29100
29100
  },
29101
29101
  {
@@ -29195,9 +29195,9 @@ var openapi_default = {
29195
29195
  items: { format: "uuid", type: "string" },
29196
29196
  type: "array"
29197
29197
  },
29198
- customer_ids: {
29199
- items: { format: "uuid", type: "string" },
29200
- type: "array"
29198
+ customer_key: {
29199
+ description: "Customer key for which you want to list access codes.",
29200
+ type: "string"
29201
29201
  },
29202
29202
  device_id: {
29203
29203
  description: "ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`.",