sowhat-types 2.0.91 → 2.0.93
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -130,8 +130,8 @@ interface CreateRealEstateInput {
|
|
|
130
130
|
imageUrl: string | null;
|
|
131
131
|
value: number;
|
|
132
132
|
currency: string;
|
|
133
|
-
gotLoan: boolean;
|
|
134
133
|
coOwner: AssetCoOwnerInput | null;
|
|
134
|
+
loanId: string | null;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
interface UpdateRealEstateArgs {
|
|
@@ -498,7 +498,7 @@ interface RealEstateResponse {
|
|
|
498
498
|
imageUrl: string | null;
|
|
499
499
|
value: number;
|
|
500
500
|
currency: string;
|
|
501
|
-
|
|
501
|
+
loan: LoanResponse | null;
|
|
502
502
|
coOwner: AssetCoOwnerResponse | null;
|
|
503
503
|
updatedAt: Date;
|
|
504
504
|
createdAt: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -130,8 +130,8 @@ interface CreateRealEstateInput {
|
|
|
130
130
|
imageUrl: string | null;
|
|
131
131
|
value: number;
|
|
132
132
|
currency: string;
|
|
133
|
-
gotLoan: boolean;
|
|
134
133
|
coOwner: AssetCoOwnerInput | null;
|
|
134
|
+
loanId: string | null;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
interface UpdateRealEstateArgs {
|
|
@@ -498,7 +498,7 @@ interface RealEstateResponse {
|
|
|
498
498
|
imageUrl: string | null;
|
|
499
499
|
value: number;
|
|
500
500
|
currency: string;
|
|
501
|
-
|
|
501
|
+
loan: LoanResponse | null;
|
|
502
502
|
coOwner: AssetCoOwnerResponse | null;
|
|
503
503
|
updatedAt: Date;
|
|
504
504
|
createdAt: Date;
|