@yuno-payments/dashboard-api-mfe 0.36.57-beta.2 → 0.36.57-beta.4
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 +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/types/smart-recovery/smart-recovery-overview.types.d.ts +6 -4
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/types/smart-recovery/smart-recovery-overview.types.d.ts +6 -4
- package/build/index.d.ts +6 -4
- package/package.json +1 -1
|
@@ -58,16 +58,18 @@ export interface SmartRecoveryOverviewQueryParams extends SmartRecoveryOverviewF
|
|
|
58
58
|
organization_code: string;
|
|
59
59
|
}
|
|
60
60
|
export interface PlotRow {
|
|
61
|
-
date
|
|
61
|
+
date?: string;
|
|
62
|
+
label?: string;
|
|
62
63
|
value: string;
|
|
63
64
|
}
|
|
64
65
|
export interface Plot {
|
|
65
|
-
type: 'BAR' | 'LINE';
|
|
66
|
+
type: 'BAR' | 'LINE' | 'TABLE';
|
|
66
67
|
label: string;
|
|
67
68
|
value: string;
|
|
68
|
-
unit: 'NUMERIC' | 'PERCENTAGE' | 'MONETARY';
|
|
69
|
+
unit: 'NUMERIC' | 'PERCENTAGE' | 'MONETARY' | 'CURRENCY';
|
|
70
|
+
currency?: string;
|
|
69
71
|
percentage?: string;
|
|
70
|
-
rows?: PlotRow[];
|
|
72
|
+
rows?: PlotRow[] | null;
|
|
71
73
|
}
|
|
72
74
|
export interface CommunicationsByDayResponse {
|
|
73
75
|
title: string;
|
package/build/index.d.ts
CHANGED
|
@@ -3843,16 +3843,18 @@ interface SmartRecoveryOverviewQueryParams extends SmartRecoveryOverviewFilters
|
|
|
3843
3843
|
organization_code: string;
|
|
3844
3844
|
}
|
|
3845
3845
|
interface PlotRow {
|
|
3846
|
-
date
|
|
3846
|
+
date?: string;
|
|
3847
|
+
label?: string;
|
|
3847
3848
|
value: string;
|
|
3848
3849
|
}
|
|
3849
3850
|
interface Plot {
|
|
3850
|
-
type: 'BAR' | 'LINE';
|
|
3851
|
+
type: 'BAR' | 'LINE' | 'TABLE';
|
|
3851
3852
|
label: string;
|
|
3852
3853
|
value: string;
|
|
3853
|
-
unit: 'NUMERIC' | 'PERCENTAGE' | 'MONETARY';
|
|
3854
|
+
unit: 'NUMERIC' | 'PERCENTAGE' | 'MONETARY' | 'CURRENCY';
|
|
3855
|
+
currency?: string;
|
|
3854
3856
|
percentage?: string;
|
|
3855
|
-
rows?: PlotRow[];
|
|
3857
|
+
rows?: PlotRow[] | null;
|
|
3856
3858
|
}
|
|
3857
3859
|
interface CommunicationsByDayResponse {
|
|
3858
3860
|
title: string;
|