@yuno-payments/dashboard-api-mfe 0.36.34-beta.1 → 0.36.39-REC-4663.0
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/msw/handlers/organizations.d.ts +1 -0
- package/build/cjs/types/types/connection/connection.d.ts +1 -0
- package/build/cjs/types/types/organization/organization.d.ts +4 -0
- package/build/cjs/types/types/reconciliation/reconciliation.d.ts +2 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/msw/handlers/organizations.d.ts +1 -0
- package/build/esm/types/types/connection/connection.d.ts +1 -0
- package/build/esm/types/types/organization/organization.d.ts +4 -0
- package/build/esm/types/types/reconciliation/reconciliation.d.ts +2 -0
- package/build/index.d.ts +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const organizationsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -13,6 +13,10 @@ export declare namespace Organization {
|
|
|
13
13
|
updated_at: Date;
|
|
14
14
|
nps: number;
|
|
15
15
|
type: string;
|
|
16
|
+
allowed_sections?: {
|
|
17
|
+
nova: boolean;
|
|
18
|
+
reconciliations: boolean;
|
|
19
|
+
};
|
|
16
20
|
}
|
|
17
21
|
enum CustomClaims {
|
|
18
22
|
ORGANIZATION_CODE = "https://dashboard.dev.y.uno/organization_code",
|
|
@@ -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;
|
package/build/index.d.ts
CHANGED
|
@@ -1032,6 +1032,7 @@ declare namespace Connection {
|
|
|
1032
1032
|
location_coverage: string[];
|
|
1033
1033
|
description: string;
|
|
1034
1034
|
active: boolean;
|
|
1035
|
+
future?: boolean;
|
|
1035
1036
|
created_at: string;
|
|
1036
1037
|
updated_at: string;
|
|
1037
1038
|
}
|
|
@@ -1087,6 +1088,10 @@ declare namespace Organization {
|
|
|
1087
1088
|
updated_at: Date;
|
|
1088
1089
|
nps: number;
|
|
1089
1090
|
type: string;
|
|
1091
|
+
allowed_sections?: {
|
|
1092
|
+
nova: boolean;
|
|
1093
|
+
reconciliations: boolean;
|
|
1094
|
+
};
|
|
1090
1095
|
}
|
|
1091
1096
|
enum CustomClaims {
|
|
1092
1097
|
ORGANIZATION_CODE = "https://dashboard.dev.y.uno/organization_code",
|
|
@@ -2713,6 +2718,7 @@ declare namespace Reconciliation {
|
|
|
2713
2718
|
size: number;
|
|
2714
2719
|
};
|
|
2715
2720
|
interface Transaction {
|
|
2721
|
+
primary_key: string;
|
|
2716
2722
|
account_code: string;
|
|
2717
2723
|
country: string;
|
|
2718
2724
|
type: string;
|
|
@@ -2745,6 +2751,7 @@ declare namespace Reconciliation {
|
|
|
2745
2751
|
reconciliation_id: string;
|
|
2746
2752
|
}
|
|
2747
2753
|
type Settlement = {
|
|
2754
|
+
primary_key: string;
|
|
2748
2755
|
organization_code: string;
|
|
2749
2756
|
account_id: string;
|
|
2750
2757
|
provider_merchant_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.39-REC-4663.0",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"webpack-config-single-spa-react": "^4.0.0",
|
|
85
85
|
"webpack-config-single-spa-react-ts": "^4.0.0",
|
|
86
86
|
"webpack-config-single-spa-ts": "^4.0.0",
|
|
87
|
-
"webpack-dev-server": "^
|
|
87
|
+
"webpack-dev-server": "^5.2.2",
|
|
88
88
|
"webpack-merge": "^5.8.0"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|