sowhat-types 2.0.94 → 2.0.96
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 +3 -5
- package/dist/index.d.ts +3 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -149,8 +149,8 @@ interface CreateOtherAssetInput {
|
|
|
149
149
|
imageUrl: string | null;
|
|
150
150
|
value: number;
|
|
151
151
|
currency: string;
|
|
152
|
-
gotLoan: boolean;
|
|
153
152
|
coOwner: AssetCoOwnerInput | null;
|
|
153
|
+
loanId: string | null;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
interface UpdateOtherAssetInput {
|
|
@@ -160,7 +160,7 @@ interface UpdateOtherAssetInput {
|
|
|
160
160
|
value?: number;
|
|
161
161
|
currency?: string;
|
|
162
162
|
coOwner?: AssetCoOwnerInput | null;
|
|
163
|
-
|
|
163
|
+
loanId?: string | null;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
interface CreateBudgetExpensesAllocationInput {
|
|
@@ -249,7 +249,6 @@ interface CreateUserCoOwnerInput {
|
|
|
249
249
|
name: string;
|
|
250
250
|
imageUrl: string | null;
|
|
251
251
|
email: string | null;
|
|
252
|
-
phone: string | null;
|
|
253
252
|
}
|
|
254
253
|
|
|
255
254
|
interface DeleteUserCoOwnerInput {
|
|
@@ -476,7 +475,7 @@ interface OtherAssetResponse {
|
|
|
476
475
|
imageUrl: string | null;
|
|
477
476
|
value: number;
|
|
478
477
|
currency: string;
|
|
479
|
-
|
|
478
|
+
loan: LoanResponse | null;
|
|
480
479
|
coOwner: AssetCoOwnerResponse | null;
|
|
481
480
|
updatedAt: Date;
|
|
482
481
|
createdAt: Date;
|
|
@@ -632,7 +631,6 @@ interface CoOwnerResponse {
|
|
|
632
631
|
name: string;
|
|
633
632
|
imageUrl: string | null;
|
|
634
633
|
email: string | null;
|
|
635
|
-
phone: string | null;
|
|
636
634
|
updatedAt: Date;
|
|
637
635
|
createdAt: Date;
|
|
638
636
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -149,8 +149,8 @@ interface CreateOtherAssetInput {
|
|
|
149
149
|
imageUrl: string | null;
|
|
150
150
|
value: number;
|
|
151
151
|
currency: string;
|
|
152
|
-
gotLoan: boolean;
|
|
153
152
|
coOwner: AssetCoOwnerInput | null;
|
|
153
|
+
loanId: string | null;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
interface UpdateOtherAssetInput {
|
|
@@ -160,7 +160,7 @@ interface UpdateOtherAssetInput {
|
|
|
160
160
|
value?: number;
|
|
161
161
|
currency?: string;
|
|
162
162
|
coOwner?: AssetCoOwnerInput | null;
|
|
163
|
-
|
|
163
|
+
loanId?: string | null;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
interface CreateBudgetExpensesAllocationInput {
|
|
@@ -249,7 +249,6 @@ interface CreateUserCoOwnerInput {
|
|
|
249
249
|
name: string;
|
|
250
250
|
imageUrl: string | null;
|
|
251
251
|
email: string | null;
|
|
252
|
-
phone: string | null;
|
|
253
252
|
}
|
|
254
253
|
|
|
255
254
|
interface DeleteUserCoOwnerInput {
|
|
@@ -476,7 +475,7 @@ interface OtherAssetResponse {
|
|
|
476
475
|
imageUrl: string | null;
|
|
477
476
|
value: number;
|
|
478
477
|
currency: string;
|
|
479
|
-
|
|
478
|
+
loan: LoanResponse | null;
|
|
480
479
|
coOwner: AssetCoOwnerResponse | null;
|
|
481
480
|
updatedAt: Date;
|
|
482
481
|
createdAt: Date;
|
|
@@ -632,7 +631,6 @@ interface CoOwnerResponse {
|
|
|
632
631
|
name: string;
|
|
633
632
|
imageUrl: string | null;
|
|
634
633
|
email: string | null;
|
|
635
|
-
phone: string | null;
|
|
636
634
|
updatedAt: Date;
|
|
637
635
|
createdAt: Date;
|
|
638
636
|
}
|