@matech/thebigpos-sdk 2.11.0-rc3 → 2.12.0-rc1

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/index.d.ts CHANGED
@@ -211,8 +211,8 @@ export interface ApplicationRowData {
211
211
  titleInsuranceAgent: LoanContactResponse;
212
212
  }
213
213
  export interface Attachment {
214
- fileName?: string | null;
215
- base64Data?: string | null;
214
+ fileName: string;
215
+ base64Data: string;
216
216
  }
217
217
  export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
218
218
  export type BorrowerType = "Borrower" | "CoBorrower" | "Unknown";
@@ -816,6 +816,14 @@ export interface FileSearchCriteria {
816
816
  searchText?: string | null;
817
817
  isPublic?: boolean | null;
818
818
  }
819
+ export interface FileWithBytes {
820
+ name: string;
821
+ /** @format byte */
822
+ data: string;
823
+ fileName: string;
824
+ mimeType?: string | null;
825
+ extension?: string | null;
826
+ }
819
827
  export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
820
828
  export interface FormRequest {
821
829
  formJSON: any;
@@ -2819,9 +2827,9 @@ export interface Workflow {
2819
2827
  tileSubtitle: string;
2820
2828
  icon: string;
2821
2829
  }
2830
+ import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
2822
2831
  export type QueryParamsType = Record<string | number, any>;
2823
- export type ResponseFormat = keyof Omit<Body, "body" | "bodyUsed">;
2824
- export interface FullRequestParams extends Omit<RequestInit, "body"> {
2832
+ export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
2825
2833
  /** set parameter to `true` for call `securityWorker` for this request */
2826
2834
  secure?: boolean;
2827
2835
  /** request path */
@@ -2831,26 +2839,16 @@ export interface FullRequestParams extends Omit<RequestInit, "body"> {
2831
2839
  /** query params */
2832
2840
  query?: QueryParamsType;
2833
2841
  /** format of response (i.e. response.json() -> format: "json") */
2834
- format?: ResponseFormat;
2842
+ format?: ResponseType;
2835
2843
  /** request body */
2836
2844
  body?: unknown;
2837
- /** base url */
2838
- baseUrl?: string;
2839
- /** request cancellation token */
2840
- cancelToken?: CancelToken;
2841
2845
  }
2842
2846
  export type RequestParams = Omit<FullRequestParams, "body" | "method" | "query" | "path">;
2843
- export interface ApiConfig<SecurityDataType = unknown> {
2844
- baseUrl?: string;
2845
- baseApiParams?: Omit<RequestParams, "baseUrl" | "cancelToken" | "signal">;
2846
- securityWorker?: (securityData: SecurityDataType | null) => Promise<RequestParams | void> | RequestParams | void;
2847
- customFetch?: typeof fetch;
2848
- }
2849
- export interface HttpResponse<D extends unknown, E extends unknown = unknown> extends Response {
2850
- data: D;
2851
- error: E;
2847
+ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequestConfig, "data" | "cancelToken"> {
2848
+ securityWorker?: (securityData: SecurityDataType | null) => Promise<AxiosRequestConfig | void> | AxiosRequestConfig | void;
2849
+ secure?: boolean;
2850
+ format?: ResponseType;
2852
2851
  }
2853
- type CancelToken = Symbol | string | number;
2854
2852
  export declare enum ContentType {
2855
2853
  Json = "application/json",
2856
2854
  FormData = "multipart/form-data",
@@ -2858,24 +2856,17 @@ export declare enum ContentType {
2858
2856
  Text = "text/plain"
2859
2857
  }
2860
2858
  export declare class HttpClient<SecurityDataType = unknown> {
2861
- baseUrl: string;
2859
+ instance: AxiosInstance;
2862
2860
  private securityData;
2863
2861
  private securityWorker?;
2864
- private abortControllers;
2865
- private customFetch;
2866
- private baseApiParams;
2867
- constructor(apiConfig?: ApiConfig<SecurityDataType>);
2862
+ private secure?;
2863
+ private format?;
2864
+ constructor({ securityWorker, secure, format, ...axiosConfig }?: ApiConfig<SecurityDataType>);
2868
2865
  setSecurityData: (data: SecurityDataType | null) => void;
2869
- protected encodeQueryParam(key: string, value: any): string;
2870
- protected addQueryParam(query: QueryParamsType, key: string): string;
2871
- protected addArrayQueryParam(query: QueryParamsType, key: string): any;
2872
- protected toQueryString(rawQuery?: QueryParamsType): string;
2873
- protected addQueryParams(rawQuery?: QueryParamsType): string;
2874
- private contentFormatters;
2875
- protected mergeRequestParams(params1: RequestParams, params2?: RequestParams): RequestParams;
2876
- protected createAbortSignal: (cancelToken: CancelToken) => AbortSignal | undefined;
2877
- abortRequest: (cancelToken: CancelToken) => void;
2878
- request: <T = any, E = any>({ body, secure, path, type, query, format, baseUrl, cancelToken, ...params }: FullRequestParams) => Promise<HttpResponse<T, E>>;
2866
+ protected mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig;
2867
+ protected stringifyFormItem(formItem: unknown): string;
2868
+ protected createFormData(input: Record<string, unknown>): FormData;
2869
+ request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T>>;
2879
2870
  }
2880
2871
  /**
2881
2872
  * @title The Big POS API
@@ -2892,7 +2883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2892
2883
  * @request POST:/
2893
2884
  * @secure
2894
2885
  */
2895
- postRoot: (params?: RequestParams) => Promise<HttpResponse<void, any>>;
2886
+ postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
2896
2887
  api: {
2897
2888
  /**
2898
2889
  * No description
@@ -2903,7 +2894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2903
2894
  * @request GET:/api/account
2904
2895
  * @secure
2905
2896
  */
2906
- getAccount: (params?: RequestParams) => Promise<HttpResponse<Account, ProblemDetails>>;
2897
+ getAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
2907
2898
  /**
2908
2899
  * No description
2909
2900
  *
@@ -2913,7 +2904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2913
2904
  * @request PUT:/api/account
2914
2905
  * @secure
2915
2906
  */
2916
- replaceAccount: (data: AccountUpdateRequest, params?: RequestParams) => Promise<HttpResponse<Account, ProblemDetails>>;
2907
+ replaceAccount: (data: AccountUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
2917
2908
  /**
2918
2909
  * No description
2919
2910
  *
@@ -2923,7 +2914,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2923
2914
  * @request PATCH:/api/account
2924
2915
  * @secure
2925
2916
  */
2926
- updateAccount: (data: JsonPatchDocument, params?: RequestParams) => Promise<HttpResponse<Account, ProblemDetails>>;
2917
+ updateAccount: (data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
2927
2918
  /**
2928
2919
  * No description
2929
2920
  *
@@ -2933,7 +2924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2933
2924
  * @request GET:/api/account/site-configurations
2934
2925
  * @secure
2935
2926
  */
2936
- getSiteConfigurationByAccount: (params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, any>>;
2927
+ getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
2937
2928
  /**
2938
2929
  * No description
2939
2930
  *
@@ -2943,7 +2934,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2943
2934
  * @request PUT:/api/account/site-configurations
2944
2935
  * @secure
2945
2936
  */
2946
- updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
2937
+ updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
2947
2938
  /**
2948
2939
  * No description
2949
2940
  *
@@ -2953,7 +2944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2953
2944
  * @request GET:/api/accounts
2954
2945
  * @secure
2955
2946
  */
2956
- getAccounts: (params?: RequestParams) => Promise<HttpResponse<Account[], any>>;
2947
+ getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
2957
2948
  /**
2958
2949
  * No description
2959
2950
  *
@@ -2963,7 +2954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2963
2954
  * @request PUT:/api/accounts/{id}/loan
2964
2955
  * @secure
2965
2956
  */
2966
- updateLoansByAccount: (id: string, data: Loan[], params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails | UnprocessableEntityResponse>>;
2957
+ updateLoansByAccount: (id: string, data: Loan[], params?: RequestParams) => Promise<AxiosResponse<void, any>>;
2967
2958
  /**
2968
2959
  * No description
2969
2960
  *
@@ -2973,7 +2964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2973
2964
  * @request GET:/api/accounts/{id}/loan
2974
2965
  * @secure
2975
2966
  */
2976
- getLoansByAccount: (id: string, params?: RequestParams) => Promise<HttpResponse<Loan[], ProblemDetails>>;
2967
+ getLoansByAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Loan[], any>>;
2977
2968
  /**
2978
2969
  * No description
2979
2970
  *
@@ -2983,7 +2974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2983
2974
  * @request POST:/api/refresh-token
2984
2975
  * @secure
2985
2976
  */
2986
- getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<HttpResponse<TokenResponse, UnprocessableEntityResponse>>;
2977
+ getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<TokenResponse, any>>;
2987
2978
  /**
2988
2979
  * No description
2989
2980
  *
@@ -2993,7 +2984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
2993
2984
  * @request POST:/api/token
2994
2985
  * @secure
2995
2986
  */
2996
- getToken: (data: TokenRequest, params?: RequestParams) => Promise<HttpResponse<TokenResponse, UnprocessableEntityResponse>>;
2987
+ getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<TokenResponse, any>>;
2997
2988
  /**
2998
2989
  * No description
2999
2990
  *
@@ -3003,7 +2994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3003
2994
  * @request POST:/api/token/code
3004
2995
  * @secure
3005
2996
  */
3006
- getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<HttpResponse<TokenResponse, UnprocessableEntityResponse>>;
2997
+ getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<TokenResponse, any>>;
3007
2998
  /**
3008
2999
  * No description
3009
3000
  *
@@ -3013,7 +3004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3013
3004
  * @request POST:/api/oauth2/token
3014
3005
  * @secure
3015
3006
  */
3016
- getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<HttpResponse<TokenResponse, UnprocessableEntityResponse>>;
3007
+ getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<TokenResponse, any>>;
3017
3008
  /**
3018
3009
  * No description
3019
3010
  *
@@ -3023,7 +3014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3023
3014
  * @request POST:/api/token/sso
3024
3015
  * @secure
3025
3016
  */
3026
- getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<HttpResponse<SSOTokenResponse, UnprocessableEntityResponse>>;
3017
+ getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOTokenResponse, any>>;
3027
3018
  /**
3028
3019
  * No description
3029
3020
  *
@@ -3041,7 +3032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3041
3032
  pageNumber?: number;
3042
3033
  sortBy?: string;
3043
3034
  sortDirection?: string;
3044
- }, params?: RequestParams) => Promise<HttpResponse<GetBranchPaginatedResponse, any>>;
3035
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginatedResponse, any>>;
3045
3036
  /**
3046
3037
  * No description
3047
3038
  *
@@ -3051,7 +3042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3051
3042
  * @request POST:/api/branches
3052
3043
  * @secure
3053
3044
  */
3054
- createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<HttpResponse<GetBranch, UnprocessableEntityResponse>>;
3045
+ createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
3055
3046
  /**
3056
3047
  * No description
3057
3048
  *
@@ -3068,7 +3059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3068
3059
  pageNumber?: number;
3069
3060
  sortBy?: string;
3070
3061
  sortDirection?: string;
3071
- }, params?: RequestParams) => Promise<HttpResponse<GetBranchPaginatedResponse, any>>;
3062
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginatedResponse, any>>;
3072
3063
  /**
3073
3064
  * No description
3074
3065
  *
@@ -3078,7 +3069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3078
3069
  * @request GET:/api/branches/{branchId}
3079
3070
  * @secure
3080
3071
  */
3081
- getBranch: (branchId: string, params?: RequestParams) => Promise<HttpResponse<GetBranch, any>>;
3072
+ getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
3082
3073
  /**
3083
3074
  * No description
3084
3075
  *
@@ -3088,7 +3079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3088
3079
  * @request PUT:/api/branches/{branchId}
3089
3080
  * @secure
3090
3081
  */
3091
- replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<HttpResponse<GetBranch, UnprocessableEntityResponse>>;
3082
+ replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
3092
3083
  /**
3093
3084
  * No description
3094
3085
  *
@@ -3098,7 +3089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3098
3089
  * @request DELETE:/api/branches/{branchId}
3099
3090
  * @secure
3100
3091
  */
3101
- deleteBranch: (branchId: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3092
+ deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3102
3093
  /**
3103
3094
  * No description
3104
3095
  *
@@ -3108,7 +3099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3108
3099
  * @request POST:/api/branches/{branchId}/restore
3109
3100
  * @secure
3110
3101
  */
3111
- restoreBranch: (branchId: string, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
3102
+ restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3112
3103
  /**
3113
3104
  * No description
3114
3105
  *
@@ -3118,7 +3109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3118
3109
  * @request POST:/api/branches/{branchId}/site-configurations
3119
3110
  * @secure
3120
3111
  */
3121
- createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
3112
+ createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
3122
3113
  /**
3123
3114
  * No description
3124
3115
  *
@@ -3128,7 +3119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3128
3119
  * @request GET:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
3129
3120
  * @secure
3130
3121
  */
3131
- getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationWithInheritedResponse, any>>;
3122
+ getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInheritedResponse, any>>;
3132
3123
  /**
3133
3124
  * No description
3134
3125
  *
@@ -3140,7 +3131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3140
3131
  */
3141
3132
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
3142
3133
  applyToChildren?: boolean;
3143
- }, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
3134
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
3144
3135
  /**
3145
3136
  * No description
3146
3137
  *
@@ -3150,7 +3141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3150
3141
  * @request GET:/api/branches/{branchId}/loan-officers
3151
3142
  * @secure
3152
3143
  */
3153
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<HttpResponse<PublicLoanOfficer, any>>;
3144
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<PublicLoanOfficer, any>>;
3154
3145
  /**
3155
3146
  * No description
3156
3147
  *
@@ -3162,7 +3153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3162
3153
  */
3163
3154
  getBusinessRules: (query?: {
3164
3155
  showAll?: boolean;
3165
- }, params?: RequestParams) => Promise<HttpResponse<BusinessRule[], any>>;
3156
+ }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
3166
3157
  /**
3167
3158
  * No description
3168
3159
  *
@@ -3172,7 +3163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3172
3163
  * @request POST:/api/business-rules
3173
3164
  * @secure
3174
3165
  */
3175
- createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<HttpResponse<BusinessRule, UnprocessableEntityResponse>>;
3166
+ createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
3176
3167
  /**
3177
3168
  * No description
3178
3169
  *
@@ -3182,7 +3173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3182
3173
  * @request GET:/api/business-rules/{id}
3183
3174
  * @secure
3184
3175
  */
3185
- getBusinessRule: (id: string, params?: RequestParams) => Promise<HttpResponse<BusinessRule, any>>;
3176
+ getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
3186
3177
  /**
3187
3178
  * No description
3188
3179
  *
@@ -3192,7 +3183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3192
3183
  * @request PUT:/api/business-rules/{id}
3193
3184
  * @secure
3194
3185
  */
3195
- replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<HttpResponse<BusinessRule, UnprocessableEntityResponse>>;
3186
+ replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
3196
3187
  /**
3197
3188
  * No description
3198
3189
  *
@@ -3202,7 +3193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3202
3193
  * @request DELETE:/api/business-rules/{id}
3203
3194
  * @secure
3204
3195
  */
3205
- deleteBusinessRule: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3196
+ deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3206
3197
  /**
3207
3198
  * No description
3208
3199
  *
@@ -3212,7 +3203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3212
3203
  * @request POST:/api/business-rules/{id}/restore
3213
3204
  * @secure
3214
3205
  */
3215
- restoreBusinessRule: (id: string, params?: RequestParams) => Promise<HttpResponse<BusinessRule, any>>;
3206
+ restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
3216
3207
  /**
3217
3208
  * No description
3218
3209
  *
@@ -3230,7 +3221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3230
3221
  pageNumber?: number;
3231
3222
  sortBy?: string;
3232
3223
  sortDirection?: string;
3233
- }, params?: RequestParams) => Promise<HttpResponse<CorporateResponsePaginatedResponse, any>>;
3224
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporateResponsePaginatedResponse, any>>;
3234
3225
  /**
3235
3226
  * No description
3236
3227
  *
@@ -3240,7 +3231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3240
3231
  * @request POST:/api/corporates
3241
3232
  * @secure
3242
3233
  */
3243
- createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<HttpResponse<CorporateResponse, UnprocessableEntityResponse>>;
3234
+ createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<CorporateResponse, any>>;
3244
3235
  /**
3245
3236
  * No description
3246
3237
  *
@@ -3257,7 +3248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3257
3248
  pageNumber?: number;
3258
3249
  sortBy?: string;
3259
3250
  sortDirection?: string;
3260
- }, params?: RequestParams) => Promise<HttpResponse<CorporateResponsePaginatedResponse, any>>;
3251
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporateResponsePaginatedResponse, any>>;
3261
3252
  /**
3262
3253
  * No description
3263
3254
  *
@@ -3267,7 +3258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3267
3258
  * @request GET:/api/corporates/{id}
3268
3259
  * @secure
3269
3260
  */
3270
- getCorporate: (id: string, params?: RequestParams) => Promise<HttpResponse<CorporateResponse, any>>;
3261
+ getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<CorporateResponse, any>>;
3271
3262
  /**
3272
3263
  * No description
3273
3264
  *
@@ -3277,7 +3268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3277
3268
  * @request PUT:/api/corporates/{id}
3278
3269
  * @secure
3279
3270
  */
3280
- replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<HttpResponse<CorporateResponse, UnprocessableEntityResponse>>;
3271
+ replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<CorporateResponse, any>>;
3281
3272
  /**
3282
3273
  * No description
3283
3274
  *
@@ -3287,7 +3278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3287
3278
  * @request DELETE:/api/corporates/{id}
3288
3279
  * @secure
3289
3280
  */
3290
- deleteCorporate: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3281
+ deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3291
3282
  /**
3292
3283
  * No description
3293
3284
  *
@@ -3297,7 +3288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3297
3288
  * @request POST:/api/corporates/{id}/restore
3298
3289
  * @secure
3299
3290
  */
3300
- restoreCorporate: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3291
+ restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3301
3292
  /**
3302
3293
  * No description
3303
3294
  *
@@ -3307,7 +3298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3307
3298
  * @request POST:/api/corporates/{corporateId}/site-configurations
3308
3299
  * @secure
3309
3300
  */
3310
- createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
3301
+ createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
3311
3302
  /**
3312
3303
  * No description
3313
3304
  *
@@ -3317,7 +3308,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3317
3308
  * @request GET:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
3318
3309
  * @secure
3319
3310
  */
3320
- getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationWithInheritedResponse, any>>;
3311
+ getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInheritedResponse, any>>;
3321
3312
  /**
3322
3313
  * No description
3323
3314
  *
@@ -3329,7 +3320,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3329
3320
  */
3330
3321
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
3331
3322
  applyToChildren?: boolean;
3332
- }, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
3323
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
3333
3324
  /**
3334
3325
  * No description
3335
3326
  *
@@ -3339,7 +3330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3339
3330
  * @request GET:/api/corporates/{id}/branches
3340
3331
  * @secure
3341
3332
  */
3342
- getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<HttpResponse<BranchReduced[], any>>;
3333
+ getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
3343
3334
  /**
3344
3335
  * No description
3345
3336
  *
@@ -3349,7 +3340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3349
3340
  * @request GET:/api/corporates/{id}/loan-officers
3350
3341
  * @secure
3351
3342
  */
3352
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<HttpResponse<PublicLoanOfficer, any>>;
3343
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<PublicLoanOfficer, any>>;
3353
3344
  /**
3354
3345
  * No description
3355
3346
  *
@@ -3368,7 +3359,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3368
3359
  pageNumber?: number;
3369
3360
  sortBy?: string;
3370
3361
  sortDirection?: string;
3371
- }, params?: RequestParams) => Promise<HttpResponse<DeviceResponsePaginatedResponse, any>>;
3362
+ }, params?: RequestParams) => Promise<AxiosResponse<DeviceResponsePaginatedResponse, any>>;
3372
3363
  /**
3373
3364
  * No description
3374
3365
  *
@@ -3378,7 +3369,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3378
3369
  * @request GET:/api/devices/{id}
3379
3370
  * @secure
3380
3371
  */
3381
- getDevice: (id: string, params?: RequestParams) => Promise<HttpResponse<DeviceResponse, any>>;
3372
+ getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<DeviceResponse, any>>;
3382
3373
  /**
3383
3374
  * No description
3384
3375
  *
@@ -3388,7 +3379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3388
3379
  * @request PUT:/api/devices/{id}
3389
3380
  * @secure
3390
3381
  */
3391
- updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<HttpResponse<DeviceResponse, any>>;
3382
+ updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<DeviceResponse, any>>;
3392
3383
  /**
3393
3384
  * No description
3394
3385
  *
@@ -3398,7 +3389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3398
3389
  * @request GET:/api/devices/{sn}/profile
3399
3390
  * @secure
3400
3391
  */
3401
- getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<HttpResponse<DeviceMDMResponse, any>>;
3392
+ getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDMResponse, any>>;
3402
3393
  /**
3403
3394
  * No description
3404
3395
  *
@@ -3408,7 +3399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3408
3399
  * @request POST:/api/devices/{sn}/actions/{actionName}
3409
3400
  * @secure
3410
3401
  */
3411
- createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<HttpResponse<ActionResponse, any>>;
3402
+ createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<ActionResponse, any>>;
3412
3403
  /**
3413
3404
  * No description
3414
3405
  *
@@ -3421,7 +3412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3421
3412
  getDocumentBuckets: (query?: {
3422
3413
  /** @default false */
3423
3414
  includeSystemBuckets?: boolean;
3424
- }, params?: RequestParams) => Promise<HttpResponse<string[], any>>;
3415
+ }, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
3425
3416
  /**
3426
3417
  * No description
3427
3418
  *
@@ -3433,7 +3424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3433
3424
  */
3434
3425
  getDocumentTemplates: (query?: {
3435
3426
  showAll?: boolean;
3436
- }, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateBaseResponse[], any>>;
3427
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBaseResponse[], any>>;
3437
3428
  /**
3438
3429
  * No description
3439
3430
  *
@@ -3443,7 +3434,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3443
3434
  * @request POST:/api/document-templates
3444
3435
  * @secure
3445
3436
  */
3446
- createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateBaseResponse, ProblemDetails | UnprocessableEntityResponse>>;
3437
+ createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBaseResponse, any>>;
3447
3438
  /**
3448
3439
  * No description
3449
3440
  *
@@ -3458,7 +3449,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3458
3449
  showAll?: boolean;
3459
3450
  /** @default true */
3460
3451
  publishedOnly?: boolean;
3461
- }, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateBaseResponse[], any>>;
3452
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBaseResponse[], any>>;
3462
3453
  /**
3463
3454
  * No description
3464
3455
  *
@@ -3468,7 +3459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3468
3459
  * @request GET:/api/document-templates/{id}
3469
3460
  * @secure
3470
3461
  */
3471
- getDocumentTemplate: (id: string, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateResponse, ProblemDetails>>;
3462
+ getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateResponse, any>>;
3472
3463
  /**
3473
3464
  * No description
3474
3465
  *
@@ -3478,7 +3469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3478
3469
  * @request PUT:/api/document-templates/{id}
3479
3470
  * @secure
3480
3471
  */
3481
- replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateBaseResponse, ProblemDetails | UnprocessableEntityResponse>>;
3472
+ replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBaseResponse, any>>;
3482
3473
  /**
3483
3474
  * No description
3484
3475
  *
@@ -3488,7 +3479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3488
3479
  * @request DELETE:/api/document-templates/{id}
3489
3480
  * @secure
3490
3481
  */
3491
- deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
3482
+ deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3492
3483
  /**
3493
3484
  * No description
3494
3485
  *
@@ -3498,7 +3489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3498
3489
  * @request POST:/api/document-templates/{id}/restore
3499
3490
  * @secure
3500
3491
  */
3501
- restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
3492
+ restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3502
3493
  /**
3503
3494
  * No description
3504
3495
  *
@@ -3508,7 +3499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3508
3499
  * @request GET:/api/document-templates/{documentId}/versions
3509
3500
  * @secure
3510
3501
  */
3511
- getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateVersionResponse[], any>>;
3502
+ getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersionResponse[], any>>;
3512
3503
  /**
3513
3504
  * No description
3514
3505
  *
@@ -3518,7 +3509,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3518
3509
  * @request POST:/api/document-templates/{documentId}/versions
3519
3510
  * @secure
3520
3511
  */
3521
- createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateVersionResponse, any>>;
3512
+ createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersionResponse, any>>;
3522
3513
  /**
3523
3514
  * No description
3524
3515
  *
@@ -3528,7 +3519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3528
3519
  * @request GET:/api/document-templates/{documentId}/versions/{id}
3529
3520
  * @secure
3530
3521
  */
3531
- getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateVersionResponse, any>>;
3522
+ getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersionResponse, any>>;
3532
3523
  /**
3533
3524
  * No description
3534
3525
  *
@@ -3538,7 +3529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3538
3529
  * @request PUT:/api/document-templates/{documentId}/versions/{id}
3539
3530
  * @secure
3540
3531
  */
3541
- replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateVersionResponse, any>>;
3532
+ replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersionResponse, any>>;
3542
3533
  /**
3543
3534
  * No description
3544
3535
  *
@@ -3548,7 +3539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3548
3539
  * @request DELETE:/api/document-templates/{documentId}/versions/{id}
3549
3540
  * @secure
3550
3541
  */
3551
- deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<HttpResponse<DocumentTemplateVersionResponse, any>>;
3542
+ deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersionResponse, any>>;
3552
3543
  /**
3553
3544
  * No description
3554
3545
  *
@@ -3567,7 +3558,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3567
3558
  sortDirection?: string;
3568
3559
  /** @default false */
3569
3560
  includeDeleted?: boolean;
3570
- }, params?: RequestParams) => Promise<HttpResponse<FilePaginatedResponse, any>>;
3561
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginatedResponse, any>>;
3571
3562
  /**
3572
3563
  * No description
3573
3564
  *
@@ -3583,7 +3574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3583
3574
  file?: File;
3584
3575
  isPublic?: boolean;
3585
3576
  bucket?: string;
3586
- }, params?: RequestParams) => Promise<HttpResponse<File, UnprocessableEntityResponse>>;
3577
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
3587
3578
  /**
3588
3579
  * No description
3589
3580
  *
@@ -3593,7 +3584,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3593
3584
  * @request GET:/api/files/{id}
3594
3585
  * @secure
3595
3586
  */
3596
- getFileById: (id: string, params?: RequestParams) => Promise<HttpResponse<File, any>>;
3587
+ getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
3597
3588
  /**
3598
3589
  * No description
3599
3590
  *
@@ -3603,7 +3594,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3603
3594
  * @request PUT:/api/files/{id}
3604
3595
  * @secure
3605
3596
  */
3606
- replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<HttpResponse<string, UnprocessableEntityResponse>>;
3597
+ replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
3607
3598
  /**
3608
3599
  * No description
3609
3600
  *
@@ -3613,7 +3604,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3613
3604
  * @request DELETE:/api/files/{id}
3614
3605
  * @secure
3615
3606
  */
3616
- deleteFile: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3607
+ deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3617
3608
  /**
3618
3609
  * No description
3619
3610
  *
@@ -3630,7 +3621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3630
3621
  pageNumber?: number;
3631
3622
  sortBy?: string;
3632
3623
  sortDirection?: string;
3633
- }, params?: RequestParams) => Promise<HttpResponse<FilePaginatedResponse, any>>;
3624
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginatedResponse, any>>;
3634
3625
  /**
3635
3626
  * No description
3636
3627
  *
@@ -3642,7 +3633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3642
3633
  */
3643
3634
  getForms: (query?: {
3644
3635
  showAll?: boolean;
3645
- }, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms[], any>>;
3636
+ }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
3646
3637
  /**
3647
3638
  * No description
3648
3639
  *
@@ -3652,7 +3643,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3652
3643
  * @request POST:/api/forms
3653
3644
  * @secure
3654
3645
  */
3655
- createForm: (data: FormRequest, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms, UnprocessableEntityResponse>>;
3646
+ createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms, any>>;
3656
3647
  /**
3657
3648
  * No description
3658
3649
  *
@@ -3662,7 +3653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3662
3653
  * @request GET:/api/forms/{id}
3663
3654
  * @secure
3664
3655
  */
3665
- getForm: (id: string, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms, any>>;
3656
+ getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms, any>>;
3666
3657
  /**
3667
3658
  * No description
3668
3659
  *
@@ -3672,7 +3663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3672
3663
  * @request PUT:/api/forms/{id}
3673
3664
  * @secure
3674
3665
  */
3675
- replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms, UnprocessableEntityResponse>>;
3666
+ replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms, any>>;
3676
3667
  /**
3677
3668
  * No description
3678
3669
  *
@@ -3682,7 +3673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3682
3673
  * @request DELETE:/api/forms/{id}
3683
3674
  * @secure
3684
3675
  */
3685
- deleteForm: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3676
+ deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3686
3677
  /**
3687
3678
  * No description
3688
3679
  *
@@ -3692,7 +3683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3692
3683
  * @request POST:/api/forms/{id}/restore
3693
3684
  * @secure
3694
3685
  */
3695
- restoreForm: (id: string, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms, any>>;
3686
+ restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms, any>>;
3696
3687
  /**
3697
3688
  * No description
3698
3689
  *
@@ -3702,7 +3693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3702
3693
  * @request POST:/api/forms/{formId}/site-configurations/{siteConfigurationId}
3703
3694
  * @secure
3704
3695
  */
3705
- addFormToSiteConfiguration: (formId: string, siteConfigurationId: string, data: AddFormToSiteConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationForm, UnprocessableEntityResponse>>;
3696
+ addFormToSiteConfiguration: (formId: string, siteConfigurationId: string, data: AddFormToSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
3706
3697
  /**
3707
3698
  * No description
3708
3699
  *
@@ -3712,7 +3703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3712
3703
  * @request DELETE:/api/forms/{formId}/site-configurations/{siteConfigurationId}
3713
3704
  * @secure
3714
3705
  */
3715
- removeFormFromSiteConfiguration: (formId: string, siteConfigurationId: string, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms, any>>;
3706
+ removeFormFromSiteConfiguration: (formId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms, any>>;
3716
3707
  /**
3717
3708
  * No description
3718
3709
  *
@@ -3722,7 +3713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3722
3713
  * @request GET:/api/forms/{formId}/site-configurations
3723
3714
  * @secure
3724
3715
  */
3725
- getSiteConfigurationsByForm: (formId: string, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationReduced[], UnprocessableEntityResponse>>;
3716
+ getSiteConfigurationsByForm: (formId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationReduced[], any>>;
3726
3717
  /**
3727
3718
  * No description
3728
3719
  *
@@ -3736,7 +3727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3736
3727
  /** @format binary */
3737
3728
  file?: File;
3738
3729
  name?: string;
3739
- }, params?: RequestParams) => Promise<HttpResponse<FormSubmissionFileResponse, any>>;
3730
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFileResponse, any>>;
3740
3731
  /**
3741
3732
  * No description
3742
3733
  *
@@ -3746,7 +3737,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3746
3737
  * @request DELETE:/api/form-submissions/{formSubmissionId}/files/{formSubmissionFileId}
3747
3738
  * @secure
3748
3739
  */
3749
- deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3740
+ deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3741
+ /**
3742
+ * No description
3743
+ *
3744
+ * @tags FormSubmissionFiles
3745
+ * @name DownloadFormSubmissionFile
3746
+ * @summary Download by Id
3747
+ * @request GET:/api/form-submissions/{formSubmissionId}/files/{formSubmissionFileId}/download
3748
+ * @secure
3749
+ */
3750
+ downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
3751
+ /** @format uuid */
3752
+ siteConfigurationId?: string;
3753
+ }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
3750
3754
  /**
3751
3755
  * No description
3752
3756
  *
@@ -3763,7 +3767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3763
3767
  pageNumber?: number;
3764
3768
  sortBy?: string;
3765
3769
  sortDirection?: string;
3766
- }, params?: RequestParams) => Promise<HttpResponse<FormSubmissionPaginatedResponse, any>>;
3770
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginatedResponse, any>>;
3767
3771
  /**
3768
3772
  * No description
3769
3773
  *
@@ -3775,7 +3779,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3775
3779
  */
3776
3780
  createFormSubmission: (data: FormSubmissionRequest, query?: {
3777
3781
  formID?: string;
3778
- }, params?: RequestParams) => Promise<HttpResponse<FormSubmission, any>>;
3782
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
3779
3783
  /**
3780
3784
  * No description
3781
3785
  *
@@ -3785,7 +3789,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3785
3789
  * @request GET:/api/form-submissions/{id}
3786
3790
  * @secure
3787
3791
  */
3788
- getFormSubmission: (id: string, params?: RequestParams) => Promise<HttpResponse<FormSubmission, any>>;
3792
+ getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
3789
3793
  /**
3790
3794
  * No description
3791
3795
  *
@@ -3795,7 +3799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3795
3799
  * @request PUT:/api/form-submissions/{id}
3796
3800
  * @secure
3797
3801
  */
3798
- replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<HttpResponse<FormSubmission, any>>;
3802
+ replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
3799
3803
  /**
3800
3804
  * No description
3801
3805
  *
@@ -3805,7 +3809,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3805
3809
  * @request DELETE:/api/form-submissions/{id}
3806
3810
  * @secure
3807
3811
  */
3808
- deleteFormSubmission: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3812
+ deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3809
3813
  /**
3810
3814
  * No description
3811
3815
  *
@@ -3822,7 +3826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3822
3826
  pageNumber?: number;
3823
3827
  sortBy?: string;
3824
3828
  sortDirection?: string;
3825
- }, params?: RequestParams) => Promise<HttpResponse<FormSubmissionPaginatedResponse, any>>;
3829
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginatedResponse, any>>;
3826
3830
  /**
3827
3831
  * No description
3828
3832
  *
@@ -3832,7 +3836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3832
3836
  * @request GET:/api/forms/{formId}/versions
3833
3837
  * @secure
3834
3838
  */
3835
- getFormVersions: (formId: string, params?: RequestParams) => Promise<HttpResponse<FormVersion[], any>>;
3839
+ getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
3836
3840
  /**
3837
3841
  * No description
3838
3842
  *
@@ -3842,7 +3846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3842
3846
  * @request POST:/api/forms/{formId}/versions
3843
3847
  * @secure
3844
3848
  */
3845
- createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<HttpResponse<FormVersion, any>>;
3849
+ createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
3846
3850
  /**
3847
3851
  * No description
3848
3852
  *
@@ -3852,7 +3856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3852
3856
  * @request GET:/api/forms/{formId}/versions/{id}
3853
3857
  * @secure
3854
3858
  */
3855
- getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<HttpResponse<FormVersion, any>>;
3859
+ getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
3856
3860
  /**
3857
3861
  * No description
3858
3862
  *
@@ -3862,7 +3866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3862
3866
  * @request PUT:/api/forms/{formId}/versions/{id}
3863
3867
  * @secure
3864
3868
  */
3865
- replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<HttpResponse<FormVersion, any>>;
3869
+ replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
3866
3870
  /**
3867
3871
  * No description
3868
3872
  *
@@ -3872,7 +3876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3872
3876
  * @request DELETE:/api/forms/{formId}/versions/{id}
3873
3877
  * @secure
3874
3878
  */
3875
- deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<HttpResponse<FormVersion, any>>;
3879
+ deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
3876
3880
  /**
3877
3881
  * No description
3878
3882
  *
@@ -3882,7 +3886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3882
3886
  * @request GET:/api/los/loan/application/{loanID}
3883
3887
  * @secure
3884
3888
  */
3885
- getLoanData: (loanId: string, params?: RequestParams) => Promise<HttpResponse<Record<string, any>, any>>;
3889
+ getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
3886
3890
  /**
3887
3891
  * No description
3888
3892
  *
@@ -3892,7 +3896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3892
3896
  * @request PATCH:/api/los/loan/application/{loanID}
3893
3897
  * @secure
3894
3898
  */
3895
- updateLoan: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<HttpResponse<string, UnprocessableEntityResponse>>;
3899
+ updateLoan: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
3896
3900
  /**
3897
3901
  * No description
3898
3902
  *
@@ -3902,7 +3906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3902
3906
  * @request POST:/api/los/loan/reports
3903
3907
  * @secure
3904
3908
  */
3905
- getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<HttpResponse<GetReportResponse, any>>;
3909
+ getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReportResponse, any>>;
3906
3910
  /**
3907
3911
  * No description
3908
3912
  *
@@ -3912,7 +3916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3912
3916
  * @request POST:/api/los/loan/application
3913
3917
  * @secure
3914
3918
  */
3915
- createLoan: (data: any, params?: RequestParams) => Promise<HttpResponse<string, UnprocessableEntityResponse>>;
3919
+ createLoan: (data: any, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
3916
3920
  /**
3917
3921
  * No description
3918
3922
  *
@@ -3925,7 +3929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3925
3929
  getTaskDocumentsByLoan: (loanId: string, query?: {
3926
3930
  /** @default true */
3927
3931
  includeBase64?: boolean;
3928
- }, params?: RequestParams) => Promise<HttpResponse<DocumentData[], any>>;
3932
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
3929
3933
  /**
3930
3934
  * No description
3931
3935
  *
@@ -3938,7 +3942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3938
3942
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
3939
3943
  /** @default "base64" */
3940
3944
  contentType?: string;
3941
- }, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3945
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3942
3946
  /**
3943
3947
  * No description
3944
3948
  *
@@ -3948,7 +3952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3948
3952
  * @request GET:/api/los/loan/recipients/{loanID}
3949
3953
  * @secure
3950
3954
  */
3951
- getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
3955
+ getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3952
3956
  /**
3953
3957
  * No description
3954
3958
  *
@@ -3958,7 +3962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3958
3962
  * @request GET:/api/los/loan/contacts/{loanID}
3959
3963
  * @secure
3960
3964
  */
3961
- getLoanContactInformation: (loanId: string, params?: RequestParams) => Promise<HttpResponse<Record<string, ContactRowData>, any>>;
3965
+ getLoanContactInformation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, ContactRowData>, any>>;
3962
3966
  /**
3963
3967
  * No description
3964
3968
  *
@@ -3968,7 +3972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3968
3972
  * @request GET:/api/los/loan/{loanID}/conditions/preliminary
3969
3973
  * @secure
3970
3974
  */
3971
- getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<HttpResponse<PreliminaryConditionResponse[], any>>;
3975
+ getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryConditionResponse[], any>>;
3972
3976
  /**
3973
3977
  * No description
3974
3978
  *
@@ -3978,7 +3982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3978
3982
  * @request GET:/api/los/loan/{loanID}/conditions/underwriting
3979
3983
  * @secure
3980
3984
  */
3981
- getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<HttpResponse<UnderwritingConditionResponse[], any>>;
3985
+ getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingConditionResponse[], any>>;
3982
3986
  /**
3983
3987
  * No description
3984
3988
  *
@@ -3988,7 +3992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3988
3992
  * @request POST:/api/los/loan/embeddedsigning/{envelopeId}/{userName}/{email}
3989
3993
  * @secure
3990
3994
  */
3991
- getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<HttpResponse<string, any>>;
3995
+ getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
3992
3996
  /**
3993
3997
  * No description
3994
3998
  *
@@ -3999,7 +4003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3999
4003
  * @deprecated
4000
4004
  * @secure
4001
4005
  */
4002
- createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<HttpResponse<DocumentDataRequest, any>>;
4006
+ createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
4003
4007
  /**
4004
4008
  * No description
4005
4009
  *
@@ -4014,7 +4018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4014
4018
  file?: File;
4015
4019
  /** @format int32 */
4016
4020
  weight?: number;
4017
- }, params?: RequestParams) => Promise<HttpResponse<ListingFile, any>>;
4021
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
4018
4022
  /**
4019
4023
  * No description
4020
4024
  *
@@ -4024,7 +4028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4024
4028
  * @request PATCH:/api/listings/{listingId}/files
4025
4029
  * @secure
4026
4030
  */
4027
- updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<HttpResponse<ListingFile, any>>;
4031
+ updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
4028
4032
  /**
4029
4033
  * No description
4030
4034
  *
@@ -4034,7 +4038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4034
4038
  * @request DELETE:/api/listings/{listingId}/files/{id}
4035
4039
  * @secure
4036
4040
  */
4037
- removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<HttpResponse<Listing, any>>;
4041
+ removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
4038
4042
  /**
4039
4043
  * No description
4040
4044
  *
@@ -4051,7 +4055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4051
4055
  file?: File;
4052
4056
  /** @format int32 */
4053
4057
  weight?: number;
4054
- }, params?: RequestParams) => Promise<HttpResponse<ListingPhoto, any>>;
4058
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
4055
4059
  /**
4056
4060
  * No description
4057
4061
  *
@@ -4061,7 +4065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4061
4065
  * @request PATCH:/api/listings/{listingId}/photos
4062
4066
  * @secure
4063
4067
  */
4064
- updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<HttpResponse<ListingPhoto[], any>>;
4068
+ updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
4065
4069
  /**
4066
4070
  * No description
4067
4071
  *
@@ -4071,7 +4075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4071
4075
  * @request DELETE:/api/listings/{listingId}/photos/{id}
4072
4076
  * @secure
4073
4077
  */
4074
- removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<HttpResponse<Listing, any>>;
4078
+ removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
4075
4079
  /**
4076
4080
  * No description
4077
4081
  *
@@ -4088,7 +4092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4088
4092
  pageNumber?: number;
4089
4093
  sortBy?: string;
4090
4094
  sortDirection?: string;
4091
- }, params?: RequestParams) => Promise<HttpResponse<ListingPaginatedResponse, any>>;
4095
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginatedResponse, any>>;
4092
4096
  /**
4093
4097
  * No description
4094
4098
  *
@@ -4098,7 +4102,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4098
4102
  * @request POST:/api/listings
4099
4103
  * @secure
4100
4104
  */
4101
- createListing: (data: ListingRequest, params?: RequestParams) => Promise<HttpResponse<Listing, any>>;
4105
+ createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
4102
4106
  /**
4103
4107
  * No description
4104
4108
  *
@@ -4108,7 +4112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4108
4112
  * @request GET:/api/listings/slug/{slug}
4109
4113
  * @secure
4110
4114
  */
4111
- getListingBySlug: (slug: string, params?: RequestParams) => Promise<HttpResponse<Listing, any>>;
4115
+ getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
4112
4116
  /**
4113
4117
  * No description
4114
4118
  *
@@ -4118,7 +4122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4118
4122
  * @request GET:/api/listings/{id}
4119
4123
  * @secure
4120
4124
  */
4121
- getListing: (id: string, params?: RequestParams) => Promise<HttpResponse<Listing, any>>;
4125
+ getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
4122
4126
  /**
4123
4127
  * No description
4124
4128
  *
@@ -4128,7 +4132,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4128
4132
  * @request PUT:/api/listings/{id}
4129
4133
  * @secure
4130
4134
  */
4131
- replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<HttpResponse<Listing, any>>;
4135
+ replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
4132
4136
  /**
4133
4137
  * No description
4134
4138
  *
@@ -4138,7 +4142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4138
4142
  * @request DELETE:/api/listings/{id}
4139
4143
  * @secure
4140
4144
  */
4141
- deleteListing: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4145
+ deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4142
4146
  /**
4143
4147
  * No description
4144
4148
  *
@@ -4155,7 +4159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4155
4159
  pageNumber?: number;
4156
4160
  sortBy?: string;
4157
4161
  sortDirection?: string;
4158
- }, params?: RequestParams) => Promise<HttpResponse<ListingPaginatedResponse, any>>;
4162
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginatedResponse, any>>;
4159
4163
  /**
4160
4164
  * No description
4161
4165
  *
@@ -4168,7 +4172,17 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4168
4172
  updateListingBackgroundImage: (id: string, data: {
4169
4173
  /** @format binary */
4170
4174
  file?: File;
4171
- }, params?: RequestParams) => Promise<HttpResponse<File, any>>;
4175
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
4176
+ /**
4177
+ * No description
4178
+ *
4179
+ * @tags Listings
4180
+ * @name DeleteListingBackgroundImage
4181
+ * @summary Delete Background Image
4182
+ * @request DELETE:/api/listings/{id}/background-image
4183
+ * @secure
4184
+ */
4185
+ deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4172
4186
  /**
4173
4187
  * No description
4174
4188
  *
@@ -4178,7 +4192,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4178
4192
  * @request GET:/api/listings/{id}/open-house-flyer
4179
4193
  * @secure
4180
4194
  */
4181
- getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<HttpResponse<File, any>>;
4195
+ getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
4182
4196
  /**
4183
4197
  * No description
4184
4198
  *
@@ -4188,7 +4202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4188
4202
  * @request GET:/api/loans/{loanID}/calculators/loan-calculator
4189
4203
  * @secure
4190
4204
  */
4191
- getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<HttpResponse<RunLOCalculationResponse, any>>;
4205
+ getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculationResponse, any>>;
4192
4206
  /**
4193
4207
  * No description
4194
4208
  *
@@ -4198,7 +4212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4198
4212
  * @request POST:/api/loans/{loanID}/calculators/loan-calculator
4199
4213
  * @secure
4200
4214
  */
4201
- runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<HttpResponse<RunLOCalculationResponse, UnprocessableEntityResponse>>;
4215
+ runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculationResponse, any>>;
4202
4216
  /**
4203
4217
  * No description
4204
4218
  *
@@ -4208,7 +4222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4208
4222
  * @request GET:/api/loans/{loanID}/loan-comparison
4209
4223
  * @secure
4210
4224
  */
4211
- getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<HttpResponse<LoanComparisonResponse, any>>;
4225
+ getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonResponse, any>>;
4212
4226
  /**
4213
4227
  * No description
4214
4228
  *
@@ -4218,7 +4232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4218
4232
  * @request POST:/api/loans/{loanID}/loan-comparison/{index}
4219
4233
  * @secure
4220
4234
  */
4221
- createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<HttpResponse<LoanComparisonScenario, UnprocessableEntityResponse>>;
4235
+ createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
4222
4236
  /**
4223
4237
  * No description
4224
4238
  *
@@ -4228,7 +4242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4228
4242
  * @request DELETE:/api/loans/{loanID}/loan-comparison/{index}
4229
4243
  * @secure
4230
4244
  */
4231
- deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4245
+ deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4232
4246
  /**
4233
4247
  * No description
4234
4248
  *
@@ -4238,7 +4252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4238
4252
  * @request POST:/api/loans/{loanID}/loan-comparison/pdf
4239
4253
  * @secure
4240
4254
  */
4241
- createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
4255
+ createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4242
4256
  /**
4243
4257
  * No description
4244
4258
  *
@@ -4248,7 +4262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4248
4262
  * @request GET:/api/loans/{loanId}/documents/buckets
4249
4263
  * @secure
4250
4264
  */
4251
- getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<HttpResponse<string[], any>>;
4265
+ getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
4252
4266
  /**
4253
4267
  * No description
4254
4268
  *
@@ -4258,7 +4272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4258
4272
  * @request POST:/api/loans/{loanId}/documents/buckets
4259
4273
  * @secure
4260
4274
  */
4261
- createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<HttpResponse<string[], any>>;
4275
+ createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
4262
4276
  /**
4263
4277
  * No description
4264
4278
  *
@@ -4271,7 +4285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4271
4285
  getLoanDocument: (loanId: string, documentId: string, query?: {
4272
4286
  /** @default false */
4273
4287
  preview?: boolean;
4274
- }, params?: RequestParams) => Promise<HttpResponse<LoanDocument, ProblemDetails>>;
4288
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
4275
4289
  /**
4276
4290
  * No description
4277
4291
  *
@@ -4281,7 +4295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4281
4295
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
4282
4296
  * @secure
4283
4297
  */
4284
- downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<HttpResponse<string, ProblemDetails>>;
4298
+ downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4285
4299
  /**
4286
4300
  * No description
4287
4301
  *
@@ -4296,7 +4310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4296
4310
  /** @format binary */
4297
4311
  file?: File;
4298
4312
  bucket?: string;
4299
- }, params?: RequestParams) => Promise<HttpResponse<LoanDocument, ProblemDetails | UnprocessableEntityResponse>>;
4313
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
4300
4314
  /**
4301
4315
  * No description
4302
4316
  *
@@ -4306,7 +4320,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4306
4320
  * @request POST:/api/loans/{loanId}/documents/{documentId}/retry
4307
4321
  * @secure
4308
4322
  */
4309
- retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<HttpResponse<LoanDocument, ProblemDetails | UnprocessableEntityResponse>>;
4323
+ retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
4310
4324
  /**
4311
4325
  * No description
4312
4326
  *
@@ -4316,7 +4330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4316
4330
  * @request POST:/api/loans/drafts
4317
4331
  * @secure
4318
4332
  */
4319
- createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<HttpResponse<DraftResponse, any>>;
4333
+ createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<DraftResponse, any>>;
4320
4334
  /**
4321
4335
  * No description
4322
4336
  *
@@ -4326,7 +4340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4326
4340
  * @request GET:/api/loans/drafts
4327
4341
  * @secure
4328
4342
  */
4329
- getLoanDrafts: (params?: RequestParams) => Promise<HttpResponse<DraftContentResponse[], any>>;
4343
+ getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContentResponse[], any>>;
4330
4344
  /**
4331
4345
  * No description
4332
4346
  *
@@ -4343,7 +4357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4343
4357
  pageNumber?: number;
4344
4358
  sortBy?: string;
4345
4359
  sortDirection?: string;
4346
- }, params?: RequestParams) => Promise<HttpResponse<DraftContentResponsePaginatedResponse, any>>;
4360
+ }, params?: RequestParams) => Promise<AxiosResponse<DraftContentResponsePaginatedResponse, any>>;
4347
4361
  /**
4348
4362
  * No description
4349
4363
  *
@@ -4353,7 +4367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4353
4367
  * @request PUT:/api/loans/drafts/{draftId}
4354
4368
  * @secure
4355
4369
  */
4356
- replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<HttpResponse<DraftResponse, any>>;
4370
+ replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<DraftResponse, any>>;
4357
4371
  /**
4358
4372
  * No description
4359
4373
  *
@@ -4363,7 +4377,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4363
4377
  * @request GET:/api/loans/drafts/{draftId}
4364
4378
  * @secure
4365
4379
  */
4366
- getLoanDraft: (draftId: string, params?: RequestParams) => Promise<HttpResponse<DraftContentResponse, any>>;
4380
+ getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContentResponse, any>>;
4367
4381
  /**
4368
4382
  * No description
4369
4383
  *
@@ -4373,7 +4387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4373
4387
  * @request DELETE:/api/loans/drafts/{draftId}
4374
4388
  * @secure
4375
4389
  */
4376
- deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4390
+ deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4377
4391
  /**
4378
4392
  * No description
4379
4393
  *
@@ -4391,7 +4405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4391
4405
  pageNumber?: number;
4392
4406
  sortBy?: string;
4393
4407
  sortDirection?: string;
4394
- }, params?: RequestParams) => Promise<HttpResponse<BranchUserPaginatedResponse, any>>;
4408
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginatedResponse, any>>;
4395
4409
  /**
4396
4410
  * No description
4397
4411
  *
@@ -4408,7 +4422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4408
4422
  pageNumber?: number;
4409
4423
  sortBy?: string;
4410
4424
  sortDirection?: string;
4411
- }, params?: RequestParams) => Promise<HttpResponse<BranchUserPaginatedResponse, any>>;
4425
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginatedResponse, any>>;
4412
4426
  /**
4413
4427
  * No description
4414
4428
  *
@@ -4418,7 +4432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4418
4432
  * @request GET:/api/loan-officers/{id}
4419
4433
  * @secure
4420
4434
  */
4421
- getLoanOfficer: (id: string, params?: RequestParams) => Promise<HttpResponse<BranchUser, any>>;
4435
+ getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
4422
4436
  /**
4423
4437
  * No description
4424
4438
  *
@@ -4428,7 +4442,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4428
4442
  * @request GET:/api/loan-officers/applications
4429
4443
  * @secure
4430
4444
  */
4431
- getLoanOfficerLoans: (params?: RequestParams) => Promise<HttpResponse<GetApplicationsResponse, any>>;
4445
+ getLoanOfficerLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplicationsResponse, any>>;
4432
4446
  /**
4433
4447
  * No description
4434
4448
  *
@@ -4438,7 +4452,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4438
4452
  * @request POST:/api/loan-officers/{loanOfficerId}/site-configurations
4439
4453
  * @secure
4440
4454
  */
4441
- createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
4455
+ createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4442
4456
  /**
4443
4457
  * No description
4444
4458
  *
@@ -4448,7 +4462,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4448
4462
  * @request GET:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
4449
4463
  * @secure
4450
4464
  */
4451
- getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationWithInheritedResponse, any>>;
4465
+ getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInheritedResponse, any>>;
4452
4466
  /**
4453
4467
  * No description
4454
4468
  *
@@ -4460,7 +4474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4460
4474
  */
4461
4475
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
4462
4476
  applyToChildren?: boolean;
4463
- }, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
4477
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4464
4478
  /**
4465
4479
  * No description
4466
4480
  *
@@ -4470,7 +4484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4470
4484
  * @request GET:/api/loans
4471
4485
  * @secure
4472
4486
  */
4473
- getLoans: (params?: RequestParams) => Promise<HttpResponse<GetApplicationsResponse, any>>;
4487
+ getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplicationsResponse, any>>;
4474
4488
  /**
4475
4489
  * No description
4476
4490
  *
@@ -4480,7 +4494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4480
4494
  * @request GET:/api/loans/{loanID}
4481
4495
  * @secure
4482
4496
  */
4483
- getLoan: (loanId: string, params?: RequestParams) => Promise<HttpResponse<Loan, ProblemDetails>>;
4497
+ getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
4484
4498
  /**
4485
4499
  * No description
4486
4500
  *
@@ -4497,7 +4511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4497
4511
  pageNumber?: number;
4498
4512
  sortBy?: string;
4499
4513
  sortDirection?: string;
4500
- }, params?: RequestParams) => Promise<HttpResponse<ExtendedLoanResponsePaginatedResponse, any>>;
4514
+ }, params?: RequestParams) => Promise<AxiosResponse<ExtendedLoanResponsePaginatedResponse, any>>;
4501
4515
  /**
4502
4516
  * No description
4503
4517
  *
@@ -4507,7 +4521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4507
4521
  * @request POST:/api/loans/import-from-los/{loanId}
4508
4522
  * @secure
4509
4523
  */
4510
- importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<HttpResponse<Loan, any>>;
4524
+ importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
4511
4525
  /**
4512
4526
  * No description
4513
4527
  *
@@ -4522,7 +4536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4522
4536
  /** @format binary */
4523
4537
  file?: File;
4524
4538
  bucket?: string;
4525
- }, params?: RequestParams) => Promise<HttpResponse<UserLoanTask, ProblemDetails | UnprocessableEntityResponse>>;
4539
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
4526
4540
  /**
4527
4541
  * No description
4528
4542
  *
@@ -4532,7 +4546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4532
4546
  * @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/documents/bucket
4533
4547
  * @secure
4534
4548
  */
4535
- createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<HttpResponse<UserLoanTask, UnprocessableEntityResponse>>;
4549
+ createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
4536
4550
  /**
4537
4551
  * No description
4538
4552
  *
@@ -4542,7 +4556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4542
4556
  * @request GET:/api/loans/{loanID}/tasks
4543
4557
  * @secure
4544
4558
  */
4545
- getLoanTasks: (loanId: string, params?: RequestParams) => Promise<HttpResponse<UserLoanTask[], ProblemDetails>>;
4559
+ getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
4546
4560
  /**
4547
4561
  * No description
4548
4562
  *
@@ -4552,7 +4566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4552
4566
  * @request GET:/api/loans/{loanID}/tasks/{id}
4553
4567
  * @secure
4554
4568
  */
4555
- getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<HttpResponse<UserLoanTask, ProblemDetails>>;
4569
+ getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
4556
4570
  /**
4557
4571
  * @description Get the difference between the current loan tasks and the tasks generated by business rules
4558
4572
  *
@@ -4562,7 +4576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4562
4576
  * @request GET:/api/loans/{loanID}/tasks/diff
4563
4577
  * @secure
4564
4578
  */
4565
- getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<HttpResponse<UserLoanTask, ProblemDetails>>;
4579
+ getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
4566
4580
  /**
4567
4581
  * No description
4568
4582
  *
@@ -4572,7 +4586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4572
4586
  * @request POST:/api/loans/{loanID}/tasks/{taskID}
4573
4587
  * @secure
4574
4588
  */
4575
- createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<HttpResponse<UserLoanTask, ProblemDetails>>;
4589
+ createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
4576
4590
  /**
4577
4591
  * No description
4578
4592
  *
@@ -4582,7 +4596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4582
4596
  * @request POST:/api/loans/{loanID}/tasks/import
4583
4597
  * @secure
4584
4598
  */
4585
- importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<HttpResponse<UserLoanTask[], ProblemDetails>>;
4599
+ importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
4586
4600
  /**
4587
4601
  * No description
4588
4602
  *
@@ -4592,7 +4606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4592
4606
  * @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
4593
4607
  * @secure
4594
4608
  */
4595
- replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<HttpResponse<UserLoanTask, ProblemDetails>>;
4609
+ replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
4596
4610
  /**
4597
4611
  * No description
4598
4612
  *
@@ -4602,7 +4616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4602
4616
  * @request DELETE:/api/loans/{loanID}/tasks/{userLoanTaskID}
4603
4617
  * @secure
4604
4618
  */
4605
- deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
4619
+ deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4606
4620
  /**
4607
4621
  * No description
4608
4622
  *
@@ -4612,7 +4626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4612
4626
  * @request POST:/api/loans/{loanID}/tasks/reminders/outstanding
4613
4627
  * @secure
4614
4628
  */
4615
- sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
4629
+ sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4616
4630
  /**
4617
4631
  * No description
4618
4632
  *
@@ -4622,7 +4636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4622
4636
  * @request GET:/api/loans/{loanId}/users
4623
4637
  * @secure
4624
4638
  */
4625
- getLoanUsers: (loanId: string, params?: RequestParams) => Promise<HttpResponse<LoanUser[], any>>;
4639
+ getLoanUsers: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser[], any>>;
4626
4640
  /**
4627
4641
  * No description
4628
4642
  *
@@ -4632,7 +4646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4632
4646
  * @request GET:/api/loans/{loanId}/users/{userId}
4633
4647
  * @secure
4634
4648
  */
4635
- getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<HttpResponse<LoanUser, any>>;
4649
+ getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
4636
4650
  /**
4637
4651
  * No description
4638
4652
  *
@@ -4642,7 +4656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4642
4656
  * @request POST:/api/loans/{loanId}/users/{userId}
4643
4657
  * @secure
4644
4658
  */
4645
- addLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<HttpResponse<LoanUser, any>>;
4659
+ addLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
4646
4660
  /**
4647
4661
  * No description
4648
4662
  *
@@ -4652,7 +4666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4652
4666
  * @request GET:/api/milestones
4653
4667
  * @secure
4654
4668
  */
4655
- getMilestones: (params?: RequestParams) => Promise<HttpResponse<MilestoneConfigurationResponse[], any>>;
4669
+ getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfigurationResponse[], any>>;
4656
4670
  /**
4657
4671
  * No description
4658
4672
  *
@@ -4662,7 +4676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4662
4676
  * @request POST:/api/milestones
4663
4677
  * @secure
4664
4678
  */
4665
- createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<MilestoneConfigurationResponse, UnprocessableEntityResponse>>;
4679
+ createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfigurationResponse, any>>;
4666
4680
  /**
4667
4681
  * No description
4668
4682
  *
@@ -4672,7 +4686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4672
4686
  * @request GET:/api/milestones/{id}
4673
4687
  * @secure
4674
4688
  */
4675
- getMilestone: (id: string, params?: RequestParams) => Promise<HttpResponse<MilestoneConfigurationResponse, Error>>;
4689
+ getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfigurationResponse, any>>;
4676
4690
  /**
4677
4691
  * No description
4678
4692
  *
@@ -4682,7 +4696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4682
4696
  * @request PUT:/api/milestones/{id}
4683
4697
  * @secure
4684
4698
  */
4685
- replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<MilestoneConfigurationResponse, Error | UnprocessableEntityResponse>>;
4699
+ replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfigurationResponse, any>>;
4686
4700
  /**
4687
4701
  * No description
4688
4702
  *
@@ -4692,7 +4706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4692
4706
  * @request DELETE:/api/milestones/{id}
4693
4707
  * @secure
4694
4708
  */
4695
- deleteMilestone: (id: string, params?: RequestParams) => Promise<HttpResponse<void, Error>>;
4709
+ deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4696
4710
  /**
4697
4711
  * No description
4698
4712
  *
@@ -4702,7 +4716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4702
4716
  * @request POST:/api/notifications
4703
4717
  * @secure
4704
4718
  */
4705
- sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
4719
+ sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4706
4720
  /**
4707
4721
  * No description
4708
4722
  *
@@ -4712,7 +4726,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4712
4726
  * @request POST:/api/notifications/test
4713
4727
  * @secure
4714
4728
  */
4715
- sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
4729
+ sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4716
4730
  /**
4717
4731
  * No description
4718
4732
  *
@@ -4724,7 +4738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4724
4738
  */
4725
4739
  getNotificationTemplates: (query?: {
4726
4740
  showAll?: boolean;
4727
- }, params?: RequestParams) => Promise<HttpResponse<NotificationTemplateBase[], any>>;
4741
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
4728
4742
  /**
4729
4743
  * No description
4730
4744
  *
@@ -4734,7 +4748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4734
4748
  * @request POST:/api/notification-templates
4735
4749
  * @secure
4736
4750
  */
4737
- createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<HttpResponse<NotificationTemplate, UnprocessableEntityResponse>>;
4751
+ createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
4738
4752
  /**
4739
4753
  * No description
4740
4754
  *
@@ -4744,7 +4758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4744
4758
  * @request GET:/api/notification-templates/{id}
4745
4759
  * @secure
4746
4760
  */
4747
- getNotificationTemplate: (id: string, params?: RequestParams) => Promise<HttpResponse<NotificationTemplate, any>>;
4761
+ getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
4748
4762
  /**
4749
4763
  * No description
4750
4764
  *
@@ -4754,7 +4768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4754
4768
  * @request PUT:/api/notification-templates/{id}
4755
4769
  * @secure
4756
4770
  */
4757
- replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<HttpResponse<NotificationTemplate, UnprocessableEntityResponse>>;
4771
+ replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
4758
4772
  /**
4759
4773
  * No description
4760
4774
  *
@@ -4764,7 +4778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4764
4778
  * @request DELETE:/api/notification-templates/{id}
4765
4779
  * @secure
4766
4780
  */
4767
- deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4781
+ deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4768
4782
  /**
4769
4783
  * No description
4770
4784
  *
@@ -4774,7 +4788,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4774
4788
  * @request POST:/api/notification-templates/{id}/restore
4775
4789
  * @secure
4776
4790
  */
4777
- restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<HttpResponse<NotificationTemplate, any>>;
4791
+ restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
4778
4792
  /**
4779
4793
  * No description
4780
4794
  *
@@ -4784,7 +4798,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4784
4798
  * @request GET:/api/notification-templates/{notificationId}/versions
4785
4799
  * @secure
4786
4800
  */
4787
- getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<HttpResponse<NotificationTemplateVersion[], any>>;
4801
+ getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
4788
4802
  /**
4789
4803
  * No description
4790
4804
  *
@@ -4794,7 +4808,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4794
4808
  * @request POST:/api/notification-templates/{notificationId}/versions
4795
4809
  * @secure
4796
4810
  */
4797
- createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<HttpResponse<NotificationTemplateVersion, any>>;
4811
+ createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
4798
4812
  /**
4799
4813
  * No description
4800
4814
  *
@@ -4804,7 +4818,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4804
4818
  * @request GET:/api/notification-templates/{notificationId}/versions/{id}
4805
4819
  * @secure
4806
4820
  */
4807
- getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<HttpResponse<NotificationTemplateVersion, any>>;
4821
+ getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
4808
4822
  /**
4809
4823
  * No description
4810
4824
  *
@@ -4814,7 +4828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4814
4828
  * @request PUT:/api/notification-templates/{notificationId}/versions/{id}
4815
4829
  * @secure
4816
4830
  */
4817
- replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<HttpResponse<NotificationTemplateVersion, any>>;
4831
+ replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
4818
4832
  /**
4819
4833
  * No description
4820
4834
  *
@@ -4824,7 +4838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4824
4838
  * @request DELETE:/api/notification-templates/{notificationId}/versions/{id}
4825
4839
  * @secure
4826
4840
  */
4827
- deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<HttpResponse<NotificationTemplateVersion, any>>;
4841
+ deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
4828
4842
  /**
4829
4843
  * No description
4830
4844
  *
@@ -4843,7 +4857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4843
4857
  pageNumber?: number;
4844
4858
  sortBy?: string;
4845
4859
  sortDirection?: string;
4846
- }, params?: RequestParams) => Promise<HttpResponse<BranchUserPaginatedResponse, any>>;
4860
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginatedResponse, any>>;
4847
4861
  /**
4848
4862
  * No description
4849
4863
  *
@@ -4860,7 +4874,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4860
4874
  pageNumber?: number;
4861
4875
  sortBy?: string;
4862
4876
  sortDirection?: string;
4863
- }, params?: RequestParams) => Promise<HttpResponse<BranchUserPaginatedResponse, any>>;
4877
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginatedResponse, any>>;
4864
4878
  /**
4865
4879
  * No description
4866
4880
  *
@@ -4870,7 +4884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4870
4884
  * @request GET:/api/partners/{id}
4871
4885
  * @secure
4872
4886
  */
4873
- getPartner: (id: string, params?: RequestParams) => Promise<HttpResponse<BranchUser, any>>;
4887
+ getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
4874
4888
  /**
4875
4889
  * No description
4876
4890
  *
@@ -4880,7 +4894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4880
4894
  * @request POST:/api/partners/{realtorId}/site-configurations
4881
4895
  * @secure
4882
4896
  */
4883
- createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
4897
+ createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4884
4898
  /**
4885
4899
  * No description
4886
4900
  *
@@ -4890,7 +4904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4890
4904
  * @request GET:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
4891
4905
  * @secure
4892
4906
  */
4893
- getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationWithInheritedResponse, any>>;
4907
+ getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInheritedResponse, any>>;
4894
4908
  /**
4895
4909
  * No description
4896
4910
  *
@@ -4902,7 +4916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4902
4916
  */
4903
4917
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
4904
4918
  applyToChildren?: boolean;
4905
- }, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
4919
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4906
4920
  /**
4907
4921
  * No description
4908
4922
  *
@@ -4912,7 +4926,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4912
4926
  * @request POST:/api/pricing/calculator
4913
4927
  * @secure
4914
4928
  */
4915
- getPricingCalculation: (data: GetPricingCalculationRequest, params?: RequestParams) => Promise<HttpResponse<GetPricingForLoanOfficerResponse, UnprocessableEntityResponse>>;
4929
+ getPricingCalculation: (data: GetPricingCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<GetPricingForLoanOfficerResponse, any>>;
4916
4930
  /**
4917
4931
  * No description
4918
4932
  *
@@ -4922,7 +4936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4922
4936
  * @request GET:/api/request-queues
4923
4937
  * @secure
4924
4938
  */
4925
- getRequestQueues: (params?: RequestParams) => Promise<HttpResponse<RequestQueue[], any>>;
4939
+ getRequestQueues: (params?: RequestParams) => Promise<AxiosResponse<RequestQueue[], any>>;
4926
4940
  /**
4927
4941
  * No description
4928
4942
  *
@@ -4935,7 +4949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4935
4949
  runRequestQueue: (id: string, query?: {
4936
4950
  /** @default false */
4937
4951
  force?: boolean;
4938
- }, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4952
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4939
4953
  /**
4940
4954
  * No description
4941
4955
  *
@@ -4945,7 +4959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4945
4959
  * @request DELETE:/api/request-queues/{id}
4946
4960
  * @secure
4947
4961
  */
4948
- deleteQueueRequest: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4962
+ deleteQueueRequest: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4949
4963
  /**
4950
4964
  * No description
4951
4965
  *
@@ -4955,7 +4969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4955
4969
  * @request POST:/api/selfprovisioning/newcustomer
4956
4970
  * @secure
4957
4971
  */
4958
- createSelfProvisioningItem: (data: any, params?: RequestParams) => Promise<HttpResponse<void, any>>;
4972
+ createSelfProvisioningItem: (data: any, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4959
4973
  /**
4960
4974
  * No description
4961
4975
  *
@@ -4965,7 +4979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4965
4979
  * @request GET:/api/site-configurations/{id}
4966
4980
  * @secure
4967
4981
  */
4968
- getSiteConfiguration: (id: string, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, any>>;
4982
+ getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4969
4983
  /**
4970
4984
  * No description
4971
4985
  *
@@ -4976,7 +4990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4976
4990
  * @deprecated
4977
4991
  * @secure
4978
4992
  */
4979
- searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationByUrl, UnprocessableEntityResponse>>;
4993
+ searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
4980
4994
  /**
4981
4995
  * No description
4982
4996
  *
@@ -4988,7 +5002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4988
5002
  */
4989
5003
  getSiteConfigurationByUrl: (query?: {
4990
5004
  url?: string;
4991
- }, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationByUrl, UnprocessableEntityResponse>>;
5005
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
4992
5006
  /**
4993
5007
  * No description
4994
5008
  *
@@ -4999,7 +5013,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4999
5013
  * @deprecated
5000
5014
  * @secure
5001
5015
  */
5002
- searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
5016
+ searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5003
5017
  /**
5004
5018
  * No description
5005
5019
  *
@@ -5009,7 +5023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5009
5023
  * @request GET:/api/site-configurations/louser/{loUserId}
5010
5024
  * @secure
5011
5025
  */
5012
- getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<HttpResponse<SiteConfiguration, UnprocessableEntityResponse>>;
5026
+ getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5013
5027
  /**
5014
5028
  * No description
5015
5029
  *
@@ -5026,7 +5040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5026
5040
  pageNumber?: number;
5027
5041
  sortBy?: string;
5028
5042
  sortDirection?: string;
5029
- }, params?: RequestParams) => Promise<HttpResponse<SiteConfigurationPaginatedResponse, UnprocessableEntityResponse>>;
5043
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationPaginatedResponse, any>>;
5030
5044
  /**
5031
5045
  * No description
5032
5046
  *
@@ -5036,7 +5050,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5036
5050
  * @request GET:/api/site-configurations/{id}/forms
5037
5051
  * @secure
5038
5052
  */
5039
- getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<HttpResponse<AdminAccessGetForms[], any>>;
5053
+ getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
5040
5054
  /**
5041
5055
  * No description
5042
5056
  *
@@ -5046,7 +5060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5046
5060
  * @request GET:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
5047
5061
  * @secure
5048
5062
  */
5049
- getSamlMetadata: (ssoIntegration: string, params?: RequestParams) => Promise<HttpResponse<string, any>>;
5063
+ getSamlMetadata: (ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5050
5064
  /**
5051
5065
  * No description
5052
5066
  *
@@ -5056,7 +5070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5056
5070
  * @request POST:/api/site-forms
5057
5071
  * @secure
5058
5072
  */
5059
- getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<HttpResponse<GetForm, any>>;
5073
+ getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
5060
5074
  /**
5061
5075
  * No description
5062
5076
  *
@@ -5066,7 +5080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5066
5080
  * @request GET:/api/site-forms
5067
5081
  * @secure
5068
5082
  */
5069
- getSiteForms: (params?: RequestParams) => Promise<HttpResponse<SiteConfigurationForm[], any>>;
5083
+ getSiteForms: (params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
5070
5084
  /**
5071
5085
  * No description
5072
5086
  *
@@ -5079,7 +5093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5079
5093
  getSurveysByUsers: (query?: {
5080
5094
  /** @format int32 */
5081
5095
  limit?: number;
5082
- }, params?: RequestParams) => Promise<HttpResponse<SocialSurveyRecord[], any>>;
5096
+ }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
5083
5097
  /**
5084
5098
  * No description
5085
5099
  *
@@ -5089,7 +5103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5089
5103
  * @request POST:/api/surveys
5090
5104
  * @secure
5091
5105
  */
5092
- getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<HttpResponse<SocialSurveyRecord[], UnprocessableEntityResponse>>;
5106
+ getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
5093
5107
  /**
5094
5108
  * No description
5095
5109
  *
@@ -5106,7 +5120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5106
5120
  pageNumber?: number;
5107
5121
  sortBy?: string;
5108
5122
  sortDirection?: string;
5109
- }, params?: RequestParams) => Promise<HttpResponse<Task, ProblemDetails>>;
5123
+ }, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
5110
5124
  /**
5111
5125
  * No description
5112
5126
  *
@@ -5116,7 +5130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5116
5130
  * @request POST:/api/tasks
5117
5131
  * @secure
5118
5132
  */
5119
- createTask: (data: TaskRequest, params?: RequestParams) => Promise<HttpResponse<Task, any>>;
5133
+ createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
5120
5134
  /**
5121
5135
  * No description
5122
5136
  *
@@ -5126,7 +5140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5126
5140
  * @request GET:/api/tasks/{id}
5127
5141
  * @secure
5128
5142
  */
5129
- getTask: (id: string, params?: RequestParams) => Promise<HttpResponse<Task, ProblemDetails>>;
5143
+ getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
5130
5144
  /**
5131
5145
  * No description
5132
5146
  *
@@ -5136,7 +5150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5136
5150
  * @request PUT:/api/tasks/{id}
5137
5151
  * @secure
5138
5152
  */
5139
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
5153
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5140
5154
  /**
5141
5155
  * No description
5142
5156
  *
@@ -5146,7 +5160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5146
5160
  * @request DELETE:/api/tasks/{id}
5147
5161
  * @secure
5148
5162
  */
5149
- deleteTask: (id: string, params?: RequestParams) => Promise<HttpResponse<void, ProblemDetails>>;
5163
+ deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5150
5164
  /**
5151
5165
  * No description
5152
5166
  *
@@ -5163,7 +5177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5163
5177
  pageNumber?: number;
5164
5178
  sortBy?: string;
5165
5179
  sortDirection?: string;
5166
- }, params?: RequestParams) => Promise<HttpResponse<Task[], any>>;
5180
+ }, params?: RequestParams) => Promise<AxiosResponse<Task[], any>>;
5167
5181
  /**
5168
5182
  * No description
5169
5183
  *
@@ -5173,7 +5187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5173
5187
  * @request POST:/api/users/impersonation/request
5174
5188
  * @secure
5175
5189
  */
5176
- requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<HttpResponse<void, Error | UnprocessableEntityResponse>>;
5190
+ requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5177
5191
  /**
5178
5192
  * No description
5179
5193
  *
@@ -5183,7 +5197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5183
5197
  * @request POST:/api/users/impersonation/allow
5184
5198
  * @secure
5185
5199
  */
5186
- allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<HttpResponse<void, Error | UnprocessableEntityResponse>>;
5200
+ allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5187
5201
  /**
5188
5202
  * No description
5189
5203
  *
@@ -5193,7 +5207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5193
5207
  * @request POST:/api/users/impersonation/allow/{allowToken}
5194
5208
  * @secure
5195
5209
  */
5196
- allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<HttpResponse<void, Error | UnprocessableEntityResponse>>;
5210
+ allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5197
5211
  /**
5198
5212
  * No description
5199
5213
  *
@@ -5203,7 +5217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5203
5217
  * @request POST:/api/users/impersonation
5204
5218
  * @secure
5205
5219
  */
5206
- beginImpersonation: (params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5220
+ beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5207
5221
  /**
5208
5222
  * No description
5209
5223
  *
@@ -5213,7 +5227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5213
5227
  * @request DELETE:/api/users/impersonation
5214
5228
  * @secure
5215
5229
  */
5216
- stopImpersonation: (params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5230
+ stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5217
5231
  /**
5218
5232
  * No description
5219
5233
  *
@@ -5223,7 +5237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5223
5237
  * @request POST:/api/users/impersonation/force
5224
5238
  * @secure
5225
5239
  */
5226
- forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<HttpResponse<void, Error | UnprocessableEntityResponse>>;
5240
+ forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5227
5241
  /**
5228
5242
  * No description
5229
5243
  *
@@ -5233,7 +5247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5233
5247
  * @request POST:/api/users/impersonation/extend
5234
5248
  * @secure
5235
5249
  */
5236
- extendImpersonation: (params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5250
+ extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5237
5251
  /**
5238
5252
  * No description
5239
5253
  *
@@ -5243,7 +5257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5243
5257
  * @request POST:/api/users/invites
5244
5258
  * @secure
5245
5259
  */
5246
- inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5260
+ inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5247
5261
  /**
5248
5262
  * No description
5249
5263
  *
@@ -5253,7 +5267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5253
5267
  * @request GET:/api/users/invites/{token}/verify
5254
5268
  * @secure
5255
5269
  */
5256
- verifyUserInvite: (token: string, params?: RequestParams) => Promise<HttpResponse<InviteResponse, UnprocessableEntityResponse>>;
5270
+ verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<InviteResponse, any>>;
5257
5271
  /**
5258
5272
  * No description
5259
5273
  *
@@ -5263,7 +5277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5263
5277
  * @request GET:/api/users/{userID}/relations
5264
5278
  * @secure
5265
5279
  */
5266
- getUserRelations: (userId: string, params?: RequestParams) => Promise<HttpResponse<UserRelationResponse[], any>>;
5280
+ getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelationResponse[], any>>;
5267
5281
  /**
5268
5282
  * No description
5269
5283
  *
@@ -5273,7 +5287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5273
5287
  * @request POST:/api/users/{userID}/relations
5274
5288
  * @secure
5275
5289
  */
5276
- createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<HttpResponse<void, any>>;
5290
+ createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5277
5291
  /**
5278
5292
  * No description
5279
5293
  *
@@ -5283,7 +5297,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5283
5297
  * @request GET:/api/users/{userID}/relations/{id}
5284
5298
  * @secure
5285
5299
  */
5286
- getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<HttpResponse<UserRelationResponse, any>>;
5300
+ getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelationResponse, any>>;
5287
5301
  /**
5288
5302
  * No description
5289
5303
  *
@@ -5293,7 +5307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5293
5307
  * @request DELETE:/api/users/{userID}/relations/{id}
5294
5308
  * @secure
5295
5309
  */
5296
- deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
5310
+ deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5297
5311
  /**
5298
5312
  * No description
5299
5313
  *
@@ -5310,7 +5324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5310
5324
  pageNumber?: number;
5311
5325
  sortBy?: string;
5312
5326
  sortDirection?: string;
5313
- }, params?: RequestParams) => Promise<HttpResponse<User[], any>>;
5327
+ }, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
5314
5328
  /**
5315
5329
  * No description
5316
5330
  *
@@ -5320,7 +5334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5320
5334
  * @request POST:/api/users
5321
5335
  * @secure
5322
5336
  */
5323
- createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<HttpResponse<DetailedUser, UnprocessableEntityResponse>>;
5337
+ createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
5324
5338
  /**
5325
5339
  * No description
5326
5340
  *
@@ -5337,7 +5351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5337
5351
  pageNumber?: number;
5338
5352
  sortBy?: string;
5339
5353
  sortDirection?: string;
5340
- }, params?: RequestParams) => Promise<HttpResponse<UserPaginatedResponse, any>>;
5354
+ }, params?: RequestParams) => Promise<AxiosResponse<UserPaginatedResponse, any>>;
5341
5355
  /**
5342
5356
  * No description
5343
5357
  *
@@ -5347,7 +5361,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5347
5361
  * @request POST:/api/users/byemail
5348
5362
  * @secure
5349
5363
  */
5350
- getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<HttpResponse<AdminAccessUser, any>>;
5364
+ getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
5351
5365
  /**
5352
5366
  * No description
5353
5367
  *
@@ -5357,7 +5371,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5357
5371
  * @request POST:/api/users/register
5358
5372
  * @secure
5359
5373
  */
5360
- signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5374
+ signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5361
5375
  /**
5362
5376
  * No description
5363
5377
  *
@@ -5367,7 +5381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5367
5381
  * @request PUT:/api/users/{id}
5368
5382
  * @secure
5369
5383
  */
5370
- replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<HttpResponse<DetailedUser, UnprocessableEntityResponse>>;
5384
+ replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
5371
5385
  /**
5372
5386
  * No description
5373
5387
  *
@@ -5380,7 +5394,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5380
5394
  deleteUser: (id: string, query?: {
5381
5395
  /** @default false */
5382
5396
  permanent?: boolean;
5383
- }, params?: RequestParams) => Promise<HttpResponse<void, any>>;
5397
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5384
5398
  /**
5385
5399
  * No description
5386
5400
  *
@@ -5390,7 +5404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5390
5404
  * @request POST:/api/users/{id}/restore
5391
5405
  * @secure
5392
5406
  */
5393
- restoreUser: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
5407
+ restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5394
5408
  /**
5395
5409
  * No description
5396
5410
  *
@@ -5400,7 +5414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5400
5414
  * @request POST:/api/users/change-password
5401
5415
  * @secure
5402
5416
  */
5403
- changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5417
+ changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5404
5418
  /**
5405
5419
  * No description
5406
5420
  *
@@ -5410,7 +5424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5410
5424
  * @request POST:/api/users/verify-password
5411
5425
  * @secure
5412
5426
  */
5413
- verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5427
+ verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5414
5428
  /**
5415
5429
  * No description
5416
5430
  *
@@ -5420,7 +5434,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5420
5434
  * @request POST:/api/users/{id}/override-password
5421
5435
  * @secure
5422
5436
  */
5423
- overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5437
+ overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5424
5438
  /**
5425
5439
  * No description
5426
5440
  *
@@ -5430,7 +5444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5430
5444
  * @request POST:/api/users/forgot-password
5431
5445
  * @secure
5432
5446
  */
5433
- forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5447
+ forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5434
5448
  /**
5435
5449
  * No description
5436
5450
  *
@@ -5440,7 +5454,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5440
5454
  * @request POST:/api/users/mobile-phone/send-code
5441
5455
  * @secure
5442
5456
  */
5443
- sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5457
+ sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5444
5458
  /**
5445
5459
  * No description
5446
5460
  *
@@ -5450,7 +5464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5450
5464
  * @request PUT:/api/users/mobile-phone/verify-code
5451
5465
  * @secure
5452
5466
  */
5453
- verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<HttpResponse<void, UnprocessableEntityResponse>>;
5467
+ verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5454
5468
  /**
5455
5469
  * No description
5456
5470
  *
@@ -5460,7 +5474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5460
5474
  * @request GET:/api/users/me
5461
5475
  * @secure
5462
5476
  */
5463
- getMe: (params?: RequestParams) => Promise<HttpResponse<DetailedUser, any>>;
5477
+ getMe: (params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
5464
5478
  /**
5465
5479
  * No description
5466
5480
  *
@@ -5470,7 +5484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5470
5484
  * @request PUT:/api/users/me
5471
5485
  * @secure
5472
5486
  */
5473
- replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<HttpResponse<DetailedUser, any>>;
5487
+ replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
5474
5488
  /**
5475
5489
  * @description Update the phone number If changed will send a verification code to the new number
5476
5490
  *
@@ -5480,7 +5494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5480
5494
  * @request PUT:/api/users/me/phone-number
5481
5495
  * @secure
5482
5496
  */
5483
- updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<HttpResponse<DetailedUser, any>>;
5497
+ updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
5484
5498
  /**
5485
5499
  * No description
5486
5500
  *
@@ -5490,7 +5504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5490
5504
  * @request GET:/api/users/me/relationships
5491
5505
  * @secure
5492
5506
  */
5493
- getMyRelationships: (params?: RequestParams) => Promise<HttpResponse<UserRelationship[], any>>;
5507
+ getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
5494
5508
  /**
5495
5509
  * No description
5496
5510
  *
@@ -5500,7 +5514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5500
5514
  * @request GET:/api/users/me/relationships/prospects
5501
5515
  * @secure
5502
5516
  */
5503
- getMyRelationshipProspects: (params?: RequestParams) => Promise<HttpResponse<UserRelationshipProspect[], any>>;
5517
+ getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
5504
5518
  /**
5505
5519
  * No description
5506
5520
  *
@@ -5510,7 +5524,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5510
5524
  * @request DELETE:/api/users/me/relationships/prospects/{id}
5511
5525
  * @secure
5512
5526
  */
5513
- deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<HttpResponse<void, any>>;
5527
+ deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5514
5528
  /**
5515
5529
  * No description
5516
5530
  *
@@ -5520,7 +5534,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5520
5534
  * @request POST:/api/users/me/delete
5521
5535
  * @secure
5522
5536
  */
5523
- deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<HttpResponse<void, any>>;
5537
+ deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5524
5538
  /**
5525
5539
  * No description
5526
5540
  *
@@ -5530,7 +5544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5530
5544
  * @request POST:/api/verifications/verify
5531
5545
  * @secure
5532
5546
  */
5533
- verify: (data: VerificationRequest, params?: RequestParams) => Promise<HttpResponse<VerificationResponse, UnprocessableEntityResponse>>;
5547
+ verify: (data: VerificationRequest, params?: RequestParams) => Promise<AxiosResponse<VerificationResponse, any>>;
5534
5548
  /**
5535
5549
  * No description
5536
5550
  *
@@ -5540,7 +5554,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5540
5554
  * @request POST:/api/verifications/status
5541
5555
  * @secure
5542
5556
  */
5543
- getVerificationStatus: (data: VerificationRequest, params?: RequestParams) => Promise<HttpResponse<VerificationResponse, UnprocessableEntityResponse>>;
5557
+ getVerificationStatus: (data: VerificationRequest, params?: RequestParams) => Promise<AxiosResponse<VerificationResponse, any>>;
5544
5558
  /**
5545
5559
  * No description
5546
5560
  *
@@ -5550,7 +5564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5550
5564
  * @request GET:/api/verifications/frontend-materials/{requestId}
5551
5565
  * @secure
5552
5566
  */
5553
- getVerificationFrontEndMaterials: (requestId: string, params?: RequestParams) => Promise<HttpResponse<VerificationResponse, UnprocessableEntityResponse>>;
5567
+ getVerificationFrontEndMaterials: (requestId: string, params?: RequestParams) => Promise<AxiosResponse<VerificationResponse, any>>;
5554
5568
  /**
5555
5569
  * No description
5556
5570
  *
@@ -5560,7 +5574,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5560
5574
  * @request POST:/api/workflow
5561
5575
  * @secure
5562
5576
  */
5563
- getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<HttpResponse<GetForm, any>>;
5577
+ getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
5564
5578
  };
5565
5579
  }
5566
- export {};