@seamapi/types 1.464.5 → 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.
@@ -35301,6 +35301,18 @@ export type Routes = {
35301
35301
  })[];
35302
35302
  };
35303
35303
  };
35304
+ '/instant_keys/delete': {
35305
+ route: '/instant_keys/delete';
35306
+ method: 'DELETE' | 'POST';
35307
+ queryParams: {};
35308
+ jsonBody: {};
35309
+ commonParams: {
35310
+ /** ID of the Instant Key that you want to delete. */
35311
+ instant_key_id: string;
35312
+ };
35313
+ formData: {};
35314
+ jsonResponse: {};
35315
+ };
35304
35316
  '/instant_keys/get': {
35305
35317
  route: '/instant_keys/get';
35306
35318
  method: 'GET' | 'POST';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.464.5",
3
+ "version": "1.465.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -42911,6 +42911,102 @@ export default {
42911
42911
  'x-title': 'List Events',
42912
42912
  },
42913
42913
  },
42914
+ '/instant_keys/delete': {
42915
+ delete: {
42916
+ description:
42917
+ 'Deletes a specified [Instant Key](https://docs.seam.co/latest/capability-guides/instant-keys).',
42918
+ operationId: 'instantKeysDeleteDelete',
42919
+ parameters: [
42920
+ {
42921
+ in: 'query',
42922
+ name: 'instant_key_id',
42923
+ required: true,
42924
+ schema: {
42925
+ description: 'ID of the Instant Key that you want to delete.',
42926
+ format: 'uuid',
42927
+ type: 'string',
42928
+ },
42929
+ },
42930
+ ],
42931
+ responses: {
42932
+ 200: {
42933
+ content: {
42934
+ 'application/json': {
42935
+ schema: {
42936
+ properties: { ok: { type: 'boolean' } },
42937
+ required: ['ok'],
42938
+ type: 'object',
42939
+ },
42940
+ },
42941
+ },
42942
+ description: 'OK',
42943
+ },
42944
+ 400: { description: 'Bad Request' },
42945
+ 401: { description: 'Unauthorized' },
42946
+ },
42947
+ security: [
42948
+ { api_key: [] },
42949
+ { pat_with_workspace: [] },
42950
+ { console_session_with_workspace: [] },
42951
+ ],
42952
+ summary: '/instant_keys/delete',
42953
+ tags: [],
42954
+ 'x-fern-sdk-group-name': ['instant_keys'],
42955
+ 'x-fern-sdk-method-name': 'delete',
42956
+ 'x-response-key': null,
42957
+ 'x-title': 'Delete an Instant Key',
42958
+ },
42959
+ post: {
42960
+ description:
42961
+ 'Deletes a specified [Instant Key](https://docs.seam.co/latest/capability-guides/instant-keys).',
42962
+ operationId: 'instantKeysDeletePost',
42963
+ requestBody: {
42964
+ content: {
42965
+ 'application/json': {
42966
+ schema: {
42967
+ properties: {
42968
+ instant_key_id: {
42969
+ description:
42970
+ 'ID of the Instant Key that you want to delete.',
42971
+ format: 'uuid',
42972
+ type: 'string',
42973
+ },
42974
+ },
42975
+ required: ['instant_key_id'],
42976
+ type: 'object',
42977
+ },
42978
+ },
42979
+ },
42980
+ },
42981
+ responses: {
42982
+ 200: {
42983
+ content: {
42984
+ 'application/json': {
42985
+ schema: {
42986
+ properties: { ok: { type: 'boolean' } },
42987
+ required: ['ok'],
42988
+ type: 'object',
42989
+ },
42990
+ },
42991
+ },
42992
+ description: 'OK',
42993
+ },
42994
+ 400: { description: 'Bad Request' },
42995
+ 401: { description: 'Unauthorized' },
42996
+ },
42997
+ security: [
42998
+ { api_key: [] },
42999
+ { pat_with_workspace: [] },
43000
+ { console_session_with_workspace: [] },
43001
+ ],
43002
+ summary: '/instant_keys/delete',
43003
+ tags: [],
43004
+ 'x-fern-sdk-group-name': ['instant_keys'],
43005
+ 'x-fern-sdk-method-name': 'delete',
43006
+ 'x-response-key': null,
43007
+ 'x-title': 'Delete an Instant Key',
43008
+ },
43009
+ },
42914
43010
  '/instant_keys/get': {
42915
43011
  get: {
42916
43012
  description:
@@ -41692,6 +41692,18 @@ export type Routes = {
41692
41692
  )[]
41693
41693
  }
41694
41694
  }
41695
+ '/instant_keys/delete': {
41696
+ route: '/instant_keys/delete'
41697
+ method: 'DELETE' | 'POST'
41698
+ queryParams: {}
41699
+ jsonBody: {}
41700
+ commonParams: {
41701
+ /** ID of the Instant Key that you want to delete. */
41702
+ instant_key_id: string
41703
+ }
41704
+ formData: {}
41705
+ jsonResponse: {}
41706
+ }
41695
41707
  '/instant_keys/get': {
41696
41708
  route: '/instant_keys/get'
41697
41709
  method: 'GET' | 'POST'