@seamapi/types 1.734.0 → 1.735.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 +33 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +42 -19
- package/dist/index.cjs +33 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +35 -18
- package/lib/seam/connect/openapi.js +33 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +7 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +35 -20
- package/src/lib/seam/connect/route-types.ts +13 -4
package/dist/connect.cjs
CHANGED
|
@@ -39260,18 +39260,6 @@ var openapi_default = {
|
|
|
39260
39260
|
delete: {
|
|
39261
39261
|
description: "Deletes an access method.",
|
|
39262
39262
|
operationId: "accessMethodsDeleteDelete",
|
|
39263
|
-
parameters: [
|
|
39264
|
-
{
|
|
39265
|
-
in: "query",
|
|
39266
|
-
name: "access_method_id",
|
|
39267
|
-
required: true,
|
|
39268
|
-
schema: {
|
|
39269
|
-
description: "ID of access method to get.",
|
|
39270
|
-
format: "uuid",
|
|
39271
|
-
type: "string"
|
|
39272
|
-
}
|
|
39273
|
-
}
|
|
39274
|
-
],
|
|
39275
39263
|
responses: {
|
|
39276
39264
|
200: {
|
|
39277
39265
|
content: {
|
|
@@ -39309,15 +39297,40 @@ var openapi_default = {
|
|
|
39309
39297
|
content: {
|
|
39310
39298
|
"application/json": {
|
|
39311
39299
|
schema: {
|
|
39312
|
-
|
|
39313
|
-
|
|
39314
|
-
|
|
39315
|
-
|
|
39316
|
-
|
|
39300
|
+
oneOf: [
|
|
39301
|
+
{
|
|
39302
|
+
properties: {
|
|
39303
|
+
access_method_id: {
|
|
39304
|
+
description: "ID of access method to delete.",
|
|
39305
|
+
format: "uuid",
|
|
39306
|
+
type: "string"
|
|
39307
|
+
}
|
|
39308
|
+
},
|
|
39309
|
+
required: ["access_method_id"],
|
|
39310
|
+
type: "object"
|
|
39311
|
+
},
|
|
39312
|
+
{
|
|
39313
|
+
properties: {
|
|
39314
|
+
access_grant_id: {
|
|
39315
|
+
description: "ID of access grant whose access methods should be deleted.",
|
|
39316
|
+
format: "uuid",
|
|
39317
|
+
type: "string"
|
|
39318
|
+
}
|
|
39319
|
+
},
|
|
39320
|
+
required: ["access_grant_id"],
|
|
39321
|
+
type: "object"
|
|
39322
|
+
},
|
|
39323
|
+
{
|
|
39324
|
+
properties: {
|
|
39325
|
+
reservation_key: {
|
|
39326
|
+
description: "Reservation key of the access grant whose access methods should be deleted.",
|
|
39327
|
+
type: "string"
|
|
39328
|
+
}
|
|
39329
|
+
},
|
|
39330
|
+
required: ["reservation_key"],
|
|
39331
|
+
type: "object"
|
|
39317
39332
|
}
|
|
39318
|
-
|
|
39319
|
-
required: ["access_method_id"],
|
|
39320
|
-
type: "object"
|
|
39333
|
+
]
|
|
39321
39334
|
}
|
|
39322
39335
|
}
|
|
39323
39336
|
}
|