sowhat-types 2.0.49 → 2.0.51

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
@@ -188,10 +188,11 @@ interface UpdateUserInput {
188
188
  }
189
189
 
190
190
  interface CreateUserCoOwnerInput {
191
- customName: string;
191
+ firstname: string;
192
+ lastname: string | null;
193
+ imageUrl: string | null;
192
194
  email: string | null;
193
195
  phone: string | null;
194
- customImage: string | null;
195
196
  }
196
197
 
197
198
  interface DeleteUserCoOwnerInput {
@@ -202,6 +203,14 @@ interface FetchUserCoOwnerInput {
202
203
  coOwnerId: string;
203
204
  }
204
205
 
206
+ interface UpdateUserCoOwnerInput {
207
+ id: string;
208
+ firstname?: string;
209
+ lastname?: string;
210
+ email?: string;
211
+ imageUrl?: string;
212
+ }
213
+
205
214
  interface PaginationInput {
206
215
  offset: number;
207
216
  limit: number;
@@ -507,12 +516,18 @@ interface CoOwnerDeletedResponse {
507
516
  errorMessage: string | null;
508
517
  }
509
518
 
519
+ interface CoOwnerUpdatedResponse {
520
+ updated: boolean;
521
+ errorMessage: string | null;
522
+ }
523
+
510
524
  interface CoOwnerResponse {
511
525
  id: string;
512
- customName: string;
526
+ firstname: string;
527
+ lastname: string | null;
528
+ imageUrl: string | null;
513
529
  email: string | null;
514
530
  phone: string | null;
515
- customImage: string | null;
516
531
  updatedAt: Date;
517
532
  createdAt: Date;
518
533
  }
@@ -600,4 +615,4 @@ declare class FilterArgs {
600
615
  take: number;
601
616
  }
602
617
 
603
- export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, 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 ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
618
+ export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, 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 ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
package/dist/index.d.ts CHANGED
@@ -188,10 +188,11 @@ interface UpdateUserInput {
188
188
  }
189
189
 
190
190
  interface CreateUserCoOwnerInput {
191
- customName: string;
191
+ firstname: string;
192
+ lastname: string | null;
193
+ imageUrl: string | null;
192
194
  email: string | null;
193
195
  phone: string | null;
194
- customImage: string | null;
195
196
  }
196
197
 
197
198
  interface DeleteUserCoOwnerInput {
@@ -202,6 +203,14 @@ interface FetchUserCoOwnerInput {
202
203
  coOwnerId: string;
203
204
  }
204
205
 
206
+ interface UpdateUserCoOwnerInput {
207
+ id: string;
208
+ firstname?: string;
209
+ lastname?: string;
210
+ email?: string;
211
+ imageUrl?: string;
212
+ }
213
+
205
214
  interface PaginationInput {
206
215
  offset: number;
207
216
  limit: number;
@@ -507,12 +516,18 @@ interface CoOwnerDeletedResponse {
507
516
  errorMessage: string | null;
508
517
  }
509
518
 
519
+ interface CoOwnerUpdatedResponse {
520
+ updated: boolean;
521
+ errorMessage: string | null;
522
+ }
523
+
510
524
  interface CoOwnerResponse {
511
525
  id: string;
512
- customName: string;
526
+ firstname: string;
527
+ lastname: string | null;
528
+ imageUrl: string | null;
513
529
  email: string | null;
514
530
  phone: string | null;
515
- customImage: string | null;
516
531
  updatedAt: Date;
517
532
  createdAt: Date;
518
533
  }
@@ -600,4 +615,4 @@ declare class FilterArgs {
600
615
  take: number;
601
616
  }
602
617
 
603
- export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, 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 ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
618
+ export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, 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 ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.49",
3
+ "version": "2.0.51",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",