@seamapi/types 1.464.4 → 1.465.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
@@ -44634,6 +44634,99 @@ var openapi_default = {
44634
44634
  "x-title": "List Events"
44635
44635
  }
44636
44636
  },
44637
+ "/instant_keys/delete": {
44638
+ delete: {
44639
+ description: "Deletes a specified [Instant Key](https://docs.seam.co/latest/capability-guides/instant-keys).",
44640
+ operationId: "instantKeysDeleteDelete",
44641
+ parameters: [
44642
+ {
44643
+ in: "query",
44644
+ name: "instant_key_id",
44645
+ required: true,
44646
+ schema: {
44647
+ description: "ID of the Instant Key that you want to delete.",
44648
+ format: "uuid",
44649
+ type: "string"
44650
+ }
44651
+ }
44652
+ ],
44653
+ responses: {
44654
+ 200: {
44655
+ content: {
44656
+ "application/json": {
44657
+ schema: {
44658
+ properties: { ok: { type: "boolean" } },
44659
+ required: ["ok"],
44660
+ type: "object"
44661
+ }
44662
+ }
44663
+ },
44664
+ description: "OK"
44665
+ },
44666
+ 400: { description: "Bad Request" },
44667
+ 401: { description: "Unauthorized" }
44668
+ },
44669
+ security: [
44670
+ { api_key: [] },
44671
+ { pat_with_workspace: [] },
44672
+ { console_session_with_workspace: [] }
44673
+ ],
44674
+ summary: "/instant_keys/delete",
44675
+ tags: [],
44676
+ "x-fern-sdk-group-name": ["instant_keys"],
44677
+ "x-fern-sdk-method-name": "delete",
44678
+ "x-response-key": null,
44679
+ "x-title": "Delete an Instant Key"
44680
+ },
44681
+ post: {
44682
+ description: "Deletes a specified [Instant Key](https://docs.seam.co/latest/capability-guides/instant-keys).",
44683
+ operationId: "instantKeysDeletePost",
44684
+ requestBody: {
44685
+ content: {
44686
+ "application/json": {
44687
+ schema: {
44688
+ properties: {
44689
+ instant_key_id: {
44690
+ description: "ID of the Instant Key that you want to delete.",
44691
+ format: "uuid",
44692
+ type: "string"
44693
+ }
44694
+ },
44695
+ required: ["instant_key_id"],
44696
+ type: "object"
44697
+ }
44698
+ }
44699
+ }
44700
+ },
44701
+ responses: {
44702
+ 200: {
44703
+ content: {
44704
+ "application/json": {
44705
+ schema: {
44706
+ properties: { ok: { type: "boolean" } },
44707
+ required: ["ok"],
44708
+ type: "object"
44709
+ }
44710
+ }
44711
+ },
44712
+ description: "OK"
44713
+ },
44714
+ 400: { description: "Bad Request" },
44715
+ 401: { description: "Unauthorized" }
44716
+ },
44717
+ security: [
44718
+ { api_key: [] },
44719
+ { pat_with_workspace: [] },
44720
+ { console_session_with_workspace: [] }
44721
+ ],
44722
+ summary: "/instant_keys/delete",
44723
+ tags: [],
44724
+ "x-fern-sdk-group-name": ["instant_keys"],
44725
+ "x-fern-sdk-method-name": "delete",
44726
+ "x-response-key": null,
44727
+ "x-title": "Delete an Instant Key"
44728
+ }
44729
+ },
44637
44730
  "/instant_keys/get": {
44638
44731
  get: {
44639
44732
  description: "Gets an [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).",