sowhat-types 2.0.184 → 2.0.186
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 +12 -68
- package/dist/index.d.ts +12 -68
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -229,17 +229,12 @@ declare enum QuestionTypeEnum {
|
|
|
229
229
|
SINGLE_CHOICE = "SINGLE_CHOICE"
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
interface AssetCoOwnerInput {
|
|
233
|
-
id: string;
|
|
234
|
-
coOwnershipShare: number;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
232
|
interface UpdateBankAccountInput {
|
|
238
233
|
id: string;
|
|
239
234
|
name?: string;
|
|
240
235
|
alertThreshold?: number;
|
|
241
236
|
position?: number;
|
|
242
|
-
|
|
237
|
+
iOwnShare?: number;
|
|
243
238
|
}
|
|
244
239
|
|
|
245
240
|
interface AllocateTransactionInput {
|
|
@@ -269,7 +264,7 @@ interface CreateMobilityInput {
|
|
|
269
264
|
imageUrl: string | null;
|
|
270
265
|
value: number;
|
|
271
266
|
currency: string;
|
|
272
|
-
|
|
267
|
+
iOwnShare: number;
|
|
273
268
|
loanId: string | null;
|
|
274
269
|
}
|
|
275
270
|
|
|
@@ -279,7 +274,7 @@ interface UpdateMobilityInput {
|
|
|
279
274
|
imageUrl?: string | null;
|
|
280
275
|
value?: number;
|
|
281
276
|
currency?: string;
|
|
282
|
-
|
|
277
|
+
iOwnShare?: number;
|
|
283
278
|
loanId?: string | null;
|
|
284
279
|
}
|
|
285
280
|
|
|
@@ -307,7 +302,7 @@ interface CreateOtherAssetInput {
|
|
|
307
302
|
imageUrl: string | null;
|
|
308
303
|
value: number;
|
|
309
304
|
currency: string;
|
|
310
|
-
|
|
305
|
+
iOwnShare: number;
|
|
311
306
|
loanId: string | null;
|
|
312
307
|
}
|
|
313
308
|
|
|
@@ -317,7 +312,7 @@ interface UpdateOtherAssetInput {
|
|
|
317
312
|
imageUrl?: string | null;
|
|
318
313
|
value?: number;
|
|
319
314
|
currency?: string;
|
|
320
|
-
|
|
315
|
+
iOwnShare?: number;
|
|
321
316
|
loanId?: string | null;
|
|
322
317
|
}
|
|
323
318
|
|
|
@@ -415,33 +410,12 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
415
410
|
color?: string;
|
|
416
411
|
}
|
|
417
412
|
|
|
418
|
-
interface CreateUserCoOwnerInput {
|
|
419
|
-
name: string;
|
|
420
|
-
imageUrl: string | null;
|
|
421
|
-
email: string | null;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
interface DeleteUserCoOwnerInput {
|
|
425
|
-
coOwnerId: string;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
interface FetchUserCoOwnerInput {
|
|
429
|
-
coOwnerId: string;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
interface UpdateUserCoOwnerInput {
|
|
433
|
-
id: string;
|
|
434
|
-
name?: string;
|
|
435
|
-
email?: string | null;
|
|
436
|
-
imageUrl?: string | null;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
413
|
interface CreateProjectInput {
|
|
440
414
|
option: ProjectOptionEnum;
|
|
441
415
|
initialAmount: number;
|
|
442
416
|
monthlyAmount: number;
|
|
443
417
|
need: ProjectNeedEnum;
|
|
444
|
-
financialProduct: FinancialProductEnum;
|
|
418
|
+
financialProduct: FinancialProductEnum | null;
|
|
445
419
|
note: string | null;
|
|
446
420
|
}
|
|
447
421
|
|
|
@@ -451,7 +425,7 @@ interface UpdateProjectInput {
|
|
|
451
425
|
initialAmount?: number;
|
|
452
426
|
monthlyAmount?: number;
|
|
453
427
|
need?: ProjectNeedEnum;
|
|
454
|
-
financialProduct?: FinancialProductEnum;
|
|
428
|
+
financialProduct?: FinancialProductEnum | null;
|
|
455
429
|
note?: string | null;
|
|
456
430
|
}
|
|
457
431
|
|
|
@@ -545,12 +519,6 @@ interface BankAccountOriginalTransactionResponse {
|
|
|
545
519
|
commissionCurrency: string | null;
|
|
546
520
|
}
|
|
547
521
|
|
|
548
|
-
interface AssetCoOwnerResponse {
|
|
549
|
-
id: string;
|
|
550
|
-
name: string;
|
|
551
|
-
coOwnershipShare: number;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
522
|
interface BankAccountResponse {
|
|
555
523
|
id: string;
|
|
556
524
|
powensId: number;
|
|
@@ -567,7 +535,7 @@ interface BankAccountResponse {
|
|
|
567
535
|
position: number;
|
|
568
536
|
deletedByBank: Date | null;
|
|
569
537
|
transactions: BankAccountTransactionResponse[];
|
|
570
|
-
|
|
538
|
+
iOwnShare: number;
|
|
571
539
|
}
|
|
572
540
|
|
|
573
541
|
interface BudgetIncomesAllocationResponse {
|
|
@@ -728,7 +696,7 @@ interface MobilityResponse {
|
|
|
728
696
|
currency: string;
|
|
729
697
|
position: number;
|
|
730
698
|
loan: LoanResponse | null;
|
|
731
|
-
|
|
699
|
+
iOwnShare: number;
|
|
732
700
|
updatedAt: Date;
|
|
733
701
|
createdAt: Date;
|
|
734
702
|
}
|
|
@@ -751,7 +719,7 @@ interface OtherAssetResponse {
|
|
|
751
719
|
currency: string;
|
|
752
720
|
position: number;
|
|
753
721
|
loan: LoanResponse | null;
|
|
754
|
-
|
|
722
|
+
iOwnShare: number;
|
|
755
723
|
updatedAt: Date;
|
|
756
724
|
createdAt: Date;
|
|
757
725
|
}
|
|
@@ -910,29 +878,6 @@ interface SwipableBudgetsResponse {
|
|
|
910
878
|
nextBudget: SwipableBudgetResponse | null;
|
|
911
879
|
}
|
|
912
880
|
|
|
913
|
-
interface CoOwnerDeletedResponse {
|
|
914
|
-
deleted: boolean;
|
|
915
|
-
errorMessage: string | null;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
interface CoOwnerUpdatedResponse {
|
|
919
|
-
updated: boolean;
|
|
920
|
-
errorMessage: string | null;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
interface CoOwnerResponse {
|
|
924
|
-
id: string;
|
|
925
|
-
name: string;
|
|
926
|
-
imageUrl: string | null;
|
|
927
|
-
email: string | null;
|
|
928
|
-
updatedAt: Date;
|
|
929
|
-
createdAt: Date;
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
interface UserCoOwnerResponse extends CoOwnerResponse {
|
|
933
|
-
numberOfCoOwnAssets: number;
|
|
934
|
-
}
|
|
935
|
-
|
|
936
881
|
interface LegalDocumentResponse {
|
|
937
882
|
type: LegalDocumentTypeEnum;
|
|
938
883
|
content: string;
|
|
@@ -973,7 +918,7 @@ interface ProjectResponse {
|
|
|
973
918
|
initialAmount: number;
|
|
974
919
|
monthlyAmount: number;
|
|
975
920
|
need: ProjectNeedEnum;
|
|
976
|
-
financialProduct: FinancialProductEnum;
|
|
921
|
+
financialProduct: FinancialProductEnum | null;
|
|
977
922
|
note: string | null;
|
|
978
923
|
updatedAt: Date;
|
|
979
924
|
createdAt: Date;
|
|
@@ -1066,7 +1011,6 @@ interface UserProfileResponse {
|
|
|
1066
1011
|
id: string;
|
|
1067
1012
|
currency: AvailableCurrencyEnum;
|
|
1068
1013
|
status: UserStatusEnum;
|
|
1069
|
-
numberOfCowners: number;
|
|
1070
1014
|
gotPowensUser: boolean;
|
|
1071
1015
|
createdAt: Date;
|
|
1072
1016
|
updatedAt: Date;
|
|
@@ -1184,4 +1128,4 @@ declare class FilterArgs {
|
|
|
1184
1128
|
take: number;
|
|
1185
1129
|
}
|
|
1186
1130
|
|
|
1187
|
-
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse,
|
|
1131
|
+
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, 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 CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateProjectInput, type CreateQuestionInput, type CreateRealEstateInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, FilterArgs, FinancialProductEnum, FinancialProductOwnedEnum, type FinancialSummariesFiltersInput, type GlobalWealthStatisticsResponse, LIVES_OUTSIDE_FRANCE, 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, ProjectNeedEnum, ProjectOptionEnum, type ProjectResponse, QuestionCategoryEnum, type QuestionOptionInput, type QuestionOptionResponse, type QuestionResponse, QuestionTypeEnum, type QuestionVersionResponse, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportResponse, type ReportValueResponse, type ReportWealthResponse, type ReportsResponse, 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 UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAnswerResponse, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserConsentResponse, type UserConsentsResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -229,17 +229,12 @@ declare enum QuestionTypeEnum {
|
|
|
229
229
|
SINGLE_CHOICE = "SINGLE_CHOICE"
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
interface AssetCoOwnerInput {
|
|
233
|
-
id: string;
|
|
234
|
-
coOwnershipShare: number;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
232
|
interface UpdateBankAccountInput {
|
|
238
233
|
id: string;
|
|
239
234
|
name?: string;
|
|
240
235
|
alertThreshold?: number;
|
|
241
236
|
position?: number;
|
|
242
|
-
|
|
237
|
+
iOwnShare?: number;
|
|
243
238
|
}
|
|
244
239
|
|
|
245
240
|
interface AllocateTransactionInput {
|
|
@@ -269,7 +264,7 @@ interface CreateMobilityInput {
|
|
|
269
264
|
imageUrl: string | null;
|
|
270
265
|
value: number;
|
|
271
266
|
currency: string;
|
|
272
|
-
|
|
267
|
+
iOwnShare: number;
|
|
273
268
|
loanId: string | null;
|
|
274
269
|
}
|
|
275
270
|
|
|
@@ -279,7 +274,7 @@ interface UpdateMobilityInput {
|
|
|
279
274
|
imageUrl?: string | null;
|
|
280
275
|
value?: number;
|
|
281
276
|
currency?: string;
|
|
282
|
-
|
|
277
|
+
iOwnShare?: number;
|
|
283
278
|
loanId?: string | null;
|
|
284
279
|
}
|
|
285
280
|
|
|
@@ -307,7 +302,7 @@ interface CreateOtherAssetInput {
|
|
|
307
302
|
imageUrl: string | null;
|
|
308
303
|
value: number;
|
|
309
304
|
currency: string;
|
|
310
|
-
|
|
305
|
+
iOwnShare: number;
|
|
311
306
|
loanId: string | null;
|
|
312
307
|
}
|
|
313
308
|
|
|
@@ -317,7 +312,7 @@ interface UpdateOtherAssetInput {
|
|
|
317
312
|
imageUrl?: string | null;
|
|
318
313
|
value?: number;
|
|
319
314
|
currency?: string;
|
|
320
|
-
|
|
315
|
+
iOwnShare?: number;
|
|
321
316
|
loanId?: string | null;
|
|
322
317
|
}
|
|
323
318
|
|
|
@@ -415,33 +410,12 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
415
410
|
color?: string;
|
|
416
411
|
}
|
|
417
412
|
|
|
418
|
-
interface CreateUserCoOwnerInput {
|
|
419
|
-
name: string;
|
|
420
|
-
imageUrl: string | null;
|
|
421
|
-
email: string | null;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
interface DeleteUserCoOwnerInput {
|
|
425
|
-
coOwnerId: string;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
interface FetchUserCoOwnerInput {
|
|
429
|
-
coOwnerId: string;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
interface UpdateUserCoOwnerInput {
|
|
433
|
-
id: string;
|
|
434
|
-
name?: string;
|
|
435
|
-
email?: string | null;
|
|
436
|
-
imageUrl?: string | null;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
413
|
interface CreateProjectInput {
|
|
440
414
|
option: ProjectOptionEnum;
|
|
441
415
|
initialAmount: number;
|
|
442
416
|
monthlyAmount: number;
|
|
443
417
|
need: ProjectNeedEnum;
|
|
444
|
-
financialProduct: FinancialProductEnum;
|
|
418
|
+
financialProduct: FinancialProductEnum | null;
|
|
445
419
|
note: string | null;
|
|
446
420
|
}
|
|
447
421
|
|
|
@@ -451,7 +425,7 @@ interface UpdateProjectInput {
|
|
|
451
425
|
initialAmount?: number;
|
|
452
426
|
monthlyAmount?: number;
|
|
453
427
|
need?: ProjectNeedEnum;
|
|
454
|
-
financialProduct?: FinancialProductEnum;
|
|
428
|
+
financialProduct?: FinancialProductEnum | null;
|
|
455
429
|
note?: string | null;
|
|
456
430
|
}
|
|
457
431
|
|
|
@@ -545,12 +519,6 @@ interface BankAccountOriginalTransactionResponse {
|
|
|
545
519
|
commissionCurrency: string | null;
|
|
546
520
|
}
|
|
547
521
|
|
|
548
|
-
interface AssetCoOwnerResponse {
|
|
549
|
-
id: string;
|
|
550
|
-
name: string;
|
|
551
|
-
coOwnershipShare: number;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
522
|
interface BankAccountResponse {
|
|
555
523
|
id: string;
|
|
556
524
|
powensId: number;
|
|
@@ -567,7 +535,7 @@ interface BankAccountResponse {
|
|
|
567
535
|
position: number;
|
|
568
536
|
deletedByBank: Date | null;
|
|
569
537
|
transactions: BankAccountTransactionResponse[];
|
|
570
|
-
|
|
538
|
+
iOwnShare: number;
|
|
571
539
|
}
|
|
572
540
|
|
|
573
541
|
interface BudgetIncomesAllocationResponse {
|
|
@@ -728,7 +696,7 @@ interface MobilityResponse {
|
|
|
728
696
|
currency: string;
|
|
729
697
|
position: number;
|
|
730
698
|
loan: LoanResponse | null;
|
|
731
|
-
|
|
699
|
+
iOwnShare: number;
|
|
732
700
|
updatedAt: Date;
|
|
733
701
|
createdAt: Date;
|
|
734
702
|
}
|
|
@@ -751,7 +719,7 @@ interface OtherAssetResponse {
|
|
|
751
719
|
currency: string;
|
|
752
720
|
position: number;
|
|
753
721
|
loan: LoanResponse | null;
|
|
754
|
-
|
|
722
|
+
iOwnShare: number;
|
|
755
723
|
updatedAt: Date;
|
|
756
724
|
createdAt: Date;
|
|
757
725
|
}
|
|
@@ -910,29 +878,6 @@ interface SwipableBudgetsResponse {
|
|
|
910
878
|
nextBudget: SwipableBudgetResponse | null;
|
|
911
879
|
}
|
|
912
880
|
|
|
913
|
-
interface CoOwnerDeletedResponse {
|
|
914
|
-
deleted: boolean;
|
|
915
|
-
errorMessage: string | null;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
interface CoOwnerUpdatedResponse {
|
|
919
|
-
updated: boolean;
|
|
920
|
-
errorMessage: string | null;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
interface CoOwnerResponse {
|
|
924
|
-
id: string;
|
|
925
|
-
name: string;
|
|
926
|
-
imageUrl: string | null;
|
|
927
|
-
email: string | null;
|
|
928
|
-
updatedAt: Date;
|
|
929
|
-
createdAt: Date;
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
interface UserCoOwnerResponse extends CoOwnerResponse {
|
|
933
|
-
numberOfCoOwnAssets: number;
|
|
934
|
-
}
|
|
935
|
-
|
|
936
881
|
interface LegalDocumentResponse {
|
|
937
882
|
type: LegalDocumentTypeEnum;
|
|
938
883
|
content: string;
|
|
@@ -973,7 +918,7 @@ interface ProjectResponse {
|
|
|
973
918
|
initialAmount: number;
|
|
974
919
|
monthlyAmount: number;
|
|
975
920
|
need: ProjectNeedEnum;
|
|
976
|
-
financialProduct: FinancialProductEnum;
|
|
921
|
+
financialProduct: FinancialProductEnum | null;
|
|
977
922
|
note: string | null;
|
|
978
923
|
updatedAt: Date;
|
|
979
924
|
createdAt: Date;
|
|
@@ -1066,7 +1011,6 @@ interface UserProfileResponse {
|
|
|
1066
1011
|
id: string;
|
|
1067
1012
|
currency: AvailableCurrencyEnum;
|
|
1068
1013
|
status: UserStatusEnum;
|
|
1069
|
-
numberOfCowners: number;
|
|
1070
1014
|
gotPowensUser: boolean;
|
|
1071
1015
|
createdAt: Date;
|
|
1072
1016
|
updatedAt: Date;
|
|
@@ -1184,4 +1128,4 @@ declare class FilterArgs {
|
|
|
1184
1128
|
take: number;
|
|
1185
1129
|
}
|
|
1186
1130
|
|
|
1187
|
-
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse,
|
|
1131
|
+
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, 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 CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateProjectInput, type CreateQuestionInput, type CreateRealEstateInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, FilterArgs, FinancialProductEnum, FinancialProductOwnedEnum, type FinancialSummariesFiltersInput, type GlobalWealthStatisticsResponse, LIVES_OUTSIDE_FRANCE, 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, ProjectNeedEnum, ProjectOptionEnum, type ProjectResponse, QuestionCategoryEnum, type QuestionOptionInput, type QuestionOptionResponse, type QuestionResponse, QuestionTypeEnum, type QuestionVersionResponse, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportResponse, type ReportValueResponse, type ReportWealthResponse, type ReportsResponse, 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 UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAnswerResponse, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserConsentResponse, type UserConsentsResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|