@seamapi/types 1.136.0 → 1.137.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.
@@ -2931,6 +2931,17 @@ export interface Routes {
2931
2931
  }>;
2932
2932
  };
2933
2933
  };
2934
+ '/devices/simulate/remove': {
2935
+ route: '/devices/simulate/remove';
2936
+ method: 'DELETE' | 'POST';
2937
+ queryParams: {};
2938
+ jsonBody: {
2939
+ device_id: string;
2940
+ };
2941
+ commonParams: {};
2942
+ formData: {};
2943
+ jsonResponse: {};
2944
+ };
2934
2945
  '/devices/unmanaged/get': {
2935
2946
  route: '/devices/unmanaged/get';
2936
2947
  method: 'GET' | 'POST';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.136.0",
3
+ "version": "1.137.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -7950,6 +7950,47 @@ export default {
7950
7950
  'x-fern-sdk-return-value': 'device_providers',
7951
7951
  },
7952
7952
  },
7953
+ '/devices/simulate/remove': {
7954
+ post: {
7955
+ operationId: 'devicesSimulateRemovePost',
7956
+ requestBody: {
7957
+ content: {
7958
+ 'application/json': {
7959
+ schema: {
7960
+ properties: { device_id: { format: 'uuid', type: 'string' } },
7961
+ required: ['device_id'],
7962
+ type: 'object',
7963
+ },
7964
+ },
7965
+ },
7966
+ },
7967
+ responses: {
7968
+ 200: {
7969
+ content: {
7970
+ 'application/json': {
7971
+ schema: {
7972
+ properties: { ok: { type: 'boolean' } },
7973
+ required: ['ok'],
7974
+ type: 'object',
7975
+ },
7976
+ },
7977
+ },
7978
+ description: 'OK',
7979
+ },
7980
+ 400: { description: 'Bad Request' },
7981
+ 401: { description: 'Unauthorized' },
7982
+ },
7983
+ security: [
7984
+ { api_key: [] },
7985
+ { pat_with_workspace: [] },
7986
+ { console_session: [] },
7987
+ ],
7988
+ summary: '/devices/simulate/remove',
7989
+ tags: ['/devices'],
7990
+ 'x-fern-sdk-group-name': ['devices', 'simulate'],
7991
+ 'x-fern-sdk-method-name': 'remove',
7992
+ },
7993
+ },
7953
7994
  '/devices/unmanaged/get': {
7954
7995
  post: {
7955
7996
  operationId: 'devicesUnmanagedGetPost',
@@ -3779,6 +3779,17 @@ export interface Routes {
3779
3779
  }>
3780
3780
  }
3781
3781
  }
3782
+ '/devices/simulate/remove': {
3783
+ route: '/devices/simulate/remove'
3784
+ method: 'DELETE' | 'POST'
3785
+ queryParams: {}
3786
+ jsonBody: {
3787
+ device_id: string
3788
+ }
3789
+ commonParams: {}
3790
+ formData: {}
3791
+ jsonResponse: {}
3792
+ }
3782
3793
  '/devices/unmanaged/get': {
3783
3794
  route: '/devices/unmanaged/get'
3784
3795
  method: 'GET' | 'POST'