sowhat-types 2.0.18 → 2.0.20
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 +30 -1
- package/dist/index.d.ts +30 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -138,6 +138,18 @@ interface DeleteBudgetExpensesAllocationInput {
|
|
|
138
138
|
id: string;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
+
interface CreateBudgetIncomesAllocationInput {
|
|
142
|
+
name: string;
|
|
143
|
+
theoricalValuePerMonth: number;
|
|
144
|
+
color: string;
|
|
145
|
+
icon: string;
|
|
146
|
+
note: string | null;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
interface DeleteBudgetIncomesAllocationInput {
|
|
150
|
+
id: string;
|
|
151
|
+
}
|
|
152
|
+
|
|
141
153
|
interface CreateUserCoOwnerInput {
|
|
142
154
|
userId: string;
|
|
143
155
|
customName: string;
|
|
@@ -362,6 +374,23 @@ interface BudgetExpensesAllocationResponse {
|
|
|
362
374
|
createdAt: Date;
|
|
363
375
|
}
|
|
364
376
|
|
|
377
|
+
interface BudgetIncomesAllocationDeletedResponse {
|
|
378
|
+
deleted: boolean;
|
|
379
|
+
errorMessage: string | null;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
interface BudgetIncomesAllocationResponse {
|
|
383
|
+
id: string;
|
|
384
|
+
userId: string;
|
|
385
|
+
name: string;
|
|
386
|
+
icon: string;
|
|
387
|
+
color: string;
|
|
388
|
+
theoricalValuePerMonth: number;
|
|
389
|
+
note: string | null;
|
|
390
|
+
updatedAt: Date | null;
|
|
391
|
+
createdAt: Date;
|
|
392
|
+
}
|
|
393
|
+
|
|
365
394
|
interface CoOwnerDeletedResponse {
|
|
366
395
|
deleted: boolean;
|
|
367
396
|
errorMessage: string | null;
|
|
@@ -413,4 +442,4 @@ declare class FilterArgs {
|
|
|
413
442
|
take: number;
|
|
414
443
|
}
|
|
415
444
|
|
|
416
|
-
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 BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, 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 };
|
|
445
|
+
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 BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, 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 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
|
@@ -138,6 +138,18 @@ interface DeleteBudgetExpensesAllocationInput {
|
|
|
138
138
|
id: string;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
+
interface CreateBudgetIncomesAllocationInput {
|
|
142
|
+
name: string;
|
|
143
|
+
theoricalValuePerMonth: number;
|
|
144
|
+
color: string;
|
|
145
|
+
icon: string;
|
|
146
|
+
note: string | null;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
interface DeleteBudgetIncomesAllocationInput {
|
|
150
|
+
id: string;
|
|
151
|
+
}
|
|
152
|
+
|
|
141
153
|
interface CreateUserCoOwnerInput {
|
|
142
154
|
userId: string;
|
|
143
155
|
customName: string;
|
|
@@ -362,6 +374,23 @@ interface BudgetExpensesAllocationResponse {
|
|
|
362
374
|
createdAt: Date;
|
|
363
375
|
}
|
|
364
376
|
|
|
377
|
+
interface BudgetIncomesAllocationDeletedResponse {
|
|
378
|
+
deleted: boolean;
|
|
379
|
+
errorMessage: string | null;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
interface BudgetIncomesAllocationResponse {
|
|
383
|
+
id: string;
|
|
384
|
+
userId: string;
|
|
385
|
+
name: string;
|
|
386
|
+
icon: string;
|
|
387
|
+
color: string;
|
|
388
|
+
theoricalValuePerMonth: number;
|
|
389
|
+
note: string | null;
|
|
390
|
+
updatedAt: Date | null;
|
|
391
|
+
createdAt: Date;
|
|
392
|
+
}
|
|
393
|
+
|
|
365
394
|
interface CoOwnerDeletedResponse {
|
|
366
395
|
deleted: boolean;
|
|
367
396
|
errorMessage: string | null;
|
|
@@ -413,4 +442,4 @@ declare class FilterArgs {
|
|
|
413
442
|
take: number;
|
|
414
443
|
}
|
|
415
444
|
|
|
416
|
-
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 BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, 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 };
|
|
445
|
+
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 BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, 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 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 };
|