sowhat-types 2.0.165 → 2.0.167
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 +47 -22
- package/dist/index.d.ts +47 -22
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -383,27 +383,6 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
383
383
|
color?: string;
|
|
384
384
|
}
|
|
385
385
|
|
|
386
|
-
interface UpdateUserInput {
|
|
387
|
-
currency?: AvailableCurrencyEnum;
|
|
388
|
-
consentToBudget?: boolean;
|
|
389
|
-
newTransferIntoDefault?: boolean;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
interface AnonymousUsersFilterInput {
|
|
393
|
-
offset: number;
|
|
394
|
-
limit: number;
|
|
395
|
-
minTotalSavings?: number;
|
|
396
|
-
maxTotalSavings?: number;
|
|
397
|
-
minTotalCheckings?: number;
|
|
398
|
-
maxTotalCheckings?: number;
|
|
399
|
-
minTotalLoans?: number;
|
|
400
|
-
maxTotalLoans?: number;
|
|
401
|
-
minTotalRealEstates?: number;
|
|
402
|
-
maxTotalRealEstates?: number;
|
|
403
|
-
minTotalMobilities?: number;
|
|
404
|
-
maxTotalMobilities?: number;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
386
|
interface CreateUserCoOwnerInput {
|
|
408
387
|
name: string;
|
|
409
388
|
imageUrl: string | null;
|
|
@@ -425,6 +404,20 @@ interface UpdateUserCoOwnerInput {
|
|
|
425
404
|
imageUrl?: string | null;
|
|
426
405
|
}
|
|
427
406
|
|
|
407
|
+
interface CreateProjectInput {
|
|
408
|
+
key: string;
|
|
409
|
+
priority: ProjectPriorityEnum;
|
|
410
|
+
title: string;
|
|
411
|
+
note: string | null;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
interface UpdateProjectInput {
|
|
415
|
+
key?: string;
|
|
416
|
+
priority?: ProjectPriorityEnum;
|
|
417
|
+
title?: string;
|
|
418
|
+
note?: string | null;
|
|
419
|
+
}
|
|
420
|
+
|
|
428
421
|
interface QuestionOptionInput {
|
|
429
422
|
key: string;
|
|
430
423
|
label: string;
|
|
@@ -456,6 +449,28 @@ interface UpdateQuestionPositionInput {
|
|
|
456
449
|
position: number;
|
|
457
450
|
}
|
|
458
451
|
|
|
452
|
+
interface UpdateUserInput {
|
|
453
|
+
currency?: AvailableCurrencyEnum;
|
|
454
|
+
consentToBudget?: boolean;
|
|
455
|
+
newTransferIntoDefault?: boolean;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
interface FinancialSummariesFiltersInput {
|
|
459
|
+
offset: number;
|
|
460
|
+
limit: number;
|
|
461
|
+
projectKeys?: ProjectKeyEnum[];
|
|
462
|
+
minTotalSavings?: number;
|
|
463
|
+
maxTotalSavings?: number;
|
|
464
|
+
minTotalCheckings?: number;
|
|
465
|
+
maxTotalCheckings?: number;
|
|
466
|
+
minTotalLoans?: number;
|
|
467
|
+
maxTotalLoans?: number;
|
|
468
|
+
minTotalRealEstates?: number;
|
|
469
|
+
maxTotalRealEstates?: number;
|
|
470
|
+
minTotalMobilities?: number;
|
|
471
|
+
maxTotalMobilities?: number;
|
|
472
|
+
}
|
|
473
|
+
|
|
459
474
|
interface LoanResponse {
|
|
460
475
|
id: string;
|
|
461
476
|
bankAccountId: string;
|
|
@@ -896,6 +911,16 @@ interface PowensConnectWebviewResponse {
|
|
|
896
911
|
createdAt: Date;
|
|
897
912
|
}
|
|
898
913
|
|
|
914
|
+
interface ProjectDeletedResponse {
|
|
915
|
+
deleted: boolean;
|
|
916
|
+
errorMessage: string | null;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
interface ProjectUpdatedResponse {
|
|
920
|
+
updated: boolean;
|
|
921
|
+
errorMessage: string | null;
|
|
922
|
+
}
|
|
923
|
+
|
|
899
924
|
interface GlobalWealthStatisticsResponse {
|
|
900
925
|
totalSavings: number;
|
|
901
926
|
personalTotalSavings: number;
|
|
@@ -1055,4 +1080,4 @@ declare class FilterArgs {
|
|
|
1055
1080
|
take: number;
|
|
1056
1081
|
}
|
|
1057
1082
|
|
|
1058
|
-
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type
|
|
1083
|
+
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, BUDGET_ID_REGEX, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BatchUpdateBudgetSavingsAllocationInput, type BatchUpdateBudgetSavingsAllocationsInput, type BatchUpdateUserAssetInput, type BatchUpdateUserAssetsInput, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationUpdatedResponse, type BudgetExpensesAllocationsBatchUpdatedResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsBatchUpdatedResponse, type BudgetIncomesAllocationsResponse, type BudgetResponse, type BudgetSavingsAllocationDeletedResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsAllocationUpdatedResponse, type BudgetSavingsAllocationsBatchUpdatedResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateProjectInput, type CreateQuestionInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FetchUserCoOwnerInput, FilterArgs, type FinancialSummariesFiltersInput, type GlobalWealthStatisticsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type MultipleTransactionsAllocationResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProjectDeletedResponse, ProjectKeyEnum, ProjectPriorityEnum, type ProjectUpdatedResponse, QuestionCategoryEnum, type QuestionOptionInput, type QuestionOptionResponse, type QuestionResponse, QuestionTypeEnum, type QuestionVersionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type SwipableBudgetResponse, type SwipableBudgetsResponse, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProjectInput, type UpdateQuestionInput, type UpdateQuestionPositionInput, type UpdateRealEstateArgs, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAnswerResponse, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserConsentResponse, type UserConsentsResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -383,27 +383,6 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
383
383
|
color?: string;
|
|
384
384
|
}
|
|
385
385
|
|
|
386
|
-
interface UpdateUserInput {
|
|
387
|
-
currency?: AvailableCurrencyEnum;
|
|
388
|
-
consentToBudget?: boolean;
|
|
389
|
-
newTransferIntoDefault?: boolean;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
interface AnonymousUsersFilterInput {
|
|
393
|
-
offset: number;
|
|
394
|
-
limit: number;
|
|
395
|
-
minTotalSavings?: number;
|
|
396
|
-
maxTotalSavings?: number;
|
|
397
|
-
minTotalCheckings?: number;
|
|
398
|
-
maxTotalCheckings?: number;
|
|
399
|
-
minTotalLoans?: number;
|
|
400
|
-
maxTotalLoans?: number;
|
|
401
|
-
minTotalRealEstates?: number;
|
|
402
|
-
maxTotalRealEstates?: number;
|
|
403
|
-
minTotalMobilities?: number;
|
|
404
|
-
maxTotalMobilities?: number;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
386
|
interface CreateUserCoOwnerInput {
|
|
408
387
|
name: string;
|
|
409
388
|
imageUrl: string | null;
|
|
@@ -425,6 +404,20 @@ interface UpdateUserCoOwnerInput {
|
|
|
425
404
|
imageUrl?: string | null;
|
|
426
405
|
}
|
|
427
406
|
|
|
407
|
+
interface CreateProjectInput {
|
|
408
|
+
key: string;
|
|
409
|
+
priority: ProjectPriorityEnum;
|
|
410
|
+
title: string;
|
|
411
|
+
note: string | null;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
interface UpdateProjectInput {
|
|
415
|
+
key?: string;
|
|
416
|
+
priority?: ProjectPriorityEnum;
|
|
417
|
+
title?: string;
|
|
418
|
+
note?: string | null;
|
|
419
|
+
}
|
|
420
|
+
|
|
428
421
|
interface QuestionOptionInput {
|
|
429
422
|
key: string;
|
|
430
423
|
label: string;
|
|
@@ -456,6 +449,28 @@ interface UpdateQuestionPositionInput {
|
|
|
456
449
|
position: number;
|
|
457
450
|
}
|
|
458
451
|
|
|
452
|
+
interface UpdateUserInput {
|
|
453
|
+
currency?: AvailableCurrencyEnum;
|
|
454
|
+
consentToBudget?: boolean;
|
|
455
|
+
newTransferIntoDefault?: boolean;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
interface FinancialSummariesFiltersInput {
|
|
459
|
+
offset: number;
|
|
460
|
+
limit: number;
|
|
461
|
+
projectKeys?: ProjectKeyEnum[];
|
|
462
|
+
minTotalSavings?: number;
|
|
463
|
+
maxTotalSavings?: number;
|
|
464
|
+
minTotalCheckings?: number;
|
|
465
|
+
maxTotalCheckings?: number;
|
|
466
|
+
minTotalLoans?: number;
|
|
467
|
+
maxTotalLoans?: number;
|
|
468
|
+
minTotalRealEstates?: number;
|
|
469
|
+
maxTotalRealEstates?: number;
|
|
470
|
+
minTotalMobilities?: number;
|
|
471
|
+
maxTotalMobilities?: number;
|
|
472
|
+
}
|
|
473
|
+
|
|
459
474
|
interface LoanResponse {
|
|
460
475
|
id: string;
|
|
461
476
|
bankAccountId: string;
|
|
@@ -896,6 +911,16 @@ interface PowensConnectWebviewResponse {
|
|
|
896
911
|
createdAt: Date;
|
|
897
912
|
}
|
|
898
913
|
|
|
914
|
+
interface ProjectDeletedResponse {
|
|
915
|
+
deleted: boolean;
|
|
916
|
+
errorMessage: string | null;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
interface ProjectUpdatedResponse {
|
|
920
|
+
updated: boolean;
|
|
921
|
+
errorMessage: string | null;
|
|
922
|
+
}
|
|
923
|
+
|
|
899
924
|
interface GlobalWealthStatisticsResponse {
|
|
900
925
|
totalSavings: number;
|
|
901
926
|
personalTotalSavings: number;
|
|
@@ -1055,4 +1080,4 @@ declare class FilterArgs {
|
|
|
1055
1080
|
take: number;
|
|
1056
1081
|
}
|
|
1057
1082
|
|
|
1058
|
-
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type
|
|
1083
|
+
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, BUDGET_ID_REGEX, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BatchUpdateBudgetSavingsAllocationInput, type BatchUpdateBudgetSavingsAllocationsInput, type BatchUpdateUserAssetInput, type BatchUpdateUserAssetsInput, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationUpdatedResponse, type BudgetExpensesAllocationsBatchUpdatedResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsBatchUpdatedResponse, type BudgetIncomesAllocationsResponse, type BudgetResponse, type BudgetSavingsAllocationDeletedResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsAllocationUpdatedResponse, type BudgetSavingsAllocationsBatchUpdatedResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateProjectInput, type CreateQuestionInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FetchUserCoOwnerInput, FilterArgs, type FinancialSummariesFiltersInput, type GlobalWealthStatisticsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type MultipleTransactionsAllocationResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProjectDeletedResponse, ProjectKeyEnum, ProjectPriorityEnum, type ProjectUpdatedResponse, QuestionCategoryEnum, type QuestionOptionInput, type QuestionOptionResponse, type QuestionResponse, QuestionTypeEnum, type QuestionVersionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type SwipableBudgetResponse, type SwipableBudgetsResponse, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProjectInput, type UpdateQuestionInput, type UpdateQuestionPositionInput, type UpdateRealEstateArgs, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAnswerResponse, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserConsentResponse, type UserConsentsResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|