@seamapi/types 1.511.0 → 1.512.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.
@@ -84023,7 +84023,6 @@ declare const _default: {
84023
84023
  parameters: {
84024
84024
  in: string;
84025
84025
  name: string;
84026
- required: boolean;
84027
84026
  schema: {
84028
84027
  description: string;
84029
84028
  format: string;
@@ -84091,8 +84090,12 @@ declare const _default: {
84091
84090
  format: string;
84092
84091
  type: string;
84093
84092
  };
84093
+ instant_key_url: {
84094
+ description: string;
84095
+ format: string;
84096
+ type: string;
84097
+ };
84094
84098
  };
84095
- required: string[];
84096
84099
  type: string;
84097
84100
  };
84098
84101
  };
@@ -139043,7 +139046,9 @@ type Routes = {
139043
139046
  jsonBody: {};
139044
139047
  commonParams: {
139045
139048
  /** ID of the instant key to get. */
139046
- instant_key_id: string;
139049
+ instant_key_id?: string | undefined;
139050
+ /** URL of the instant key to get. */
139051
+ instant_key_url?: string | undefined;
139047
139052
  };
139048
139053
  formData: {};
139049
139054
  jsonResponse: {
package/dist/index.cjs CHANGED
@@ -45434,12 +45434,20 @@ var openapi_default = {
45434
45434
  {
45435
45435
  in: "query",
45436
45436
  name: "instant_key_id",
45437
- required: true,
45438
45437
  schema: {
45439
45438
  description: "ID of the instant key to get.",
45440
45439
  format: "uuid",
45441
45440
  type: "string"
45442
45441
  }
45442
+ },
45443
+ {
45444
+ in: "query",
45445
+ name: "instant_key_url",
45446
+ schema: {
45447
+ description: "URL of the instant key to get.",
45448
+ format: "uri",
45449
+ type: "string"
45450
+ }
45443
45451
  }
45444
45452
  ],
45445
45453
  responses: {
@@ -45486,9 +45494,13 @@ var openapi_default = {
45486
45494
  description: "ID of the instant key to get.",
45487
45495
  format: "uuid",
45488
45496
  type: "string"
45497
+ },
45498
+ instant_key_url: {
45499
+ description: "URL of the instant key to get.",
45500
+ format: "uri",
45501
+ type: "string"
45489
45502
  }
45490
45503
  },
45491
- required: ["instant_key_id"],
45492
45504
  type: "object"
45493
45505
  }
45494
45506
  }