sowhat-types 2.0.92 → 2.0.94

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
@@ -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
- gotLoan?: boolean;
125
+ loanId?: string | null;
126
126
  }
127
127
 
128
128
  interface CreateRealEstateInput {
@@ -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 {
@@ -454,7 +454,7 @@ interface MobilityResponse {
454
454
  imageUrl: string | null;
455
455
  value: number;
456
456
  currency: string;
457
- gotLoan: boolean;
457
+ loan: LoanResponse | null;
458
458
  coOwner: AssetCoOwnerResponse | null;
459
459
  updatedAt: Date;
460
460
  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
- gotLoan?: boolean;
125
+ loanId?: string | null;
126
126
  }
127
127
 
128
128
  interface CreateRealEstateInput {
@@ -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 {
@@ -454,7 +454,7 @@ interface MobilityResponse {
454
454
  imageUrl: string | null;
455
455
  value: number;
456
456
  currency: string;
457
- gotLoan: boolean;
457
+ loan: LoanResponse | null;
458
458
  coOwner: AssetCoOwnerResponse | null;
459
459
  updatedAt: Date;
460
460
  createdAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.92",
3
+ "version": "2.0.94",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",