@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.
- package/dist/connect.cjs +14 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -3
- package/dist/index.cjs +14 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -2
- package/lib/seam/connect/openapi.js +14 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -2
- package/src/lib/seam/connect/route-types.ts +3 -1
package/dist/connect.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
|
}
|