sowhat-types 2.0.30 → 2.0.32

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/dist/index.d.mts CHANGED
@@ -148,6 +148,7 @@ interface LogoutUserInput {
148
148
  interface CreateBudgetExpensesAllocationInput {
149
149
  name: string;
150
150
  theoricalValuePerMonth: number;
151
+ currency: string;
151
152
  color: string;
152
153
  icon: string;
153
154
  note: string | null;
@@ -160,6 +161,7 @@ interface DeleteBudgetExpensesAllocationInput {
160
161
  interface CreateBudgetIncomesAllocationInput {
161
162
  name: string;
162
163
  theoricalValuePerMonth: number;
164
+ currency: string;
163
165
  color: string;
164
166
  icon: string;
165
167
  note: string | null;
@@ -192,6 +194,8 @@ interface BudgetExpensesAllocationResponse {
192
194
  icon: string;
193
195
  color: string;
194
196
  theoricalValuePerMonth: number;
197
+ value: number;
198
+ currency: string;
195
199
  note: string | null;
196
200
  updatedAt: Date | null;
197
201
  createdAt: Date;
@@ -209,6 +213,8 @@ interface BudgetIncomesAllocationResponse {
209
213
  icon: string;
210
214
  color: string;
211
215
  theoricalValuePerMonth: number;
216
+ value: number;
217
+ currency: string;
212
218
  note: string | null;
213
219
  updatedAt: Date | null;
214
220
  createdAt: Date;
package/dist/index.d.ts CHANGED
@@ -148,6 +148,7 @@ interface LogoutUserInput {
148
148
  interface CreateBudgetExpensesAllocationInput {
149
149
  name: string;
150
150
  theoricalValuePerMonth: number;
151
+ currency: string;
151
152
  color: string;
152
153
  icon: string;
153
154
  note: string | null;
@@ -160,6 +161,7 @@ interface DeleteBudgetExpensesAllocationInput {
160
161
  interface CreateBudgetIncomesAllocationInput {
161
162
  name: string;
162
163
  theoricalValuePerMonth: number;
164
+ currency: string;
163
165
  color: string;
164
166
  icon: string;
165
167
  note: string | null;
@@ -192,6 +194,8 @@ interface BudgetExpensesAllocationResponse {
192
194
  icon: string;
193
195
  color: string;
194
196
  theoricalValuePerMonth: number;
197
+ value: number;
198
+ currency: string;
195
199
  note: string | null;
196
200
  updatedAt: Date | null;
197
201
  createdAt: Date;
@@ -209,6 +213,8 @@ interface BudgetIncomesAllocationResponse {
209
213
  icon: string;
210
214
  color: string;
211
215
  theoricalValuePerMonth: number;
216
+ value: number;
217
+ currency: string;
212
218
  note: string | null;
213
219
  updatedAt: Date | null;
214
220
  createdAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.30",
3
+ "version": "2.0.32",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",