@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 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
- properties: {
39313
- access_method_id: {
39314
- description: "ID of access method to get.",
39315
- format: "uuid",
39316
- type: "string"
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
  }