@yuno-payments/dashboard-api-mfe 0.42.10 → 0.42.15-recipients-beta.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 +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +19 -2
- package/build/cjs/types/queries/index.d.ts +1 -0
- package/build/cjs/types/queries/recipients/index.d.ts +1 -0
- package/build/cjs/types/queries/recipients/recipients.query.d.ts +8 -0
- package/build/cjs/types/types/index.d.ts +1 -0
- package/build/cjs/types/types/recipients/index.d.ts +1 -0
- package/build/cjs/types/types/recipients/recipients.d.ts +216 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +19 -2
- package/build/esm/types/queries/index.d.ts +1 -0
- package/build/esm/types/queries/recipients/index.d.ts +1 -0
- package/build/esm/types/queries/recipients/recipients.query.d.ts +8 -0
- package/build/esm/types/types/index.d.ts +1 -0
- package/build/esm/types/types/recipients/index.d.ts +1 -0
- package/build/esm/types/types/recipients/recipients.d.ts +216 -0
- package/build/index.d.ts +243 -4
- package/package.json +1 -1
|
@@ -506,14 +506,14 @@ export declare class Api extends HttpClient {
|
|
|
506
506
|
postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
507
507
|
postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
508
508
|
postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
509
|
-
patchApiKeysEditNote<T>(payload: any, keyCode: any): Promise<AxiosResponse<T, any>>;
|
|
509
|
+
patchApiKeysEditNote<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
510
510
|
getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
|
|
511
511
|
getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
|
|
512
512
|
postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
513
513
|
pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
|
|
514
514
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
515
515
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
516
|
-
getCustomizedApiKeysToken<T>(code:
|
|
516
|
+
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
517
517
|
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
518
518
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
519
519
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -569,5 +569,22 @@ export declare class Api extends HttpClient {
|
|
|
569
569
|
}): Promise<AxiosResponse<T, any>>;
|
|
570
570
|
getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
|
|
571
571
|
getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
572
|
+
getRecipients<T>(organizationCode: string, params: {
|
|
573
|
+
account_ids?: string;
|
|
574
|
+
countries?: string;
|
|
575
|
+
national_entities?: string;
|
|
576
|
+
entity_types?: string;
|
|
577
|
+
start_date?: string;
|
|
578
|
+
end_date?: string;
|
|
579
|
+
search_type?: string;
|
|
580
|
+
search_value?: string;
|
|
581
|
+
page?: number;
|
|
582
|
+
page_size?: number;
|
|
583
|
+
sort_by?: string;
|
|
584
|
+
sort_order?: string;
|
|
585
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
586
|
+
getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
|
|
587
|
+
getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
588
|
+
getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
572
589
|
}
|
|
573
590
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './recipients.query';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AxiosError } from 'axios';
|
|
2
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
3
|
+
import { Recipients, GetRecipientsParams, GetRecipientByIdParams, GetOnboardingDetailParams, GetOnboardingTimelineParams } from '../../types/recipients';
|
|
4
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
+
export declare function useGetRecipients(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponse, AxiosError<BFFErrorResponse>>;
|
|
6
|
+
export declare function useGetRecipientById(organizationCode: string, params: GetRecipientByIdParams, enabled?: boolean): UseQueryResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse>>;
|
|
7
|
+
export declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
|
|
8
|
+
export declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './recipients';
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
export declare namespace Recipients {
|
|
2
|
+
interface Document {
|
|
3
|
+
number: string | null;
|
|
4
|
+
type: string | null;
|
|
5
|
+
}
|
|
6
|
+
interface Phone {
|
|
7
|
+
country_code: string | null;
|
|
8
|
+
number: string | null;
|
|
9
|
+
}
|
|
10
|
+
interface Address {
|
|
11
|
+
address_line_1: string | null;
|
|
12
|
+
address_line_2: string | null;
|
|
13
|
+
country: string | null;
|
|
14
|
+
city: string | null;
|
|
15
|
+
state: string | null;
|
|
16
|
+
zip_code: string | null;
|
|
17
|
+
}
|
|
18
|
+
interface Bank {
|
|
19
|
+
code: string | null;
|
|
20
|
+
branch: string | null;
|
|
21
|
+
branch_digit: string | null;
|
|
22
|
+
account: string | null;
|
|
23
|
+
account_digit: string | null;
|
|
24
|
+
account_type: string | null;
|
|
25
|
+
routing: string | null;
|
|
26
|
+
country: string | null;
|
|
27
|
+
currency: string | null;
|
|
28
|
+
payout_schedule?: string | null;
|
|
29
|
+
}
|
|
30
|
+
interface WithdrawalMethod {
|
|
31
|
+
bank: Bank | null;
|
|
32
|
+
}
|
|
33
|
+
interface Documentation {
|
|
34
|
+
file_name: string;
|
|
35
|
+
content_type: string;
|
|
36
|
+
content_category: string;
|
|
37
|
+
content: string | null;
|
|
38
|
+
}
|
|
39
|
+
interface OnboardingSummary {
|
|
40
|
+
id: string;
|
|
41
|
+
provider_id: string;
|
|
42
|
+
status: string;
|
|
43
|
+
created_at: string;
|
|
44
|
+
}
|
|
45
|
+
interface RecipientListItem {
|
|
46
|
+
id: string;
|
|
47
|
+
merchant_recipient_id: string | null;
|
|
48
|
+
national_entity: string;
|
|
49
|
+
entity_type: string | null;
|
|
50
|
+
country: string;
|
|
51
|
+
first_name: string | null;
|
|
52
|
+
last_name: string | null;
|
|
53
|
+
legal_name: string | null;
|
|
54
|
+
email: string | null;
|
|
55
|
+
account_id: string;
|
|
56
|
+
date_of_birth: string | null;
|
|
57
|
+
website: string | null;
|
|
58
|
+
industry: string | null;
|
|
59
|
+
merchant_category_code: string | null;
|
|
60
|
+
created_at: string;
|
|
61
|
+
updated_at: string;
|
|
62
|
+
}
|
|
63
|
+
interface Pagination {
|
|
64
|
+
page: number;
|
|
65
|
+
page_size: number;
|
|
66
|
+
total_items: number;
|
|
67
|
+
total_pages: number;
|
|
68
|
+
has_next: boolean;
|
|
69
|
+
has_previous: boolean;
|
|
70
|
+
}
|
|
71
|
+
interface RecipientListResponse {
|
|
72
|
+
data: RecipientListItem[];
|
|
73
|
+
pagination: Pagination;
|
|
74
|
+
}
|
|
75
|
+
interface RecipientDetail {
|
|
76
|
+
id: string;
|
|
77
|
+
merchant_recipient_id: string | null;
|
|
78
|
+
national_entity: string;
|
|
79
|
+
entity_type: string | null;
|
|
80
|
+
country: string;
|
|
81
|
+
first_name: string | null;
|
|
82
|
+
last_name: string | null;
|
|
83
|
+
legal_name: string | null;
|
|
84
|
+
email: string | null;
|
|
85
|
+
account_id: string;
|
|
86
|
+
created_at: string;
|
|
87
|
+
updated_at: string;
|
|
88
|
+
document: Document | null;
|
|
89
|
+
phone: Phone | null;
|
|
90
|
+
address: Address | null;
|
|
91
|
+
withdrawal_method: WithdrawalMethod | null;
|
|
92
|
+
documentation: Documentation[];
|
|
93
|
+
onboardings: OnboardingSummary[];
|
|
94
|
+
}
|
|
95
|
+
interface OnboardingProvider {
|
|
96
|
+
id: string | null;
|
|
97
|
+
connection_id: string | null;
|
|
98
|
+
redirect_url: string | null;
|
|
99
|
+
recipient_id: string | null;
|
|
100
|
+
recipient_additional_id: string | null;
|
|
101
|
+
onboarding_url: string | null;
|
|
102
|
+
legal_entity: string | null;
|
|
103
|
+
balance_account_id: string | null;
|
|
104
|
+
recipient_type: string | null;
|
|
105
|
+
raw_notification: string | null;
|
|
106
|
+
raw_response: string | null;
|
|
107
|
+
response_code: string | null;
|
|
108
|
+
response_message: string | null;
|
|
109
|
+
}
|
|
110
|
+
interface LegalRepresentativeDocument {
|
|
111
|
+
type: string | null;
|
|
112
|
+
number: string | null;
|
|
113
|
+
}
|
|
114
|
+
interface LegalRepresentative {
|
|
115
|
+
first_name: string | null;
|
|
116
|
+
last_name: string | null;
|
|
117
|
+
email: string | null;
|
|
118
|
+
document: LegalRepresentativeDocument | null;
|
|
119
|
+
phone: Phone | null;
|
|
120
|
+
address: Address | null;
|
|
121
|
+
date_of_birth: string | null;
|
|
122
|
+
}
|
|
123
|
+
interface Requirement {
|
|
124
|
+
field: string | null;
|
|
125
|
+
message: string | null;
|
|
126
|
+
status: string | null;
|
|
127
|
+
}
|
|
128
|
+
interface CapabilityRequirement {
|
|
129
|
+
provider_response_code: string | null;
|
|
130
|
+
provider_response_message: string | null;
|
|
131
|
+
provider_response_field: string | null;
|
|
132
|
+
message: string | null;
|
|
133
|
+
status: string | null;
|
|
134
|
+
}
|
|
135
|
+
interface Capability {
|
|
136
|
+
status: string | null;
|
|
137
|
+
requirements: CapabilityRequirement[];
|
|
138
|
+
}
|
|
139
|
+
interface Capabilities {
|
|
140
|
+
payouts: Capability | null;
|
|
141
|
+
send_transfers: Capability | null;
|
|
142
|
+
receive_transfers: Capability | null;
|
|
143
|
+
payments: Capability | null;
|
|
144
|
+
}
|
|
145
|
+
interface TermsOfService {
|
|
146
|
+
acceptance: boolean | null;
|
|
147
|
+
date: string | null;
|
|
148
|
+
ip: string | null;
|
|
149
|
+
}
|
|
150
|
+
interface Metadata {
|
|
151
|
+
key: string;
|
|
152
|
+
value: string;
|
|
153
|
+
}
|
|
154
|
+
interface OnboardingDetail {
|
|
155
|
+
id: string;
|
|
156
|
+
type: string;
|
|
157
|
+
workflow: string;
|
|
158
|
+
description: string | null;
|
|
159
|
+
status: string;
|
|
160
|
+
response_message: string | null;
|
|
161
|
+
callback_url: string | null;
|
|
162
|
+
provider: OnboardingProvider | null;
|
|
163
|
+
documentation: Documentation[];
|
|
164
|
+
legal_representatives: LegalRepresentative[];
|
|
165
|
+
withdrawal_methods: WithdrawalMethod | null;
|
|
166
|
+
requirements: Requirement[];
|
|
167
|
+
capabilities: Capabilities | null;
|
|
168
|
+
terms_of_service: TermsOfService | null;
|
|
169
|
+
metadata: Metadata[];
|
|
170
|
+
created_at: string;
|
|
171
|
+
updated_at: string;
|
|
172
|
+
expires_at: string | null;
|
|
173
|
+
}
|
|
174
|
+
interface TimelineEventData {
|
|
175
|
+
provider_id?: string | null;
|
|
176
|
+
provider_status?: string | null;
|
|
177
|
+
provider_response_code?: string | null;
|
|
178
|
+
provider_response_message?: string | null;
|
|
179
|
+
provider_recipient_id?: string | null;
|
|
180
|
+
provider_redirect_url?: string | null;
|
|
181
|
+
requirements?: Requirement[];
|
|
182
|
+
capabilities?: Capabilities | null;
|
|
183
|
+
change_type?: string | null;
|
|
184
|
+
}
|
|
185
|
+
interface TimelineEvent {
|
|
186
|
+
timestamp: string;
|
|
187
|
+
event_type: string;
|
|
188
|
+
status: string | null;
|
|
189
|
+
event_data: TimelineEventData | null;
|
|
190
|
+
}
|
|
191
|
+
type OnboardingTimeline = TimelineEvent[];
|
|
192
|
+
}
|
|
193
|
+
export interface GetRecipientsParams {
|
|
194
|
+
account_ids?: string;
|
|
195
|
+
countries?: string;
|
|
196
|
+
national_entities?: string;
|
|
197
|
+
entity_types?: string;
|
|
198
|
+
start_date?: string;
|
|
199
|
+
end_date?: string;
|
|
200
|
+
search_type?: string;
|
|
201
|
+
search_value?: string;
|
|
202
|
+
page?: number;
|
|
203
|
+
page_size?: number;
|
|
204
|
+
sort_by?: string;
|
|
205
|
+
sort_order?: string;
|
|
206
|
+
}
|
|
207
|
+
export interface GetRecipientByIdParams {
|
|
208
|
+
recipient_id: string;
|
|
209
|
+
}
|
|
210
|
+
export interface GetOnboardingDetailParams {
|
|
211
|
+
recipient_id: string;
|
|
212
|
+
onboarding_id: string;
|
|
213
|
+
}
|
|
214
|
+
export interface GetOnboardingTimelineParams {
|
|
215
|
+
onboarding_id: string;
|
|
216
|
+
}
|
package/build/index.d.ts
CHANGED
|
@@ -4534,6 +4534,223 @@ declare namespace OrganizationConfig {
|
|
|
4534
4534
|
}
|
|
4535
4535
|
}
|
|
4536
4536
|
|
|
4537
|
+
declare namespace Recipients {
|
|
4538
|
+
interface Document {
|
|
4539
|
+
number: string | null;
|
|
4540
|
+
type: string | null;
|
|
4541
|
+
}
|
|
4542
|
+
interface Phone {
|
|
4543
|
+
country_code: string | null;
|
|
4544
|
+
number: string | null;
|
|
4545
|
+
}
|
|
4546
|
+
interface Address {
|
|
4547
|
+
address_line_1: string | null;
|
|
4548
|
+
address_line_2: string | null;
|
|
4549
|
+
country: string | null;
|
|
4550
|
+
city: string | null;
|
|
4551
|
+
state: string | null;
|
|
4552
|
+
zip_code: string | null;
|
|
4553
|
+
}
|
|
4554
|
+
interface Bank {
|
|
4555
|
+
code: string | null;
|
|
4556
|
+
branch: string | null;
|
|
4557
|
+
branch_digit: string | null;
|
|
4558
|
+
account: string | null;
|
|
4559
|
+
account_digit: string | null;
|
|
4560
|
+
account_type: string | null;
|
|
4561
|
+
routing: string | null;
|
|
4562
|
+
country: string | null;
|
|
4563
|
+
currency: string | null;
|
|
4564
|
+
payout_schedule?: string | null;
|
|
4565
|
+
}
|
|
4566
|
+
interface WithdrawalMethod {
|
|
4567
|
+
bank: Bank | null;
|
|
4568
|
+
}
|
|
4569
|
+
interface Documentation {
|
|
4570
|
+
file_name: string;
|
|
4571
|
+
content_type: string;
|
|
4572
|
+
content_category: string;
|
|
4573
|
+
content: string | null;
|
|
4574
|
+
}
|
|
4575
|
+
interface OnboardingSummary {
|
|
4576
|
+
id: string;
|
|
4577
|
+
provider_id: string;
|
|
4578
|
+
status: string;
|
|
4579
|
+
created_at: string;
|
|
4580
|
+
}
|
|
4581
|
+
interface RecipientListItem {
|
|
4582
|
+
id: string;
|
|
4583
|
+
merchant_recipient_id: string | null;
|
|
4584
|
+
national_entity: string;
|
|
4585
|
+
entity_type: string | null;
|
|
4586
|
+
country: string;
|
|
4587
|
+
first_name: string | null;
|
|
4588
|
+
last_name: string | null;
|
|
4589
|
+
legal_name: string | null;
|
|
4590
|
+
email: string | null;
|
|
4591
|
+
account_id: string;
|
|
4592
|
+
date_of_birth: string | null;
|
|
4593
|
+
website: string | null;
|
|
4594
|
+
industry: string | null;
|
|
4595
|
+
merchant_category_code: string | null;
|
|
4596
|
+
created_at: string;
|
|
4597
|
+
updated_at: string;
|
|
4598
|
+
}
|
|
4599
|
+
interface Pagination {
|
|
4600
|
+
page: number;
|
|
4601
|
+
page_size: number;
|
|
4602
|
+
total_items: number;
|
|
4603
|
+
total_pages: number;
|
|
4604
|
+
has_next: boolean;
|
|
4605
|
+
has_previous: boolean;
|
|
4606
|
+
}
|
|
4607
|
+
interface RecipientListResponse {
|
|
4608
|
+
data: RecipientListItem[];
|
|
4609
|
+
pagination: Pagination;
|
|
4610
|
+
}
|
|
4611
|
+
interface RecipientDetail {
|
|
4612
|
+
id: string;
|
|
4613
|
+
merchant_recipient_id: string | null;
|
|
4614
|
+
national_entity: string;
|
|
4615
|
+
entity_type: string | null;
|
|
4616
|
+
country: string;
|
|
4617
|
+
first_name: string | null;
|
|
4618
|
+
last_name: string | null;
|
|
4619
|
+
legal_name: string | null;
|
|
4620
|
+
email: string | null;
|
|
4621
|
+
account_id: string;
|
|
4622
|
+
created_at: string;
|
|
4623
|
+
updated_at: string;
|
|
4624
|
+
document: Document | null;
|
|
4625
|
+
phone: Phone | null;
|
|
4626
|
+
address: Address | null;
|
|
4627
|
+
withdrawal_method: WithdrawalMethod | null;
|
|
4628
|
+
documentation: Documentation[];
|
|
4629
|
+
onboardings: OnboardingSummary[];
|
|
4630
|
+
}
|
|
4631
|
+
interface OnboardingProvider {
|
|
4632
|
+
id: string | null;
|
|
4633
|
+
connection_id: string | null;
|
|
4634
|
+
redirect_url: string | null;
|
|
4635
|
+
recipient_id: string | null;
|
|
4636
|
+
recipient_additional_id: string | null;
|
|
4637
|
+
onboarding_url: string | null;
|
|
4638
|
+
legal_entity: string | null;
|
|
4639
|
+
balance_account_id: string | null;
|
|
4640
|
+
recipient_type: string | null;
|
|
4641
|
+
raw_notification: string | null;
|
|
4642
|
+
raw_response: string | null;
|
|
4643
|
+
response_code: string | null;
|
|
4644
|
+
response_message: string | null;
|
|
4645
|
+
}
|
|
4646
|
+
interface LegalRepresentativeDocument {
|
|
4647
|
+
type: string | null;
|
|
4648
|
+
number: string | null;
|
|
4649
|
+
}
|
|
4650
|
+
interface LegalRepresentative {
|
|
4651
|
+
first_name: string | null;
|
|
4652
|
+
last_name: string | null;
|
|
4653
|
+
email: string | null;
|
|
4654
|
+
document: LegalRepresentativeDocument | null;
|
|
4655
|
+
phone: Phone | null;
|
|
4656
|
+
address: Address | null;
|
|
4657
|
+
date_of_birth: string | null;
|
|
4658
|
+
}
|
|
4659
|
+
interface Requirement {
|
|
4660
|
+
field: string | null;
|
|
4661
|
+
message: string | null;
|
|
4662
|
+
status: string | null;
|
|
4663
|
+
}
|
|
4664
|
+
interface CapabilityRequirement {
|
|
4665
|
+
provider_response_code: string | null;
|
|
4666
|
+
provider_response_message: string | null;
|
|
4667
|
+
provider_response_field: string | null;
|
|
4668
|
+
message: string | null;
|
|
4669
|
+
status: string | null;
|
|
4670
|
+
}
|
|
4671
|
+
interface Capability {
|
|
4672
|
+
status: string | null;
|
|
4673
|
+
requirements: CapabilityRequirement[];
|
|
4674
|
+
}
|
|
4675
|
+
interface Capabilities {
|
|
4676
|
+
payouts: Capability | null;
|
|
4677
|
+
send_transfers: Capability | null;
|
|
4678
|
+
receive_transfers: Capability | null;
|
|
4679
|
+
payments: Capability | null;
|
|
4680
|
+
}
|
|
4681
|
+
interface TermsOfService {
|
|
4682
|
+
acceptance: boolean | null;
|
|
4683
|
+
date: string | null;
|
|
4684
|
+
ip: string | null;
|
|
4685
|
+
}
|
|
4686
|
+
interface Metadata {
|
|
4687
|
+
key: string;
|
|
4688
|
+
value: string;
|
|
4689
|
+
}
|
|
4690
|
+
interface OnboardingDetail {
|
|
4691
|
+
id: string;
|
|
4692
|
+
type: string;
|
|
4693
|
+
workflow: string;
|
|
4694
|
+
description: string | null;
|
|
4695
|
+
status: string;
|
|
4696
|
+
response_message: string | null;
|
|
4697
|
+
callback_url: string | null;
|
|
4698
|
+
provider: OnboardingProvider | null;
|
|
4699
|
+
documentation: Documentation[];
|
|
4700
|
+
legal_representatives: LegalRepresentative[];
|
|
4701
|
+
withdrawal_methods: WithdrawalMethod | null;
|
|
4702
|
+
requirements: Requirement[];
|
|
4703
|
+
capabilities: Capabilities | null;
|
|
4704
|
+
terms_of_service: TermsOfService | null;
|
|
4705
|
+
metadata: Metadata[];
|
|
4706
|
+
created_at: string;
|
|
4707
|
+
updated_at: string;
|
|
4708
|
+
expires_at: string | null;
|
|
4709
|
+
}
|
|
4710
|
+
interface TimelineEventData {
|
|
4711
|
+
provider_id?: string | null;
|
|
4712
|
+
provider_status?: string | null;
|
|
4713
|
+
provider_response_code?: string | null;
|
|
4714
|
+
provider_response_message?: string | null;
|
|
4715
|
+
provider_recipient_id?: string | null;
|
|
4716
|
+
provider_redirect_url?: string | null;
|
|
4717
|
+
requirements?: Requirement[];
|
|
4718
|
+
capabilities?: Capabilities | null;
|
|
4719
|
+
change_type?: string | null;
|
|
4720
|
+
}
|
|
4721
|
+
interface TimelineEvent {
|
|
4722
|
+
timestamp: string;
|
|
4723
|
+
event_type: string;
|
|
4724
|
+
status: string | null;
|
|
4725
|
+
event_data: TimelineEventData | null;
|
|
4726
|
+
}
|
|
4727
|
+
type OnboardingTimeline = TimelineEvent[];
|
|
4728
|
+
}
|
|
4729
|
+
interface GetRecipientsParams {
|
|
4730
|
+
account_ids?: string;
|
|
4731
|
+
countries?: string;
|
|
4732
|
+
national_entities?: string;
|
|
4733
|
+
entity_types?: string;
|
|
4734
|
+
start_date?: string;
|
|
4735
|
+
end_date?: string;
|
|
4736
|
+
search_type?: string;
|
|
4737
|
+
search_value?: string;
|
|
4738
|
+
page?: number;
|
|
4739
|
+
page_size?: number;
|
|
4740
|
+
sort_by?: string;
|
|
4741
|
+
sort_order?: string;
|
|
4742
|
+
}
|
|
4743
|
+
interface GetRecipientByIdParams {
|
|
4744
|
+
recipient_id: string;
|
|
4745
|
+
}
|
|
4746
|
+
interface GetOnboardingDetailParams {
|
|
4747
|
+
recipient_id: string;
|
|
4748
|
+
onboarding_id: string;
|
|
4749
|
+
}
|
|
4750
|
+
interface GetOnboardingTimelineParams {
|
|
4751
|
+
onboarding_id: string;
|
|
4752
|
+
}
|
|
4753
|
+
|
|
4537
4754
|
type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
|
|
4538
4755
|
response: {
|
|
4539
4756
|
data: {
|
|
@@ -5787,6 +6004,11 @@ declare function useSearchScheduleById(scheduleId: number, payload: TemplateRepo
|
|
|
5787
6004
|
|
|
5788
6005
|
declare function useGetOrganizationConfigs(): UseQueryResult<OrganizationConfig.GetConfigsResponse, BFFErrorResponse>;
|
|
5789
6006
|
|
|
6007
|
+
declare function useGetRecipients(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponse, AxiosError<BFFErrorResponse>>;
|
|
6008
|
+
declare function useGetRecipientById(organizationCode: string, params: GetRecipientByIdParams, enabled?: boolean): UseQueryResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse>>;
|
|
6009
|
+
declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
|
|
6010
|
+
declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
|
|
6011
|
+
|
|
5790
6012
|
interface CreateChartGPTChartPayload {
|
|
5791
6013
|
user_prompt: string;
|
|
5792
6014
|
timezone?: string;
|
|
@@ -6349,14 +6571,14 @@ declare class Api extends HttpClient {
|
|
|
6349
6571
|
postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
6350
6572
|
postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
6351
6573
|
postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
6352
|
-
patchApiKeysEditNote<T>(payload: any, keyCode: any): Promise<AxiosResponse<T, any>>;
|
|
6574
|
+
patchApiKeysEditNote<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
6353
6575
|
getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
|
|
6354
6576
|
getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
|
|
6355
6577
|
postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
6356
6578
|
pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
|
|
6357
6579
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
6358
6580
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
6359
|
-
getCustomizedApiKeysToken<T>(code:
|
|
6581
|
+
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
6360
6582
|
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
6361
6583
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
6362
6584
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -6412,6 +6634,23 @@ declare class Api extends HttpClient {
|
|
|
6412
6634
|
}): Promise<AxiosResponse<T, any>>;
|
|
6413
6635
|
getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
|
|
6414
6636
|
getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
6637
|
+
getRecipients<T>(organizationCode: string, params: {
|
|
6638
|
+
account_ids?: string;
|
|
6639
|
+
countries?: string;
|
|
6640
|
+
national_entities?: string;
|
|
6641
|
+
entity_types?: string;
|
|
6642
|
+
start_date?: string;
|
|
6643
|
+
end_date?: string;
|
|
6644
|
+
search_type?: string;
|
|
6645
|
+
search_value?: string;
|
|
6646
|
+
page?: number;
|
|
6647
|
+
page_size?: number;
|
|
6648
|
+
sort_by?: string;
|
|
6649
|
+
sort_order?: string;
|
|
6650
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
6651
|
+
getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
|
|
6652
|
+
getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
6653
|
+
getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
6415
6654
|
}
|
|
6416
6655
|
|
|
6417
6656
|
declare class ApiSingleton extends Api {
|
|
@@ -6452,5 +6691,5 @@ declare const useChartAssistantSocket: () => {
|
|
|
6452
6691
|
connectionError: string | null;
|
|
6453
6692
|
};
|
|
6454
6693
|
|
|
6455
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportWebhooksLogs, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, 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, useGetInstallmentPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, 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, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUserFull, 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, useListSubscriptions, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
6456
|
-
export type { AccountRoles, AllowlistMultiAccount, Availability, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetInstallmentPlansResponse, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, InstallmentAmount, InstallmentPlan, InstallmentPlanItem, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, PlanAmount, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload, WebSocketMessage };
|
|
6694
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportWebhooksLogs, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, 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, useGetInstallmentPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, 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, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUserFull, 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, useListSubscriptions, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
6695
|
+
export type { AccountRoles, AllowlistMultiAccount, Availability, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetInstallmentPlansResponse, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, InstallmentAmount, InstallmentPlan, InstallmentPlanItem, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, PlanAmount, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload, WebSocketMessage };
|