sowhat-types 2.0.87 → 2.0.89
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 +81 -97
- package/dist/index.d.ts +81 -97
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -95,14 +95,14 @@ interface AllocateTransactionInput {
|
|
|
95
95
|
type: BudgetTypeEnum;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
interface
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
interface PaginationInput {
|
|
99
|
+
offset: number;
|
|
100
|
+
limit: number;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
interface FetchBankAccountTransactionsInput {
|
|
104
104
|
accountId: string;
|
|
105
|
-
pagination:
|
|
105
|
+
pagination: PaginationInput;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
interface UpdateBankAccountTransactionInput {
|
|
@@ -277,11 +277,6 @@ interface UpdateUserCoOwnerInput {
|
|
|
277
277
|
imageUrl?: string | null;
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
interface PaginationInput {
|
|
281
|
-
offset: number;
|
|
282
|
-
limit: number;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
280
|
interface LoanResponse {
|
|
286
281
|
id: string;
|
|
287
282
|
bankAccountId: string;
|
|
@@ -299,50 +294,40 @@ interface TransactionAllocatedResponse {
|
|
|
299
294
|
errorMessage: string | null;
|
|
300
295
|
}
|
|
301
296
|
|
|
302
|
-
interface
|
|
303
|
-
|
|
297
|
+
interface BankAccountBalancesResponse {
|
|
298
|
+
/**
|
|
299
|
+
* total balance for checking type accounts
|
|
300
|
+
*/
|
|
301
|
+
checking: number | null;
|
|
302
|
+
/**
|
|
303
|
+
* total incoming balance for checking type accounts
|
|
304
|
+
*/
|
|
305
|
+
incomingChecking: number | null;
|
|
306
|
+
/**
|
|
307
|
+
* total balance for savings type accounts
|
|
308
|
+
*/
|
|
309
|
+
savings: number | null;
|
|
310
|
+
/**
|
|
311
|
+
* total incoming balance for savings type accounts
|
|
312
|
+
*/
|
|
313
|
+
incomingSavings: number | null;
|
|
314
|
+
/**
|
|
315
|
+
* e.g. '€'
|
|
316
|
+
*/
|
|
304
317
|
currency: string;
|
|
305
|
-
commission: number;
|
|
306
|
-
commissionCurrency: string | null;
|
|
307
318
|
}
|
|
308
319
|
|
|
309
|
-
interface
|
|
310
|
-
id: string;
|
|
311
|
-
name: string;
|
|
312
|
-
icon: string;
|
|
313
|
-
color: string;
|
|
314
|
-
budget: string;
|
|
315
|
-
theoricalValuePerMonth: number;
|
|
316
|
-
isDefault: boolean;
|
|
320
|
+
interface BankAccountOriginalTransactionResponse {
|
|
317
321
|
value: number;
|
|
318
322
|
currency: string;
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
bankAccount: BankAccountResponse | null;
|
|
322
|
-
updatedAt: Date | null;
|
|
323
|
-
createdAt: Date;
|
|
323
|
+
commission: number;
|
|
324
|
+
commissionCurrency: string | null;
|
|
324
325
|
}
|
|
325
326
|
|
|
326
|
-
interface
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
date: Date;
|
|
331
|
-
value: number | null;
|
|
332
|
-
currency: string | null;
|
|
333
|
-
name: string;
|
|
334
|
-
coming: boolean;
|
|
335
|
-
active: boolean;
|
|
336
|
-
cardNumber: string | null;
|
|
337
|
-
note: string | null;
|
|
338
|
-
lastUpdate: Date | null;
|
|
339
|
-
deleted: Date | null;
|
|
340
|
-
type: BankAccountTransactionTypeEnum;
|
|
341
|
-
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
342
|
-
country: string | null;
|
|
343
|
-
category: BudgetTypeEnum;
|
|
344
|
-
allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
|
|
345
|
-
allocated: Date | null;
|
|
327
|
+
interface BankAccountTransactionCounterpartyResponse {
|
|
328
|
+
label: string | null;
|
|
329
|
+
accountScheme: BankAccountSchemeNameEnum | null;
|
|
330
|
+
type: string | null;
|
|
346
331
|
}
|
|
347
332
|
|
|
348
333
|
interface BankAccountResponse {
|
|
@@ -361,7 +346,7 @@ interface BankAccountResponse {
|
|
|
361
346
|
transactions: BankAccountTransactionResponse[];
|
|
362
347
|
}
|
|
363
348
|
|
|
364
|
-
interface
|
|
349
|
+
interface BudgetIncomesAllocationResponse {
|
|
365
350
|
id: string;
|
|
366
351
|
name: string;
|
|
367
352
|
icon: string;
|
|
@@ -378,60 +363,55 @@ interface BudgetExpensesAllocationResponse {
|
|
|
378
363
|
createdAt: Date;
|
|
379
364
|
}
|
|
380
365
|
|
|
381
|
-
interface
|
|
382
|
-
id: string;
|
|
383
|
-
allocations: BudgetExpensesAllocationResponse[];
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
interface BudgetIncomesAllocationsResponse {
|
|
366
|
+
interface BudgetExpensesAllocationResponse {
|
|
387
367
|
id: string;
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
interface BankAccountBalancesResponse {
|
|
398
|
-
/**
|
|
399
|
-
* total balance for checking type accounts
|
|
400
|
-
*/
|
|
401
|
-
checking: number | null;
|
|
402
|
-
/**
|
|
403
|
-
* total incoming balance for checking type accounts
|
|
404
|
-
*/
|
|
405
|
-
incomingChecking: number | null;
|
|
406
|
-
/**
|
|
407
|
-
* total balance for savings type accounts
|
|
408
|
-
*/
|
|
409
|
-
savings: number | null;
|
|
410
|
-
/**
|
|
411
|
-
* total incoming balance for savings type accounts
|
|
412
|
-
*/
|
|
413
|
-
incomingSavings: number | null;
|
|
414
|
-
/**
|
|
415
|
-
* e.g. '€'
|
|
416
|
-
*/
|
|
368
|
+
name: string;
|
|
369
|
+
icon: string;
|
|
370
|
+
color: string;
|
|
371
|
+
budget: string;
|
|
372
|
+
theoricalValuePerMonth: number;
|
|
373
|
+
isDefault: boolean;
|
|
374
|
+
value: number;
|
|
417
375
|
currency: string;
|
|
376
|
+
position: number;
|
|
377
|
+
transactions: BankAccountTransactionResponse[];
|
|
378
|
+
bankAccount: BankAccountResponse | null;
|
|
379
|
+
updatedAt: Date | null;
|
|
380
|
+
createdAt: Date;
|
|
418
381
|
}
|
|
419
382
|
|
|
420
|
-
interface
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
383
|
+
interface BankAccountTransactionResponse {
|
|
384
|
+
id: string;
|
|
385
|
+
accountId: string;
|
|
386
|
+
applicationDate: Date;
|
|
387
|
+
date: Date;
|
|
388
|
+
value: number | null;
|
|
389
|
+
currency: string | null;
|
|
390
|
+
name: string;
|
|
391
|
+
coming: boolean;
|
|
392
|
+
active: boolean;
|
|
393
|
+
cardNumber: string | null;
|
|
394
|
+
note: string | null;
|
|
395
|
+
lastUpdate: Date | null;
|
|
396
|
+
deleted: Date | null;
|
|
397
|
+
type: BankAccountTransactionTypeEnum;
|
|
398
|
+
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
399
|
+
country: string | null;
|
|
400
|
+
category: BudgetTypeEnum;
|
|
401
|
+
allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
|
|
402
|
+
allocated: Date | null;
|
|
424
403
|
}
|
|
425
404
|
|
|
426
|
-
interface
|
|
427
|
-
|
|
428
|
-
|
|
405
|
+
interface PaginationResponse {
|
|
406
|
+
offset: number;
|
|
407
|
+
limit: number;
|
|
429
408
|
hasMore: boolean;
|
|
430
409
|
}
|
|
431
410
|
|
|
432
411
|
interface BankAccountTransactionsResponse {
|
|
412
|
+
accountId: string;
|
|
433
413
|
transactions: BankAccountTransactionResponse[];
|
|
434
|
-
pagination:
|
|
414
|
+
pagination: PaginationResponse;
|
|
435
415
|
}
|
|
436
416
|
|
|
437
417
|
interface BankAccountUpdatedResponse {
|
|
@@ -560,6 +540,11 @@ interface BudgetExpensesAllocationsBatchUpdatedResponse {
|
|
|
560
540
|
errorMessage: string | null;
|
|
561
541
|
}
|
|
562
542
|
|
|
543
|
+
interface BudgetExpensesAllocationsResponse {
|
|
544
|
+
id: string;
|
|
545
|
+
allocations: BudgetExpensesAllocationResponse[];
|
|
546
|
+
}
|
|
547
|
+
|
|
563
548
|
interface BudgetIncomesAllocationDeletedResponse {
|
|
564
549
|
deleted: boolean;
|
|
565
550
|
errorMessage: string | null;
|
|
@@ -575,6 +560,11 @@ interface BudgetIncomesAllocationsBatchUpdatedResponse {
|
|
|
575
560
|
errorMessage: string | null;
|
|
576
561
|
}
|
|
577
562
|
|
|
563
|
+
interface BudgetIncomesAllocationsResponse {
|
|
564
|
+
id: string;
|
|
565
|
+
allocations: BudgetIncomesAllocationResponse[];
|
|
566
|
+
}
|
|
567
|
+
|
|
578
568
|
interface BudgetSavingsAllocationDeletedResponse {
|
|
579
569
|
deleted: boolean;
|
|
580
570
|
errorMessage: string | null;
|
|
@@ -704,12 +694,6 @@ interface UserAssetsResponse {
|
|
|
704
694
|
otherAssets: OtherAssetResponse[];
|
|
705
695
|
}
|
|
706
696
|
|
|
707
|
-
interface PaginationResponse {
|
|
708
|
-
offset: number;
|
|
709
|
-
limit: number;
|
|
710
|
-
hasMore: boolean;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
697
|
interface ReportValueResponse {
|
|
714
698
|
value: number;
|
|
715
699
|
vsLastMonthPercent: number | null;
|
|
@@ -741,4 +725,4 @@ declare class FilterArgs {
|
|
|
741
725
|
take: number;
|
|
742
726
|
}
|
|
743
727
|
|
|
744
|
-
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, 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 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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type
|
|
728
|
+
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, 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 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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -95,14 +95,14 @@ interface AllocateTransactionInput {
|
|
|
95
95
|
type: BudgetTypeEnum;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
interface
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
interface PaginationInput {
|
|
99
|
+
offset: number;
|
|
100
|
+
limit: number;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
interface FetchBankAccountTransactionsInput {
|
|
104
104
|
accountId: string;
|
|
105
|
-
pagination:
|
|
105
|
+
pagination: PaginationInput;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
interface UpdateBankAccountTransactionInput {
|
|
@@ -277,11 +277,6 @@ interface UpdateUserCoOwnerInput {
|
|
|
277
277
|
imageUrl?: string | null;
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
interface PaginationInput {
|
|
281
|
-
offset: number;
|
|
282
|
-
limit: number;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
280
|
interface LoanResponse {
|
|
286
281
|
id: string;
|
|
287
282
|
bankAccountId: string;
|
|
@@ -299,50 +294,40 @@ interface TransactionAllocatedResponse {
|
|
|
299
294
|
errorMessage: string | null;
|
|
300
295
|
}
|
|
301
296
|
|
|
302
|
-
interface
|
|
303
|
-
|
|
297
|
+
interface BankAccountBalancesResponse {
|
|
298
|
+
/**
|
|
299
|
+
* total balance for checking type accounts
|
|
300
|
+
*/
|
|
301
|
+
checking: number | null;
|
|
302
|
+
/**
|
|
303
|
+
* total incoming balance for checking type accounts
|
|
304
|
+
*/
|
|
305
|
+
incomingChecking: number | null;
|
|
306
|
+
/**
|
|
307
|
+
* total balance for savings type accounts
|
|
308
|
+
*/
|
|
309
|
+
savings: number | null;
|
|
310
|
+
/**
|
|
311
|
+
* total incoming balance for savings type accounts
|
|
312
|
+
*/
|
|
313
|
+
incomingSavings: number | null;
|
|
314
|
+
/**
|
|
315
|
+
* e.g. '€'
|
|
316
|
+
*/
|
|
304
317
|
currency: string;
|
|
305
|
-
commission: number;
|
|
306
|
-
commissionCurrency: string | null;
|
|
307
318
|
}
|
|
308
319
|
|
|
309
|
-
interface
|
|
310
|
-
id: string;
|
|
311
|
-
name: string;
|
|
312
|
-
icon: string;
|
|
313
|
-
color: string;
|
|
314
|
-
budget: string;
|
|
315
|
-
theoricalValuePerMonth: number;
|
|
316
|
-
isDefault: boolean;
|
|
320
|
+
interface BankAccountOriginalTransactionResponse {
|
|
317
321
|
value: number;
|
|
318
322
|
currency: string;
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
bankAccount: BankAccountResponse | null;
|
|
322
|
-
updatedAt: Date | null;
|
|
323
|
-
createdAt: Date;
|
|
323
|
+
commission: number;
|
|
324
|
+
commissionCurrency: string | null;
|
|
324
325
|
}
|
|
325
326
|
|
|
326
|
-
interface
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
date: Date;
|
|
331
|
-
value: number | null;
|
|
332
|
-
currency: string | null;
|
|
333
|
-
name: string;
|
|
334
|
-
coming: boolean;
|
|
335
|
-
active: boolean;
|
|
336
|
-
cardNumber: string | null;
|
|
337
|
-
note: string | null;
|
|
338
|
-
lastUpdate: Date | null;
|
|
339
|
-
deleted: Date | null;
|
|
340
|
-
type: BankAccountTransactionTypeEnum;
|
|
341
|
-
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
342
|
-
country: string | null;
|
|
343
|
-
category: BudgetTypeEnum;
|
|
344
|
-
allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
|
|
345
|
-
allocated: Date | null;
|
|
327
|
+
interface BankAccountTransactionCounterpartyResponse {
|
|
328
|
+
label: string | null;
|
|
329
|
+
accountScheme: BankAccountSchemeNameEnum | null;
|
|
330
|
+
type: string | null;
|
|
346
331
|
}
|
|
347
332
|
|
|
348
333
|
interface BankAccountResponse {
|
|
@@ -361,7 +346,7 @@ interface BankAccountResponse {
|
|
|
361
346
|
transactions: BankAccountTransactionResponse[];
|
|
362
347
|
}
|
|
363
348
|
|
|
364
|
-
interface
|
|
349
|
+
interface BudgetIncomesAllocationResponse {
|
|
365
350
|
id: string;
|
|
366
351
|
name: string;
|
|
367
352
|
icon: string;
|
|
@@ -378,60 +363,55 @@ interface BudgetExpensesAllocationResponse {
|
|
|
378
363
|
createdAt: Date;
|
|
379
364
|
}
|
|
380
365
|
|
|
381
|
-
interface
|
|
382
|
-
id: string;
|
|
383
|
-
allocations: BudgetExpensesAllocationResponse[];
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
interface BudgetIncomesAllocationsResponse {
|
|
366
|
+
interface BudgetExpensesAllocationResponse {
|
|
387
367
|
id: string;
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
interface BankAccountBalancesResponse {
|
|
398
|
-
/**
|
|
399
|
-
* total balance for checking type accounts
|
|
400
|
-
*/
|
|
401
|
-
checking: number | null;
|
|
402
|
-
/**
|
|
403
|
-
* total incoming balance for checking type accounts
|
|
404
|
-
*/
|
|
405
|
-
incomingChecking: number | null;
|
|
406
|
-
/**
|
|
407
|
-
* total balance for savings type accounts
|
|
408
|
-
*/
|
|
409
|
-
savings: number | null;
|
|
410
|
-
/**
|
|
411
|
-
* total incoming balance for savings type accounts
|
|
412
|
-
*/
|
|
413
|
-
incomingSavings: number | null;
|
|
414
|
-
/**
|
|
415
|
-
* e.g. '€'
|
|
416
|
-
*/
|
|
368
|
+
name: string;
|
|
369
|
+
icon: string;
|
|
370
|
+
color: string;
|
|
371
|
+
budget: string;
|
|
372
|
+
theoricalValuePerMonth: number;
|
|
373
|
+
isDefault: boolean;
|
|
374
|
+
value: number;
|
|
417
375
|
currency: string;
|
|
376
|
+
position: number;
|
|
377
|
+
transactions: BankAccountTransactionResponse[];
|
|
378
|
+
bankAccount: BankAccountResponse | null;
|
|
379
|
+
updatedAt: Date | null;
|
|
380
|
+
createdAt: Date;
|
|
418
381
|
}
|
|
419
382
|
|
|
420
|
-
interface
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
383
|
+
interface BankAccountTransactionResponse {
|
|
384
|
+
id: string;
|
|
385
|
+
accountId: string;
|
|
386
|
+
applicationDate: Date;
|
|
387
|
+
date: Date;
|
|
388
|
+
value: number | null;
|
|
389
|
+
currency: string | null;
|
|
390
|
+
name: string;
|
|
391
|
+
coming: boolean;
|
|
392
|
+
active: boolean;
|
|
393
|
+
cardNumber: string | null;
|
|
394
|
+
note: string | null;
|
|
395
|
+
lastUpdate: Date | null;
|
|
396
|
+
deleted: Date | null;
|
|
397
|
+
type: BankAccountTransactionTypeEnum;
|
|
398
|
+
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
399
|
+
country: string | null;
|
|
400
|
+
category: BudgetTypeEnum;
|
|
401
|
+
allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
|
|
402
|
+
allocated: Date | null;
|
|
424
403
|
}
|
|
425
404
|
|
|
426
|
-
interface
|
|
427
|
-
|
|
428
|
-
|
|
405
|
+
interface PaginationResponse {
|
|
406
|
+
offset: number;
|
|
407
|
+
limit: number;
|
|
429
408
|
hasMore: boolean;
|
|
430
409
|
}
|
|
431
410
|
|
|
432
411
|
interface BankAccountTransactionsResponse {
|
|
412
|
+
accountId: string;
|
|
433
413
|
transactions: BankAccountTransactionResponse[];
|
|
434
|
-
pagination:
|
|
414
|
+
pagination: PaginationResponse;
|
|
435
415
|
}
|
|
436
416
|
|
|
437
417
|
interface BankAccountUpdatedResponse {
|
|
@@ -560,6 +540,11 @@ interface BudgetExpensesAllocationsBatchUpdatedResponse {
|
|
|
560
540
|
errorMessage: string | null;
|
|
561
541
|
}
|
|
562
542
|
|
|
543
|
+
interface BudgetExpensesAllocationsResponse {
|
|
544
|
+
id: string;
|
|
545
|
+
allocations: BudgetExpensesAllocationResponse[];
|
|
546
|
+
}
|
|
547
|
+
|
|
563
548
|
interface BudgetIncomesAllocationDeletedResponse {
|
|
564
549
|
deleted: boolean;
|
|
565
550
|
errorMessage: string | null;
|
|
@@ -575,6 +560,11 @@ interface BudgetIncomesAllocationsBatchUpdatedResponse {
|
|
|
575
560
|
errorMessage: string | null;
|
|
576
561
|
}
|
|
577
562
|
|
|
563
|
+
interface BudgetIncomesAllocationsResponse {
|
|
564
|
+
id: string;
|
|
565
|
+
allocations: BudgetIncomesAllocationResponse[];
|
|
566
|
+
}
|
|
567
|
+
|
|
578
568
|
interface BudgetSavingsAllocationDeletedResponse {
|
|
579
569
|
deleted: boolean;
|
|
580
570
|
errorMessage: string | null;
|
|
@@ -704,12 +694,6 @@ interface UserAssetsResponse {
|
|
|
704
694
|
otherAssets: OtherAssetResponse[];
|
|
705
695
|
}
|
|
706
696
|
|
|
707
|
-
interface PaginationResponse {
|
|
708
|
-
offset: number;
|
|
709
|
-
limit: number;
|
|
710
|
-
hasMore: boolean;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
697
|
interface ReportValueResponse {
|
|
714
698
|
value: number;
|
|
715
699
|
vsLastMonthPercent: number | null;
|
|
@@ -741,4 +725,4 @@ declare class FilterArgs {
|
|
|
741
725
|
take: number;
|
|
742
726
|
}
|
|
743
727
|
|
|
744
|
-
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, 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 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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type
|
|
728
|
+
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, 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 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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|