@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.
Files changed (36) hide show
  1. package/build/cjs/index.js.map +1 -1
  2. package/build/cjs/types/api/api.d.ts +1 -1
  3. package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
  4. package/build/cjs/types/types/connection/connection.d.ts +1 -1
  5. package/build/esm/index.js.map +1 -1
  6. package/build/esm/types/api/api.d.ts +1 -1
  7. package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
  8. package/build/esm/types/types/connection/connection.d.ts +1 -1
  9. package/build/index.d.ts +3 -3
  10. package/build/main.1846116919e7f084.hot-update.js +10 -0
  11. package/build/main.1846116919e7f084.hot-update.js.map +1 -0
  12. package/build/main.1846116919e7f084.hot-update.json +1 -0
  13. package/build/main.33abe4e8d07124dc.hot-update.js +10 -0
  14. package/build/main.33abe4e8d07124dc.hot-update.js.map +1 -0
  15. package/build/main.33abe4e8d07124dc.hot-update.json +1 -0
  16. package/build/main.3f4a226eda02cc82.hot-update.js +10 -0
  17. package/build/main.3f4a226eda02cc82.hot-update.js.map +1 -0
  18. package/build/main.3f4a226eda02cc82.hot-update.json +1 -0
  19. package/build/main.42c8a9b4299ac791.hot-update.js +10 -0
  20. package/build/main.42c8a9b4299ac791.hot-update.js.map +1 -0
  21. package/build/main.42c8a9b4299ac791.hot-update.json +1 -0
  22. package/build/main.898bdc3186a2c4d1.hot-update.js +10 -0
  23. package/build/main.898bdc3186a2c4d1.hot-update.js.map +1 -0
  24. package/build/main.898bdc3186a2c4d1.hot-update.json +1 -0
  25. package/build/main.91366c92746c2cc8.hot-update.js +10 -0
  26. package/build/main.91366c92746c2cc8.hot-update.js.map +1 -0
  27. package/build/main.91366c92746c2cc8.hot-update.json +1 -0
  28. package/build/main.a5f90d5508c60de6.hot-update.js +10 -0
  29. package/build/main.a5f90d5508c60de6.hot-update.js.map +1 -0
  30. package/build/main.a5f90d5508c60de6.hot-update.json +1 -0
  31. package/build/main.ad1605754d99a9e8.hot-update.js +10 -0
  32. package/build/main.ad1605754d99a9e8.hot-update.js.map +1 -0
  33. package/build/main.ad1605754d99a9e8.hot-update.json +1 -0
  34. package/build/yuno-dashboard-api-mfe.js +64095 -0
  35. package/build/yuno-dashboard-api-mfe.js.map +1 -0
  36. 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<SmartRouting.NetworkTokensOnboardingGetResponse>>;
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 { CustomAxiosResponse } from '../../utils/handler-error';
5
- export declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingData, AxiosError<CustomAxiosResponse>>;
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 NetworkTokensOnboardingMerchantData {
77
+ interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingData {
78
78
  account_codes: string[];
79
79
  }
80
80
  }
package/build/index.d.ts CHANGED
@@ -1106,7 +1106,7 @@ declare namespace Connection {
1106
1106
  merchant_category_code: string | null;
1107
1107
  merchant_country_code: string | null;
1108
1108
  }
1109
- interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingMerchantData {
1109
+ interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingData {
1110
1110
  account_codes: string[];
1111
1111
  }
1112
1112
  }
@@ -5656,7 +5656,7 @@ declare function usePatchAndExecuteChart(chart_id: string, patchPayload: PatchCh
5656
5656
  declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
5657
5657
  declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
5658
5658
 
5659
- declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingData, AxiosError<CustomAxiosResponse>>;
5659
+ declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingMerchantData, BFFErrorResponse>;
5660
5660
 
5661
5661
  declare const useCommunicationsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse, any>>;
5662
5662
  declare const useCommunicationsBySubstatus: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<CommunicationsBySubStatus, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<CommunicationsBySubStatus, AxiosError<BFFErrorResponse, any>>;
@@ -6254,7 +6254,7 @@ declare class Api extends HttpClient {
6254
6254
  getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
6255
6255
  get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
6256
6256
  getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
6257
- getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingGetResponse>>;
6257
+ getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
6258
6258
  postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
6259
6259
  createChartGPTChart<T>(payload: {
6260
6260
  user_prompt: 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":[]}