@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>;
@@ -72,5 +72,7 @@ exports.ZDeleteTransactionResponsePayload = zod_1.z.object({
72
72
  });
73
73
  exports.ZMonthlyBalance = zod_1.z.object({
74
74
  month: Base_type_1.ZDate,
75
+ income: zod_1.z.number(),
76
+ expenses: zod_1.z.number(),
75
77
  balance: zod_1.z.number(),
76
78
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budgetbuddyde/types",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "description": "Budget Buddy Typescript Types",