sowhat-types 2.0.11 → 2.0.13

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
@@ -76,6 +76,26 @@ interface CreateAssetDateOfAcquisitionInput {
76
76
  year: number;
77
77
  }
78
78
 
79
+ interface LogoutUserInput {
80
+ userId: string;
81
+ }
82
+
83
+ interface CreateUserCoOwnerInput {
84
+ userId: string;
85
+ customName: string;
86
+ email: string | null;
87
+ phone: string | null;
88
+ customImage: string | null;
89
+ }
90
+
91
+ interface DeleteUserCoOwnerInput {
92
+ coOwnerId: string;
93
+ }
94
+
95
+ interface FetchUserCoOwnerInput {
96
+ coOwnerId: string;
97
+ }
98
+
79
99
  interface PaginationInput {
80
100
  offset: number;
81
101
  limit: number;
@@ -115,24 +135,11 @@ interface CreateRealEstateInput {
115
135
  coOwner: CreateAssetCoOwnerInput | null;
116
136
  }
117
137
 
118
- interface LogoutUserInput {
119
- userId: string;
120
- }
121
-
122
- interface CreateUserCoOwnerInput {
123
- userId: string;
124
- customName: string;
125
- email: string | null;
126
- phone: string | null;
127
- customImage: string | null;
128
- }
129
-
130
- interface DeleteUserCoOwnerInput {
131
- coOwnerId: string;
132
- }
133
-
134
- interface FetchUserCoOwnerInput {
135
- coOwnerId: string;
138
+ interface CreateOtherAssetInput {
139
+ name: string;
140
+ imageUrl: string | null;
141
+ value: number;
142
+ note: string | null;
136
143
  }
137
144
 
138
145
  interface BankAccountBalancesResponse {
@@ -272,8 +279,19 @@ interface MobilityResponse {
272
279
  updatedAt: Date;
273
280
  }
274
281
 
282
+ interface OtherAssetDeletedResponse {
283
+ deleted: boolean;
284
+ errorMessage: string | null;
285
+ }
286
+
275
287
  interface OtherAssetResponse {
276
288
  id: string;
289
+ name: string;
290
+ value: number;
291
+ imageUrl: string | null;
292
+ note: string | null;
293
+ createdAt: Date;
294
+ updatedAt: Date;
277
295
  }
278
296
 
279
297
  interface RealEstateDeletedResponse {
@@ -366,4 +384,4 @@ declare class FilterArgs {
366
384
  take: number;
367
385
  }
368
386
 
369
- export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateMobilityInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
387
+ export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
package/dist/index.d.ts CHANGED
@@ -76,6 +76,26 @@ interface CreateAssetDateOfAcquisitionInput {
76
76
  year: number;
77
77
  }
78
78
 
79
+ interface LogoutUserInput {
80
+ userId: string;
81
+ }
82
+
83
+ interface CreateUserCoOwnerInput {
84
+ userId: string;
85
+ customName: string;
86
+ email: string | null;
87
+ phone: string | null;
88
+ customImage: string | null;
89
+ }
90
+
91
+ interface DeleteUserCoOwnerInput {
92
+ coOwnerId: string;
93
+ }
94
+
95
+ interface FetchUserCoOwnerInput {
96
+ coOwnerId: string;
97
+ }
98
+
79
99
  interface PaginationInput {
80
100
  offset: number;
81
101
  limit: number;
@@ -115,24 +135,11 @@ interface CreateRealEstateInput {
115
135
  coOwner: CreateAssetCoOwnerInput | null;
116
136
  }
117
137
 
118
- interface LogoutUserInput {
119
- userId: string;
120
- }
121
-
122
- interface CreateUserCoOwnerInput {
123
- userId: string;
124
- customName: string;
125
- email: string | null;
126
- phone: string | null;
127
- customImage: string | null;
128
- }
129
-
130
- interface DeleteUserCoOwnerInput {
131
- coOwnerId: string;
132
- }
133
-
134
- interface FetchUserCoOwnerInput {
135
- coOwnerId: string;
138
+ interface CreateOtherAssetInput {
139
+ name: string;
140
+ imageUrl: string | null;
141
+ value: number;
142
+ note: string | null;
136
143
  }
137
144
 
138
145
  interface BankAccountBalancesResponse {
@@ -272,8 +279,19 @@ interface MobilityResponse {
272
279
  updatedAt: Date;
273
280
  }
274
281
 
282
+ interface OtherAssetDeletedResponse {
283
+ deleted: boolean;
284
+ errorMessage: string | null;
285
+ }
286
+
275
287
  interface OtherAssetResponse {
276
288
  id: string;
289
+ name: string;
290
+ value: number;
291
+ imageUrl: string | null;
292
+ note: string | null;
293
+ createdAt: Date;
294
+ updatedAt: Date;
277
295
  }
278
296
 
279
297
  interface RealEstateDeletedResponse {
@@ -366,4 +384,4 @@ declare class FilterArgs {
366
384
  take: number;
367
385
  }
368
386
 
369
- export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateMobilityInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
387
+ export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",