sowhat-types 2.0.30 → 2.0.31
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
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;
|
|
@@ -209,6 +211,8 @@ interface BudgetIncomesAllocationResponse {
|
|
|
209
211
|
icon: string;
|
|
210
212
|
color: string;
|
|
211
213
|
theoricalValuePerMonth: number;
|
|
214
|
+
value: number;
|
|
215
|
+
currency: string;
|
|
212
216
|
note: string | null;
|
|
213
217
|
updatedAt: Date | null;
|
|
214
218
|
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;
|
|
@@ -209,6 +211,8 @@ interface BudgetIncomesAllocationResponse {
|
|
|
209
211
|
icon: string;
|
|
210
212
|
color: string;
|
|
211
213
|
theoricalValuePerMonth: number;
|
|
214
|
+
value: number;
|
|
215
|
+
currency: string;
|
|
212
216
|
note: string | null;
|
|
213
217
|
updatedAt: Date | null;
|
|
214
218
|
createdAt: Date;
|