@yuno-payments/dashboard-api-mfe 0.41.2-DAS-12434.2 → 0.41.2-DAS-12434.3
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.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -1
- package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
- package/build/cjs/types/types/connection/connection.d.ts +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -1
- package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
- package/build/esm/types/types/connection/connection.d.ts +1 -1
- package/build/index.d.ts +3 -3
- package/build/main.1846116919e7f084.hot-update.js +10 -0
- package/build/main.1846116919e7f084.hot-update.js.map +1 -0
- package/build/main.1846116919e7f084.hot-update.json +1 -0
- package/build/main.33abe4e8d07124dc.hot-update.js +10 -0
- package/build/main.33abe4e8d07124dc.hot-update.js.map +1 -0
- package/build/main.33abe4e8d07124dc.hot-update.json +1 -0
- package/build/main.3f4a226eda02cc82.hot-update.js +10 -0
- package/build/main.3f4a226eda02cc82.hot-update.js.map +1 -0
- package/build/main.3f4a226eda02cc82.hot-update.json +1 -0
- package/build/main.42c8a9b4299ac791.hot-update.js +10 -0
- package/build/main.42c8a9b4299ac791.hot-update.js.map +1 -0
- package/build/main.42c8a9b4299ac791.hot-update.json +1 -0
- package/build/main.898bdc3186a2c4d1.hot-update.js +10 -0
- package/build/main.898bdc3186a2c4d1.hot-update.js.map +1 -0
- package/build/main.898bdc3186a2c4d1.hot-update.json +1 -0
- package/build/main.91366c92746c2cc8.hot-update.js +10 -0
- package/build/main.91366c92746c2cc8.hot-update.js.map +1 -0
- package/build/main.91366c92746c2cc8.hot-update.json +1 -0
- package/build/main.a5f90d5508c60de6.hot-update.js +10 -0
- package/build/main.a5f90d5508c60de6.hot-update.js.map +1 -0
- package/build/main.a5f90d5508c60de6.hot-update.json +1 -0
- package/build/main.ad1605754d99a9e8.hot-update.js +10 -0
- package/build/main.ad1605754d99a9e8.hot-update.js.map +1 -0
- package/build/main.ad1605754d99a9e8.hot-update.json +1 -0
- package/build/yuno-dashboard-api-mfe.js +64095 -0
- package/build/yuno-dashboard-api-mfe.js.map +1 -0
- package/package.json +1 -1
|
@@ -527,7 +527,7 @@ export declare class Api extends HttpClient {
|
|
|
527
527
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
528
528
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
529
529
|
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
530
|
-
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<
|
|
530
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
531
531
|
postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
532
532
|
createChartGPTChart<T>(payload: {
|
|
533
533
|
user_prompt: string;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { AxiosError } from 'axios';
|
|
3
2
|
import { Connection } from '../../types';
|
|
4
|
-
import {
|
|
5
|
-
export declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.
|
|
3
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
+
export declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingMerchantData, BFFErrorResponse>;
|
|
@@ -74,7 +74,7 @@ export declare namespace Connection {
|
|
|
74
74
|
merchant_category_code: string | null;
|
|
75
75
|
merchant_country_code: string | null;
|
|
76
76
|
}
|
|
77
|
-
interface NetworkTokensOnboardingMerchantRequest extends
|
|
77
|
+
interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingData {
|
|
78
78
|
account_codes: string[];
|
|
79
79
|
}
|
|
80
80
|
}
|