@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;
|