@budgetbuddyde/types 1.0.16 → 1.0.17
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.
|
@@ -1208,12 +1208,18 @@ export declare const ZDeleteTransactionResponsePayload: z.ZodObject<{
|
|
|
1208
1208
|
export type TDeleteTransactionResponsePayload = z.infer<typeof ZDeleteTransactionResponsePayload>;
|
|
1209
1209
|
export declare const ZMonthlyBalance: z.ZodObject<{
|
|
1210
1210
|
month: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1211
|
+
income: z.ZodNumber;
|
|
1212
|
+
expenses: z.ZodNumber;
|
|
1211
1213
|
balance: z.ZodNumber;
|
|
1212
1214
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1215
|
month: Date;
|
|
1216
|
+
income: number;
|
|
1217
|
+
expenses: number;
|
|
1214
1218
|
balance: number;
|
|
1215
1219
|
}, {
|
|
1216
1220
|
month: (string | number | Date) & (string | number | Date | undefined);
|
|
1221
|
+
income: number;
|
|
1222
|
+
expenses: number;
|
|
1217
1223
|
balance: number;
|
|
1218
1224
|
}>;
|
|
1219
1225
|
export type TMonthlyBalance = z.infer<typeof ZMonthlyBalance>;
|
package/lib/Transaction.type.js
CHANGED