sowhat-types 2.0.50 → 2.0.52
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 +26 -5
- package/dist/index.d.ts +26 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -144,6 +144,20 @@ interface CreateRealEstateInput {
|
|
|
144
144
|
gotLoan: boolean;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
interface UpdateRealEstateInput {
|
|
148
|
+
id: string;
|
|
149
|
+
name?: string;
|
|
150
|
+
imageUrl?: string | null;
|
|
151
|
+
value?: number;
|
|
152
|
+
currency?: string;
|
|
153
|
+
note?: string | null;
|
|
154
|
+
isMainResidence?: boolean;
|
|
155
|
+
coOwnerId?: string | null;
|
|
156
|
+
coOwnershipShare?: number;
|
|
157
|
+
coOwnerFinancialShare?: number;
|
|
158
|
+
gotLoan?: boolean;
|
|
159
|
+
}
|
|
160
|
+
|
|
147
161
|
interface CreateOtherAssetInput {
|
|
148
162
|
name: string;
|
|
149
163
|
imageUrl: string | null;
|
|
@@ -188,10 +202,11 @@ interface UpdateUserInput {
|
|
|
188
202
|
}
|
|
189
203
|
|
|
190
204
|
interface CreateUserCoOwnerInput {
|
|
191
|
-
|
|
205
|
+
firstname: string;
|
|
206
|
+
lastname: string | null;
|
|
207
|
+
imageUrl: string | null;
|
|
192
208
|
email: string | null;
|
|
193
209
|
phone: string | null;
|
|
194
|
-
customImage: string | null;
|
|
195
210
|
}
|
|
196
211
|
|
|
197
212
|
interface DeleteUserCoOwnerInput {
|
|
@@ -417,6 +432,11 @@ interface RealEstateDeletedResponse {
|
|
|
417
432
|
errorMessage: string | null;
|
|
418
433
|
}
|
|
419
434
|
|
|
435
|
+
interface RealEstatetUpdatedResponse {
|
|
436
|
+
updated: boolean;
|
|
437
|
+
errorMessage: string | null;
|
|
438
|
+
}
|
|
439
|
+
|
|
420
440
|
interface RealEstateResponse {
|
|
421
441
|
id: string;
|
|
422
442
|
name: string;
|
|
@@ -522,10 +542,11 @@ interface CoOwnerUpdatedResponse {
|
|
|
522
542
|
|
|
523
543
|
interface CoOwnerResponse {
|
|
524
544
|
id: string;
|
|
525
|
-
|
|
545
|
+
firstname: string;
|
|
546
|
+
lastname: string | null;
|
|
547
|
+
imageUrl: string | null;
|
|
526
548
|
email: string | null;
|
|
527
549
|
phone: string | null;
|
|
528
|
-
customImage: string | null;
|
|
529
550
|
updatedAt: Date;
|
|
530
551
|
createdAt: Date;
|
|
531
552
|
}
|
|
@@ -613,4 +634,4 @@ declare class FilterArgs {
|
|
|
613
634
|
take: number;
|
|
614
635
|
}
|
|
615
636
|
|
|
616
|
-
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 };
|
|
637
|
+
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 RealEstatetUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,20 @@ interface CreateRealEstateInput {
|
|
|
144
144
|
gotLoan: boolean;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
interface UpdateRealEstateInput {
|
|
148
|
+
id: string;
|
|
149
|
+
name?: string;
|
|
150
|
+
imageUrl?: string | null;
|
|
151
|
+
value?: number;
|
|
152
|
+
currency?: string;
|
|
153
|
+
note?: string | null;
|
|
154
|
+
isMainResidence?: boolean;
|
|
155
|
+
coOwnerId?: string | null;
|
|
156
|
+
coOwnershipShare?: number;
|
|
157
|
+
coOwnerFinancialShare?: number;
|
|
158
|
+
gotLoan?: boolean;
|
|
159
|
+
}
|
|
160
|
+
|
|
147
161
|
interface CreateOtherAssetInput {
|
|
148
162
|
name: string;
|
|
149
163
|
imageUrl: string | null;
|
|
@@ -188,10 +202,11 @@ interface UpdateUserInput {
|
|
|
188
202
|
}
|
|
189
203
|
|
|
190
204
|
interface CreateUserCoOwnerInput {
|
|
191
|
-
|
|
205
|
+
firstname: string;
|
|
206
|
+
lastname: string | null;
|
|
207
|
+
imageUrl: string | null;
|
|
192
208
|
email: string | null;
|
|
193
209
|
phone: string | null;
|
|
194
|
-
customImage: string | null;
|
|
195
210
|
}
|
|
196
211
|
|
|
197
212
|
interface DeleteUserCoOwnerInput {
|
|
@@ -417,6 +432,11 @@ interface RealEstateDeletedResponse {
|
|
|
417
432
|
errorMessage: string | null;
|
|
418
433
|
}
|
|
419
434
|
|
|
435
|
+
interface RealEstatetUpdatedResponse {
|
|
436
|
+
updated: boolean;
|
|
437
|
+
errorMessage: string | null;
|
|
438
|
+
}
|
|
439
|
+
|
|
420
440
|
interface RealEstateResponse {
|
|
421
441
|
id: string;
|
|
422
442
|
name: string;
|
|
@@ -522,10 +542,11 @@ interface CoOwnerUpdatedResponse {
|
|
|
522
542
|
|
|
523
543
|
interface CoOwnerResponse {
|
|
524
544
|
id: string;
|
|
525
|
-
|
|
545
|
+
firstname: string;
|
|
546
|
+
lastname: string | null;
|
|
547
|
+
imageUrl: string | null;
|
|
526
548
|
email: string | null;
|
|
527
549
|
phone: string | null;
|
|
528
|
-
customImage: string | null;
|
|
529
550
|
updatedAt: Date;
|
|
530
551
|
createdAt: Date;
|
|
531
552
|
}
|
|
@@ -613,4 +634,4 @@ declare class FilterArgs {
|
|
|
613
634
|
take: number;
|
|
614
635
|
}
|
|
615
636
|
|
|
616
|
-
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 };
|
|
637
|
+
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 RealEstatetUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|