@yuno-payments/dashboard-api-mfe 0.41.2-DAS-12434.1 → 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 +2 -2
- package/build/cjs/types/mutations/connections/connections.mutation.d.ts +2 -2
- package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
- package/build/cjs/types/types/connection/connection.d.ts +3 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -2
- package/build/esm/types/mutations/connections/connections.mutation.d.ts +2 -2
- package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
- package/build/esm/types/types/connection/connection.d.ts +3 -0
- package/build/index.d.ts +8 -5
- 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,8 +527,8 @@ 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<
|
|
531
|
-
postNetworkTokensOnboarding(payload: Connection.
|
|
530
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
531
|
+
postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
532
532
|
createChartGPTChart<T>(payload: {
|
|
533
533
|
user_prompt: string;
|
|
534
534
|
timezone?: string;
|
|
@@ -34,7 +34,7 @@ export declare function useValidateCredentials(): import("@tanstack/react-query"
|
|
|
34
34
|
country_code?: string;
|
|
35
35
|
};
|
|
36
36
|
}, unknown>;
|
|
37
|
-
export declare function usePostNetworkTokensOnboarding(): import("@tanstack/react-query").UseMutationResult<Connection.
|
|
38
|
-
payload: Connection.
|
|
37
|
+
export declare function usePostNetworkTokensOnboarding(): import("@tanstack/react-query").UseMutationResult<Connection.NetworkTokensOnboardingMerchantData, unknown, {
|
|
38
|
+
payload: Connection.NetworkTokensOnboardingMerchantRequest;
|
|
39
39
|
}, unknown>;
|
|
40
40
|
export {};
|
|
@@ -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>;
|
package/build/index.d.ts
CHANGED
|
@@ -1106,6 +1106,9 @@ declare namespace Connection {
|
|
|
1106
1106
|
merchant_category_code: string | null;
|
|
1107
1107
|
merchant_country_code: string | null;
|
|
1108
1108
|
}
|
|
1109
|
+
interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingData {
|
|
1110
|
+
account_codes: string[];
|
|
1111
|
+
}
|
|
1109
1112
|
}
|
|
1110
1113
|
|
|
1111
1114
|
declare namespace Organization {
|
|
@@ -4589,8 +4592,8 @@ declare function useValidateCredentials(): _tanstack_react_query.UseMutationResu
|
|
|
4589
4592
|
country_code?: string;
|
|
4590
4593
|
};
|
|
4591
4594
|
}, unknown>;
|
|
4592
|
-
declare function usePostNetworkTokensOnboarding(): _tanstack_react_query.UseMutationResult<Connection.
|
|
4593
|
-
payload: Connection.
|
|
4595
|
+
declare function usePostNetworkTokensOnboarding(): _tanstack_react_query.UseMutationResult<Connection.NetworkTokensOnboardingMerchantData, unknown, {
|
|
4596
|
+
payload: Connection.NetworkTokensOnboardingMerchantRequest;
|
|
4594
4597
|
}, unknown>;
|
|
4595
4598
|
|
|
4596
4599
|
declare function useUpdateOrganizationStatus(): _tanstack_react_query.UseMutationResult<void, unknown, void, unknown>;
|
|
@@ -5653,7 +5656,7 @@ declare function usePatchAndExecuteChart(chart_id: string, patchPayload: PatchCh
|
|
|
5653
5656
|
declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
5654
5657
|
declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
5655
5658
|
|
|
5656
|
-
declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.
|
|
5659
|
+
declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingMerchantData, BFFErrorResponse>;
|
|
5657
5660
|
|
|
5658
5661
|
declare const useCommunicationsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse, any>>;
|
|
5659
5662
|
declare const useCommunicationsBySubstatus: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<CommunicationsBySubStatus, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<CommunicationsBySubStatus, AxiosError<BFFErrorResponse, any>>;
|
|
@@ -6251,8 +6254,8 @@ declare class Api extends HttpClient {
|
|
|
6251
6254
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
6252
6255
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
6253
6256
|
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
6254
|
-
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<
|
|
6255
|
-
postNetworkTokensOnboarding(payload: Connection.
|
|
6257
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
6258
|
+
postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
6256
6259
|
createChartGPTChart<T>(payload: {
|
|
6257
6260
|
user_prompt: string;
|
|
6258
6261
|
timezone?: string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("3f4a226eda02cc82")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.1846116919e7f084.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.1846116919e7f084.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"3f4a226eda02cc82\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("9cfef3339118e632")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.33abe4e8d07124dc.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.33abe4e8d07124dc.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"9cfef3339118e632\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("91366c92746c2cc8")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.3f4a226eda02cc82.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.3f4a226eda02cc82.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"91366c92746c2cc8\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("33abe4e8d07124dc")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.42c8a9b4299ac791.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.42c8a9b4299ac791.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"33abe4e8d07124dc\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("ad1605754d99a9e8")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.898bdc3186a2c4d1.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.898bdc3186a2c4d1.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"ad1605754d99a9e8\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("898bdc3186a2c4d1")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.91366c92746c2cc8.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.91366c92746c2cc8.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"898bdc3186a2c4d1\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("42c8a9b4299ac791")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.a5f90d5508c60de6.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.a5f90d5508c60de6.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"42c8a9b4299ac791\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
self["webpackHotUpdatedashboard_api_mfe"]("main", {},function(__webpack_require__) {
|
|
3
|
+
// webpack/runtime/get_full_hash
|
|
4
|
+
(() => {
|
|
5
|
+
__webpack_require__.h = () => ("a5f90d5508c60de6")
|
|
6
|
+
})();
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
);
|
|
10
|
+
//# sourceMappingURL=main.ad1605754d99a9e8.hot-update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.ad1605754d99a9e8.hot-update.js","sources":["webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["__webpack_require__.h = () => (\"a5f90d5508c60de6\")"],"names":[],"mappings":";;;;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"c":["main"],"r":[],"m":[]}
|