@mcdylanproperenterprise/nodejs-proper-money-types 0.0.33 → 0.0.35
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/package.json +1 -1
- package/types.ts +11 -5
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -152,14 +152,20 @@ export type TGetTransactionCategoryDashboardQuery = {
|
|
|
152
152
|
|
|
153
153
|
export type TGetTransactionCategoryDashboardResponse = {
|
|
154
154
|
category: TTransactionCategory & {
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
currencies: {
|
|
156
|
+
currency: string;
|
|
157
|
+
amount: number;
|
|
158
|
+
transactionCount: number;
|
|
159
|
+
}[];
|
|
157
160
|
};
|
|
158
161
|
labels: {
|
|
159
|
-
|
|
162
|
+
id: string;
|
|
160
163
|
name: string;
|
|
161
|
-
|
|
162
|
-
|
|
164
|
+
currencies: {
|
|
165
|
+
currency: string;
|
|
166
|
+
transactionCount: number;
|
|
167
|
+
amount: number;
|
|
168
|
+
}[];
|
|
163
169
|
}[];
|
|
164
170
|
};
|
|
165
171
|
|