@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.
@@ -10723,6 +10723,68 @@ declare const _default: {
10723
10723
  'x-fern-sdk-return-value': string;
10724
10724
  };
10725
10725
  };
10726
+ '/devices/simulate/remove': {
10727
+ post: {
10728
+ operationId: string;
10729
+ requestBody: {
10730
+ content: {
10731
+ 'application/json': {
10732
+ schema: {
10733
+ properties: {
10734
+ device_id: {
10735
+ format: string;
10736
+ type: string;
10737
+ };
10738
+ };
10739
+ required: string[];
10740
+ type: string;
10741
+ };
10742
+ };
10743
+ };
10744
+ };
10745
+ responses: {
10746
+ 200: {
10747
+ content: {
10748
+ 'application/json': {
10749
+ schema: {
10750
+ properties: {
10751
+ ok: {
10752
+ type: string;
10753
+ };
10754
+ };
10755
+ required: string[];
10756
+ type: string;
10757
+ };
10758
+ };
10759
+ };
10760
+ description: string;
10761
+ };
10762
+ 400: {
10763
+ description: string;
10764
+ };
10765
+ 401: {
10766
+ description: string;
10767
+ };
10768
+ };
10769
+ security: ({
10770
+ api_key: never[];
10771
+ pat_with_workspace?: never;
10772
+ console_session?: never;
10773
+ } | {
10774
+ pat_with_workspace: never[];
10775
+ api_key?: never;
10776
+ console_session?: never;
10777
+ } | {
10778
+ console_session: never[];
10779
+ api_key?: never;
10780
+ pat_with_workspace?: never;
10781
+ })[];
10782
+ summary: string;
10783
+ tags: string[];
10784
+ 'x-fern-sdk-group-name': string[];
10785
+ 'x-fern-sdk-method-name': string;
10786
+ };
10787
+ };
10726
10788
  '/devices/unmanaged/get': {
10727
10789
  post: {
10728
10790
  operationId: string;
@@ -19957,6 +20019,17 @@ interface Routes {
19957
20019
  }>;
19958
20020
  };
19959
20021
  };
20022
+ '/devices/simulate/remove': {
20023
+ route: '/devices/simulate/remove';
20024
+ method: 'DELETE' | 'POST';
20025
+ queryParams: {};
20026
+ jsonBody: {
20027
+ device_id: string;
20028
+ };
20029
+ commonParams: {};
20030
+ formData: {};
20031
+ jsonResponse: {};
20032
+ };
19960
20033
  '/devices/unmanaged/get': {
19961
20034
  route: '/devices/unmanaged/get';
19962
20035
  method: 'GET' | 'POST';
@@ -10649,6 +10649,68 @@ declare const _default: {
10649
10649
  'x-fern-sdk-return-value': string;
10650
10650
  };
10651
10651
  };
10652
+ '/devices/simulate/remove': {
10653
+ post: {
10654
+ operationId: string;
10655
+ requestBody: {
10656
+ content: {
10657
+ 'application/json': {
10658
+ schema: {
10659
+ properties: {
10660
+ device_id: {
10661
+ format: string;
10662
+ type: string;
10663
+ };
10664
+ };
10665
+ required: string[];
10666
+ type: string;
10667
+ };
10668
+ };
10669
+ };
10670
+ };
10671
+ responses: {
10672
+ 200: {
10673
+ content: {
10674
+ 'application/json': {
10675
+ schema: {
10676
+ properties: {
10677
+ ok: {
10678
+ type: string;
10679
+ };
10680
+ };
10681
+ required: string[];
10682
+ type: string;
10683
+ };
10684
+ };
10685
+ };
10686
+ description: string;
10687
+ };
10688
+ 400: {
10689
+ description: string;
10690
+ };
10691
+ 401: {
10692
+ description: string;
10693
+ };
10694
+ };
10695
+ security: ({
10696
+ api_key: never[];
10697
+ pat_with_workspace?: never;
10698
+ console_session?: never;
10699
+ } | {
10700
+ pat_with_workspace: never[];
10701
+ api_key?: never;
10702
+ console_session?: never;
10703
+ } | {
10704
+ console_session: never[];
10705
+ api_key?: never;
10706
+ pat_with_workspace?: never;
10707
+ })[];
10708
+ summary: string;
10709
+ tags: string[];
10710
+ 'x-fern-sdk-group-name': string[];
10711
+ 'x-fern-sdk-method-name': string;
10712
+ };
10713
+ };
10652
10714
  '/devices/unmanaged/get': {
10653
10715
  post: {
10654
10716
  operationId: string;
@@ -7873,6 +7873,47 @@ export default {
7873
7873
  'x-fern-sdk-return-value': 'device_providers',
7874
7874
  },
7875
7875
  },
7876
+ '/devices/simulate/remove': {
7877
+ post: {
7878
+ operationId: 'devicesSimulateRemovePost',
7879
+ requestBody: {
7880
+ content: {
7881
+ 'application/json': {
7882
+ schema: {
7883
+ properties: { device_id: { format: 'uuid', type: 'string' } },
7884
+ required: ['device_id'],
7885
+ type: 'object',
7886
+ },
7887
+ },
7888
+ },
7889
+ },
7890
+ responses: {
7891
+ 200: {
7892
+ content: {
7893
+ 'application/json': {
7894
+ schema: {
7895
+ properties: { ok: { type: 'boolean' } },
7896
+ required: ['ok'],
7897
+ type: 'object',
7898
+ },
7899
+ },
7900
+ },
7901
+ description: 'OK',
7902
+ },
7903
+ 400: { description: 'Bad Request' },
7904
+ 401: { description: 'Unauthorized' },
7905
+ },
7906
+ security: [
7907
+ { api_key: [] },
7908
+ { pat_with_workspace: [] },
7909
+ { console_session: [] },
7910
+ ],
7911
+ summary: '/devices/simulate/remove',
7912
+ tags: ['/devices'],
7913
+ 'x-fern-sdk-group-name': ['devices', 'simulate'],
7914
+ 'x-fern-sdk-method-name': 'remove',
7915
+ },
7916
+ },
7876
7917
  '/devices/unmanaged/get': {
7877
7918
  post: {
7878
7919
  operationId: 'devicesUnmanagedGetPost',