sowhat-types 2.0.93 → 2.0.95
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 +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -111,8 +111,8 @@ interface CreateMobilityInput {
|
|
|
111
111
|
imageUrl: string | null;
|
|
112
112
|
value: number;
|
|
113
113
|
currency: string;
|
|
114
|
-
gotLoan: boolean;
|
|
115
114
|
coOwner: AssetCoOwnerInput | null;
|
|
115
|
+
loanId: string | null;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
interface UpdateMobilityInput {
|
|
@@ -122,7 +122,7 @@ interface UpdateMobilityInput {
|
|
|
122
122
|
value?: number;
|
|
123
123
|
currency?: string;
|
|
124
124
|
coOwner?: AssetCoOwnerInput | null;
|
|
125
|
-
|
|
125
|
+
loanId?: string | null;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
interface CreateRealEstateInput {
|
|
@@ -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 {
|
|
@@ -454,7 +454,7 @@ interface MobilityResponse {
|
|
|
454
454
|
imageUrl: string | null;
|
|
455
455
|
value: number;
|
|
456
456
|
currency: string;
|
|
457
|
-
|
|
457
|
+
loan: LoanResponse | null;
|
|
458
458
|
coOwner: AssetCoOwnerResponse | null;
|
|
459
459
|
updatedAt: Date;
|
|
460
460
|
createdAt: Date;
|
|
@@ -476,7 +476,7 @@ interface OtherAssetResponse {
|
|
|
476
476
|
imageUrl: string | null;
|
|
477
477
|
value: number;
|
|
478
478
|
currency: string;
|
|
479
|
-
|
|
479
|
+
loan: LoanResponse | null;
|
|
480
480
|
coOwner: AssetCoOwnerResponse | null;
|
|
481
481
|
updatedAt: Date;
|
|
482
482
|
createdAt: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -111,8 +111,8 @@ interface CreateMobilityInput {
|
|
|
111
111
|
imageUrl: string | null;
|
|
112
112
|
value: number;
|
|
113
113
|
currency: string;
|
|
114
|
-
gotLoan: boolean;
|
|
115
114
|
coOwner: AssetCoOwnerInput | null;
|
|
115
|
+
loanId: string | null;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
interface UpdateMobilityInput {
|
|
@@ -122,7 +122,7 @@ interface UpdateMobilityInput {
|
|
|
122
122
|
value?: number;
|
|
123
123
|
currency?: string;
|
|
124
124
|
coOwner?: AssetCoOwnerInput | null;
|
|
125
|
-
|
|
125
|
+
loanId?: string | null;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
interface CreateRealEstateInput {
|
|
@@ -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 {
|
|
@@ -454,7 +454,7 @@ interface MobilityResponse {
|
|
|
454
454
|
imageUrl: string | null;
|
|
455
455
|
value: number;
|
|
456
456
|
currency: string;
|
|
457
|
-
|
|
457
|
+
loan: LoanResponse | null;
|
|
458
458
|
coOwner: AssetCoOwnerResponse | null;
|
|
459
459
|
updatedAt: Date;
|
|
460
460
|
createdAt: Date;
|
|
@@ -476,7 +476,7 @@ interface OtherAssetResponse {
|
|
|
476
476
|
imageUrl: string | null;
|
|
477
477
|
value: number;
|
|
478
478
|
currency: string;
|
|
479
|
-
|
|
479
|
+
loan: LoanResponse | null;
|
|
480
480
|
coOwner: AssetCoOwnerResponse | null;
|
|
481
481
|
updatedAt: Date;
|
|
482
482
|
createdAt: Date;
|