@seamapi/types 1.114.0 → 1.115.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.
@@ -14977,6 +14977,68 @@ declare const _default: {
14977
14977
  'x-fern-sdk-method-name': string;
14978
14978
  };
14979
14979
  };
14980
+ '/user_identities/enrollment_automations/delete': {
14981
+ post: {
14982
+ operationId: string;
14983
+ requestBody: {
14984
+ content: {
14985
+ 'application/json': {
14986
+ schema: {
14987
+ properties: {
14988
+ enrollment_automation_id: {
14989
+ format: string;
14990
+ type: string;
14991
+ };
14992
+ };
14993
+ required: string[];
14994
+ type: string;
14995
+ };
14996
+ };
14997
+ };
14998
+ };
14999
+ responses: {
15000
+ 200: {
15001
+ content: {
15002
+ 'application/json': {
15003
+ schema: {
15004
+ properties: {
15005
+ ok: {
15006
+ type: string;
15007
+ };
15008
+ };
15009
+ required: string[];
15010
+ type: string;
15011
+ };
15012
+ };
15013
+ };
15014
+ description: string;
15015
+ };
15016
+ 400: {
15017
+ description: string;
15018
+ };
15019
+ 401: {
15020
+ description: string;
15021
+ };
15022
+ };
15023
+ security: ({
15024
+ pat_with_workspace: never[];
15025
+ console_session?: never;
15026
+ api_key?: never;
15027
+ } | {
15028
+ console_session: never[];
15029
+ pat_with_workspace?: never;
15030
+ api_key?: never;
15031
+ } | {
15032
+ api_key: never[];
15033
+ pat_with_workspace?: never;
15034
+ console_session?: never;
15035
+ })[];
15036
+ summary: string;
15037
+ tags: string[];
15038
+ 'x-fern-sdk-group-name': string[];
15039
+ 'x-fern-sdk-method-name': string;
15040
+ };
15041
+ };
14980
15042
  '/user_identities/enrollment_automations/get': {
14981
15043
  post: {
14982
15044
  operationId: string;
@@ -23863,6 +23925,17 @@ interface Routes {
23863
23925
  formData: {};
23864
23926
  jsonResponse: {};
23865
23927
  };
23928
+ '/user_identities/enrollment_automations/delete': {
23929
+ route: '/user_identities/enrollment_automations/delete';
23930
+ method: 'DELETE' | 'POST';
23931
+ queryParams: {};
23932
+ jsonBody: {};
23933
+ commonParams: {
23934
+ enrollment_automation_id: string;
23935
+ };
23936
+ formData: {};
23937
+ jsonResponse: {};
23938
+ };
23866
23939
  '/user_identities/enrollment_automations/get': {
23867
23940
  route: '/user_identities/enrollment_automations/get';
23868
23941
  method: 'GET' | 'POST';
@@ -14903,6 +14903,68 @@ declare const _default: {
14903
14903
  'x-fern-sdk-method-name': string;
14904
14904
  };
14905
14905
  };
14906
+ '/user_identities/enrollment_automations/delete': {
14907
+ post: {
14908
+ operationId: string;
14909
+ requestBody: {
14910
+ content: {
14911
+ 'application/json': {
14912
+ schema: {
14913
+ properties: {
14914
+ enrollment_automation_id: {
14915
+ format: string;
14916
+ type: string;
14917
+ };
14918
+ };
14919
+ required: string[];
14920
+ type: string;
14921
+ };
14922
+ };
14923
+ };
14924
+ };
14925
+ responses: {
14926
+ 200: {
14927
+ content: {
14928
+ 'application/json': {
14929
+ schema: {
14930
+ properties: {
14931
+ ok: {
14932
+ type: string;
14933
+ };
14934
+ };
14935
+ required: string[];
14936
+ type: string;
14937
+ };
14938
+ };
14939
+ };
14940
+ description: string;
14941
+ };
14942
+ 400: {
14943
+ description: string;
14944
+ };
14945
+ 401: {
14946
+ description: string;
14947
+ };
14948
+ };
14949
+ security: ({
14950
+ pat_with_workspace: never[];
14951
+ console_session?: never;
14952
+ api_key?: never;
14953
+ } | {
14954
+ console_session: never[];
14955
+ pat_with_workspace?: never;
14956
+ api_key?: never;
14957
+ } | {
14958
+ api_key: never[];
14959
+ pat_with_workspace?: never;
14960
+ console_session?: never;
14961
+ })[];
14962
+ summary: string;
14963
+ tags: string[];
14964
+ 'x-fern-sdk-group-name': string[];
14965
+ 'x-fern-sdk-method-name': string;
14966
+ };
14967
+ };
14906
14968
  '/user_identities/enrollment_automations/get': {
14907
14969
  post: {
14908
14970
  operationId: string;
@@ -11060,6 +11060,49 @@ export default {
11060
11060
  'x-fern-sdk-method-name': 'delete',
11061
11061
  },
11062
11062
  },
11063
+ '/user_identities/enrollment_automations/delete': {
11064
+ post: {
11065
+ operationId: 'userIdentitiesEnrollmentAutomationsDeletePost',
11066
+ requestBody: {
11067
+ content: {
11068
+ 'application/json': {
11069
+ schema: {
11070
+ properties: {
11071
+ enrollment_automation_id: { format: 'uuid', type: 'string' },
11072
+ },
11073
+ required: ['enrollment_automation_id'],
11074
+ type: 'object',
11075
+ },
11076
+ },
11077
+ },
11078
+ },
11079
+ responses: {
11080
+ 200: {
11081
+ content: {
11082
+ 'application/json': {
11083
+ schema: {
11084
+ properties: { ok: { type: 'boolean' } },
11085
+ required: ['ok'],
11086
+ type: 'object',
11087
+ },
11088
+ },
11089
+ },
11090
+ description: 'OK',
11091
+ },
11092
+ 400: { description: 'Bad Request' },
11093
+ 401: { description: 'Unauthorized' },
11094
+ },
11095
+ security: [
11096
+ { pat_with_workspace: [] },
11097
+ { console_session: [] },
11098
+ { api_key: [] },
11099
+ ],
11100
+ summary: '/user_identities/enrollment_automations/delete',
11101
+ tags: ['/user_identities'],
11102
+ 'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
11103
+ 'x-fern-sdk-method-name': 'delete',
11104
+ },
11105
+ },
11063
11106
  '/user_identities/enrollment_automations/get': {
11064
11107
  post: {
11065
11108
  operationId: 'userIdentitiesEnrollmentAutomationsGetPost',