@yuno-payments/dashboard-api-mfe 0.36.40 → 0.36.41-beta.2
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 +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -0
- package/build/cjs/types/queries/reports/reports.query.d.ts +1 -1
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +1 -0
- package/build/cjs/types/types/organization/organization.d.ts +1 -0
- package/build/cjs/types/types/reconciliation/reconciliation.d.ts +2 -0
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -0
- package/build/esm/types/queries/reports/reports.query.d.ts +1 -1
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +1 -0
- package/build/esm/types/types/organization/organization.d.ts +1 -0
- package/build/esm/types/types/reconciliation/reconciliation.d.ts +2 -0
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/index.d.ts +10 -2
- package/package.json +1 -1
|
@@ -464,6 +464,7 @@ export declare class Api extends HttpClient {
|
|
|
464
464
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
465
465
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
466
466
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
467
|
+
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
467
468
|
createChartGPTChart<T>(payload: {
|
|
468
469
|
user_prompt: string;
|
|
469
470
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -9,5 +9,5 @@ export declare function useGetDownloadReport(reportId: string, enabled: boolean
|
|
|
9
9
|
code: string;
|
|
10
10
|
}, unknown>;
|
|
11
11
|
export declare function useGetReportTemplates(enabled: boolean): UseQueryResult<Reports.ITemplate[], unknown>;
|
|
12
|
-
export declare function useGetReportColumns(enabled: boolean, templateType: TemplateType, reportType: ReportType): UseQueryResult<
|
|
12
|
+
export declare function useGetReportColumns(enabled: boolean, templateType: TemplateType, reportType: ReportType): UseQueryResult<CentralizedColumn[], unknown>;
|
|
13
13
|
export declare function useGetRefundPdf(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
@@ -26,3 +26,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
26
26
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
27
27
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
28
28
|
export declare function use3DSExemptions(): UseQueryResult<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
29
|
+
export declare function useNetworkTokensOnboarding(): UseQueryResult<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
@@ -100,6 +100,7 @@ export declare namespace Reconciliation {
|
|
|
100
100
|
size: number;
|
|
101
101
|
};
|
|
102
102
|
interface Transaction {
|
|
103
|
+
primary_key: string;
|
|
103
104
|
account_code: string;
|
|
104
105
|
country: string;
|
|
105
106
|
type: string;
|
|
@@ -132,6 +133,7 @@ export declare namespace Reconciliation {
|
|
|
132
133
|
reconciliation_id: string;
|
|
133
134
|
}
|
|
134
135
|
type Settlement = {
|
|
136
|
+
primary_key: string;
|
|
135
137
|
organization_code: string;
|
|
136
138
|
account_id: string;
|
|
137
139
|
provider_merchant_id: string;
|