sowhat-types 2.0.56 → 2.0.57

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
@@ -104,7 +104,6 @@ interface UpdateBankAccountTransactionInput {
104
104
  interface AssetCoOwnerInput {
105
105
  id: string;
106
106
  coOwnershipShare: number;
107
- coOwnerFinancialShare: number;
108
107
  }
109
108
 
110
109
  interface CreateMobilityInput {
@@ -200,8 +199,7 @@ interface UpdateUserInput {
200
199
  }
201
200
 
202
201
  interface CreateUserCoOwnerInput {
203
- firstname: string;
204
- lastname: string | null;
202
+ name: string;
205
203
  imageUrl: string | null;
206
204
  email: string | null;
207
205
  phone: string | null;
@@ -217,8 +215,7 @@ interface FetchUserCoOwnerInput {
217
215
 
218
216
  interface UpdateUserCoOwnerInput {
219
217
  id: string;
220
- firstname?: string;
221
- lastname?: string;
218
+ name?: string;
222
219
  email?: string;
223
220
  imageUrl?: string;
224
221
  }
@@ -389,7 +386,6 @@ interface AssetCoOwnerResponse {
389
386
  id: string;
390
387
  name: string;
391
388
  coOwnershipShare: number;
392
- coOwnerFinancialShare: number;
393
389
  }
394
390
 
395
391
  interface MobilityResponse {
@@ -539,8 +535,7 @@ interface CoOwnerUpdatedResponse {
539
535
 
540
536
  interface CoOwnerResponse {
541
537
  id: string;
542
- firstname: string;
543
- lastname: string | null;
538
+ name: string;
544
539
  imageUrl: string | null;
545
540
  email: string | null;
546
541
  phone: string | null;
package/dist/index.d.ts CHANGED
@@ -104,7 +104,6 @@ interface UpdateBankAccountTransactionInput {
104
104
  interface AssetCoOwnerInput {
105
105
  id: string;
106
106
  coOwnershipShare: number;
107
- coOwnerFinancialShare: number;
108
107
  }
109
108
 
110
109
  interface CreateMobilityInput {
@@ -200,8 +199,7 @@ interface UpdateUserInput {
200
199
  }
201
200
 
202
201
  interface CreateUserCoOwnerInput {
203
- firstname: string;
204
- lastname: string | null;
202
+ name: string;
205
203
  imageUrl: string | null;
206
204
  email: string | null;
207
205
  phone: string | null;
@@ -217,8 +215,7 @@ interface FetchUserCoOwnerInput {
217
215
 
218
216
  interface UpdateUserCoOwnerInput {
219
217
  id: string;
220
- firstname?: string;
221
- lastname?: string;
218
+ name?: string;
222
219
  email?: string;
223
220
  imageUrl?: string;
224
221
  }
@@ -389,7 +386,6 @@ interface AssetCoOwnerResponse {
389
386
  id: string;
390
387
  name: string;
391
388
  coOwnershipShare: number;
392
- coOwnerFinancialShare: number;
393
389
  }
394
390
 
395
391
  interface MobilityResponse {
@@ -539,8 +535,7 @@ interface CoOwnerUpdatedResponse {
539
535
 
540
536
  interface CoOwnerResponse {
541
537
  id: string;
542
- firstname: string;
543
- lastname: string | null;
538
+ name: string;
544
539
  imageUrl: string | null;
545
540
  email: string | null;
546
541
  phone: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.56",
3
+ "version": "2.0.57",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",