@yuno-payments/dashboard-api-mfe 0.40.5 → 0.40.8
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 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -1
- package/build/cjs/types/queries/index.d.ts +1 -0
- package/build/cjs/types/types/checkout/checkout.d.ts +22 -0
- package/build/cjs/types/types/reports/reports.d.ts +1 -0
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +24 -0
- package/build/esm/index.js +6 -13
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -1
- package/build/esm/types/queries/index.d.ts +1 -0
- package/build/esm/types/types/checkout/checkout.d.ts +22 -0
- package/build/esm/types/types/reports/reports.d.ts +1 -0
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +24 -0
- package/build/index.d.ts +50 -3
- package/package.json +1 -1
|
@@ -510,7 +510,7 @@ export declare class Api extends HttpClient {
|
|
|
510
510
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
511
511
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
512
512
|
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
513
|
-
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<
|
|
513
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingGetResponse>>;
|
|
514
514
|
postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingData, organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingData>>;
|
|
515
515
|
createChartGPTChart<T>(payload: {
|
|
516
516
|
user_prompt: string;
|
|
@@ -25,6 +25,7 @@ export * from './mfa';
|
|
|
25
25
|
export * from './saml-config';
|
|
26
26
|
export * from './chartgpt';
|
|
27
27
|
export * from './translation';
|
|
28
|
+
export * from './network-tokens';
|
|
28
29
|
export * from './smart-recovery';
|
|
29
30
|
export * from './network-tokens';
|
|
30
31
|
export * from './template-reporting';
|
|
@@ -70,6 +70,28 @@ export declare namespace Checkout {
|
|
|
70
70
|
is_active: boolean;
|
|
71
71
|
current_value?: string;
|
|
72
72
|
options?: string[];
|
|
73
|
+
conditions_to_override?: {
|
|
74
|
+
name: string;
|
|
75
|
+
order: number;
|
|
76
|
+
payment_method_data: {
|
|
77
|
+
name: string | null;
|
|
78
|
+
description: string | null;
|
|
79
|
+
logo: string | null;
|
|
80
|
+
};
|
|
81
|
+
conditions: {
|
|
82
|
+
id: number;
|
|
83
|
+
payment_method_condition_set_id: number;
|
|
84
|
+
condition_type: string;
|
|
85
|
+
values: string[];
|
|
86
|
+
conditional: string;
|
|
87
|
+
metadata_key: string | null;
|
|
88
|
+
additional_field_name: string | null;
|
|
89
|
+
complex_name: string | null;
|
|
90
|
+
complex_index: number | null;
|
|
91
|
+
created_at: string;
|
|
92
|
+
updated_at: string;
|
|
93
|
+
}[];
|
|
94
|
+
}[];
|
|
73
95
|
}
|
|
74
96
|
export interface GetRequiredFieldsResponse {
|
|
75
97
|
payment_method: string;
|
|
@@ -326,5 +326,29 @@ export declare namespace SmartRouting {
|
|
|
326
326
|
export interface NetworkTokensOnboardingResponse {
|
|
327
327
|
available: boolean;
|
|
328
328
|
}
|
|
329
|
+
export interface NetworkTokensOnboardingData {
|
|
330
|
+
company_name: string;
|
|
331
|
+
client: string;
|
|
332
|
+
website: string;
|
|
333
|
+
required_provider: string;
|
|
334
|
+
company_legal_name: string;
|
|
335
|
+
company_registered_state: string;
|
|
336
|
+
company_registered_zip_code: string;
|
|
337
|
+
company_registered_address: string;
|
|
338
|
+
company_registered_country: string;
|
|
339
|
+
company_registered_phone: string;
|
|
340
|
+
primary_contact_first_name: string;
|
|
341
|
+
primary_contact_last_name: string;
|
|
342
|
+
business_identification_type: string;
|
|
343
|
+
business_identification_number: string;
|
|
344
|
+
}
|
|
345
|
+
export interface NetworkTokensOnboardingPayload extends NetworkTokensOnboardingData {
|
|
346
|
+
accounts: string[];
|
|
347
|
+
}
|
|
348
|
+
export interface NetworkTokensOnboardingGetResponse extends NetworkTokensOnboardingData {
|
|
349
|
+
id?: string;
|
|
350
|
+
created_at?: string;
|
|
351
|
+
updated_at?: string;
|
|
352
|
+
}
|
|
329
353
|
export {};
|
|
330
354
|
}
|