@matech/thebigpos-sdk 2.22.4-rc1 → 2.23.1-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
@@ -9,6 +9,7 @@ export type LoanQueueReason = "Unknown" | "Locked" | "LOSError" | "Exception";
9
9
  export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification";
10
10
  export type LoanImportStatus = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
11
11
  export type LoanImportMode = "All" | "NewOnly" | "UpdateOnly";
12
+ export type LoanAccessScopeType = "User" | "Branch";
12
13
  export type LOSStatus = "Unknown" | "Pending" | "Retrying" | "Successful" | "Failed" | "FailedPermanently";
13
14
  export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
14
15
  export type Environment = "Development" | "Staging" | "UAT" | "Production";
@@ -16,7 +17,6 @@ export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "R
16
17
  export type BranchType = "Mortgage" | "RealEstate";
17
18
  export type BorrowerType = "Borrower" | "CoBorrower" | "Unknown";
18
19
  export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
19
- export type AccessScopeType = "User" | "Branch";
20
20
  export interface ASOSettings {
21
21
  enabled: boolean;
22
22
  softPull: boolean;
@@ -359,6 +359,12 @@ export interface BranchSearchCriteria {
359
359
  brands?: string[] | null;
360
360
  type?: string | null;
361
361
  }
362
+ export interface BranchSummary {
363
+ /** @format uuid */
364
+ id: string;
365
+ name: string;
366
+ type: string;
367
+ }
362
368
  export interface BranchUser {
363
369
  /** @format date-time */
364
370
  createdAt?: string | null;
@@ -1894,7 +1900,7 @@ export interface LoanUser {
1894
1900
  export interface LosLoanCreationRequest {
1895
1901
  loanOfficerUserName?: string | null;
1896
1902
  loanTemplate?: string | null;
1897
- additionalFields: Record<string, string>;
1903
+ additionalFields: Record<string, string | null>;
1898
1904
  folder?: string | null;
1899
1905
  /** @format int32 */
1900
1906
  borrowerPair: number;
@@ -2153,7 +2159,7 @@ export interface NotificationTemplateVersionUpdateRequest {
2153
2159
  }
2154
2160
  export interface Operation {
2155
2161
  op?: string;
2156
- value?: object | null;
2162
+ value?: string | number | boolean | null | object;
2157
2163
  path?: string;
2158
2164
  }
2159
2165
  export interface OverridePasswordRequest {
@@ -2521,18 +2527,6 @@ export interface SendNotificationForLoanRequest {
2521
2527
  phone?: string | null;
2522
2528
  attachments: Attachment[];
2523
2529
  }
2524
- export interface SimpleBranch {
2525
- /** @format uuid */
2526
- id: string;
2527
- name: string;
2528
- type: string;
2529
- }
2530
- export interface SimpleUser {
2531
- /** @format uuid */
2532
- id: string;
2533
- name?: string | null;
2534
- email?: string | null;
2535
- }
2536
2530
  export interface SiteConfiguration {
2537
2531
  /** @format date-time */
2538
2532
  createdAt?: string | null;
@@ -3553,11 +3547,8 @@ export interface UserDraftPaginated {
3553
3547
  export interface UserGroup {
3554
3548
  /** @format uuid */
3555
3549
  id: string;
3556
- /** @format uuid */
3557
- accountID: string;
3558
3550
  name: string;
3559
3551
  description?: string | null;
3560
- isDeleted: boolean;
3561
3552
  /** @format date-time */
3562
3553
  createdAt: string;
3563
3554
  /** @format date-time */
@@ -3573,8 +3564,8 @@ export interface UserGroupAccessScope {
3573
3564
  userId?: string | null;
3574
3565
  /** @format uuid */
3575
3566
  branchId?: string | null;
3576
- user?: SimpleUser | null;
3577
- branch?: SimpleBranch | null;
3567
+ user?: UserSummary | null;
3568
+ branch?: BranchSummary | null;
3578
3569
  }
3579
3570
  export interface UserGroupMember {
3580
3571
  /** @format uuid */
@@ -3584,7 +3575,7 @@ export interface UserGroupMember {
3584
3575
  /** @format uuid */
3585
3576
  userId: string;
3586
3577
  loanRole: string;
3587
- user: SimpleUser;
3578
+ user: UserSummary;
3588
3579
  }
3589
3580
  export interface UserGroupPaginated {
3590
3581
  rows: UserGroup[];
@@ -3649,11 +3640,13 @@ export interface UserNotificationSettings {
3649
3640
  emailEnabled: boolean;
3650
3641
  textEnabled: boolean;
3651
3642
  textOptIn?: boolean | null;
3643
+ pushEnabled: boolean;
3652
3644
  }
3653
3645
  export interface UserNotificationSettingsUpdateRequest {
3654
3646
  emailEnabled: boolean;
3655
3647
  textEnabled: boolean;
3656
3648
  textOptIn?: boolean | null;
3649
+ pushEnabled: boolean;
3657
3650
  }
3658
3651
  export interface UserPaginated {
3659
3652
  rows: User[];
@@ -3727,6 +3720,12 @@ export interface UserSearchCriteria {
3727
3720
  isActive?: boolean | null;
3728
3721
  roles?: string[] | null;
3729
3722
  }
3723
+ export interface UserSummary {
3724
+ /** @format uuid */
3725
+ id: string;
3726
+ name?: string | null;
3727
+ email?: string | null;
3728
+ }
3730
3729
  export interface VerifyPasswordRequest {
3731
3730
  /**
3732
3731
  * @format email
@@ -3781,6 +3780,7 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
3781
3780
  format?: ResponseType;
3782
3781
  }
3783
3782
  export declare enum ContentType {
3783
+ JsonPatch = "application/json-patch+json",
3784
3784
  Json = "application/json",
3785
3785
  JsonApi = "application/vnd.api+json",
3786
3786
  FormData = "multipart/form-data",
@@ -3802,7 +3802,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
3802
3802
  }
3803
3803
  /**
3804
3804
  * @title The Big POS API
3805
- * @version v2.22.1
3805
+ * @version v2.23.0
3806
3806
  * @termsOfService https://www.thebigpos.com/terms-of-use/
3807
3807
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
3808
3808
  */
@@ -3814,7 +3814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3814
3814
  * @name PostRoot
3815
3815
  * @request POST:/
3816
3816
  * @secure
3817
- * @response `200` `void` OK
3817
+ * @response `200` `void` Success
3818
3818
  */
3819
3819
  postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3820
3820
  /**
@@ -3824,7 +3824,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3824
3824
  * @name GetRoot
3825
3825
  * @request GET:/
3826
3826
  * @secure
3827
- * @response `200` `string` OK
3827
+ * @response `200` `string` Success
3828
3828
  */
3829
3829
  getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
3830
3830
  api: {
@@ -3836,7 +3836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3836
3836
  * @summary Get
3837
3837
  * @request GET:/api/account
3838
3838
  * @secure
3839
- * @response `200` `Account` OK
3839
+ * @response `200` `Account` Success
3840
3840
  * @response `404` `ProblemDetails` Not Found
3841
3841
  */
3842
3842
  getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
@@ -3848,9 +3848,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3848
3848
  * @summary Replace
3849
3849
  * @request PUT:/api/account
3850
3850
  * @secure
3851
- * @response `200` `Account` OK
3851
+ * @response `200` `Account` Success
3852
3852
  * @response `404` `ProblemDetails` Not Found
3853
- * @response `422` `ProblemDetails` Unprocessable Content
3853
+ * @response `422` `ProblemDetails` Client Error
3854
3854
  */
3855
3855
  replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
3856
3856
  /**
@@ -3861,7 +3861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3861
3861
  * @summary Get Site Configuration
3862
3862
  * @request GET:/api/account/site-configurations
3863
3863
  * @secure
3864
- * @response `200` `SiteConfiguration` OK
3864
+ * @response `200` `SiteConfiguration` Success
3865
3865
  */
3866
3866
  getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
3867
3867
  /**
@@ -3872,8 +3872,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3872
3872
  * @summary Update Site Configuration
3873
3873
  * @request PUT:/api/account/site-configurations
3874
3874
  * @secure
3875
- * @response `200` `SiteConfiguration` OK
3876
- * @response `422` `UnprocessableEntity` Unprocessable Content
3875
+ * @response `200` `SiteConfiguration` Success
3876
+ * @response `422` `UnprocessableEntity` Client Error
3877
3877
  */
3878
3878
  updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
3879
3879
  /**
@@ -3884,7 +3884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3884
3884
  * @summary Get All
3885
3885
  * @request GET:/api/accounts
3886
3886
  * @secure
3887
- * @response `200` `(Account)[]` OK
3887
+ * @response `200` `(Account)[]` Success
3888
3888
  */
3889
3889
  getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
3890
3890
  /**
@@ -3896,7 +3896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3896
3896
  * @request POST:/api/accounts
3897
3897
  * @secure
3898
3898
  * @response `201` `Account` Created
3899
- * @response `422` `ProblemDetails` Unprocessable Content
3899
+ * @response `422` `ProblemDetails` Client Error
3900
3900
  */
3901
3901
  createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
3902
3902
  /**
@@ -3908,7 +3908,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3908
3908
  * @request GET:/api/accounts/{id}
3909
3909
  * @secure
3910
3910
  * @response `201` `Account` Created
3911
- * @response `422` `ProblemDetails` Unprocessable Content
3911
+ * @response `422` `ProblemDetails` Client Error
3912
3912
  */
3913
3913
  getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
3914
3914
  /**
@@ -3921,7 +3921,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3921
3921
  * @secure
3922
3922
  * @response `204` `Account` No Content
3923
3923
  * @response `404` `ProblemDetails` Not Found
3924
- * @response `422` `ProblemDetails` Unprocessable Content
3924
+ * @response `422` `ProblemDetails` Client Error
3925
3925
  */
3926
3926
  deleteAccount: (id: string, query?: {
3927
3927
  /** @default false */
@@ -3935,9 +3935,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3935
3935
  * @summary Update Loans
3936
3936
  * @request PUT:/api/accounts/{id}/loan
3937
3937
  * @secure
3938
- * @response `200` `void` OK
3938
+ * @response `200` `void` Success
3939
3939
  * @response `404` `ProblemDetails` Not Found
3940
- * @response `422` `UnprocessableEntity` Unprocessable Content
3940
+ * @response `422` `UnprocessableEntity` Client Error
3941
3941
  */
3942
3942
  updateLoansByAccount: (id: string, data: Loan[], params?: RequestParams) => Promise<AxiosResponse<void, any>>;
3943
3943
  /**
@@ -3948,7 +3948,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3948
3948
  * @summary Get Loans
3949
3949
  * @request GET:/api/accounts/{id}/loan
3950
3950
  * @secure
3951
- * @response `200` `(Loan)[]` OK
3951
+ * @response `200` `(Loan)[]` Success
3952
3952
  * @response `404` `ProblemDetails` Not Found
3953
3953
  */
3954
3954
  getLoansByAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Loan[], any>>;
@@ -3960,8 +3960,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3960
3960
  * @summary Generate Token From Refresh Token
3961
3961
  * @request POST:/api/refresh-token
3962
3962
  * @secure
3963
- * @response `200` `Token` OK
3964
- * @response `422` `UnprocessableEntity` Unprocessable Content
3963
+ * @response `200` `Token` Success
3964
+ * @response `422` `UnprocessableEntity` Client Error
3965
3965
  */
3966
3966
  getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
3967
3967
  /**
@@ -3972,8 +3972,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3972
3972
  * @summary Get Token
3973
3973
  * @request POST:/api/token
3974
3974
  * @secure
3975
- * @response `200` `Token` OK
3976
- * @response `422` `UnprocessableEntity` Unprocessable Content
3975
+ * @response `200` `Token` Success
3976
+ * @response `422` `UnprocessableEntity` Client Error
3977
3977
  */
3978
3978
  getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
3979
3979
  /**
@@ -3984,8 +3984,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3984
3984
  * @summary Get Token From Challenge Code
3985
3985
  * @request POST:/api/token/code
3986
3986
  * @secure
3987
- * @response `200` `Token` OK
3988
- * @response `422` `UnprocessableEntity` Unprocessable Content
3987
+ * @response `200` `Token` Success
3988
+ * @response `422` `UnprocessableEntity` Client Error
3989
3989
  */
3990
3990
  getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
3991
3991
  /**
@@ -3996,8 +3996,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3996
3996
  * @summary Get System Token
3997
3997
  * @request POST:/api/oauth2/token
3998
3998
  * @secure
3999
- * @response `200` `Token` OK
4000
- * @response `422` `UnprocessableEntity` Unprocessable Content
3999
+ * @response `200` `Token` Success
4000
+ * @response `422` `UnprocessableEntity` Client Error
4001
4001
  */
4002
4002
  getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
4003
4003
  /**
@@ -4008,8 +4008,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4008
4008
  * @summary Get SSO Guid Token
4009
4009
  * @request POST:/api/token/sso
4010
4010
  * @secure
4011
- * @response `200` `SSOToken` OK
4012
- * @response `422` `UnprocessableEntity` Unprocessable Content
4011
+ * @response `200` `SSOToken` Success
4012
+ * @response `422` `UnprocessableEntity` Client Error
4013
4013
  */
4014
4014
  getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
4015
4015
  /**
@@ -4020,7 +4020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4020
4020
  * @summary Get All
4021
4021
  * @request GET:/api/branches
4022
4022
  * @secure
4023
- * @response `200` `GetBranchPaginated` OK
4023
+ * @response `200` `GetBranchPaginated` Success
4024
4024
  */
4025
4025
  getBranches: (query?: {
4026
4026
  showAll?: boolean;
@@ -4039,8 +4039,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4039
4039
  * @summary Create
4040
4040
  * @request POST:/api/branches
4041
4041
  * @secure
4042
- * @response `200` `GetBranch` OK
4043
- * @response `422` `UnprocessableEntity` Unprocessable Content
4042
+ * @response `200` `GetBranch` Success
4043
+ * @response `422` `UnprocessableEntity` Client Error
4044
4044
  */
4045
4045
  createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
4046
4046
  /**
@@ -4051,7 +4051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4051
4051
  * @summary Search
4052
4052
  * @request POST:/api/branches/search
4053
4053
  * @secure
4054
- * @response `200` `GetBranchPaginated` OK
4054
+ * @response `200` `GetBranchPaginated` Success
4055
4055
  */
4056
4056
  searchBranches: (data: BranchSearchCriteria, query?: {
4057
4057
  /** @format int32 */
@@ -4069,7 +4069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4069
4069
  * @summary Get by ID
4070
4070
  * @request GET:/api/branches/{branchId}
4071
4071
  * @secure
4072
- * @response `200` `GetBranch` OK
4072
+ * @response `200` `GetBranch` Success
4073
4073
  */
4074
4074
  getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
4075
4075
  /**
@@ -4080,8 +4080,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4080
4080
  * @summary Replace
4081
4081
  * @request PUT:/api/branches/{branchId}
4082
4082
  * @secure
4083
- * @response `200` `GetBranch` OK
4084
- * @response `422` `UnprocessableEntity` Unprocessable Content
4083
+ * @response `200` `GetBranch` Success
4084
+ * @response `422` `UnprocessableEntity` Client Error
4085
4085
  */
4086
4086
  replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
4087
4087
  /**
@@ -4115,8 +4115,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4115
4115
  * @summary Create Branch Site Configuration
4116
4116
  * @request POST:/api/branches/{branchId}/site-configurations
4117
4117
  * @secure
4118
- * @response `200` `SiteConfiguration` OK
4119
- * @response `422` `UnprocessableEntity` Unprocessable Content
4118
+ * @response `200` `SiteConfiguration` Success
4119
+ * @response `422` `UnprocessableEntity` Client Error
4120
4120
  */
4121
4121
  createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4122
4122
  /**
@@ -4127,7 +4127,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4127
4127
  * @summary Get Branch Site Configuration
4128
4128
  * @request GET:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
4129
4129
  * @secure
4130
- * @response `200` `SiteConfigurationWithInherited` OK
4130
+ * @response `200` `SiteConfigurationWithInherited` Success
4131
4131
  */
4132
4132
  getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
4133
4133
  /**
@@ -4138,8 +4138,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4138
4138
  * @summary Replace Branch Site Configuration
4139
4139
  * @request PUT:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
4140
4140
  * @secure
4141
- * @response `200` `SiteConfiguration` OK
4142
- * @response `422` `UnprocessableEntity` Unprocessable Content
4141
+ * @response `200` `SiteConfiguration` Success
4142
+ * @response `422` `UnprocessableEntity` Client Error
4143
4143
  */
4144
4144
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
4145
4145
  applyToChildren?: boolean;
@@ -4152,7 +4152,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4152
4152
  * @summary Get Branch Loan Officers
4153
4153
  * @request GET:/api/branches/{branchId}/loan-officers
4154
4154
  * @secure
4155
- * @response `200` `LoanOfficerPublic` OK
4155
+ * @response `200` `LoanOfficerPublic` Success
4156
4156
  */
4157
4157
  getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
4158
4158
  /**
@@ -4163,7 +4163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4163
4163
  * @summary Get All
4164
4164
  * @request GET:/api/business-rules
4165
4165
  * @secure
4166
- * @response `200` `(BusinessRule)[]` OK
4166
+ * @response `200` `(BusinessRule)[]` Success
4167
4167
  */
4168
4168
  getBusinessRules: (query?: {
4169
4169
  showAll?: boolean;
@@ -4176,8 +4176,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4176
4176
  * @summary Create
4177
4177
  * @request POST:/api/business-rules
4178
4178
  * @secure
4179
- * @response `200` `BusinessRule` OK
4180
- * @response `422` `UnprocessableEntity` Unprocessable Content
4179
+ * @response `200` `BusinessRule` Success
4180
+ * @response `422` `UnprocessableEntity` Client Error
4181
4181
  */
4182
4182
  createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
4183
4183
  /**
@@ -4188,7 +4188,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4188
4188
  * @summary Get by ID
4189
4189
  * @request GET:/api/business-rules/{id}
4190
4190
  * @secure
4191
- * @response `200` `BusinessRule` OK
4191
+ * @response `200` `BusinessRule` Success
4192
4192
  */
4193
4193
  getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
4194
4194
  /**
@@ -4199,8 +4199,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4199
4199
  * @summary Replace
4200
4200
  * @request PUT:/api/business-rules/{id}
4201
4201
  * @secure
4202
- * @response `200` `BusinessRule` OK
4203
- * @response `422` `UnprocessableEntity` Unprocessable Content
4202
+ * @response `200` `BusinessRule` Success
4203
+ * @response `422` `UnprocessableEntity` Client Error
4204
4204
  */
4205
4205
  replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
4206
4206
  /**
@@ -4222,7 +4222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4222
4222
  * @summary Restore
4223
4223
  * @request POST:/api/business-rules/{id}/restore
4224
4224
  * @secure
4225
- * @response `200` `BusinessRule` OK
4225
+ * @response `200` `BusinessRule` Success
4226
4226
  */
4227
4227
  restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
4228
4228
  /**
@@ -4233,7 +4233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4233
4233
  * @summary Get All
4234
4234
  * @request GET:/api/corporates
4235
4235
  * @secure
4236
- * @response `200` `CorporatePaginated` OK
4236
+ * @response `200` `CorporatePaginated` Success
4237
4237
  */
4238
4238
  getCorporates: (query?: {
4239
4239
  showAll?: boolean;
@@ -4252,8 +4252,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4252
4252
  * @summary Create
4253
4253
  * @request POST:/api/corporates
4254
4254
  * @secure
4255
- * @response `200` `Corporate` OK
4256
- * @response `422` `UnprocessableEntity` Unprocessable Content
4255
+ * @response `200` `Corporate` Success
4256
+ * @response `422` `UnprocessableEntity` Client Error
4257
4257
  */
4258
4258
  createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
4259
4259
  /**
@@ -4264,7 +4264,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4264
4264
  * @summary Search
4265
4265
  * @request POST:/api/corporates/search
4266
4266
  * @secure
4267
- * @response `200` `CorporatePaginated` OK
4267
+ * @response `200` `CorporatePaginated` Success
4268
4268
  */
4269
4269
  searchCorporate: (data: CorporateSearchCriteria, query?: {
4270
4270
  /** @format int32 */
@@ -4282,7 +4282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4282
4282
  * @summary Get by ID
4283
4283
  * @request GET:/api/corporates/{id}
4284
4284
  * @secure
4285
- * @response `200` `Corporate` OK
4285
+ * @response `200` `Corporate` Success
4286
4286
  */
4287
4287
  getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
4288
4288
  /**
@@ -4293,8 +4293,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4293
4293
  * @summary Replace
4294
4294
  * @request PUT:/api/corporates/{id}
4295
4295
  * @secure
4296
- * @response `200` `Corporate` OK
4297
- * @response `422` `UnprocessableEntity` Unprocessable Content
4296
+ * @response `200` `Corporate` Success
4297
+ * @response `422` `UnprocessableEntity` Client Error
4298
4298
  */
4299
4299
  replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
4300
4300
  /**
@@ -4327,8 +4327,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4327
4327
  * @summary Create Site Configuration
4328
4328
  * @request POST:/api/corporates/{corporateId}/site-configurations
4329
4329
  * @secure
4330
- * @response `200` `SiteConfiguration` OK
4331
- * @response `422` `UnprocessableEntity` Unprocessable Content
4330
+ * @response `200` `SiteConfiguration` Success
4331
+ * @response `422` `UnprocessableEntity` Client Error
4332
4332
  */
4333
4333
  createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4334
4334
  /**
@@ -4339,7 +4339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4339
4339
  * @summary Get Site Configuration
4340
4340
  * @request GET:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
4341
4341
  * @secure
4342
- * @response `200` `SiteConfigurationWithInherited` OK
4342
+ * @response `200` `SiteConfigurationWithInherited` Success
4343
4343
  */
4344
4344
  getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
4345
4345
  /**
@@ -4350,8 +4350,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4350
4350
  * @summary Replace Site Configuration
4351
4351
  * @request PUT:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
4352
4352
  * @secure
4353
- * @response `200` `SiteConfiguration` OK
4354
- * @response `422` `UnprocessableEntity` Unprocessable Content
4353
+ * @response `200` `SiteConfiguration` Success
4354
+ * @response `422` `UnprocessableEntity` Client Error
4355
4355
  */
4356
4356
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
4357
4357
  applyToChildren?: boolean;
@@ -4364,7 +4364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4364
4364
  * @summary Get Branches
4365
4365
  * @request GET:/api/corporates/{id}/branches
4366
4366
  * @secure
4367
- * @response `200` `(BranchReduced)[]` OK
4367
+ * @response `200` `(BranchReduced)[]` Success
4368
4368
  */
4369
4369
  getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
4370
4370
  /**
@@ -4375,7 +4375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4375
4375
  * @summary Get Loan Officers
4376
4376
  * @request GET:/api/corporates/{id}/loan-officers
4377
4377
  * @secure
4378
- * @response `200` `LoanOfficerPublic` OK
4378
+ * @response `200` `LoanOfficerPublic` Success
4379
4379
  */
4380
4380
  getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
4381
4381
  /**
@@ -4386,7 +4386,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4386
4386
  * @summary Get All
4387
4387
  * @request GET:/api/devices
4388
4388
  * @secure
4389
- * @response `200` `DevicePaginated` OK
4389
+ * @response `200` `DevicePaginated` Success
4390
4390
  */
4391
4391
  getDevices: (query?: {
4392
4392
  /** @format uuid */
@@ -4406,7 +4406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4406
4406
  * @summary Get by ID
4407
4407
  * @request GET:/api/devices/{id}
4408
4408
  * @secure
4409
- * @response `200` `Device` OK
4409
+ * @response `200` `Device` Success
4410
4410
  */
4411
4411
  getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
4412
4412
  /**
@@ -4417,7 +4417,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4417
4417
  * @summary Update
4418
4418
  * @request PUT:/api/devices/{id}
4419
4419
  * @secure
4420
- * @response `200` `Device` OK
4420
+ * @response `200` `Device` Success
4421
4421
  */
4422
4422
  updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
4423
4423
  /**
@@ -4428,7 +4428,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4428
4428
  * @summary Get by Serial Number
4429
4429
  * @request GET:/api/devices/{sn}/profile
4430
4430
  * @secure
4431
- * @response `200` `DeviceMDM` OK
4431
+ * @response `200` `DeviceMDM` Success
4432
4432
  */
4433
4433
  getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
4434
4434
  /**
@@ -4439,7 +4439,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4439
4439
  * @summary Create Action by Serial Number
4440
4440
  * @request POST:/api/devices/{sn}/actions/{actionName}
4441
4441
  * @secure
4442
- * @response `200` `Action` OK
4442
+ * @response `200` `Action` Success
4443
4443
  */
4444
4444
  createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
4445
4445
  /**
@@ -4450,7 +4450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4450
4450
  * @summary Get All
4451
4451
  * @request GET:/api/document-buckets
4452
4452
  * @secure
4453
- * @response `200` `(string)[]` OK
4453
+ * @response `200` `(string)[]` Success
4454
4454
  */
4455
4455
  getDocumentBuckets: (query?: {
4456
4456
  /** @default false */
@@ -4464,7 +4464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4464
4464
  * @summary Get All
4465
4465
  * @request GET:/api/document-templates
4466
4466
  * @secure
4467
- * @response `200` `(DocumentTemplateBase)[]` OK
4467
+ * @response `200` `(DocumentTemplateBase)[]` Success
4468
4468
  */
4469
4469
  getDocumentTemplates: (query?: {
4470
4470
  showAll?: boolean;
@@ -4479,7 +4479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4479
4479
  * @secure
4480
4480
  * @response `201` `DocumentTemplateBase` Created
4481
4481
  * @response `404` `ProblemDetails` Not Found
4482
- * @response `422` `UnprocessableEntity` Unprocessable Content
4482
+ * @response `422` `UnprocessableEntity` Client Error
4483
4483
  */
4484
4484
  createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
4485
4485
  /**
@@ -4490,7 +4490,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4490
4490
  * @summary Get Custom
4491
4491
  * @request GET:/api/document-templates/{type}
4492
4492
  * @secure
4493
- * @response `200` `(DocumentTemplateBase)[]` OK
4493
+ * @response `200` `(DocumentTemplateBase)[]` Success
4494
4494
  */
4495
4495
  getCustomDocumentTemplates: (type: string, query?: {
4496
4496
  /** @default false */
@@ -4506,7 +4506,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4506
4506
  * @summary Get By ID
4507
4507
  * @request GET:/api/document-templates/{id}
4508
4508
  * @secure
4509
- * @response `200` `DocumentTemplate` OK
4509
+ * @response `200` `DocumentTemplate` Success
4510
4510
  * @response `404` `ProblemDetails` Not Found
4511
4511
  */
4512
4512
  getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
@@ -4518,10 +4518,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4518
4518
  * @summary Replace
4519
4519
  * @request PUT:/api/document-templates/{id}
4520
4520
  * @secure
4521
- * @response `200` `DocumentTemplateBase` OK
4521
+ * @response `200` `DocumentTemplateBase` Success
4522
4522
  * @response `401` `ProblemDetails` Unauthorized
4523
4523
  * @response `404` `ProblemDetails` Not Found
4524
- * @response `422` `UnprocessableEntity` Unprocessable Content
4524
+ * @response `422` `UnprocessableEntity` Client Error
4525
4525
  */
4526
4526
  replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
4527
4527
  /**
@@ -4558,7 +4558,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4558
4558
  * @summary Get All
4559
4559
  * @request GET:/api/document-templates/{documentId}/versions
4560
4560
  * @secure
4561
- * @response `200` `(DocumentTemplateVersion)[]` OK
4561
+ * @response `200` `(DocumentTemplateVersion)[]` Success
4562
4562
  */
4563
4563
  getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
4564
4564
  /**
@@ -4569,7 +4569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4569
4569
  * @summary Create
4570
4570
  * @request POST:/api/document-templates/{documentId}/versions
4571
4571
  * @secure
4572
- * @response `200` `DocumentTemplateVersion` OK
4572
+ * @response `200` `DocumentTemplateVersion` Success
4573
4573
  */
4574
4574
  createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
4575
4575
  /**
@@ -4580,7 +4580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4580
4580
  * @summary Get by ID
4581
4581
  * @request GET:/api/document-templates/{documentId}/versions/{id}
4582
4582
  * @secure
4583
- * @response `200` `DocumentTemplateVersion` OK
4583
+ * @response `200` `DocumentTemplateVersion` Success
4584
4584
  */
4585
4585
  getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
4586
4586
  /**
@@ -4591,7 +4591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4591
4591
  * @summary Replace
4592
4592
  * @request PUT:/api/document-templates/{documentId}/versions/{id}
4593
4593
  * @secure
4594
- * @response `200` `DocumentTemplateVersion` OK
4594
+ * @response `200` `DocumentTemplateVersion` Success
4595
4595
  */
4596
4596
  replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
4597
4597
  /**
@@ -4602,7 +4602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4602
4602
  * @summary Delete
4603
4603
  * @request DELETE:/api/document-templates/{documentId}/versions/{id}
4604
4604
  * @secure
4605
- * @response `200` `DocumentTemplateVersion` OK
4605
+ * @response `200` `DocumentTemplateVersion` Success
4606
4606
  */
4607
4607
  deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
4608
4608
  /**
@@ -4613,7 +4613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4613
4613
  * @summary Get All
4614
4614
  * @request GET:/api/files
4615
4615
  * @secure
4616
- * @response `200` `FilePaginated` OK
4616
+ * @response `200` `FilePaginated` Success
4617
4617
  */
4618
4618
  getAllFiles: (query?: {
4619
4619
  /** @format int32 */
@@ -4634,7 +4634,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4634
4634
  * @request POST:/api/files
4635
4635
  * @secure
4636
4636
  * @response `201` `File` Created
4637
- * @response `422` `UnprocessableEntity` Unprocessable Content
4637
+ * @response `422` `UnprocessableEntity` Client Error
4638
4638
  */
4639
4639
  uploadFile: (data: {
4640
4640
  name?: string;
@@ -4662,8 +4662,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4662
4662
  * @summary Replace
4663
4663
  * @request PUT:/api/files/{id}
4664
4664
  * @secure
4665
- * @response `200` `string` OK
4666
- * @response `422` `UnprocessableEntity` Unprocessable Content
4665
+ * @response `200` `string` Success
4666
+ * @response `422` `UnprocessableEntity` Client Error
4667
4667
  */
4668
4668
  replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4669
4669
  /**
@@ -4685,7 +4685,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4685
4685
  * @summary Search
4686
4686
  * @request POST:/api/files/search
4687
4687
  * @secure
4688
- * @response `200` `FilePaginated` OK
4688
+ * @response `200` `FilePaginated` Success
4689
4689
  */
4690
4690
  searchFiles: (data: FileSearchCriteria, query?: {
4691
4691
  /** @format int32 */
@@ -4703,7 +4703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4703
4703
  * @summary Get All
4704
4704
  * @request GET:/api/forms
4705
4705
  * @secure
4706
- * @response `200` `(AdminAccessGetForms)[]` OK
4706
+ * @response `200` `(AdminAccessGetForms)[]` Success
4707
4707
  */
4708
4708
  getForms: (query?: {
4709
4709
  showAll?: boolean;
@@ -4717,7 +4717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4717
4717
  * @request POST:/api/forms
4718
4718
  * @secure
4719
4719
  * @response `201` `Form` Created
4720
- * @response `422` `UnprocessableEntity` Unprocessable Content
4720
+ * @response `422` `UnprocessableEntity` Client Error
4721
4721
  */
4722
4722
  createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
4723
4723
  /**
@@ -4728,7 +4728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4728
4728
  * @summary Get By ID
4729
4729
  * @request GET:/api/forms/{id}
4730
4730
  * @secure
4731
- * @response `200` `Form` OK
4731
+ * @response `200` `Form` Success
4732
4732
  */
4733
4733
  getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
4734
4734
  /**
@@ -4739,8 +4739,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4739
4739
  * @summary Replace
4740
4740
  * @request PUT:/api/forms/{id}
4741
4741
  * @secure
4742
- * @response `200` `Form` OK
4743
- * @response `422` `UnprocessableEntity` Unprocessable Content
4742
+ * @response `200` `Form` Success
4743
+ * @response `422` `UnprocessableEntity` Client Error
4744
4744
  */
4745
4745
  replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
4746
4746
  /**
@@ -4762,7 +4762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4762
4762
  * @summary Restore
4763
4763
  * @request POST:/api/forms/{id}/restore
4764
4764
  * @secure
4765
- * @response `200` `Form` OK
4765
+ * @response `200` `Form` Success
4766
4766
  */
4767
4767
  restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
4768
4768
  /**
@@ -4773,7 +4773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4773
4773
  * @summary Add
4774
4774
  * @request POST:/api/form-submissions/{formSubmissionId}/files
4775
4775
  * @secure
4776
- * @response `200` `FormSubmissionFile` OK
4776
+ * @response `200` `FormSubmissionFile` Success
4777
4777
  */
4778
4778
  addFormSubmissionFile: (formSubmissionId: string, data: {
4779
4779
  /** @format binary */
@@ -4799,7 +4799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4799
4799
  * @summary Download by Id
4800
4800
  * @request GET:/api/form-submissions/{formSubmissionId}/files/{formSubmissionFileId}/download
4801
4801
  * @secure
4802
- * @response `200` `FileWithBytes` OK
4802
+ * @response `200` `FileWithBytes` Success
4803
4803
  */
4804
4804
  downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
4805
4805
  /** @format uuid */
@@ -4813,7 +4813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4813
4813
  * @summary Get All
4814
4814
  * @request GET:/api/form-submissions
4815
4815
  * @secure
4816
- * @response `200` `FormSubmissionPaginated` OK
4816
+ * @response `200` `FormSubmissionPaginated` Success
4817
4817
  */
4818
4818
  getFormSubmissions: (query?: {
4819
4819
  /** @format int32 */
@@ -4844,7 +4844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4844
4844
  * @summary Get by ID
4845
4845
  * @request GET:/api/form-submissions/{id}
4846
4846
  * @secure
4847
- * @response `200` `FormSubmission` OK
4847
+ * @response `200` `FormSubmission` Success
4848
4848
  */
4849
4849
  getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
4850
4850
  /**
@@ -4855,7 +4855,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4855
4855
  * @summary Replace
4856
4856
  * @request PUT:/api/form-submissions/{id}
4857
4857
  * @secure
4858
- * @response `200` `FormSubmission` OK
4858
+ * @response `200` `FormSubmission` Success
4859
4859
  */
4860
4860
  replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
4861
4861
  /**
@@ -4877,7 +4877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4877
4877
  * @summary Search
4878
4878
  * @request POST:/api/form-submissions/search
4879
4879
  * @secure
4880
- * @response `200` `FormSubmissionPaginated` OK
4880
+ * @response `200` `FormSubmissionPaginated` Success
4881
4881
  */
4882
4882
  searchFormSubmissions: (data: FormSubmissionSearchCriteria, query?: {
4883
4883
  /** @format int32 */
@@ -4895,7 +4895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4895
4895
  * @summary Get All
4896
4896
  * @request GET:/api/forms/{formId}/versions
4897
4897
  * @secure
4898
- * @response `200` `(FormVersion)[]` OK
4898
+ * @response `200` `(FormVersion)[]` Success
4899
4899
  */
4900
4900
  getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
4901
4901
  /**
@@ -4906,7 +4906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4906
4906
  * @summary Create
4907
4907
  * @request POST:/api/forms/{formId}/versions
4908
4908
  * @secure
4909
- * @response `200` `FormVersion` OK
4909
+ * @response `200` `FormVersion` Success
4910
4910
  */
4911
4911
  createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
4912
4912
  /**
@@ -4917,7 +4917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4917
4917
  * @summary Get by ID
4918
4918
  * @request GET:/api/forms/{formId}/versions/{id}
4919
4919
  * @secure
4920
- * @response `200` `FormVersion` OK
4920
+ * @response `200` `FormVersion` Success
4921
4921
  */
4922
4922
  getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
4923
4923
  /**
@@ -4928,7 +4928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4928
4928
  * @summary Replace
4929
4929
  * @request PUT:/api/forms/{formId}/versions/{id}
4930
4930
  * @secure
4931
- * @response `200` `FormVersion` OK
4931
+ * @response `200` `FormVersion` Success
4932
4932
  */
4933
4933
  replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
4934
4934
  /**
@@ -4939,7 +4939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4939
4939
  * @summary Delete
4940
4940
  * @request DELETE:/api/forms/{formId}/versions/{id}
4941
4941
  * @secure
4942
- * @response `200` `FormVersion` OK
4942
+ * @response `200` `FormVersion` Success
4943
4943
  */
4944
4944
  deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
4945
4945
  /**
@@ -4950,7 +4950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4950
4950
  * @summary Get By ID
4951
4951
  * @request GET:/api/los/loan/application/{loanID}
4952
4952
  * @secure
4953
- * @response `200` `Record<string,any>` OK
4953
+ * @response `200` `Record<string,any>` Success
4954
4954
  */
4955
4955
  getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
4956
4956
  /**
@@ -4961,8 +4961,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4961
4961
  * @summary Update Loan Consent
4962
4962
  * @request PATCH:/api/los/loan/application/{loanID}
4963
4963
  * @secure
4964
- * @response `200` `string` OK
4965
- * @response `422` `UnprocessableEntity` Unprocessable Content
4964
+ * @response `200` `string` Success
4965
+ * @response `422` `UnprocessableEntity` Client Error
4966
4966
  */
4967
4967
  updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4968
4968
  /**
@@ -4973,7 +4973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4973
4973
  * @summary Get Report
4974
4974
  * @request POST:/api/los/loan/reports
4975
4975
  * @secure
4976
- * @response `200` `GetReport` OK
4976
+ * @response `200` `GetReport` Success
4977
4977
  */
4978
4978
  getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
4979
4979
  /**
@@ -4984,9 +4984,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4984
4984
  * @summary Create Loan
4985
4985
  * @request POST:/api/los/loan/application
4986
4986
  * @secure
4987
- * @response `200` `string` OK
4988
- * @response `422` `UnprocessableEntity` Unprocessable Content
4989
- * @response `423` `UnprocessableEntity` Locked
4987
+ * @response `200` `string` Success
4988
+ * @response `422` `UnprocessableEntity` Client Error
4989
+ * @response `423` `UnprocessableEntity` Client Error
4990
4990
  */
4991
4991
  createLoan: (data: any, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4992
4992
  /**
@@ -4997,7 +4997,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4997
4997
  * @summary Get Documents
4998
4998
  * @request GET:/api/los/loan/tasks/documents/{loanID}
4999
4999
  * @secure
5000
- * @response `200` `(DocumentData)[]` OK
5000
+ * @response `200` `(DocumentData)[]` Success
5001
5001
  */
5002
5002
  getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
5003
5003
  /**
@@ -5008,7 +5008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5008
5008
  * @summary Get Document Content
5009
5009
  * @request GET:/api/los/loan/{loanID}/document/{documentId}/content
5010
5010
  * @secure
5011
- * @response `200` `void` OK
5011
+ * @response `200` `void` Success
5012
5012
  */
5013
5013
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
5014
5014
  /** @default "base64" */
@@ -5033,7 +5033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5033
5033
  * @summary Get Preliminary Conditions
5034
5034
  * @request GET:/api/los/loan/{loanID}/conditions/preliminary
5035
5035
  * @secure
5036
- * @response `200` `(PreliminaryCondition)[]` OK
5036
+ * @response `200` `(PreliminaryCondition)[]` Success
5037
5037
  */
5038
5038
  getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
5039
5039
  /**
@@ -5044,7 +5044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5044
5044
  * @summary Get Underwriting Conditions
5045
5045
  * @request GET:/api/los/loan/{loanID}/conditions/underwriting
5046
5046
  * @secure
5047
- * @response `200` `(UnderwritingCondition)[]` OK
5047
+ * @response `200` `(UnderwritingCondition)[]` Success
5048
5048
  */
5049
5049
  getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
5050
5050
  /**
@@ -5055,7 +5055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5055
5055
  * @summary Get Embedded Signing Link
5056
5056
  * @request POST:/api/los/loan/embeddedsigning/{envelopeId}/{userName}/{email}
5057
5057
  * @secure
5058
- * @response `200` `string` OK
5058
+ * @response `200` `string` Success
5059
5059
  */
5060
5060
  getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5061
5061
  /**
@@ -5067,7 +5067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5067
5067
  * @request POST:/api/los/loan/generatedocument
5068
5068
  * @deprecated
5069
5069
  * @secure
5070
- * @response `200` `DocumentDataRequest` OK
5070
+ * @response `200` `DocumentDataRequest` Success
5071
5071
  */
5072
5072
  createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
5073
5073
  /**
@@ -5078,7 +5078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5078
5078
  * @summary Add
5079
5079
  * @request POST:/api/listings/{listingId}/files
5080
5080
  * @secure
5081
- * @response `200` `ListingFile` OK
5081
+ * @response `200` `ListingFile` Success
5082
5082
  */
5083
5083
  addListingFile: (listingId: string, data: {
5084
5084
  /** @format binary */
@@ -5094,7 +5094,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5094
5094
  * @summary Update
5095
5095
  * @request PATCH:/api/listings/{listingId}/files
5096
5096
  * @secure
5097
- * @response `200` `ListingFile` OK
5097
+ * @response `200` `ListingFile` Success
5098
5098
  */
5099
5099
  updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
5100
5100
  /**
@@ -5116,7 +5116,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5116
5116
  * @summary Add
5117
5117
  * @request POST:/api/listings/{listingId}/photos
5118
5118
  * @secure
5119
- * @response `200` `ListingPhoto` OK
5119
+ * @response `200` `ListingPhoto` Success
5120
5120
  */
5121
5121
  addListingPhoto: (listingId: string, data: {
5122
5122
  name?: string;
@@ -5134,7 +5134,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5134
5134
  * @summary Update
5135
5135
  * @request PATCH:/api/listings/{listingId}/photos
5136
5136
  * @secure
5137
- * @response `200` `(ListingPhoto)[]` OK
5137
+ * @response `200` `(ListingPhoto)[]` Success
5138
5138
  */
5139
5139
  updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
5140
5140
  /**
@@ -5156,7 +5156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5156
5156
  * @summary Get All
5157
5157
  * @request GET:/api/listings
5158
5158
  * @secure
5159
- * @response `200` `ListingPaginated` OK
5159
+ * @response `200` `ListingPaginated` Success
5160
5160
  */
5161
5161
  getListings: (query?: {
5162
5162
  /** @format int32 */
@@ -5185,7 +5185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5185
5185
  * @summary Get by Slug
5186
5186
  * @request GET:/api/listings/slug/{slug}
5187
5187
  * @secure
5188
- * @response `200` `Listing` OK
5188
+ * @response `200` `Listing` Success
5189
5189
  */
5190
5190
  getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
5191
5191
  /**
@@ -5196,7 +5196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5196
5196
  * @summary Get by ID
5197
5197
  * @request GET:/api/listings/{id}
5198
5198
  * @secure
5199
- * @response `200` `Listing` OK
5199
+ * @response `200` `Listing` Success
5200
5200
  */
5201
5201
  getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
5202
5202
  /**
@@ -5207,7 +5207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5207
5207
  * @summary Replace
5208
5208
  * @request PUT:/api/listings/{id}
5209
5209
  * @secure
5210
- * @response `200` `Listing` OK
5210
+ * @response `200` `Listing` Success
5211
5211
  */
5212
5212
  replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
5213
5213
  /**
@@ -5229,7 +5229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5229
5229
  * @summary Search
5230
5230
  * @request POST:/api/listings/search
5231
5231
  * @secure
5232
- * @response `200` `ListingPaginated` OK
5232
+ * @response `200` `ListingPaginated` Success
5233
5233
  */
5234
5234
  searchListings: (data: ListingSearchCriteria, query?: {
5235
5235
  /** @format int32 */
@@ -5247,7 +5247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5247
5247
  * @summary Update Background Image
5248
5248
  * @request PUT:/api/listings/{id}/background-image
5249
5249
  * @secure
5250
- * @response `200` `File` OK
5250
+ * @response `200` `File` Success
5251
5251
  */
5252
5252
  updateListingBackgroundImage: (id: string, data: {
5253
5253
  /** @format binary */
@@ -5272,7 +5272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5272
5272
  * @summary Get Open House Flyer
5273
5273
  * @request GET:/api/listings/{id}/open-house-flyer
5274
5274
  * @secure
5275
- * @response `200` `File` OK
5275
+ * @response `200` `File` Success
5276
5276
  */
5277
5277
  getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
5278
5278
  /**
@@ -5283,7 +5283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5283
5283
  * @summary Get
5284
5284
  * @request GET:/api/loans/{loanID}/calculators/loan-calculator
5285
5285
  * @secure
5286
- * @response `200` `RunLOCalculation` OK
5286
+ * @response `200` `RunLOCalculation` Success
5287
5287
  */
5288
5288
  getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
5289
5289
  /**
@@ -5294,9 +5294,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5294
5294
  * @summary Run
5295
5295
  * @request POST:/api/loans/{loanID}/calculators/loan-calculator
5296
5296
  * @secure
5297
- * @response `200` `RunLOCalculation` OK
5298
- * @response `422` `UnprocessableEntity` Unprocessable Content
5299
- * @response `423` `UnprocessableEntity` Locked
5297
+ * @response `200` `RunLOCalculation` Success
5298
+ * @response `422` `UnprocessableEntity` Client Error
5299
+ * @response `423` `UnprocessableEntity` Client Error
5300
5300
  */
5301
5301
  runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
5302
5302
  /**
@@ -5307,7 +5307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5307
5307
  * @summary Get All
5308
5308
  * @request GET:/api/loans/{loanID}/loan-comparison
5309
5309
  * @secure
5310
- * @response `200` `LoanComparison` OK
5310
+ * @response `200` `LoanComparison` Success
5311
5311
  */
5312
5312
  getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
5313
5313
  /**
@@ -5319,8 +5319,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5319
5319
  * @request POST:/api/loans/{loanID}/loan-comparison/{index}
5320
5320
  * @secure
5321
5321
  * @response `201` `LoanComparisonScenario` Created
5322
- * @response `422` `UnprocessableEntity` Unprocessable Content
5323
- * @response `423` `UnprocessableEntity` Locked
5322
+ * @response `422` `UnprocessableEntity` Client Error
5323
+ * @response `423` `UnprocessableEntity` Client Error
5324
5324
  */
5325
5325
  createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
5326
5326
  /**
@@ -5343,7 +5343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5343
5343
  * @request POST:/api/loans/{loanID}/loan-comparison/pdf
5344
5344
  * @secure
5345
5345
  * @response `204` `void` No Content
5346
- * @response `422` `UnprocessableEntity` Unprocessable Content
5346
+ * @response `422` `UnprocessableEntity` Client Error
5347
5347
  */
5348
5348
  createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5349
5349
  /**
@@ -5354,7 +5354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5354
5354
  * @summary Get All
5355
5355
  * @request GET:/api/loans/{loanId}/documents/buckets
5356
5356
  * @secure
5357
- * @response `200` `(string)[]` OK
5357
+ * @response `200` `(string)[]` Success
5358
5358
  */
5359
5359
  getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
5360
5360
  /**
@@ -5376,7 +5376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5376
5376
  * @summary Get By ID
5377
5377
  * @request GET:/api/loans/{loanId}/documents/{documentId}
5378
5378
  * @secure
5379
- * @response `200` `LoanDocument` OK
5379
+ * @response `200` `LoanDocument` Success
5380
5380
  * @response `404` `ProblemDetails` Not Found
5381
5381
  */
5382
5382
  getLoanDocument: (loanId: string, documentId: string, query?: {
@@ -5391,7 +5391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5391
5391
  * @summary Search loan documents
5392
5392
  * @request POST:/api/loans/{loanId}/documents/search
5393
5393
  * @secure
5394
- * @response `200` `LoanDocumentSearchPaginated` OK
5394
+ * @response `200` `LoanDocumentSearchPaginated` Success
5395
5395
  */
5396
5396
  searchLoanDocuments: (loanId: string, data: LoanDocumentSearchCriteria, query?: {
5397
5397
  /** @format int32 */
@@ -5409,7 +5409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5409
5409
  * @summary Download By ID
5410
5410
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
5411
5411
  * @secure
5412
- * @response `200` `string` OK
5412
+ * @response `200` `string` Success
5413
5413
  * @response `404` `ProblemDetails` Not Found
5414
5414
  */
5415
5415
  downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
@@ -5423,7 +5423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5423
5423
  * @secure
5424
5424
  * @response `201` `LoanDocument` Created
5425
5425
  * @response `404` `ProblemDetails` Not Found
5426
- * @response `422` `UnprocessableEntity` Unprocessable Content
5426
+ * @response `422` `UnprocessableEntity` Client Error
5427
5427
  */
5428
5428
  createLoanDocument: (loanId: string, data: {
5429
5429
  name?: string;
@@ -5439,9 +5439,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5439
5439
  * @summary Retry
5440
5440
  * @request POST:/api/loans/{loanId}/documents/{documentId}/retry
5441
5441
  * @secure
5442
- * @response `200` `LoanDocument` OK
5442
+ * @response `200` `LoanDocument` Success
5443
5443
  * @response `404` `ProblemDetails` Not Found
5444
- * @response `422` `UnprocessableEntity` Unprocessable Content
5444
+ * @response `422` `UnprocessableEntity` Client Error
5445
5445
  */
5446
5446
  retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
5447
5447
  /**
@@ -5452,7 +5452,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5452
5452
  * @summary Generate PDF Document
5453
5453
  * @request POST:/api/loans/{loanId}/documents/generate
5454
5454
  * @secure
5455
- * @response `200` `DocumentDataRequest` OK
5455
+ * @response `200` `DocumentDataRequest` Success
5456
5456
  */
5457
5457
  generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
5458
5458
  /**
@@ -5463,7 +5463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5463
5463
  * @summary Send existing documents to loan users or external emails
5464
5464
  * @request POST:/api/loans/{loanId}/documents/distribute
5465
5465
  * @secure
5466
- * @response `200` `void` OK
5466
+ * @response `200` `void` Success
5467
5467
  * @response `400` `ProblemDetails` Bad Request
5468
5468
  * @response `404` `ProblemDetails` Not Found
5469
5469
  */
@@ -5487,7 +5487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5487
5487
  * @summary Get All
5488
5488
  * @request GET:/api/loans/drafts
5489
5489
  * @secure
5490
- * @response `200` `(DraftContent)[]` OK
5490
+ * @response `200` `(DraftContent)[]` Success
5491
5491
  */
5492
5492
  getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
5493
5493
  /**
@@ -5498,7 +5498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5498
5498
  * @summary Get by ID
5499
5499
  * @request GET:/api/loans/drafts/{draftId}
5500
5500
  * @secure
5501
- * @response `200` `DraftContent` OK
5501
+ * @response `200` `DraftContent` Success
5502
5502
  */
5503
5503
  getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
5504
5504
  /**
@@ -5509,7 +5509,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5509
5509
  * @summary Replace
5510
5510
  * @request PUT:/api/loans/drafts/{draftId}
5511
5511
  * @secure
5512
- * @response `200` `Draft` OK
5512
+ * @response `200` `Draft` Success
5513
5513
  */
5514
5514
  replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
5515
5515
  /**
@@ -5549,7 +5549,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5549
5549
  * @summary Reassign Loan officer
5550
5550
  * @request PUT:/api/loans/drafts/{draftId}/reassign
5551
5551
  * @secure
5552
- * @response `200` `Draft` OK
5552
+ * @response `200` `Draft` Success
5553
5553
  */
5554
5554
  reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
5555
5555
  /**
@@ -5560,7 +5560,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5560
5560
  * @summary Get Loan Imports
5561
5561
  * @request GET:/api/loan-imports
5562
5562
  * @secure
5563
- * @response `200` `LoanImportPaginated` OK
5563
+ * @response `200` `LoanImportPaginated` Success
5564
5564
  */
5565
5565
  getLoanImports: (query?: {
5566
5566
  status?: LoanImportStatus;
@@ -5591,7 +5591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5591
5591
  * @summary Get Loan Import
5592
5592
  * @request GET:/api/loan-imports/{id}
5593
5593
  * @secure
5594
- * @response `200` `LoanImport` OK
5594
+ * @response `200` `LoanImport` Success
5595
5595
  */
5596
5596
  getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
5597
5597
  /**
@@ -5602,7 +5602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5602
5602
  * @summary Get Loan Import Logs
5603
5603
  * @request GET:/api/loan-imports/{id}/logs
5604
5604
  * @secure
5605
- * @response `200` `LoanImportLogPaginated` OK
5605
+ * @response `200` `LoanImportLogPaginated` Success
5606
5606
  */
5607
5607
  getLoanImportLogs: (id: string, query?: {
5608
5608
  /** @format int32 */
@@ -5620,7 +5620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5620
5620
  * @summary Get Invites
5621
5621
  * @request GET:/api/loans/{loanId}/invites
5622
5622
  * @secure
5623
- * @response `200` `(Invite)[]` OK
5623
+ * @response `200` `(Invite)[]` Success
5624
5624
  * @response `404` `ProblemDetails` Not Found
5625
5625
  */
5626
5626
  getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
@@ -5632,7 +5632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5632
5632
  * @summary Invite Contacts
5633
5633
  * @request POST:/api/loans/{loanId}/invites
5634
5634
  * @secure
5635
- * @response `200` `(Invite)[]` OK
5635
+ * @response `200` `(Invite)[]` Success
5636
5636
  * @response `404` `ProblemDetails` Not Found
5637
5637
  */
5638
5638
  inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
@@ -5644,7 +5644,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5644
5644
  * @summary Search loan logs
5645
5645
  * @request POST:/api/loans/{loanId}/logs/search
5646
5646
  * @secure
5647
- * @response `200` `LoanLogPaginated` OK
5647
+ * @response `200` `LoanLogPaginated` Success
5648
5648
  */
5649
5649
  searchLoanLogs: (loanId: string, data: LoanLogSearchCriteria, query?: {
5650
5650
  /** @format int32 */
@@ -5662,7 +5662,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5662
5662
  * @summary Get All
5663
5663
  * @request GET:/api/loan-officers
5664
5664
  * @secure
5665
- * @response `200` `BranchUserPaginated` OK
5665
+ * @response `200` `BranchUserPaginated` Success
5666
5666
  */
5667
5667
  getLoanOfficers: (query?: {
5668
5668
  showAll?: boolean;
@@ -5681,7 +5681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5681
5681
  * @summary Search
5682
5682
  * @request POST:/api/loan-officers/search
5683
5683
  * @secure
5684
- * @response `200` `BranchUserPaginated` OK
5684
+ * @response `200` `BranchUserPaginated` Success
5685
5685
  */
5686
5686
  searchLoanOfficers: (data: LoanOfficerSearchCriteria, query?: {
5687
5687
  /** @format int32 */
@@ -5699,7 +5699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5699
5699
  * @summary Get by ID
5700
5700
  * @request GET:/api/loan-officers/{id}
5701
5701
  * @secure
5702
- * @response `200` `BranchUser` OK
5702
+ * @response `200` `BranchUser` Success
5703
5703
  */
5704
5704
  getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
5705
5705
  /**
@@ -5710,8 +5710,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5710
5710
  * @summary Create Site Configuration
5711
5711
  * @request POST:/api/loan-officers/{loanOfficerId}/site-configurations
5712
5712
  * @secure
5713
- * @response `200` `SiteConfiguration` OK
5714
- * @response `422` `UnprocessableEntity` Unprocessable Content
5713
+ * @response `200` `SiteConfiguration` Success
5714
+ * @response `422` `UnprocessableEntity` Client Error
5715
5715
  */
5716
5716
  createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5717
5717
  /**
@@ -5722,7 +5722,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5722
5722
  * @summary Get Site Configuration
5723
5723
  * @request GET:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
5724
5724
  * @secure
5725
- * @response `200` `SiteConfigurationWithInherited` OK
5725
+ * @response `200` `SiteConfigurationWithInherited` Success
5726
5726
  */
5727
5727
  getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
5728
5728
  /**
@@ -5733,8 +5733,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5733
5733
  * @summary Replace Site Configuration
5734
5734
  * @request PUT:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
5735
5735
  * @secure
5736
- * @response `200` `SiteConfiguration` OK
5737
- * @response `422` `UnprocessableEntity` Unprocessable Content
5736
+ * @response `200` `SiteConfiguration` Success
5737
+ * @response `422` `UnprocessableEntity` Client Error
5738
5738
  */
5739
5739
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
5740
5740
  applyToChildren?: boolean;
@@ -5747,7 +5747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5747
5747
  * @summary Search
5748
5748
  * @request POST:/api/loans/queue/search
5749
5749
  * @secure
5750
- * @response `200` `LoanQueuePaginated` OK
5750
+ * @response `200` `LoanQueuePaginated` Success
5751
5751
  */
5752
5752
  searchLoanQueue: (data: LoanQueueSearchCriteria, query?: {
5753
5753
  /** @format int32 */
@@ -5765,7 +5765,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5765
5765
  * @summary Get Loan Queue Record
5766
5766
  * @request GET:/api/loans/queue/{loanQueueId}
5767
5767
  * @secure
5768
- * @response `200` `any` OK
5768
+ * @response `200` `any` Success
5769
5769
  * @response `404` `ProblemDetails` Not Found
5770
5770
  */
5771
5771
  getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
@@ -5777,7 +5777,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5777
5777
  * @summary Replace Loan Queue Record
5778
5778
  * @request PUT:/api/loans/queue/{loanQueueId}
5779
5779
  * @secure
5780
- * @response `200` `LoanQueueWithData` OK
5780
+ * @response `200` `LoanQueueWithData` Success
5781
5781
  * @response `404` `ProblemDetails` Not Found
5782
5782
  */
5783
5783
  replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
@@ -5813,8 +5813,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5813
5813
  * @summary Create Loan by DraftId
5814
5814
  * @request POST:/api/loans
5815
5815
  * @secure
5816
- * @response `200` `string` OK
5817
- * @response `422` `UnprocessableEntity` Unprocessable Content
5816
+ * @response `200` `string` Success
5817
+ * @response `422` `UnprocessableEntity` Client Error
5818
5818
  */
5819
5819
  createLoanByDraftId: (data: LoanCreateRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5820
5820
  /**
@@ -5825,7 +5825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5825
5825
  * @summary Get Loans
5826
5826
  * @request GET:/api/loans
5827
5827
  * @secure
5828
- * @response `200` `GetApplications` OK
5828
+ * @response `200` `GetApplications` Success
5829
5829
  */
5830
5830
  getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
5831
5831
  /**
@@ -5836,7 +5836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5836
5836
  * @summary Get Loans by Account Setting
5837
5837
  * @request POST:/api/loans/temp-pipeline
5838
5838
  * @secure
5839
- * @response `200` `any` OK
5839
+ * @response `200` `any` Success
5840
5840
  */
5841
5841
  getLoansByAccountSetting: (data: LoanSearchCriteria, query?: {
5842
5842
  /** @format int32 */
@@ -5854,7 +5854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5854
5854
  * @summary Get By ID
5855
5855
  * @request GET:/api/loans/{loanID}
5856
5856
  * @secure
5857
- * @response `200` `Loan` OK
5857
+ * @response `200` `Loan` Success
5858
5858
  * @response `404` `ProblemDetails` Not Found
5859
5859
  */
5860
5860
  getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
@@ -5866,7 +5866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5866
5866
  * @summary Search
5867
5867
  * @request POST:/api/loans/search
5868
5868
  * @secure
5869
- * @response `200` `LoanListPaginated` OK
5869
+ * @response `200` `LoanListPaginated` Success
5870
5870
  */
5871
5871
  searchLoans: (data: LoanSearchCriteria, query?: {
5872
5872
  /** @format int32 */
@@ -5884,7 +5884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5884
5884
  * @summary Import from LOS
5885
5885
  * @request POST:/api/loans/import-from-los/{loanId}
5886
5886
  * @secure
5887
- * @response `200` `Loan` OK
5887
+ * @response `200` `Loan` Success
5888
5888
  */
5889
5889
  importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
5890
5890
  /**
@@ -5895,7 +5895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5895
5895
  * @summary Update loan fields
5896
5896
  * @request PATCH:/api/loans/{loanId}
5897
5897
  * @secure
5898
- * @response `200` `Loan` OK
5898
+ * @response `200` `Loan` Success
5899
5899
  */
5900
5900
  updateLoan: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
5901
5901
  /**
@@ -5906,7 +5906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5906
5906
  * @summary Search
5907
5907
  * @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/search
5908
5908
  * @secure
5909
- * @response `200` `TaskCommentPaginated` OK
5909
+ * @response `200` `TaskCommentPaginated` Success
5910
5910
  * @response `404` `ProblemDetails` Not Found
5911
5911
  */
5912
5912
  searchLoanTaskComments: (loanId: string, userLoanTaskId: string, data: TaskCommentSearchCriteria, query?: {
@@ -5925,7 +5925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5925
5925
  * @summary Get by ID
5926
5926
  * @request GET:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{id}
5927
5927
  * @secure
5928
- * @response `200` `TaskComment` OK
5928
+ * @response `200` `TaskComment` Success
5929
5929
  * @response `404` `ProblemDetails` Not Found
5930
5930
  */
5931
5931
  getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
@@ -5949,7 +5949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5949
5949
  * @summary Replace
5950
5950
  * @request PUT:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
5951
5951
  * @secure
5952
- * @response `200` `TaskComment` OK
5952
+ * @response `200` `TaskComment` Success
5953
5953
  * @response `404` `ProblemDetails` Not Found
5954
5954
  */
5955
5955
  replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
@@ -5975,7 +5975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5975
5975
  * @secure
5976
5976
  * @response `201` `UserLoanTask` Created
5977
5977
  * @response `404` `ProblemDetails` Not Found
5978
- * @response `422` `UnprocessableEntity` Unprocessable Content
5978
+ * @response `422` `UnprocessableEntity` Client Error
5979
5979
  */
5980
5980
  createLoanTaskDocument: (loanId: string, loanTaskId: string, data: {
5981
5981
  name?: string;
@@ -5992,7 +5992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5992
5992
  * @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/documents/bucket
5993
5993
  * @secure
5994
5994
  * @response `204` `UserLoanTask` No Content
5995
- * @response `422` `UnprocessableEntity` Unprocessable Content
5995
+ * @response `422` `UnprocessableEntity` Client Error
5996
5996
  */
5997
5997
  createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
5998
5998
  /**
@@ -6003,7 +6003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6003
6003
  * @summary Get All
6004
6004
  * @request GET:/api/loans/{loanID}/tasks
6005
6005
  * @secure
6006
- * @response `200` `(UserLoanTask)[]` OK
6006
+ * @response `200` `(UserLoanTask)[]` Success
6007
6007
  * @response `404` `ProblemDetails` Not Found
6008
6008
  */
6009
6009
  getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
@@ -6015,7 +6015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6015
6015
  * @summary Get by ID
6016
6016
  * @request GET:/api/loans/{loanID}/tasks/{id}
6017
6017
  * @secure
6018
- * @response `200` `UserLoanTask` OK
6018
+ * @response `200` `UserLoanTask` Success
6019
6019
  * @response `404` `ProblemDetails` Not Found
6020
6020
  */
6021
6021
  getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
@@ -6027,7 +6027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6027
6027
  * @summary Get Difference
6028
6028
  * @request GET:/api/loans/{loanID}/tasks/diff
6029
6029
  * @secure
6030
- * @response `200` `(UserLoanTask)[]` OK
6030
+ * @response `200` `(UserLoanTask)[]` Success
6031
6031
  * @response `404` `ProblemDetails` Not Found
6032
6032
  */
6033
6033
  getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
@@ -6063,7 +6063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6063
6063
  * @summary Replace
6064
6064
  * @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
6065
6065
  * @secure
6066
- * @response `200` `UserLoanTask` OK
6066
+ * @response `200` `UserLoanTask` Success
6067
6067
  * @response `404` `ProblemDetails` Not Found
6068
6068
  */
6069
6069
  replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
@@ -6099,9 +6099,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6099
6099
  * @summary Create
6100
6100
  * @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/verifications
6101
6101
  * @secure
6102
- * @response `200` `UserLoanTask` OK
6102
+ * @response `200` `UserLoanTask` Success
6103
6103
  * @response `404` `ProblemDetails` Not Found
6104
- * @response `422` `UnprocessableEntity` Unprocessable Content
6104
+ * @response `422` `UnprocessableEntity` Client Error
6105
6105
  */
6106
6106
  createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
6107
6107
  /**
@@ -6112,7 +6112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6112
6112
  * @summary Get Loan User
6113
6113
  * @request GET:/api/loans/{loanId}/users/{userId}
6114
6114
  * @secure
6115
- * @response `200` `LoanUser` OK
6115
+ * @response `200` `LoanUser` Success
6116
6116
  */
6117
6117
  getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
6118
6118
  /**
@@ -6156,7 +6156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6156
6156
  * @summary Get All
6157
6157
  * @request GET:/api/milestones
6158
6158
  * @secure
6159
- * @response `200` `(MilestoneConfiguration)[]` OK
6159
+ * @response `200` `(MilestoneConfiguration)[]` Success
6160
6160
  */
6161
6161
  getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
6162
6162
  /**
@@ -6168,7 +6168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6168
6168
  * @request POST:/api/milestones
6169
6169
  * @secure
6170
6170
  * @response `201` `MilestoneConfiguration` Created
6171
- * @response `422` `UnprocessableEntity` Unprocessable Content
6171
+ * @response `422` `UnprocessableEntity` Client Error
6172
6172
  */
6173
6173
  createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
6174
6174
  /**
@@ -6179,7 +6179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6179
6179
  * @summary Get By ID
6180
6180
  * @request GET:/api/milestones/{id}
6181
6181
  * @secure
6182
- * @response `200` `MilestoneConfiguration` OK
6182
+ * @response `200` `MilestoneConfiguration` Success
6183
6183
  * @response `404` `Error` Not Found
6184
6184
  */
6185
6185
  getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
@@ -6191,9 +6191,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6191
6191
  * @summary Replace
6192
6192
  * @request PUT:/api/milestones/{id}
6193
6193
  * @secure
6194
- * @response `200` `MilestoneConfiguration` OK
6194
+ * @response `200` `MilestoneConfiguration` Success
6195
6195
  * @response `404` `Error` Not Found
6196
- * @response `422` `UnprocessableEntity` Unprocessable Content
6196
+ * @response `422` `UnprocessableEntity` Client Error
6197
6197
  */
6198
6198
  replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
6199
6199
  /**
@@ -6216,8 +6216,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6216
6216
  * @summary Calculate Monthly Payment
6217
6217
  * @request POST:/api/mortgage-calculators/monthly-payment
6218
6218
  * @secure
6219
- * @response `200` `MonthlyPaymentCalculator` OK
6220
- * @response `422` `ProblemDetails` Unprocessable Content
6219
+ * @response `200` `MonthlyPaymentCalculator` Success
6220
+ * @response `422` `ProblemDetails` Client Error
6221
6221
  */
6222
6222
  calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
6223
6223
  /**
@@ -6228,8 +6228,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6228
6228
  * @summary Calculate Affordability
6229
6229
  * @request POST:/api/mortgage-calculators/affordability
6230
6230
  * @secure
6231
- * @response `200` `AffordabilityCalculator` OK
6232
- * @response `422` `ProblemDetails` Unprocessable Content
6231
+ * @response `200` `AffordabilityCalculator` Success
6232
+ * @response `422` `ProblemDetails` Client Error
6233
6233
  */
6234
6234
  calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
6235
6235
  /**
@@ -6240,8 +6240,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6240
6240
  * @summary Calculate Loan Comparison
6241
6241
  * @request POST:/api/mortgage-calculators/loan-comparison
6242
6242
  * @secure
6243
- * @response `200` `LoanComparisonCalculator` OK
6244
- * @response `422` `ProblemDetails` Unprocessable Content
6243
+ * @response `200` `LoanComparisonCalculator` Success
6244
+ * @response `422` `ProblemDetails` Client Error
6245
6245
  */
6246
6246
  calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
6247
6247
  /**
@@ -6252,8 +6252,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6252
6252
  * @summary Calculate Refinance
6253
6253
  * @request POST:/api/mortgage-calculators/refinance
6254
6254
  * @secure
6255
- * @response `200` `RefinanceCalculator` OK
6256
- * @response `422` `ProblemDetails` Unprocessable Content
6255
+ * @response `200` `RefinanceCalculator` Success
6256
+ * @response `422` `ProblemDetails` Client Error
6257
6257
  */
6258
6258
  calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
6259
6259
  /**
@@ -6264,8 +6264,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6264
6264
  * @summary Send Notification for Loan
6265
6265
  * @request POST:/api/notifications
6266
6266
  * @secure
6267
- * @response `200` `void` OK
6268
- * @response `422` `UnprocessableEntity` Unprocessable Content
6267
+ * @response `200` `void` Success
6268
+ * @response `422` `UnprocessableEntity` Client Error
6269
6269
  */
6270
6270
  sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6271
6271
  /**
@@ -6276,8 +6276,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6276
6276
  * @summary Send Test Notification for Loan
6277
6277
  * @request POST:/api/notifications/test
6278
6278
  * @secure
6279
- * @response `200` `void` OK
6280
- * @response `422` `UnprocessableEntity` Unprocessable Content
6279
+ * @response `200` `void` Success
6280
+ * @response `422` `UnprocessableEntity` Client Error
6281
6281
  */
6282
6282
  sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6283
6283
  /**
@@ -6288,7 +6288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6288
6288
  * @summary Get All
6289
6289
  * @request GET:/api/notification-templates
6290
6290
  * @secure
6291
- * @response `200` `(NotificationTemplateBase)[]` OK
6291
+ * @response `200` `(NotificationTemplateBase)[]` Success
6292
6292
  */
6293
6293
  getNotificationTemplates: (query?: {
6294
6294
  showAll?: boolean;
@@ -6302,7 +6302,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6302
6302
  * @request POST:/api/notification-templates
6303
6303
  * @secure
6304
6304
  * @response `201` `NotificationTemplate` Created
6305
- * @response `422` `UnprocessableEntity` Unprocessable Content
6305
+ * @response `422` `UnprocessableEntity` Client Error
6306
6306
  */
6307
6307
  createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
6308
6308
  /**
@@ -6313,7 +6313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6313
6313
  * @summary Get by ID
6314
6314
  * @request GET:/api/notification-templates/{id}
6315
6315
  * @secure
6316
- * @response `200` `NotificationTemplate` OK
6316
+ * @response `200` `NotificationTemplate` Success
6317
6317
  */
6318
6318
  getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
6319
6319
  /**
@@ -6324,8 +6324,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6324
6324
  * @summary Replace
6325
6325
  * @request PUT:/api/notification-templates/{id}
6326
6326
  * @secure
6327
- * @response `200` `NotificationTemplate` OK
6328
- * @response `422` `UnprocessableEntity` Unprocessable Content
6327
+ * @response `200` `NotificationTemplate` Success
6328
+ * @response `422` `UnprocessableEntity` Client Error
6329
6329
  */
6330
6330
  replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
6331
6331
  /**
@@ -6347,7 +6347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6347
6347
  * @summary Restore
6348
6348
  * @request POST:/api/notification-templates/{id}/restore
6349
6349
  * @secure
6350
- * @response `200` `NotificationTemplate` OK
6350
+ * @response `200` `NotificationTemplate` Success
6351
6351
  */
6352
6352
  restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
6353
6353
  /**
@@ -6358,7 +6358,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6358
6358
  * @summary Get All
6359
6359
  * @request GET:/api/notification-templates/{notificationId}/versions
6360
6360
  * @secure
6361
- * @response `200` `(NotificationTemplateVersion)[]` OK
6361
+ * @response `200` `(NotificationTemplateVersion)[]` Success
6362
6362
  */
6363
6363
  getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
6364
6364
  /**
@@ -6369,7 +6369,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6369
6369
  * @summary Create
6370
6370
  * @request POST:/api/notification-templates/{notificationId}/versions
6371
6371
  * @secure
6372
- * @response `200` `NotificationTemplateVersion` OK
6372
+ * @response `200` `NotificationTemplateVersion` Success
6373
6373
  */
6374
6374
  createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
6375
6375
  /**
@@ -6380,7 +6380,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6380
6380
  * @summary Get by ID
6381
6381
  * @request GET:/api/notification-templates/{notificationId}/versions/{id}
6382
6382
  * @secure
6383
- * @response `200` `NotificationTemplateVersion` OK
6383
+ * @response `200` `NotificationTemplateVersion` Success
6384
6384
  */
6385
6385
  getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
6386
6386
  /**
@@ -6391,7 +6391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6391
6391
  * @summary Replace
6392
6392
  * @request PUT:/api/notification-templates/{notificationId}/versions/{id}
6393
6393
  * @secure
6394
- * @response `200` `NotificationTemplateVersion` OK
6394
+ * @response `200` `NotificationTemplateVersion` Success
6395
6395
  */
6396
6396
  replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
6397
6397
  /**
@@ -6402,7 +6402,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6402
6402
  * @summary Delete
6403
6403
  * @request DELETE:/api/notification-templates/{notificationId}/versions/{id}
6404
6404
  * @secure
6405
- * @response `200` `NotificationTemplateVersion` OK
6405
+ * @response `200` `NotificationTemplateVersion` Success
6406
6406
  */
6407
6407
  deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
6408
6408
  /**
@@ -6413,7 +6413,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6413
6413
  * @summary Get All
6414
6414
  * @request GET:/api/partners
6415
6415
  * @secure
6416
- * @response `200` `BranchUserPaginated` OK
6416
+ * @response `200` `BranchUserPaginated` Success
6417
6417
  */
6418
6418
  getPartners: (query?: {
6419
6419
  showAll?: boolean;
@@ -6434,7 +6434,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6434
6434
  * @summary Search
6435
6435
  * @request POST:/api/partners/search
6436
6436
  * @secure
6437
- * @response `200` `BranchUserPaginated` OK
6437
+ * @response `200` `BranchUserPaginated` Success
6438
6438
  */
6439
6439
  searchPartners: (data: PartnerSearchCriteria, query?: {
6440
6440
  /** @format int32 */
@@ -6452,7 +6452,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6452
6452
  * @summary Get by ID
6453
6453
  * @request GET:/api/partners/{id}
6454
6454
  * @secure
6455
- * @response `200` `BranchUser` OK
6455
+ * @response `200` `BranchUser` Success
6456
6456
  */
6457
6457
  getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
6458
6458
  /**
@@ -6463,8 +6463,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6463
6463
  * @summary Create Site Configuration
6464
6464
  * @request POST:/api/partners/{realtorId}/site-configurations
6465
6465
  * @secure
6466
- * @response `200` `SiteConfiguration` OK
6467
- * @response `422` `UnprocessableEntity` Unprocessable Content
6466
+ * @response `200` `SiteConfiguration` Success
6467
+ * @response `422` `UnprocessableEntity` Client Error
6468
6468
  */
6469
6469
  createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6470
6470
  /**
@@ -6475,7 +6475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6475
6475
  * @summary Get Site Configuration
6476
6476
  * @request GET:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
6477
6477
  * @secure
6478
- * @response `200` `SiteConfigurationWithInherited` OK
6478
+ * @response `200` `SiteConfigurationWithInherited` Success
6479
6479
  */
6480
6480
  getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
6481
6481
  /**
@@ -6486,8 +6486,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6486
6486
  * @summary Replace Site Configuration
6487
6487
  * @request PUT:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
6488
6488
  * @secure
6489
- * @response `200` `SiteConfiguration` OK
6490
- * @response `422` `UnprocessableEntity` Unprocessable Content
6489
+ * @response `200` `SiteConfiguration` Success
6490
+ * @response `422` `UnprocessableEntity` Client Error
6491
6491
  */
6492
6492
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6493
6493
  applyToChildren?: boolean;
@@ -6501,7 +6501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6501
6501
  * @request GET:/api/request-queues
6502
6502
  * @deprecated
6503
6503
  * @secure
6504
- * @response `200` `(RequestQueue)[]` OK
6504
+ * @response `200` `(RequestQueue)[]` Success
6505
6505
  */
6506
6506
  getRequestQueues: (params?: RequestParams) => Promise<AxiosResponse<RequestQueue[], any>>;
6507
6507
  /**
@@ -6513,7 +6513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6513
6513
  * @request POST:/api/request-queues/{id}/run
6514
6514
  * @deprecated
6515
6515
  * @secure
6516
- * @response `200` `void` OK
6516
+ * @response `200` `void` Success
6517
6517
  */
6518
6518
  runRequestQueue: (id: string, query?: {
6519
6519
  /** @default false */
@@ -6539,7 +6539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6539
6539
  * @summary Get By ID
6540
6540
  * @request GET:/api/site-configurations/{id}
6541
6541
  * @secure
6542
- * @response `200` `SiteConfiguration` OK
6542
+ * @response `200` `SiteConfiguration` Success
6543
6543
  */
6544
6544
  getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6545
6545
  /**
@@ -6551,8 +6551,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6551
6551
  * @request POST:/api/site-configurations/url
6552
6552
  * @deprecated
6553
6553
  * @secure
6554
- * @response `200` `SiteConfigurationByUrl` OK
6555
- * @response `422` `UnprocessableEntity` Unprocessable Content
6554
+ * @response `200` `SiteConfigurationByUrl` Success
6555
+ * @response `422` `UnprocessableEntity` Client Error
6556
6556
  */
6557
6557
  searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
6558
6558
  /**
@@ -6563,8 +6563,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6563
6563
  * @summary Get By URL
6564
6564
  * @request GET:/api/site-configurations
6565
6565
  * @secure
6566
- * @response `200` `SiteConfigurationByUrl` OK
6567
- * @response `422` `UnprocessableEntity` Unprocessable Content
6566
+ * @response `200` `SiteConfigurationByUrl` Success
6567
+ * @response `422` `UnprocessableEntity` Client Error
6568
6568
  */
6569
6569
  getSiteConfigurationByUrl: (query?: {
6570
6570
  url?: string;
@@ -6578,8 +6578,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6578
6578
  * @request POST:/api/site-configurations/louser
6579
6579
  * @deprecated
6580
6580
  * @secure
6581
- * @response `200` `SiteConfiguration` OK
6582
- * @response `422` `UnprocessableEntity` Unprocessable Content
6581
+ * @response `200` `SiteConfiguration` Success
6582
+ * @response `422` `UnprocessableEntity` Client Error
6583
6583
  */
6584
6584
  searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6585
6585
  /**
@@ -6590,8 +6590,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6590
6590
  * @summary Get By Loan Officer User
6591
6591
  * @request GET:/api/site-configurations/louser/{loUserId}
6592
6592
  * @secure
6593
- * @response `200` `SiteConfiguration` OK
6594
- * @response `422` `UnprocessableEntity` Unprocessable Content
6593
+ * @response `200` `SiteConfiguration` Success
6594
+ * @response `422` `UnprocessableEntity` Client Error
6595
6595
  */
6596
6596
  getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6597
6597
  /**
@@ -6602,8 +6602,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6602
6602
  * @summary Search
6603
6603
  * @request POST:/api/site-configurations/search
6604
6604
  * @secure
6605
- * @response `200` `SiteConfigurationSummaryPaginated` OK
6606
- * @response `422` `UnprocessableEntity` Unprocessable Content
6605
+ * @response `200` `SiteConfigurationSummaryPaginated` Success
6606
+ * @response `422` `UnprocessableEntity` Client Error
6607
6607
  */
6608
6608
  searchSiteConfigurations: (data: SiteConfigurationSearchCriteria, query?: {
6609
6609
  /** @format int32 */
@@ -6621,7 +6621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6621
6621
  * @summary Get Forms by Site Configuration
6622
6622
  * @request GET:/api/site-configurations/{id}/forms
6623
6623
  * @secure
6624
- * @response `200` `(AdminAccessGetForms)[]` OK
6624
+ * @response `200` `(AdminAccessGetForms)[]` Success
6625
6625
  */
6626
6626
  getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
6627
6627
  /**
@@ -6632,7 +6632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6632
6632
  * @summary Get Saml Metadata
6633
6633
  * @request GET:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
6634
6634
  * @secure
6635
- * @response `200` `File` OK
6635
+ * @response `200` `File` Success
6636
6636
  * @response `404` `ProblemDetails` Not Found
6637
6637
  */
6638
6638
  getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
@@ -6644,7 +6644,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6644
6644
  * @summary Create or Replace Saml Metadata
6645
6645
  * @request POST:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
6646
6646
  * @secure
6647
- * @response `200` `File` OK
6647
+ * @response `200` `File` Success
6648
6648
  */
6649
6649
  createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6650
6650
  /**
@@ -6655,7 +6655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6655
6655
  * @summary List all site configurations assigned to a workflow
6656
6656
  * @request GET:/api/workflows/{workflowId}/site-configurations
6657
6657
  * @secure
6658
- * @response `200` `(SiteConfigurationForm)[]` OK
6658
+ * @response `200` `(SiteConfigurationForm)[]` Success
6659
6659
  */
6660
6660
  getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
6661
6661
  /**
@@ -6666,7 +6666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6666
6666
  * @summary Get the workflow-site configuration assignment by composite key
6667
6667
  * @request GET:/api/workflows/{workflowId}/site-configurations/{siteConfigurationId}
6668
6668
  * @secure
6669
- * @response `200` `SiteConfigurationForm` OK
6669
+ * @response `200` `SiteConfigurationForm` Success
6670
6670
  * @response `404` `ProblemDetails` Not Found
6671
6671
  */
6672
6672
  getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
@@ -6680,7 +6680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6680
6680
  * @secure
6681
6681
  * @response `201` `SiteConfigurationForm` Created
6682
6682
  * @response `409` `ProblemDetails` Conflict
6683
- * @response `422` `UnprocessableEntity` Unprocessable Content
6683
+ * @response `422` `UnprocessableEntity` Client Error
6684
6684
  */
6685
6685
  createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
6686
6686
  /**
@@ -6702,7 +6702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6702
6702
  * @summary Get By Site Configuration Slug
6703
6703
  * @request POST:/api/site-forms
6704
6704
  * @secure
6705
- * @response `200` `GetForm` OK
6705
+ * @response `200` `GetForm` Success
6706
6706
  */
6707
6707
  getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
6708
6708
  /**
@@ -6713,7 +6713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6713
6713
  * @summary Get by Users
6714
6714
  * @request GET:/api/surveys
6715
6715
  * @secure
6716
- * @response `200` `(SocialSurveyRecord)[]` OK
6716
+ * @response `200` `(SocialSurveyRecord)[]` Success
6717
6717
  */
6718
6718
  getSurveysByUsers: (query?: {
6719
6719
  /** @format int32 */
@@ -6727,8 +6727,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6727
6727
  * @summary Get by User
6728
6728
  * @request POST:/api/surveys
6729
6729
  * @secure
6730
- * @response `200` `(SocialSurveyRecord)[]` OK
6731
- * @response `422` `UnprocessableEntity` Unprocessable Content
6730
+ * @response `200` `(SocialSurveyRecord)[]` Success
6731
+ * @response `422` `UnprocessableEntity` Client Error
6732
6732
  */
6733
6733
  getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
6734
6734
  /**
@@ -6739,7 +6739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6739
6739
  * @summary Get All
6740
6740
  * @request GET:/api/tasks
6741
6741
  * @secure
6742
- * @response `200` `Task` OK
6742
+ * @response `200` `Task` Success
6743
6743
  * @response `404` `ProblemDetails` Not Found
6744
6744
  */
6745
6745
  getTasks: (query?: {
@@ -6769,7 +6769,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6769
6769
  * @summary Get By ID
6770
6770
  * @request GET:/api/tasks/{id}
6771
6771
  * @secure
6772
- * @response `200` `Task` OK
6772
+ * @response `200` `Task` Success
6773
6773
  * @response `404` `ProblemDetails` Not Found
6774
6774
  */
6775
6775
  getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
@@ -6781,10 +6781,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6781
6781
  * @summary Replace
6782
6782
  * @request PUT:/api/tasks/{id}
6783
6783
  * @secure
6784
- * @response `200` `Task` OK
6784
+ * @response `200` `void` Success
6785
6785
  * @response `404` `ProblemDetails` Not Found
6786
6786
  */
6787
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
6787
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6788
6788
  /**
6789
6789
  * No description
6790
6790
  *
@@ -6805,7 +6805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6805
6805
  * @summary Search
6806
6806
  * @request POST:/api/tasks/search
6807
6807
  * @secure
6808
- * @response `200` `TaskPaginated` OK
6808
+ * @response `200` `TaskPaginated` Success
6809
6809
  */
6810
6810
  searchTasks: (data: TaskSearchCriteria, query?: {
6811
6811
  /** @format int32 */
@@ -6822,7 +6822,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6822
6822
  * @name IntegrationsLosLoansCreate
6823
6823
  * @request POST:/api/integrations/los/loans
6824
6824
  * @secure
6825
- * @response `200` `void` OK
6825
+ * @response `200` `void` Success
6826
6826
  */
6827
6827
  integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6828
6828
  /**
@@ -6857,7 +6857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6857
6857
  * @summary Get draft users
6858
6858
  * @request GET:/api/loans/drafts/{draftId}/users
6859
6859
  * @secure
6860
- * @response `200` `UserDraftPaginated` OK
6860
+ * @response `200` `UserDraftPaginated` Success
6861
6861
  */
6862
6862
  getDraftUsers: (draftId: string, query?: {
6863
6863
  /** @format int32 */
@@ -6875,7 +6875,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6875
6875
  * @summary Get draft user
6876
6876
  * @request GET:/api/loans/drafts/{draftId}/users/{userId}
6877
6877
  * @secure
6878
- * @response `200` `UserDraft` OK
6878
+ * @response `200` `UserDraft` Success
6879
6879
  */
6880
6880
  getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
6881
6881
  /**
@@ -6886,7 +6886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6886
6886
  * @summary Add draft user
6887
6887
  * @request POST:/api/loans/drafts/{draftId}/users/{userId}
6888
6888
  * @secure
6889
- * @response `200` `UserDraft` OK
6889
+ * @response `200` `UserDraft` Success
6890
6890
  */
6891
6891
  addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
6892
6892
  /**
@@ -6904,57 +6904,57 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6904
6904
  * No description
6905
6905
  *
6906
6906
  * @tags UserGroupAccessScopes
6907
- * @name ListGroupScopes
6908
- * @summary List Group Access Scopes
6907
+ * @name GetUserGroupAccessScopes
6908
+ * @summary Get All
6909
6909
  * @request GET:/api/user-groups/{groupId}/scopes
6910
6910
  * @secure
6911
- * @response `200` `(UserGroupAccessScope)[]` OK
6911
+ * @response `200` `(UserGroupAccessScope)[]` Success
6912
6912
  */
6913
- listGroupScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
6913
+ getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
6914
6914
  /**
6915
6915
  * No description
6916
6916
  *
6917
6917
  * @tags UserGroupAccessScopes
6918
- * @name CreateGroupScope
6919
- * @summary Create Group Access Scope
6918
+ * @name CreateUserGroupAccessScope
6919
+ * @summary Create a new scope
6920
6920
  * @request POST:/api/user-groups/{groupId}/scopes
6921
6921
  * @secure
6922
- * @response `200` `UserGroupAccessScope` OK
6922
+ * @response `200` `UserGroupAccessScope` Success
6923
6923
  */
6924
- createGroupScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
6924
+ createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
6925
6925
  /**
6926
6926
  * No description
6927
6927
  *
6928
6928
  * @tags UserGroupAccessScopes
6929
- * @name RemoveGroupScope
6930
- * @summary Remove Group Access Scope
6929
+ * @name DeleteUserGroupAccessScope
6930
+ * @summary Delete a scope
6931
6931
  * @request DELETE:/api/user-groups/{groupId}/scopes/{scopeId}
6932
6932
  * @secure
6933
6933
  * @response `204` `void` No Content
6934
6934
  */
6935
- removeGroupScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6935
+ deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6936
6936
  /**
6937
6937
  * No description
6938
6938
  *
6939
6939
  * @tags UserGroupMembers
6940
- * @name ListGroupMembers
6941
- * @summary List Group Members
6940
+ * @name GetUserGroupMembers
6941
+ * @summary Get All
6942
6942
  * @request GET:/api/user-groups/{groupId}/members
6943
6943
  * @secure
6944
- * @response `200` `(UserGroupMember)[]` OK
6944
+ * @response `200` `(UserGroupMember)[]` Success
6945
6945
  */
6946
- listGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
6946
+ getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
6947
6947
  /**
6948
6948
  * No description
6949
6949
  *
6950
6950
  * @tags UserGroupMembers
6951
- * @name CreateGroupMember
6952
- * @summary Create Group Member
6951
+ * @name CreateUserGroupMember
6952
+ * @summary Create User Group Member
6953
6953
  * @request POST:/api/user-groups/{groupId}/members
6954
6954
  * @secure
6955
- * @response `200` `UserGroupMember` OK
6955
+ * @response `200` `UserGroupMember` Success
6956
6956
  */
6957
- createGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
6957
+ createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
6958
6958
  /** @format uuid */
6959
6959
  userId?: string;
6960
6960
  }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
@@ -6962,25 +6962,25 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6962
6962
  * No description
6963
6963
  *
6964
6964
  * @tags UserGroupMembers
6965
- * @name RemoveGroupMember
6966
- * @summary Remove Group Member
6965
+ * @name DeleteUserGroupMember
6966
+ * @summary Delete User Group Member
6967
6967
  * @request DELETE:/api/user-groups/{groupId}/members/{userId}
6968
6968
  * @secure
6969
6969
  * @response `204` `void` No Content
6970
6970
  */
6971
- removeGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6971
+ deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6972
6972
  /**
6973
6973
  * No description
6974
6974
  *
6975
6975
  * @tags UserGroups
6976
- * @name ListUserGroups
6977
- * @summary List User Groups
6978
- * @request GET:/api/user-groups
6976
+ * @name SearchUserGroups
6977
+ * @summary Get All
6978
+ * @request POST:/api/user-groups/search
6979
6979
  * @secure
6980
- * @response `200` `UserGroupPaginated` OK
6980
+ * @response `200` `UserGroupPaginated` Success
6981
6981
  */
6982
- listUserGroups: (query?: {
6983
- search?: string;
6982
+ searchUserGroups: (query?: {
6983
+ searchText?: string;
6984
6984
  /** @format int32 */
6985
6985
  pageSize?: number;
6986
6986
  /** @format int32 */
@@ -6988,17 +6988,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6988
6988
  sortBy?: string;
6989
6989
  sortDirection?: string;
6990
6990
  }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
6991
- /**
6992
- * No description
6993
- *
6994
- * @tags UserGroups
6995
- * @name CreateUserGroup
6996
- * @summary Create User Group
6997
- * @request POST:/api/user-groups
6998
- * @secure
6999
- * @response `201` `UserGroup` Created
7000
- */
7001
- createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
7002
6991
  /**
7003
6992
  * No description
7004
6993
  *
@@ -7007,7 +6996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7007
6996
  * @summary Get User Group by ID
7008
6997
  * @request GET:/api/user-groups/{groupId}
7009
6998
  * @secure
7010
- * @response `200` `UserGroup` OK
6999
+ * @response `200` `UserGroup` Success
7011
7000
  */
7012
7001
  getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
7013
7002
  /**
@@ -7018,7 +7007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7018
7007
  * @summary Update User Group
7019
7008
  * @request PUT:/api/user-groups/{groupId}
7020
7009
  * @secure
7021
- * @response `200` `UserGroup` OK
7010
+ * @response `200` `UserGroup` Success
7022
7011
  */
7023
7012
  updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
7024
7013
  /**
@@ -7026,12 +7015,23 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7026
7015
  *
7027
7016
  * @tags UserGroups
7028
7017
  * @name DeleteUserGroup
7029
- * @summary Delete (soft) User Group
7018
+ * @summary Delete User Group
7030
7019
  * @request DELETE:/api/user-groups/{groupId}
7031
7020
  * @secure
7032
7021
  * @response `204` `void` No Content
7033
7022
  */
7034
7023
  deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7024
+ /**
7025
+ * No description
7026
+ *
7027
+ * @tags UserGroups
7028
+ * @name CreateUserGroup
7029
+ * @summary Create User Group
7030
+ * @request POST:/api/user-groups
7031
+ * @secure
7032
+ * @response `201` `UserGroup` Created
7033
+ */
7034
+ createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
7035
7035
  /**
7036
7036
  * No description
7037
7037
  *
@@ -7042,7 +7042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7042
7042
  * @secure
7043
7043
  * @response `204` `void` No Content
7044
7044
  * @response `404` `Error` Not Found
7045
- * @response `422` `UnprocessableEntity` Unprocessable Content
7045
+ * @response `422` `UnprocessableEntity` Client Error
7046
7046
  */
7047
7047
  requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7048
7048
  /**
@@ -7055,7 +7055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7055
7055
  * @secure
7056
7056
  * @response `204` `void` No Content
7057
7057
  * @response `404` `Error` Not Found
7058
- * @response `422` `UnprocessableEntity` Unprocessable Content
7058
+ * @response `422` `UnprocessableEntity` Client Error
7059
7059
  */
7060
7060
  allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7061
7061
  /**
@@ -7068,7 +7068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7068
7068
  * @secure
7069
7069
  * @response `204` `void` No Content
7070
7070
  * @response `404` `Error` Not Found
7071
- * @response `422` `UnprocessableEntity` Unprocessable Content
7071
+ * @response `422` `UnprocessableEntity` Client Error
7072
7072
  */
7073
7073
  allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7074
7074
  /**
@@ -7080,7 +7080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7080
7080
  * @request POST:/api/users/impersonation
7081
7081
  * @secure
7082
7082
  * @response `204` `void` No Content
7083
- * @response `422` `UnprocessableEntity` Unprocessable Content
7083
+ * @response `422` `UnprocessableEntity` Client Error
7084
7084
  */
7085
7085
  beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7086
7086
  /**
@@ -7092,7 +7092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7092
7092
  * @request DELETE:/api/users/impersonation
7093
7093
  * @secure
7094
7094
  * @response `204` `void` No Content
7095
- * @response `422` `UnprocessableEntity` Unprocessable Content
7095
+ * @response `422` `UnprocessableEntity` Client Error
7096
7096
  */
7097
7097
  stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7098
7098
  /**
@@ -7105,7 +7105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7105
7105
  * @secure
7106
7106
  * @response `204` `void` No Content
7107
7107
  * @response `404` `Error` Not Found
7108
- * @response `422` `UnprocessableEntity` Unprocessable Content
7108
+ * @response `422` `UnprocessableEntity` Client Error
7109
7109
  */
7110
7110
  forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7111
7111
  /**
@@ -7117,7 +7117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7117
7117
  * @request POST:/api/users/impersonation/extend
7118
7118
  * @secure
7119
7119
  * @response `204` `void` No Content
7120
- * @response `422` `UnprocessableEntity` Unprocessable Content
7120
+ * @response `422` `UnprocessableEntity` Client Error
7121
7121
  */
7122
7122
  extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7123
7123
  /**
@@ -7129,7 +7129,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7129
7129
  * @request POST:/api/users/invites
7130
7130
  * @secure
7131
7131
  * @response `204` `void` No Content
7132
- * @response `422` `UnprocessableEntity` Unprocessable Content
7132
+ * @response `422` `UnprocessableEntity` Client Error
7133
7133
  */
7134
7134
  inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7135
7135
  /**
@@ -7153,8 +7153,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7153
7153
  * @summary Verify
7154
7154
  * @request GET:/api/users/invites/{token}/verify
7155
7155
  * @secure
7156
- * @response `200` `Invite` OK
7157
- * @response `422` `UnprocessableEntity` Unprocessable Content
7156
+ * @response `200` `Invite` Success
7157
+ * @response `422` `UnprocessableEntity` Client Error
7158
7158
  */
7159
7159
  verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
7160
7160
  /**
@@ -7165,7 +7165,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7165
7165
  * @summary Get All
7166
7166
  * @request GET:/api/users/{userID}/relations
7167
7167
  * @secure
7168
- * @response `200` `(UserRelation)[]` OK
7168
+ * @response `200` `(UserRelation)[]` Success
7169
7169
  */
7170
7170
  getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
7171
7171
  /**
@@ -7187,7 +7187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7187
7187
  * @summary Get by ID
7188
7188
  * @request GET:/api/users/{userID}/relations/{id}
7189
7189
  * @secure
7190
- * @response `200` `UserRelation` OK
7190
+ * @response `200` `UserRelation` Success
7191
7191
  */
7192
7192
  getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
7193
7193
  /**
@@ -7209,7 +7209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7209
7209
  * @summary Get All
7210
7210
  * @request GET:/api/users
7211
7211
  * @secure
7212
- * @response `200` `(User)[]` OK
7212
+ * @response `200` `(User)[]` Success
7213
7213
  */
7214
7214
  getUsers: (query?: {
7215
7215
  /** @format int32 */
@@ -7227,8 +7227,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7227
7227
  * @summary Create
7228
7228
  * @request POST:/api/users
7229
7229
  * @secure
7230
- * @response `200` `DetailedUser` OK
7231
- * @response `422` `UnprocessableEntity` Unprocessable Content
7230
+ * @response `200` `DetailedUser` Success
7231
+ * @response `422` `UnprocessableEntity` Client Error
7232
7232
  */
7233
7233
  createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
7234
7234
  /**
@@ -7239,7 +7239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7239
7239
  * @summary Search
7240
7240
  * @request POST:/api/users/search
7241
7241
  * @secure
7242
- * @response `200` `UserPaginated` OK
7242
+ * @response `200` `UserPaginated` Success
7243
7243
  */
7244
7244
  searchUsers: (data: UserSearchCriteria, query?: {
7245
7245
  /** @format int32 */
@@ -7257,7 +7257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7257
7257
  * @summary Get by Email
7258
7258
  * @request POST:/api/users/byemail
7259
7259
  * @secure
7260
- * @response `200` `AdminAccessUser` OK
7260
+ * @response `200` `AdminAccessUser` Success
7261
7261
  */
7262
7262
  getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
7263
7263
  /**
@@ -7268,8 +7268,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7268
7268
  * @summary Sign Up
7269
7269
  * @request POST:/api/users/register
7270
7270
  * @secure
7271
- * @response `200` `User` OK
7272
- * @response `422` `UnprocessableEntity` Unprocessable Content
7271
+ * @response `200` `User` Success
7272
+ * @response `422` `UnprocessableEntity` Client Error
7273
7273
  */
7274
7274
  signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
7275
7275
  /**
@@ -7280,8 +7280,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7280
7280
  * @summary Update
7281
7281
  * @request PUT:/api/users/{id}
7282
7282
  * @secure
7283
- * @response `200` `DetailedUser` OK
7284
- * @response `422` `UnprocessableEntity` Unprocessable Content
7283
+ * @response `200` `DetailedUser` Success
7284
+ * @response `422` `UnprocessableEntity` Client Error
7285
7285
  */
7286
7286
  replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
7287
7287
  /**
@@ -7318,7 +7318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7318
7318
  * @request POST:/api/users/change-password
7319
7319
  * @secure
7320
7320
  * @response `204` `void` No Content
7321
- * @response `422` `UnprocessableEntity` Unprocessable Content
7321
+ * @response `422` `UnprocessableEntity` Client Error
7322
7322
  */
7323
7323
  changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7324
7324
  /**
@@ -7330,7 +7330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7330
7330
  * @request POST:/api/users/verify-password
7331
7331
  * @secure
7332
7332
  * @response `204` `void` No Content
7333
- * @response `422` `UnprocessableEntity` Unprocessable Content
7333
+ * @response `422` `UnprocessableEntity` Client Error
7334
7334
  */
7335
7335
  verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7336
7336
  /**
@@ -7342,7 +7342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7342
7342
  * @request POST:/api/users/{id}/override-password
7343
7343
  * @secure
7344
7344
  * @response `204` `void` No Content
7345
- * @response `422` `UnprocessableEntity` Unprocessable Content
7345
+ * @response `422` `UnprocessableEntity` Client Error
7346
7346
  */
7347
7347
  overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7348
7348
  /**
@@ -7354,7 +7354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7354
7354
  * @request POST:/api/users/forgot-password
7355
7355
  * @secure
7356
7356
  * @response `204` `void` No Content
7357
- * @response `422` `UnprocessableEntity` Unprocessable Content
7357
+ * @response `422` `UnprocessableEntity` Client Error
7358
7358
  */
7359
7359
  forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7360
7360
  /**
@@ -7366,7 +7366,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7366
7366
  * @request POST:/api/users/mobile-phone/send-code
7367
7367
  * @secure
7368
7368
  * @response `204` `void` No Content
7369
- * @response `422` `UnprocessableEntity` Unprocessable Content
7369
+ * @response `422` `UnprocessableEntity` Client Error
7370
7370
  */
7371
7371
  sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7372
7372
  /**
@@ -7378,7 +7378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7378
7378
  * @request PUT:/api/users/mobile-phone/verify-code
7379
7379
  * @secure
7380
7380
  * @response `204` `void` No Content
7381
- * @response `422` `UnprocessableEntity` Unprocessable Content
7381
+ * @response `422` `UnprocessableEntity` Client Error
7382
7382
  */
7383
7383
  verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7384
7384
  /**
@@ -7389,7 +7389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7389
7389
  * @summary Get
7390
7390
  * @request GET:/api/users/me
7391
7391
  * @secure
7392
- * @response `200` `ImpersonatedDetailedUser` OK
7392
+ * @response `200` `ImpersonatedDetailedUser` Success
7393
7393
  */
7394
7394
  getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
7395
7395
  /**
@@ -7400,7 +7400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7400
7400
  * @summary Replace
7401
7401
  * @request PUT:/api/users/me
7402
7402
  * @secure
7403
- * @response `200` `DetailedUser` OK
7403
+ * @response `200` `DetailedUser` Success
7404
7404
  */
7405
7405
  replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
7406
7406
  /**
@@ -7422,7 +7422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7422
7422
  * @summary Get Relationships
7423
7423
  * @request GET:/api/users/me/relationships
7424
7424
  * @secure
7425
- * @response `200` `(UserRelationship)[]` OK
7425
+ * @response `200` `(UserRelationship)[]` Success
7426
7426
  */
7427
7427
  getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
7428
7428
  /**
@@ -7433,7 +7433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7433
7433
  * @summary Get Relationship Prospects
7434
7434
  * @request GET:/api/users/me/relationships/prospects
7435
7435
  * @secure
7436
- * @response `200` `(UserRelationshipProspect)[]` OK
7436
+ * @response `200` `(UserRelationshipProspect)[]` Success
7437
7437
  */
7438
7438
  getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
7439
7439
  /**
@@ -7466,7 +7466,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7466
7466
  * @summary Get Workflow
7467
7467
  * @request POST:/api/workflow
7468
7468
  * @secure
7469
- * @response `200` `GetForm` OK
7469
+ * @response `200` `GetForm` Success
7470
7470
  */
7471
7471
  getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
7472
7472
  };