@yuno-payments/dashboard-api-mfe 0.36.56 → 0.36.57-RC.4
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 +52 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +27 -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/checkouts/checkouts.mutation.d.ts +1 -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/users/users.query.d.ts +1 -1
- package/build/cjs/types/types/audit/audit.d.ts +81 -0
- package/build/cjs/types/types/user/user.d.ts +8 -0
- package/build/esm/index.js +52 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +27 -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/checkouts/checkouts.mutation.d.ts +1 -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/users/users.query.d.ts +1 -1
- package/build/esm/types/types/audit/audit.d.ts +81 -0
- package/build/esm/types/types/user/user.d.ts +8 -0
- package/build/index.d.ts +159 -40
- package/package.json +1 -1
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[];
|
|
@@ -3622,6 +3630,87 @@ declare namespace Audit {
|
|
|
3622
3630
|
type: string;
|
|
3623
3631
|
percentage: number;
|
|
3624
3632
|
}
|
|
3633
|
+
interface ExportApiLogsRequest {
|
|
3634
|
+
report_name: string;
|
|
3635
|
+
account_code: string[];
|
|
3636
|
+
start_date: string;
|
|
3637
|
+
end_date: string;
|
|
3638
|
+
time_zone: string;
|
|
3639
|
+
method?: string[];
|
|
3640
|
+
organizationCode?: string;
|
|
3641
|
+
}
|
|
3642
|
+
interface AuditApiJSON {
|
|
3643
|
+
[key: string]: string;
|
|
3644
|
+
}
|
|
3645
|
+
interface AuditApiLogs {
|
|
3646
|
+
code: string;
|
|
3647
|
+
url: string;
|
|
3648
|
+
method: string;
|
|
3649
|
+
source: string;
|
|
3650
|
+
headers: AuditApiJSON;
|
|
3651
|
+
request: AuditApiJSON;
|
|
3652
|
+
response: AuditApiJSON;
|
|
3653
|
+
account_name: string;
|
|
3654
|
+
account_code: string;
|
|
3655
|
+
status_code: number;
|
|
3656
|
+
trace_id: string;
|
|
3657
|
+
created_at: string;
|
|
3658
|
+
}
|
|
3659
|
+
interface AuditApiLogsResponse {
|
|
3660
|
+
data: AuditApiLogs[];
|
|
3661
|
+
page: number;
|
|
3662
|
+
size: number;
|
|
3663
|
+
total_rows: number;
|
|
3664
|
+
total_pages: number;
|
|
3665
|
+
}
|
|
3666
|
+
interface AuditApiLogsParams {
|
|
3667
|
+
page: number;
|
|
3668
|
+
size: number;
|
|
3669
|
+
periodicity?: string;
|
|
3670
|
+
account_code?: string[];
|
|
3671
|
+
organizationCode?: string;
|
|
3672
|
+
status_codes?: string[];
|
|
3673
|
+
methods?: string[];
|
|
3674
|
+
}
|
|
3675
|
+
interface AuditWebhooksParams {
|
|
3676
|
+
page: number;
|
|
3677
|
+
size: number;
|
|
3678
|
+
organizationCode?: string;
|
|
3679
|
+
periodicity?: string;
|
|
3680
|
+
account_code?: string[];
|
|
3681
|
+
status_codes?: string[];
|
|
3682
|
+
methods?: string[];
|
|
3683
|
+
}
|
|
3684
|
+
interface AuditWebhooks {
|
|
3685
|
+
id: number;
|
|
3686
|
+
organization_code: string;
|
|
3687
|
+
account_code: string;
|
|
3688
|
+
type: string;
|
|
3689
|
+
created_at: string;
|
|
3690
|
+
updated_at: string;
|
|
3691
|
+
time: number;
|
|
3692
|
+
http_method: string;
|
|
3693
|
+
url: string;
|
|
3694
|
+
request: string;
|
|
3695
|
+
response: string;
|
|
3696
|
+
response_status: number;
|
|
3697
|
+
connect_timeout: number;
|
|
3698
|
+
read_timeout: number;
|
|
3699
|
+
exception: string;
|
|
3700
|
+
headers: string;
|
|
3701
|
+
trace_id: string;
|
|
3702
|
+
origin_id: string;
|
|
3703
|
+
}
|
|
3704
|
+
interface AuditWebhooksResponse {
|
|
3705
|
+
data: AuditWebhooks[];
|
|
3706
|
+
page: number;
|
|
3707
|
+
size: number;
|
|
3708
|
+
total_rows: number;
|
|
3709
|
+
total_pages: number;
|
|
3710
|
+
}
|
|
3711
|
+
interface AuditWebhooksResendParams {
|
|
3712
|
+
codes: string[];
|
|
3713
|
+
}
|
|
3625
3714
|
}
|
|
3626
3715
|
|
|
3627
3716
|
declare namespace PaymentLinks {
|
|
@@ -3803,14 +3892,14 @@ type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrgani
|
|
|
3803
3892
|
|
|
3804
3893
|
declare function usePostWebhookMultiAccount({ onSuccessCallback, }: {
|
|
3805
3894
|
onSuccessCallback?: (data: any) => void;
|
|
3806
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
3895
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
3807
3896
|
payload: Webhook.WebHookV2MultiAccount;
|
|
3808
3897
|
}, {
|
|
3809
3898
|
payload: Webhook.WebHookV2MultiAccount;
|
|
3810
3899
|
}>;
|
|
3811
3900
|
declare function useDeleteWebhookV2({ onSuccessCallback, }: {
|
|
3812
3901
|
onSuccessCallback?: (data: any) => void;
|
|
3813
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<null, any>, unknown, {
|
|
3902
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<null, any, {}>, unknown, {
|
|
3814
3903
|
code: string;
|
|
3815
3904
|
accountCode: string;
|
|
3816
3905
|
}, {
|
|
@@ -3819,7 +3908,7 @@ declare function useDeleteWebhookV2({ onSuccessCallback, }: {
|
|
|
3819
3908
|
}>;
|
|
3820
3909
|
declare function useUpdateWebhookV2({ onSuccessCallback, }: {
|
|
3821
3910
|
onSuccessCallback?: (data: any) => void;
|
|
3822
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Webhook.WebHookV2, any>, unknown, {
|
|
3911
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Webhook.WebHookV2, any, {}>, unknown, {
|
|
3823
3912
|
code: string;
|
|
3824
3913
|
payload: any;
|
|
3825
3914
|
accountCode: string;
|
|
@@ -3828,19 +3917,19 @@ declare function useUpdateWebhookV2({ onSuccessCallback, }: {
|
|
|
3828
3917
|
payload: any;
|
|
3829
3918
|
accountCode: string;
|
|
3830
3919
|
}>;
|
|
3831
|
-
declare function usePostAccount(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3920
|
+
declare function usePostAccount(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3832
3921
|
name: string;
|
|
3833
3922
|
principal: boolean;
|
|
3834
3923
|
}, unknown>;
|
|
3835
|
-
declare function usePatchAccountV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3924
|
+
declare function usePatchAccountV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3836
3925
|
name: string;
|
|
3837
3926
|
code: string;
|
|
3838
3927
|
principal: boolean;
|
|
3839
3928
|
}, unknown>;
|
|
3840
|
-
declare function usePutAccountPrincipal(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3929
|
+
declare function usePutAccountPrincipal(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3841
3930
|
account_code: string;
|
|
3842
3931
|
}, unknown>;
|
|
3843
|
-
declare function usePutAccountsUserMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any>, unknown, {
|
|
3932
|
+
declare function usePutAccountsUserMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
3844
3933
|
organizationCode: string;
|
|
3845
3934
|
userCode: string;
|
|
3846
3935
|
payload: {
|
|
@@ -3898,20 +3987,20 @@ declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordRes
|
|
|
3898
3987
|
|
|
3899
3988
|
declare function useUpdateProfile({ onSuccessCallback, }: {
|
|
3900
3989
|
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, {
|
|
3990
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any, {}>, unknown, User.UserRequestPayload, User.UserRequestPayload>;
|
|
3991
|
+
declare function useInviteUsersMultiaccountMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponseInviteUser, any, {}>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
3992
|
+
declare function useUnInviteUsersV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any, {}>, unknown, {
|
|
3904
3993
|
userCode: string;
|
|
3905
3994
|
organizationCode: string;
|
|
3906
3995
|
}, 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, {
|
|
3996
|
+
declare function useCreateUserAuth0(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.CreateUserAuth0Response, any, {}>, unknown, User.CreateUserAuth0Request, unknown>;
|
|
3997
|
+
declare function usePostCall(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
3998
|
+
declare function useLoginMethods(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
3910
3999
|
methodCode: string;
|
|
3911
4000
|
enabled: boolean;
|
|
3912
4001
|
}, unknown>;
|
|
3913
4002
|
|
|
3914
|
-
declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
|
|
4003
|
+
declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
|
|
3915
4004
|
/**
|
|
3916
4005
|
* @deprecated since version 0.28.6. use useChangeStylingSettings instead
|
|
3917
4006
|
*/
|
|
@@ -4131,13 +4220,13 @@ interface UpdateStylingThemeParams {
|
|
|
4131
4220
|
|
|
4132
4221
|
declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, UpdateStylingThemeParams, unknown>;
|
|
4133
4222
|
|
|
4134
|
-
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any>, unknown, {
|
|
4223
|
+
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any, {}>, unknown, {
|
|
4135
4224
|
payload: OperationTransaction.Request;
|
|
4136
4225
|
transactionId: string;
|
|
4137
4226
|
paymentId: string;
|
|
4138
4227
|
action: OperationTransaction.Actions;
|
|
4139
4228
|
}, unknown>;
|
|
4140
|
-
declare function useChargebacksUpload(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.UploadRequest, any>, unknown, {
|
|
4229
|
+
declare function useChargebacksUpload(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.UploadRequest, any, {}>, unknown, {
|
|
4141
4230
|
payload: Payment.UploadRequest;
|
|
4142
4231
|
paymentId: string;
|
|
4143
4232
|
transactionId: string;
|
|
@@ -4244,20 +4333,20 @@ declare function useEditPaymentLinks(): _tanstack_react_query.UseMutationResult<
|
|
|
4244
4333
|
paymentLinkCode: string;
|
|
4245
4334
|
}, unknown>;
|
|
4246
4335
|
|
|
4247
|
-
declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
4336
|
+
declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
4248
4337
|
payload: any;
|
|
4249
4338
|
}, {
|
|
4250
4339
|
payload: any;
|
|
4251
4340
|
}>;
|
|
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, {
|
|
4341
|
+
declare function usePostUserThemeSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, ThemeSettings, unknown>;
|
|
4342
|
+
declare function usePostUserSettingsTables(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
4254
4343
|
payload: any;
|
|
4255
4344
|
section: string;
|
|
4256
4345
|
}, {
|
|
4257
4346
|
payload: any;
|
|
4258
4347
|
section: string;
|
|
4259
4348
|
}>;
|
|
4260
|
-
declare function usePostUserSettingsPinned(onMutate: any): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
4349
|
+
declare function usePostUserSettingsPinned(onMutate: any): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
4261
4350
|
payload: PinnedSections;
|
|
4262
4351
|
}, any>;
|
|
4263
4352
|
|
|
@@ -4357,11 +4446,11 @@ declare function useUploadFileS3ClientBatchRefunds(): {
|
|
|
4357
4446
|
cancelRequest: () => void;
|
|
4358
4447
|
};
|
|
4359
4448
|
|
|
4360
|
-
declare function useUpdateMFAConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any>, unknown, {
|
|
4449
|
+
declare function useUpdateMFAConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any, {}>, unknown, {
|
|
4361
4450
|
payload: OrganizationSettings.MfaConfigRequest;
|
|
4362
4451
|
organizationCode: string;
|
|
4363
4452
|
}, unknown>;
|
|
4364
|
-
declare function useExcludeUsers(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any>, unknown, {
|
|
4453
|
+
declare function useExcludeUsers(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any, {}>, unknown, {
|
|
4365
4454
|
payload: OrganizationSettings.MfaUserExcluded[];
|
|
4366
4455
|
organizationCode: string;
|
|
4367
4456
|
}, unknown>;
|
|
@@ -4401,10 +4490,13 @@ declare function useGetCredentialsMFA(): UseMutationResult<{
|
|
|
4401
4490
|
|
|
4402
4491
|
declare function usePostAuditMonitors({ onMutate }: {
|
|
4403
4492
|
onMutate: any;
|
|
4404
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Audit.AuditMonitors, any>, unknown, {
|
|
4493
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Audit.AuditMonitors, any, {}>, unknown, {
|
|
4405
4494
|
payload: Audit.AuditMonitorsParams;
|
|
4406
4495
|
}, unknown>;
|
|
4407
4496
|
|
|
4497
|
+
declare function useResendWebhooks(): UseMutationResult<void, BFFErrorResponse, Audit.AuditWebhooksResendParams>;
|
|
4498
|
+
declare function useExportApiLogs(): UseMutationResult<Reports.ICreateReportsResponse, BFFErrorResponse, Audit.ExportApiLogsRequest>;
|
|
4499
|
+
|
|
4408
4500
|
declare function useCreateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reconciliation.Template, Reconciliation.Error>;
|
|
4409
4501
|
declare function useUpdateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown, Reconciliation.Error>;
|
|
4410
4502
|
|
|
@@ -4414,9 +4506,9 @@ declare function useUpdateReconciliationAlert(): UseMutationResult<Reconciliatio
|
|
|
4414
4506
|
|
|
4415
4507
|
declare function usePostCreateInsightsReport(): UseMutationResult<unknown>;
|
|
4416
4508
|
|
|
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>;
|
|
4509
|
+
declare function useCreateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, SamlConfig.SamlConfigRequest, unknown>;
|
|
4510
|
+
declare function useUpdateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, Partial<SamlConfig.SamlConfigRequest>, unknown>;
|
|
4511
|
+
declare function useDeleteSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
4420
4512
|
|
|
4421
4513
|
interface CreateAIsResponse {
|
|
4422
4514
|
code: string;
|
|
@@ -4571,6 +4663,12 @@ declare function useGetAccountsByUser(userCode: string): UseQueryResult<{
|
|
|
4571
4663
|
accountsV2ByUser: Organization.Account[];
|
|
4572
4664
|
error?: AxiosError;
|
|
4573
4665
|
}, unknown>;
|
|
4666
|
+
declare function useGetAccountsForImpersonation(organizationCode?: string, isTesting?: boolean): UseQueryResult<Array<{
|
|
4667
|
+
label: string;
|
|
4668
|
+
value: string;
|
|
4669
|
+
code_live: string;
|
|
4670
|
+
code_testing: string;
|
|
4671
|
+
}>, unknown>;
|
|
4574
4672
|
|
|
4575
4673
|
declare function useGetMenu(): UseQueryResult<Cms.Menu, unknown>;
|
|
4576
4674
|
declare function useGetPaymentStatusesStyles(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
@@ -4658,7 +4756,7 @@ declare function useEmailVerification(email: string): UseQueryResult<User.UserRe
|
|
|
4658
4756
|
declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
|
|
4659
4757
|
declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
|
|
4660
4758
|
declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
|
|
4661
|
-
declare function useGetUsersToImpersonate(organizationCode: string): UseQueryResult<User.UsersToImpersonateUser[], AxiosError>;
|
|
4759
|
+
declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[]): UseQueryResult<User.UsersToImpersonateUser[], AxiosError>;
|
|
4662
4760
|
declare function useCommunications(payload: {
|
|
4663
4761
|
start_date: string;
|
|
4664
4762
|
end_date: string;
|
|
@@ -4806,6 +4904,11 @@ declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlags
|
|
|
4806
4904
|
|
|
4807
4905
|
declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
4808
4906
|
declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
4907
|
+
declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
4908
|
+
declare function usePostWebhookLogs({ params, }: {
|
|
4909
|
+
params: Audit.AuditWebhooksParams;
|
|
4910
|
+
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
4911
|
+
declare function useGetApiLogsDetailByPaymentCode(code: string): UseQueryResult<unknown, BFFErrorResponse>;
|
|
4809
4912
|
|
|
4810
4913
|
declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
4811
4914
|
declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
|
|
@@ -4817,7 +4920,7 @@ declare function useFirebaseUserSubscribe({ onSuccessCallback, }: {
|
|
|
4817
4920
|
onSuccessCallback?: (data: any) => void;
|
|
4818
4921
|
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<{
|
|
4819
4922
|
code: string;
|
|
4820
|
-
}, any>, unknown, {
|
|
4923
|
+
}, any, {}>, unknown, {
|
|
4821
4924
|
payload: FirebaseUserSubscribe;
|
|
4822
4925
|
}, {
|
|
4823
4926
|
payload: FirebaseUserSubscribe;
|
|
@@ -4936,7 +5039,7 @@ interface S3Payload {
|
|
|
4936
5039
|
}
|
|
4937
5040
|
declare class Api extends HttpClient {
|
|
4938
5041
|
constructor(config?: AxiosRequestConfig);
|
|
4939
|
-
simulateAxiosError(): Promise<AxiosResponse<any, any>>;
|
|
5042
|
+
simulateAxiosError(): Promise<AxiosResponse<any, any, {}>>;
|
|
4940
5043
|
updateReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
4941
5044
|
createReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
4942
5045
|
getReconciliationTransactions<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -5039,6 +5142,15 @@ declare class Api extends HttpClient {
|
|
|
5039
5142
|
deleteWebhookV2<T>(code: string, accountCode: string): Promise<AxiosResponse<T>>;
|
|
5040
5143
|
updateWebhookV2<T>(code: string, payload: any, accountCode: string): Promise<AxiosResponse<T>>;
|
|
5041
5144
|
getMenu<T>(): Promise<AxiosResponse<T>>;
|
|
5145
|
+
postWebhookLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
5146
|
+
payload: Audit.AuditWebhooksParams;
|
|
5147
|
+
}): Promise<AxiosResponse<T>>;
|
|
5148
|
+
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
5149
|
+
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
5150
|
+
postApiLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
5151
|
+
payload: Audit.AuditApiLogsParams;
|
|
5152
|
+
}): Promise<AxiosResponse<T>>;
|
|
5153
|
+
getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
5042
5154
|
useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
5043
5155
|
useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
5044
5156
|
useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
@@ -5131,32 +5243,32 @@ declare class Api extends HttpClient {
|
|
|
5131
5243
|
updateIsActiveCheckout(args: Checkout.UpdateIsActiveCheckoutParams): Promise<AxiosResponse>;
|
|
5132
5244
|
getStylingSdkDynamic({ accountCode }: {
|
|
5133
5245
|
accountCode: any;
|
|
5134
|
-
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
5246
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
5135
5247
|
/**
|
|
5136
5248
|
* @deprecated since version 0.36.27. use getStylingSettings instead
|
|
5137
5249
|
*/
|
|
5138
5250
|
getStylingTheme({ accountCode }: {
|
|
5139
5251
|
accountCode: string;
|
|
5140
|
-
}): Promise<AxiosResponse<Styling.Theme, any>>;
|
|
5252
|
+
}): Promise<AxiosResponse<Styling.Theme, any, {}>>;
|
|
5141
5253
|
/**
|
|
5142
5254
|
* @deprecated since version 0.36.27. use changeStylingSettings instead
|
|
5143
5255
|
*/
|
|
5144
|
-
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
|
|
5256
|
+
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any, {}>>;
|
|
5145
5257
|
/**
|
|
5146
5258
|
* @deprecated since version 0.36.27. use getStylingSettingsV2 instead
|
|
5147
5259
|
*/
|
|
5148
5260
|
getStylingSettings({ accountCode }: {
|
|
5149
5261
|
accountCode: any;
|
|
5150
|
-
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
5262
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
5151
5263
|
getStylingSettingsV2({ accountCode, environment, }: {
|
|
5152
5264
|
accountCode: string;
|
|
5153
5265
|
environment?: string;
|
|
5154
|
-
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
5266
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
5155
5267
|
changeStylingSettings({ accountCode, environment, payload, }: {
|
|
5156
5268
|
accountCode: string;
|
|
5157
5269
|
environment?: string;
|
|
5158
5270
|
payload: StylingSettings.UpdateSettings;
|
|
5159
|
-
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
5271
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
5160
5272
|
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
5161
5273
|
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
5162
5274
|
createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
@@ -5179,7 +5291,14 @@ declare class Api extends HttpClient {
|
|
|
5179
5291
|
getProfile<T>(): Promise<AxiosResponse<T, any>>;
|
|
5180
5292
|
getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
|
|
5181
5293
|
getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
|
|
5182
|
-
getUsersToImpersonate(organizationCode: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
5294
|
+
getUsersToImpersonate(organizationCode: string, accountCodes?: string[]): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
5295
|
+
getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
|
|
5296
|
+
response: Array<{
|
|
5297
|
+
name: string;
|
|
5298
|
+
code_live: string;
|
|
5299
|
+
code_testing: string;
|
|
5300
|
+
}>;
|
|
5301
|
+
}>>;
|
|
5183
5302
|
updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
|
|
5184
5303
|
inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
|
|
5185
5304
|
unInviteUsersV2<T>({ userCode, organizationCode, }: {
|
|
@@ -5332,11 +5451,11 @@ declare class Api extends HttpClient {
|
|
|
5332
5451
|
getVelocityRules<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
5333
5452
|
postChangePaymentsWebhook<T>({ status, paymentCode, }: ChangePaymentsWebhook): Promise<AxiosResponse<T, any>>;
|
|
5334
5453
|
uploadFileS3ClientBatchRefunds<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
5335
|
-
promise: Promise<AxiosResponse<T, any>>;
|
|
5454
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
5336
5455
|
cancel: () => void;
|
|
5337
5456
|
};
|
|
5338
5457
|
uploadFileS3ClientChargeBacks<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
5339
|
-
promise: Promise<AxiosResponse<T, any>>;
|
|
5458
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
5340
5459
|
cancel: () => void;
|
|
5341
5460
|
};
|
|
5342
5461
|
batchRefundByFile<T>({ payload, }: {
|
|
@@ -5371,7 +5490,7 @@ declare class Api extends HttpClient {
|
|
|
5371
5490
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
5372
5491
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
5373
5492
|
getCustomizedApiKeysToken<T>(code: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
5374
|
-
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any>>;
|
|
5493
|
+
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
5375
5494
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
5376
5495
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
5377
5496
|
getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -5446,5 +5565,5 @@ declare enum ApiErrorCodes {
|
|
|
5446
5565
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5447
5566
|
}
|
|
5448
5567
|
|
|
5449
|
-
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, 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 };
|
|
5568
|
+
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, 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, 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 };
|
|
5450
5569
|
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 };
|