@yuno-payments/dashboard-api-mfe 0.36.36 → 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 +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/msw/handlers/organizations.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 +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/msw/handlers/organizations.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 +6 -0
- package/package.json +1 -1
|
@@ -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
|
@@ -1088,6 +1088,10 @@ declare namespace Organization {
|
|
|
1088
1088
|
updated_at: Date;
|
|
1089
1089
|
nps: number;
|
|
1090
1090
|
type: string;
|
|
1091
|
+
allowed_sections?: {
|
|
1092
|
+
nova: boolean;
|
|
1093
|
+
reconciliations: boolean;
|
|
1094
|
+
};
|
|
1091
1095
|
}
|
|
1092
1096
|
enum CustomClaims {
|
|
1093
1097
|
ORGANIZATION_CODE = "https://dashboard.dev.y.uno/organization_code",
|
|
@@ -2714,6 +2718,7 @@ declare namespace Reconciliation {
|
|
|
2714
2718
|
size: number;
|
|
2715
2719
|
};
|
|
2716
2720
|
interface Transaction {
|
|
2721
|
+
primary_key: string;
|
|
2717
2722
|
account_code: string;
|
|
2718
2723
|
country: string;
|
|
2719
2724
|
type: string;
|
|
@@ -2746,6 +2751,7 @@ declare namespace Reconciliation {
|
|
|
2746
2751
|
reconciliation_id: string;
|
|
2747
2752
|
}
|
|
2748
2753
|
type Settlement = {
|
|
2754
|
+
primary_key: string;
|
|
2749
2755
|
organization_code: string;
|
|
2750
2756
|
account_id: string;
|
|
2751
2757
|
provider_merchant_id: string;
|