@yuno-payments/dashboard-api-mfe 0.36.57 → 0.36.60-RC.1
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/build/cjs/index.js +7 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +29 -11
- package/build/cjs/types/mutations/accounts/accounts.mutation.d.ts +7 -7
- package/build/cjs/types/mutations/audit/audit-api.mutation.d.ts +5 -0
- package/build/cjs/types/mutations/audit/audit.mutation.d.ts +1 -1
- package/build/cjs/types/mutations/audit/index.d.ts +1 -0
- package/build/cjs/types/mutations/chartgpt/chartgpt.mutation.d.ts +4 -1
- package/build/cjs/types/mutations/checkouts/checkouts.mutation.d.ts +1 -1
- package/build/cjs/types/mutations/connections/connections.mutation.d.ts +6 -1
- package/build/cjs/types/mutations/index.d.ts +1 -0
- package/build/cjs/types/mutations/organization-settings/organization-settings.mutations.d.ts +2 -2
- package/build/cjs/types/mutations/payments/payments.mutation.d.ts +2 -2
- package/build/cjs/types/mutations/saml-config/saml-config.query.d.ts +3 -3
- package/build/cjs/types/mutations/settings/settings.mutation.d.ts +4 -4
- package/build/cjs/types/mutations/users/users.mutation.d.ts +6 -6
- package/build/cjs/types/queries/accounts/accounts.query.d.ts +6 -0
- package/build/cjs/types/queries/audit/audit.query.d.ts +6 -0
- package/build/cjs/types/queries/firebase/firebase.query.d.ts +1 -1
- package/build/cjs/types/queries/index.d.ts +1 -0
- package/build/cjs/types/queries/network-tokens/index.d.ts +1 -0
- package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +5 -0
- package/build/cjs/types/queries/users/users.query.d.ts +1 -1
- package/build/cjs/types/types/audit/audit.d.ts +81 -0
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +24 -0
- package/build/cjs/types/types/user/user.d.ts +8 -0
- package/build/cjs/types/yuno-dashboard-api-mfe.d.ts +0 -1
- package/build/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +29 -11
- package/build/esm/types/mutations/accounts/accounts.mutation.d.ts +7 -7
- package/build/esm/types/mutations/audit/audit-api.mutation.d.ts +5 -0
- package/build/esm/types/mutations/audit/audit.mutation.d.ts +1 -1
- package/build/esm/types/mutations/audit/index.d.ts +1 -0
- package/build/esm/types/mutations/chartgpt/chartgpt.mutation.d.ts +4 -1
- package/build/esm/types/mutations/checkouts/checkouts.mutation.d.ts +1 -1
- package/build/esm/types/mutations/connections/connections.mutation.d.ts +6 -1
- package/build/esm/types/mutations/index.d.ts +1 -0
- package/build/esm/types/mutations/organization-settings/organization-settings.mutations.d.ts +2 -2
- package/build/esm/types/mutations/payments/payments.mutation.d.ts +2 -2
- package/build/esm/types/mutations/saml-config/saml-config.query.d.ts +3 -3
- package/build/esm/types/mutations/settings/settings.mutation.d.ts +4 -4
- package/build/esm/types/mutations/users/users.mutation.d.ts +6 -6
- package/build/esm/types/queries/accounts/accounts.query.d.ts +6 -0
- package/build/esm/types/queries/audit/audit.query.d.ts +6 -0
- package/build/esm/types/queries/firebase/firebase.query.d.ts +1 -1
- package/build/esm/types/queries/index.d.ts +1 -0
- package/build/esm/types/queries/network-tokens/index.d.ts +1 -0
- package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +5 -0
- package/build/esm/types/queries/users/users.query.d.ts +1 -1
- package/build/esm/types/types/audit/audit.d.ts +81 -0
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +24 -0
- package/build/esm/types/types/user/user.d.ts +8 -0
- package/build/esm/types/yuno-dashboard-api-mfe.d.ts +0 -1
- package/build/index.d.ts +250 -113
- package/package.json +3 -3
- package/build/cjs/types/websockets/index.d.ts +0 -1
- package/build/cjs/types/websockets/use-chart-assistant-socket.d.ts +0 -17
- package/build/esm/types/websockets/index.d.ts +0 -1
- package/build/esm/types/websockets/use-chart-assistant-socket.d.ts +0 -17
package/build/index.d.ts
CHANGED
|
@@ -1441,6 +1441,14 @@ declare namespace User {
|
|
|
1441
1441
|
first_name: string;
|
|
1442
1442
|
last_name: string;
|
|
1443
1443
|
email: string;
|
|
1444
|
+
account_code: string;
|
|
1445
|
+
account_code_live: string;
|
|
1446
|
+
account_code_testing: string;
|
|
1447
|
+
account_name: string;
|
|
1448
|
+
role: {
|
|
1449
|
+
id: string;
|
|
1450
|
+
name: string;
|
|
1451
|
+
};
|
|
1444
1452
|
}
|
|
1445
1453
|
interface UsersToImpersonateResponse {
|
|
1446
1454
|
users: UsersToImpersonateUser[];
|
|
@@ -2220,6 +2228,30 @@ declare namespace SmartRouting {
|
|
|
2220
2228
|
export interface NetworkTokensOnboardingResponse {
|
|
2221
2229
|
available: boolean;
|
|
2222
2230
|
}
|
|
2231
|
+
export interface NetworkTokensOnboardingData {
|
|
2232
|
+
company_name: string;
|
|
2233
|
+
client: string;
|
|
2234
|
+
website: string;
|
|
2235
|
+
required_provider: string;
|
|
2236
|
+
company_legal_name: string;
|
|
2237
|
+
company_registered_state: string;
|
|
2238
|
+
company_registered_zip_code: string;
|
|
2239
|
+
company_registered_address: string;
|
|
2240
|
+
company_registered_country: string;
|
|
2241
|
+
company_registered_phone: string;
|
|
2242
|
+
primary_contact_first_name: string;
|
|
2243
|
+
primary_contact_last_name: string;
|
|
2244
|
+
business_identification_type: string;
|
|
2245
|
+
business_identification_number: string;
|
|
2246
|
+
}
|
|
2247
|
+
export interface NetworkTokensOnboardingPayload extends NetworkTokensOnboardingData {
|
|
2248
|
+
accounts: string[];
|
|
2249
|
+
}
|
|
2250
|
+
export interface NetworkTokensOnboardingGetResponse extends NetworkTokensOnboardingData {
|
|
2251
|
+
id?: string;
|
|
2252
|
+
created_at?: string;
|
|
2253
|
+
updated_at?: string;
|
|
2254
|
+
}
|
|
2223
2255
|
export {};
|
|
2224
2256
|
}
|
|
2225
2257
|
|
|
@@ -3622,6 +3654,87 @@ declare namespace Audit {
|
|
|
3622
3654
|
type: string;
|
|
3623
3655
|
percentage: number;
|
|
3624
3656
|
}
|
|
3657
|
+
interface ExportApiLogsRequest {
|
|
3658
|
+
report_name: string;
|
|
3659
|
+
account_code: string[];
|
|
3660
|
+
start_date: string;
|
|
3661
|
+
end_date: string;
|
|
3662
|
+
time_zone: string;
|
|
3663
|
+
method?: string[];
|
|
3664
|
+
organizationCode?: string;
|
|
3665
|
+
}
|
|
3666
|
+
interface AuditApiJSON {
|
|
3667
|
+
[key: string]: string;
|
|
3668
|
+
}
|
|
3669
|
+
interface AuditApiLogs {
|
|
3670
|
+
code: string;
|
|
3671
|
+
url: string;
|
|
3672
|
+
method: string;
|
|
3673
|
+
source: string;
|
|
3674
|
+
headers: AuditApiJSON;
|
|
3675
|
+
request: AuditApiJSON;
|
|
3676
|
+
response: AuditApiJSON;
|
|
3677
|
+
account_name: string;
|
|
3678
|
+
account_code: string;
|
|
3679
|
+
status_code: number;
|
|
3680
|
+
trace_id: string;
|
|
3681
|
+
created_at: string;
|
|
3682
|
+
}
|
|
3683
|
+
interface AuditApiLogsResponse {
|
|
3684
|
+
data: AuditApiLogs[];
|
|
3685
|
+
page: number;
|
|
3686
|
+
size: number;
|
|
3687
|
+
total_rows: number;
|
|
3688
|
+
total_pages: number;
|
|
3689
|
+
}
|
|
3690
|
+
interface AuditApiLogsParams {
|
|
3691
|
+
page: number;
|
|
3692
|
+
size: number;
|
|
3693
|
+
periodicity?: string;
|
|
3694
|
+
account_code?: string[];
|
|
3695
|
+
organizationCode?: string;
|
|
3696
|
+
status_codes?: string[];
|
|
3697
|
+
methods?: string[];
|
|
3698
|
+
}
|
|
3699
|
+
interface AuditWebhooksParams {
|
|
3700
|
+
page: number;
|
|
3701
|
+
size: number;
|
|
3702
|
+
organizationCode?: string;
|
|
3703
|
+
periodicity?: string;
|
|
3704
|
+
account_code?: string[];
|
|
3705
|
+
status_codes?: string[];
|
|
3706
|
+
methods?: string[];
|
|
3707
|
+
}
|
|
3708
|
+
interface AuditWebhooks {
|
|
3709
|
+
id: number;
|
|
3710
|
+
organization_code: string;
|
|
3711
|
+
account_code: string;
|
|
3712
|
+
type: string;
|
|
3713
|
+
created_at: string;
|
|
3714
|
+
updated_at: string;
|
|
3715
|
+
time: number;
|
|
3716
|
+
http_method: string;
|
|
3717
|
+
url: string;
|
|
3718
|
+
request: string;
|
|
3719
|
+
response: string;
|
|
3720
|
+
response_status: number;
|
|
3721
|
+
connect_timeout: number;
|
|
3722
|
+
read_timeout: number;
|
|
3723
|
+
exception: string;
|
|
3724
|
+
headers: string;
|
|
3725
|
+
trace_id: string;
|
|
3726
|
+
origin_id: string;
|
|
3727
|
+
}
|
|
3728
|
+
interface AuditWebhooksResponse {
|
|
3729
|
+
data: AuditWebhooks[];
|
|
3730
|
+
page: number;
|
|
3731
|
+
size: number;
|
|
3732
|
+
total_rows: number;
|
|
3733
|
+
total_pages: number;
|
|
3734
|
+
}
|
|
3735
|
+
interface AuditWebhooksResendParams {
|
|
3736
|
+
codes: string[];
|
|
3737
|
+
}
|
|
3625
3738
|
}
|
|
3626
3739
|
|
|
3627
3740
|
declare namespace PaymentLinks {
|
|
@@ -3803,14 +3916,14 @@ type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrgani
|
|
|
3803
3916
|
|
|
3804
3917
|
declare function usePostWebhookMultiAccount({ onSuccessCallback, }: {
|
|
3805
3918
|
onSuccessCallback?: (data: any) => void;
|
|
3806
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
3919
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
3807
3920
|
payload: Webhook.WebHookV2MultiAccount;
|
|
3808
3921
|
}, {
|
|
3809
3922
|
payload: Webhook.WebHookV2MultiAccount;
|
|
3810
3923
|
}>;
|
|
3811
3924
|
declare function useDeleteWebhookV2({ onSuccessCallback, }: {
|
|
3812
3925
|
onSuccessCallback?: (data: any) => void;
|
|
3813
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<null, any>, unknown, {
|
|
3926
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<null, any, {}>, unknown, {
|
|
3814
3927
|
code: string;
|
|
3815
3928
|
accountCode: string;
|
|
3816
3929
|
}, {
|
|
@@ -3819,7 +3932,7 @@ declare function useDeleteWebhookV2({ onSuccessCallback, }: {
|
|
|
3819
3932
|
}>;
|
|
3820
3933
|
declare function useUpdateWebhookV2({ onSuccessCallback, }: {
|
|
3821
3934
|
onSuccessCallback?: (data: any) => void;
|
|
3822
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Webhook.WebHookV2, any>, unknown, {
|
|
3935
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Webhook.WebHookV2, any, {}>, unknown, {
|
|
3823
3936
|
code: string;
|
|
3824
3937
|
payload: any;
|
|
3825
3938
|
accountCode: string;
|
|
@@ -3828,19 +3941,19 @@ declare function useUpdateWebhookV2({ onSuccessCallback, }: {
|
|
|
3828
3941
|
payload: any;
|
|
3829
3942
|
accountCode: string;
|
|
3830
3943
|
}>;
|
|
3831
|
-
declare function usePostAccount(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3944
|
+
declare function usePostAccount(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3832
3945
|
name: string;
|
|
3833
3946
|
principal: boolean;
|
|
3834
3947
|
}, unknown>;
|
|
3835
|
-
declare function usePatchAccountV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3948
|
+
declare function usePatchAccountV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3836
3949
|
name: string;
|
|
3837
3950
|
code: string;
|
|
3838
3951
|
principal: boolean;
|
|
3839
3952
|
}, unknown>;
|
|
3840
|
-
declare function usePutAccountPrincipal(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3953
|
+
declare function usePutAccountPrincipal(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3841
3954
|
account_code: string;
|
|
3842
3955
|
}, unknown>;
|
|
3843
|
-
declare function usePutAccountsUserMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3956
|
+
declare function usePutAccountsUserMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3844
3957
|
organizationCode: string;
|
|
3845
3958
|
userCode: string;
|
|
3846
3959
|
payload: {
|
|
@@ -3890,6 +4003,11 @@ declare function useValidateCredentials(): _tanstack_react_query.UseMutationResu
|
|
|
3890
4003
|
payment_method: string;
|
|
3891
4004
|
};
|
|
3892
4005
|
}, unknown>;
|
|
4006
|
+
declare function useGetNetworkTokensOnboarding(organizationCode: string): _tanstack_react_query.UseQueryResult<SmartRouting.NetworkTokensOnboardingGetResponse, unknown>;
|
|
4007
|
+
declare function usePostNetworkTokensOnboarding(): _tanstack_react_query.UseMutationResult<SmartRouting.NetworkTokensOnboardingGetResponse, unknown, {
|
|
4008
|
+
payload: SmartRouting.NetworkTokensOnboardingPayload;
|
|
4009
|
+
organizationCode: string;
|
|
4010
|
+
}, unknown>;
|
|
3893
4011
|
|
|
3894
4012
|
declare function useUpdateOrganizationStatus(): _tanstack_react_query.UseMutationResult<void, unknown, void, unknown>;
|
|
3895
4013
|
declare function useValidateOrgName(): _tanstack_react_query.UseMutationResult<void, unknown, string, unknown>;
|
|
@@ -3898,20 +4016,20 @@ declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordRes
|
|
|
3898
4016
|
|
|
3899
4017
|
declare function useUpdateProfile({ onSuccessCallback, }: {
|
|
3900
4018
|
onSuccessCallback?: () => void;
|
|
3901
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any>, unknown, User.UserRequestPayload, User.UserRequestPayload>;
|
|
3902
|
-
declare function useInviteUsersMultiaccountMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponseInviteUser, any>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
3903
|
-
declare function useUnInviteUsersV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any>, unknown, {
|
|
4019
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any, {}>, unknown, User.UserRequestPayload, User.UserRequestPayload>;
|
|
4020
|
+
declare function useInviteUsersMultiaccountMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponseInviteUser, any, {}>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
4021
|
+
declare function useUnInviteUsersV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any, {}>, unknown, {
|
|
3904
4022
|
userCode: string;
|
|
3905
4023
|
organizationCode: string;
|
|
3906
4024
|
}, unknown>;
|
|
3907
|
-
declare function useCreateUserAuth0(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.CreateUserAuth0Response, any>, unknown, User.CreateUserAuth0Request, unknown>;
|
|
3908
|
-
declare function usePostCall(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, void, unknown>;
|
|
3909
|
-
declare function useLoginMethods(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
4025
|
+
declare function useCreateUserAuth0(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.CreateUserAuth0Response, any, {}>, unknown, User.CreateUserAuth0Request, unknown>;
|
|
4026
|
+
declare function usePostCall(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
4027
|
+
declare function useLoginMethods(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
3910
4028
|
methodCode: string;
|
|
3911
4029
|
enabled: boolean;
|
|
3912
4030
|
}, unknown>;
|
|
3913
4031
|
|
|
3914
|
-
declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
|
|
4032
|
+
declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
|
|
3915
4033
|
/**
|
|
3916
4034
|
* @deprecated since version 0.28.6. use useChangeStylingSettings instead
|
|
3917
4035
|
*/
|
|
@@ -4131,13 +4249,13 @@ interface UpdateStylingThemeParams {
|
|
|
4131
4249
|
|
|
4132
4250
|
declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, UpdateStylingThemeParams, unknown>;
|
|
4133
4251
|
|
|
4134
|
-
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any>, unknown, {
|
|
4252
|
+
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any, {}>, unknown, {
|
|
4135
4253
|
payload: OperationTransaction.Request;
|
|
4136
4254
|
transactionId: string;
|
|
4137
4255
|
paymentId: string;
|
|
4138
4256
|
action: OperationTransaction.Actions;
|
|
4139
4257
|
}, unknown>;
|
|
4140
|
-
declare function useChargebacksUpload(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.UploadRequest, any>, unknown, {
|
|
4258
|
+
declare function useChargebacksUpload(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.UploadRequest, any, {}>, unknown, {
|
|
4141
4259
|
payload: Payment.UploadRequest;
|
|
4142
4260
|
paymentId: string;
|
|
4143
4261
|
transactionId: string;
|
|
@@ -4244,20 +4362,20 @@ declare function useEditPaymentLinks(): _tanstack_react_query.UseMutationResult<
|
|
|
4244
4362
|
paymentLinkCode: string;
|
|
4245
4363
|
}, unknown>;
|
|
4246
4364
|
|
|
4247
|
-
declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
4365
|
+
declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
4248
4366
|
payload: any;
|
|
4249
4367
|
}, {
|
|
4250
4368
|
payload: any;
|
|
4251
4369
|
}>;
|
|
4252
|
-
declare function usePostUserThemeSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, ThemeSettings, unknown>;
|
|
4253
|
-
declare function usePostUserSettingsTables(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
4370
|
+
declare function usePostUserThemeSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, ThemeSettings, unknown>;
|
|
4371
|
+
declare function usePostUserSettingsTables(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
4254
4372
|
payload: any;
|
|
4255
4373
|
section: string;
|
|
4256
4374
|
}, {
|
|
4257
4375
|
payload: any;
|
|
4258
4376
|
section: string;
|
|
4259
4377
|
}>;
|
|
4260
|
-
declare function usePostUserSettingsPinned(onMutate: any): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
4378
|
+
declare function usePostUserSettingsPinned(onMutate: any): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
4261
4379
|
payload: PinnedSections;
|
|
4262
4380
|
}, any>;
|
|
4263
4381
|
|
|
@@ -4357,11 +4475,11 @@ declare function useUploadFileS3ClientBatchRefunds(): {
|
|
|
4357
4475
|
cancelRequest: () => void;
|
|
4358
4476
|
};
|
|
4359
4477
|
|
|
4360
|
-
declare function useUpdateMFAConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any>, unknown, {
|
|
4478
|
+
declare function useUpdateMFAConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any, {}>, unknown, {
|
|
4361
4479
|
payload: OrganizationSettings.MfaConfigRequest;
|
|
4362
4480
|
organizationCode: string;
|
|
4363
4481
|
}, unknown>;
|
|
4364
|
-
declare function useExcludeUsers(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any>, unknown, {
|
|
4482
|
+
declare function useExcludeUsers(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any, {}>, unknown, {
|
|
4365
4483
|
payload: OrganizationSettings.MfaUserExcluded[];
|
|
4366
4484
|
organizationCode: string;
|
|
4367
4485
|
}, unknown>;
|
|
@@ -4401,10 +4519,13 @@ declare function useGetCredentialsMFA(): UseMutationResult<{
|
|
|
4401
4519
|
|
|
4402
4520
|
declare function usePostAuditMonitors({ onMutate }: {
|
|
4403
4521
|
onMutate: any;
|
|
4404
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Audit.AuditMonitors, any>, unknown, {
|
|
4522
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Audit.AuditMonitors, any, {}>, unknown, {
|
|
4405
4523
|
payload: Audit.AuditMonitorsParams;
|
|
4406
4524
|
}, unknown>;
|
|
4407
4525
|
|
|
4526
|
+
declare function useResendWebhooks(): UseMutationResult<void, BFFErrorResponse, Audit.AuditWebhooksResendParams>;
|
|
4527
|
+
declare function useExportApiLogs(): UseMutationResult<Reports.ICreateReportsResponse, BFFErrorResponse, Audit.ExportApiLogsRequest>;
|
|
4528
|
+
|
|
4408
4529
|
declare function useCreateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reconciliation.Template, Reconciliation.Error>;
|
|
4409
4530
|
declare function useUpdateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown, Reconciliation.Error>;
|
|
4410
4531
|
|
|
@@ -4414,9 +4535,9 @@ declare function useUpdateReconciliationAlert(): UseMutationResult<Reconciliatio
|
|
|
4414
4535
|
|
|
4415
4536
|
declare function usePostCreateInsightsReport(): UseMutationResult<unknown>;
|
|
4416
4537
|
|
|
4417
|
-
declare function useCreateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, SamlConfig.SamlConfigRequest, unknown>;
|
|
4418
|
-
declare function useUpdateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, Partial<SamlConfig.SamlConfigRequest>, unknown>;
|
|
4419
|
-
declare function useDeleteSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, void, unknown>;
|
|
4538
|
+
declare function useCreateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, SamlConfig.SamlConfigRequest, unknown>;
|
|
4539
|
+
declare function useUpdateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, Partial<SamlConfig.SamlConfigRequest>, unknown>;
|
|
4540
|
+
declare function useDeleteSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
4420
4541
|
|
|
4421
4542
|
interface CreateAIsResponse {
|
|
4422
4543
|
code: string;
|
|
@@ -4443,61 +4564,6 @@ interface ErrorRoutingAIResponse {
|
|
|
4443
4564
|
declare function useAICreateWorkflow(organizationCode: string, options?: Omit<UseMutationOptions<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate>;
|
|
4444
4565
|
declare function useGenerateFeedback(options?: Omit<UseMutationOptions<any, AxiosError<ErrorRoutingAIResponse>, AI.AIGenerate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<any, AxiosError<ErrorRoutingAIResponse>, AI.AIGenerate>;
|
|
4445
4566
|
|
|
4446
|
-
interface CreateChartGPTChartPayload {
|
|
4447
|
-
user_prompt: string;
|
|
4448
|
-
}
|
|
4449
|
-
interface CreateChartGPTChartResponse {
|
|
4450
|
-
[key: string]: any;
|
|
4451
|
-
}
|
|
4452
|
-
interface ErrorChartGPTResponse {
|
|
4453
|
-
errors: {
|
|
4454
|
-
message: string;
|
|
4455
|
-
code: string;
|
|
4456
|
-
params?: string[];
|
|
4457
|
-
param?: string;
|
|
4458
|
-
}[];
|
|
4459
|
-
}
|
|
4460
|
-
interface PatchChartGPTChartPayload {
|
|
4461
|
-
chart_id: string;
|
|
4462
|
-
type: string;
|
|
4463
|
-
name: string;
|
|
4464
|
-
user_prompt: string;
|
|
4465
|
-
}
|
|
4466
|
-
interface CreateAndExecuteChartPayload {
|
|
4467
|
-
user_prompt: string;
|
|
4468
|
-
}
|
|
4469
|
-
interface CreateAndExecuteChartResult {
|
|
4470
|
-
chart_id: string;
|
|
4471
|
-
}
|
|
4472
|
-
declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
4473
|
-
declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
|
4474
|
-
declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
|
|
4475
|
-
declare function useCreateAndExecuteChart(): UseMutationResult<CreateAndExecuteChartResult, AxiosError<ErrorChartGPTResponse>, CreateAndExecuteChartPayload>;
|
|
4476
|
-
|
|
4477
|
-
declare namespace AllowedList {
|
|
4478
|
-
interface Request {
|
|
4479
|
-
ip_address: string;
|
|
4480
|
-
}
|
|
4481
|
-
interface Response {
|
|
4482
|
-
ip_address: string;
|
|
4483
|
-
isValid: boolean;
|
|
4484
|
-
}
|
|
4485
|
-
}
|
|
4486
|
-
|
|
4487
|
-
declare namespace FeatureFlags {
|
|
4488
|
-
interface Request {
|
|
4489
|
-
account_code: string;
|
|
4490
|
-
organization_code: string;
|
|
4491
|
-
name: string;
|
|
4492
|
-
[key: string]: string;
|
|
4493
|
-
}
|
|
4494
|
-
interface RequestAll {
|
|
4495
|
-
account_code: string;
|
|
4496
|
-
organization_code: string;
|
|
4497
|
-
email: string;
|
|
4498
|
-
}
|
|
4499
|
-
}
|
|
4500
|
-
|
|
4501
4567
|
declare function usePostPaymentsLazy(params: GetPaymentsParams): UseQueryResult<Payment.PaymentList, AxiosError<BFFErrorResponse>>;
|
|
4502
4568
|
declare function usePostPaymentsEvaluated(params: GetPaymentsEvaluatedParams): UseQueryResult<Payment.PaymentList, AxiosError<BFFErrorResponse>>;
|
|
4503
4569
|
declare function useGetPaymentV2({ paymentCode, enabled, }: {
|
|
@@ -4562,6 +4628,16 @@ declare namespace CustomizedApiKeys {
|
|
|
4562
4628
|
}
|
|
4563
4629
|
}
|
|
4564
4630
|
|
|
4631
|
+
declare namespace AllowedList {
|
|
4632
|
+
interface Request {
|
|
4633
|
+
ip_address: string;
|
|
4634
|
+
}
|
|
4635
|
+
interface Response {
|
|
4636
|
+
ip_address: string;
|
|
4637
|
+
isValid: boolean;
|
|
4638
|
+
}
|
|
4639
|
+
}
|
|
4640
|
+
|
|
4565
4641
|
declare function useGetCredentials({ password, accountCode, }: {
|
|
4566
4642
|
password: string;
|
|
4567
4643
|
accountCode: string;
|
|
@@ -4616,6 +4692,12 @@ declare function useGetAccountsByUser(userCode: string): UseQueryResult<{
|
|
|
4616
4692
|
accountsV2ByUser: Organization.Account[];
|
|
4617
4693
|
error?: AxiosError;
|
|
4618
4694
|
}, unknown>;
|
|
4695
|
+
declare function useGetAccountsForImpersonation(organizationCode?: string, isTesting?: boolean): UseQueryResult<Array<{
|
|
4696
|
+
label: string;
|
|
4697
|
+
value: string;
|
|
4698
|
+
code_live: string;
|
|
4699
|
+
code_testing: string;
|
|
4700
|
+
}>, unknown>;
|
|
4619
4701
|
|
|
4620
4702
|
declare function useGetMenu(): UseQueryResult<Cms.Menu, unknown>;
|
|
4621
4703
|
declare function useGetPaymentStatusesStyles(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
@@ -4703,7 +4785,7 @@ declare function useEmailVerification(email: string): UseQueryResult<User.UserRe
|
|
|
4703
4785
|
declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
|
|
4704
4786
|
declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
|
|
4705
4787
|
declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
|
|
4706
|
-
declare function useGetUsersToImpersonate(organizationCode: string): UseQueryResult<User.UsersToImpersonateUser[], AxiosError>;
|
|
4788
|
+
declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[]): UseQueryResult<User.UsersToImpersonateUser[], AxiosError>;
|
|
4707
4789
|
declare function useCommunications(payload: {
|
|
4708
4790
|
start_date: string;
|
|
4709
4791
|
end_date: string;
|
|
@@ -4828,6 +4910,20 @@ type UseGetAllReconciliationsFeesProps = {
|
|
|
4828
4910
|
};
|
|
4829
4911
|
declare function useGetAllReconciliationsFees({ body, params, enabled, }: UseGetAllReconciliationsFeesProps): UseQueryResult<ReconciliationFees.GetAllReconciliationsFeesResponse, Reconciliation.Error>;
|
|
4830
4912
|
|
|
4913
|
+
declare namespace FeatureFlags {
|
|
4914
|
+
interface Request {
|
|
4915
|
+
account_code: string;
|
|
4916
|
+
organization_code: string;
|
|
4917
|
+
name: string;
|
|
4918
|
+
[key: string]: string;
|
|
4919
|
+
}
|
|
4920
|
+
interface RequestAll {
|
|
4921
|
+
account_code: string;
|
|
4922
|
+
organization_code: string;
|
|
4923
|
+
email: string;
|
|
4924
|
+
}
|
|
4925
|
+
}
|
|
4926
|
+
|
|
4831
4927
|
interface FeatureFlagsResult {
|
|
4832
4928
|
[key: string]: boolean;
|
|
4833
4929
|
}
|
|
@@ -4837,6 +4933,11 @@ declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlags
|
|
|
4837
4933
|
|
|
4838
4934
|
declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
4839
4935
|
declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
4936
|
+
declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
4937
|
+
declare function usePostWebhookLogs({ params, }: {
|
|
4938
|
+
params: Audit.AuditWebhooksParams;
|
|
4939
|
+
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
4940
|
+
declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<unknown, BFFErrorResponse>;
|
|
4840
4941
|
|
|
4841
4942
|
declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
4842
4943
|
declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
|
|
@@ -4848,7 +4949,7 @@ declare function useFirebaseUserSubscribe({ onSuccessCallback, }: {
|
|
|
4848
4949
|
onSuccessCallback?: (data: any) => void;
|
|
4849
4950
|
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<{
|
|
4850
4951
|
code: string;
|
|
4851
|
-
}, any>, unknown, {
|
|
4952
|
+
}, any, {}>, unknown, {
|
|
4852
4953
|
payload: FirebaseUserSubscribe;
|
|
4853
4954
|
}, {
|
|
4854
4955
|
payload: FirebaseUserSubscribe;
|
|
@@ -4928,13 +5029,48 @@ declare function usePatchAndExecuteChart(chart_id: string, patchPayload: PatchCh
|
|
|
4928
5029
|
declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
4929
5030
|
declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
4930
5031
|
|
|
5032
|
+
declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<SmartRouting.NetworkTokensOnboardingGetResponse, AxiosError<CustomAxiosResponse>>;
|
|
5033
|
+
|
|
5034
|
+
interface CreateChartGPTChartPayload {
|
|
5035
|
+
user_prompt: string;
|
|
5036
|
+
}
|
|
5037
|
+
interface CreateChartGPTChartResponse {
|
|
5038
|
+
[key: string]: any;
|
|
5039
|
+
}
|
|
5040
|
+
interface ErrorChartGPTResponse {
|
|
5041
|
+
errors: {
|
|
5042
|
+
message: string;
|
|
5043
|
+
code: string;
|
|
5044
|
+
params?: string[];
|
|
5045
|
+
param?: string;
|
|
5046
|
+
}[];
|
|
5047
|
+
}
|
|
5048
|
+
interface PatchChartGPTChartPayload {
|
|
5049
|
+
chart_id: string;
|
|
5050
|
+
type: string;
|
|
5051
|
+
name: string;
|
|
5052
|
+
user_prompt: string;
|
|
5053
|
+
}
|
|
5054
|
+
interface CreateAndExecuteChartPayload {
|
|
5055
|
+
user_prompt: string;
|
|
5056
|
+
}
|
|
5057
|
+
interface CreateAndExecuteChartResult {
|
|
5058
|
+
chart: ChartGPTChart;
|
|
5059
|
+
execution: ChartGPTExecuteResponse;
|
|
5060
|
+
chartgpt_id: string;
|
|
5061
|
+
}
|
|
5062
|
+
declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
5063
|
+
declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
|
5064
|
+
declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
|
|
5065
|
+
declare function useCreateAndExecuteChart(): UseMutationResult<CreateAndExecuteChartResult, AxiosError<ErrorChartGPTResponse>, CreateAndExecuteChartPayload>;
|
|
5066
|
+
|
|
4931
5067
|
interface S3Payload {
|
|
4932
5068
|
payload: S3Client.PayloadV2;
|
|
4933
5069
|
handleSetProgress?: (progress: number) => void;
|
|
4934
5070
|
}
|
|
4935
5071
|
declare class Api extends HttpClient {
|
|
4936
5072
|
constructor(config?: AxiosRequestConfig);
|
|
4937
|
-
simulateAxiosError(): Promise<AxiosResponse<any, any>>;
|
|
5073
|
+
simulateAxiosError(): Promise<AxiosResponse<any, any, {}>>;
|
|
4938
5074
|
updateReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
4939
5075
|
createReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
4940
5076
|
getReconciliationTransactions<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -5037,6 +5173,15 @@ declare class Api extends HttpClient {
|
|
|
5037
5173
|
deleteWebhookV2<T>(code: string, accountCode: string): Promise<AxiosResponse<T>>;
|
|
5038
5174
|
updateWebhookV2<T>(code: string, payload: any, accountCode: string): Promise<AxiosResponse<T>>;
|
|
5039
5175
|
getMenu<T>(): Promise<AxiosResponse<T>>;
|
|
5176
|
+
postWebhookLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
5177
|
+
payload: Audit.AuditWebhooksParams;
|
|
5178
|
+
}): Promise<AxiosResponse<T>>;
|
|
5179
|
+
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
5180
|
+
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
5181
|
+
postApiLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
5182
|
+
payload: Audit.AuditApiLogsParams;
|
|
5183
|
+
}): Promise<AxiosResponse<T>>;
|
|
5184
|
+
getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
5040
5185
|
useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
5041
5186
|
useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
5042
5187
|
useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
@@ -5129,32 +5274,32 @@ declare class Api extends HttpClient {
|
|
|
5129
5274
|
updateIsActiveCheckout(args: Checkout.UpdateIsActiveCheckoutParams): Promise<AxiosResponse>;
|
|
5130
5275
|
getStylingSdkDynamic({ accountCode }: {
|
|
5131
5276
|
accountCode: any;
|
|
5132
|
-
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
5277
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
5133
5278
|
/**
|
|
5134
5279
|
* @deprecated since version 0.36.27. use getStylingSettings instead
|
|
5135
5280
|
*/
|
|
5136
5281
|
getStylingTheme({ accountCode }: {
|
|
5137
5282
|
accountCode: string;
|
|
5138
|
-
}): Promise<AxiosResponse<Styling.Theme, any>>;
|
|
5283
|
+
}): Promise<AxiosResponse<Styling.Theme, any, {}>>;
|
|
5139
5284
|
/**
|
|
5140
5285
|
* @deprecated since version 0.36.27. use changeStylingSettings instead
|
|
5141
5286
|
*/
|
|
5142
|
-
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
|
|
5287
|
+
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any, {}>>;
|
|
5143
5288
|
/**
|
|
5144
5289
|
* @deprecated since version 0.36.27. use getStylingSettingsV2 instead
|
|
5145
5290
|
*/
|
|
5146
5291
|
getStylingSettings({ accountCode }: {
|
|
5147
5292
|
accountCode: any;
|
|
5148
|
-
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
5293
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
5149
5294
|
getStylingSettingsV2({ accountCode, environment, }: {
|
|
5150
5295
|
accountCode: string;
|
|
5151
5296
|
environment?: string;
|
|
5152
|
-
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
5297
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
5153
5298
|
changeStylingSettings({ accountCode, environment, payload, }: {
|
|
5154
5299
|
accountCode: string;
|
|
5155
5300
|
environment?: string;
|
|
5156
5301
|
payload: StylingSettings.UpdateSettings;
|
|
5157
|
-
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
5302
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
5158
5303
|
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
5159
5304
|
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
5160
5305
|
createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
@@ -5177,7 +5322,14 @@ declare class Api extends HttpClient {
|
|
|
5177
5322
|
getProfile<T>(): Promise<AxiosResponse<T, any>>;
|
|
5178
5323
|
getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
|
|
5179
5324
|
getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
|
|
5180
|
-
getUsersToImpersonate(organizationCode: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
5325
|
+
getUsersToImpersonate(organizationCode: string, accountCodes?: string[]): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
5326
|
+
getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
|
|
5327
|
+
response: Array<{
|
|
5328
|
+
name: string;
|
|
5329
|
+
code_live: string;
|
|
5330
|
+
code_testing: string;
|
|
5331
|
+
}>;
|
|
5332
|
+
}>>;
|
|
5181
5333
|
updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
|
|
5182
5334
|
inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
|
|
5183
5335
|
unInviteUsersV2<T>({ userCode, organizationCode, }: {
|
|
@@ -5330,11 +5482,11 @@ declare class Api extends HttpClient {
|
|
|
5330
5482
|
getVelocityRules<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
5331
5483
|
postChangePaymentsWebhook<T>({ status, paymentCode, }: ChangePaymentsWebhook): Promise<AxiosResponse<T, any>>;
|
|
5332
5484
|
uploadFileS3ClientBatchRefunds<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
5333
|
-
promise: Promise<AxiosResponse<T, any>>;
|
|
5485
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
5334
5486
|
cancel: () => void;
|
|
5335
5487
|
};
|
|
5336
5488
|
uploadFileS3ClientChargeBacks<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
5337
|
-
promise: Promise<AxiosResponse<T, any>>;
|
|
5489
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
5338
5490
|
cancel: () => void;
|
|
5339
5491
|
};
|
|
5340
5492
|
batchRefundByFile<T>({ payload, }: {
|
|
@@ -5369,7 +5521,7 @@ declare class Api extends HttpClient {
|
|
|
5369
5521
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
5370
5522
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
5371
5523
|
getCustomizedApiKeysToken<T>(code: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
5372
|
-
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any>>;
|
|
5524
|
+
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
5373
5525
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
5374
5526
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
5375
5527
|
getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -5398,6 +5550,8 @@ declare class Api extends HttpClient {
|
|
|
5398
5550
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
5399
5551
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
5400
5552
|
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
5553
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingGetResponse>>;
|
|
5554
|
+
postNetworkTokensOnboarding(payload: SmartRouting.NetworkTokensOnboardingPayload, organizationCode: string): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingGetResponse>>;
|
|
5401
5555
|
createChartGPTChart<T>(payload: {
|
|
5402
5556
|
user_prompt: string;
|
|
5403
5557
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -5444,22 +5598,5 @@ declare enum ApiErrorCodes {
|
|
|
5444
5598
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5445
5599
|
}
|
|
5446
5600
|
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
chart_id?: string;
|
|
5450
|
-
token?: string;
|
|
5451
|
-
[key: string]: any;
|
|
5452
|
-
}
|
|
5453
|
-
declare const useChartAssistantSocket: () => {
|
|
5454
|
-
subscribe: (chart_id: string) => void;
|
|
5455
|
-
unsubscribe: (chart_id: string) => void;
|
|
5456
|
-
disconnect: () => void;
|
|
5457
|
-
connect: () => void;
|
|
5458
|
-
clearChartData: () => void;
|
|
5459
|
-
isConnected: boolean;
|
|
5460
|
-
chartData: any;
|
|
5461
|
-
connectionError: string | null;
|
|
5462
|
-
};
|
|
5463
|
-
|
|
5464
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsFilters, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5465
|
-
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload, WebSocketMessage };
|
|
5601
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsFilters, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboarding, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useResendWebhooks, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5602
|
+
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|