sowhat-types 2.0.127 → 2.0.129
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 +38 -34
- package/dist/index.d.ts +38 -34
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -370,34 +370,6 @@ interface LoanResponse {
|
|
|
370
370
|
currency: string;
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
interface TransactionAllocatedResponse {
|
|
374
|
-
allocated: boolean;
|
|
375
|
-
errorMessage: string | null;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
interface BankAccountBalancesResponse {
|
|
379
|
-
/**
|
|
380
|
-
* total balance for checking type accounts
|
|
381
|
-
*/
|
|
382
|
-
checking: number | null;
|
|
383
|
-
/**
|
|
384
|
-
* total incoming balance for checking type accounts
|
|
385
|
-
*/
|
|
386
|
-
incomingChecking: number | null;
|
|
387
|
-
/**
|
|
388
|
-
* total balance for savings type accounts
|
|
389
|
-
*/
|
|
390
|
-
savings: number | null;
|
|
391
|
-
/**
|
|
392
|
-
* total incoming balance for savings type accounts
|
|
393
|
-
*/
|
|
394
|
-
incomingSavings: number | null;
|
|
395
|
-
/**
|
|
396
|
-
* e.g. '€'
|
|
397
|
-
*/
|
|
398
|
-
currency: string;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
373
|
interface BankAccountOriginalTransactionResponse {
|
|
402
374
|
value: number;
|
|
403
375
|
currency: string;
|
|
@@ -405,12 +377,6 @@ interface BankAccountOriginalTransactionResponse {
|
|
|
405
377
|
commissionCurrency: string | null;
|
|
406
378
|
}
|
|
407
379
|
|
|
408
|
-
interface BankAccountTransactionCounterpartyResponse {
|
|
409
|
-
label: string | null;
|
|
410
|
-
accountScheme: BankAccountSchemeNameEnum | null;
|
|
411
|
-
type: string | null;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
380
|
interface AssetCoOwnerResponse {
|
|
415
381
|
id: string;
|
|
416
382
|
name: string;
|
|
@@ -494,6 +460,41 @@ interface BankAccountTransactionResponse {
|
|
|
494
460
|
allocated: Date | null;
|
|
495
461
|
}
|
|
496
462
|
|
|
463
|
+
interface TransactionAllocatedResponse {
|
|
464
|
+
transaction: BankAccountTransactionResponse;
|
|
465
|
+
allocated: boolean;
|
|
466
|
+
errorMessage: string | null;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface BankAccountBalancesResponse {
|
|
470
|
+
/**
|
|
471
|
+
* total balance for checking type accounts
|
|
472
|
+
*/
|
|
473
|
+
checking: number | null;
|
|
474
|
+
/**
|
|
475
|
+
* total incoming balance for checking type accounts
|
|
476
|
+
*/
|
|
477
|
+
incomingChecking: number | null;
|
|
478
|
+
/**
|
|
479
|
+
* total balance for savings type accounts
|
|
480
|
+
*/
|
|
481
|
+
savings: number | null;
|
|
482
|
+
/**
|
|
483
|
+
* total incoming balance for savings type accounts
|
|
484
|
+
*/
|
|
485
|
+
incomingSavings: number | null;
|
|
486
|
+
/**
|
|
487
|
+
* e.g. '€'
|
|
488
|
+
*/
|
|
489
|
+
currency: string;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
interface BankAccountTransactionCounterpartyResponse {
|
|
493
|
+
label: string | null;
|
|
494
|
+
accountScheme: BankAccountSchemeNameEnum | null;
|
|
495
|
+
type: string | null;
|
|
496
|
+
}
|
|
497
|
+
|
|
497
498
|
interface PaginationResponse {
|
|
498
499
|
offset: number;
|
|
499
500
|
limit: number;
|
|
@@ -551,6 +552,7 @@ interface MobilityResponse {
|
|
|
551
552
|
imageUrl: string | null;
|
|
552
553
|
value: number;
|
|
553
554
|
currency: string;
|
|
555
|
+
position: number;
|
|
554
556
|
loan: LoanResponse | null;
|
|
555
557
|
coOwner: AssetCoOwnerResponse | null;
|
|
556
558
|
updatedAt: Date;
|
|
@@ -573,6 +575,7 @@ interface OtherAssetResponse {
|
|
|
573
575
|
imageUrl: string | null;
|
|
574
576
|
value: number;
|
|
575
577
|
currency: string;
|
|
578
|
+
position: number;
|
|
576
579
|
loan: LoanResponse | null;
|
|
577
580
|
coOwner: AssetCoOwnerResponse | null;
|
|
578
581
|
updatedAt: Date;
|
|
@@ -595,6 +598,7 @@ interface RealEstateResponse {
|
|
|
595
598
|
imageUrl: string | null;
|
|
596
599
|
value: number;
|
|
597
600
|
currency: string;
|
|
601
|
+
position: number;
|
|
598
602
|
loan: LoanResponse | null;
|
|
599
603
|
coOwner: AssetCoOwnerResponse | null;
|
|
600
604
|
updatedAt: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -370,34 +370,6 @@ interface LoanResponse {
|
|
|
370
370
|
currency: string;
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
interface TransactionAllocatedResponse {
|
|
374
|
-
allocated: boolean;
|
|
375
|
-
errorMessage: string | null;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
interface BankAccountBalancesResponse {
|
|
379
|
-
/**
|
|
380
|
-
* total balance for checking type accounts
|
|
381
|
-
*/
|
|
382
|
-
checking: number | null;
|
|
383
|
-
/**
|
|
384
|
-
* total incoming balance for checking type accounts
|
|
385
|
-
*/
|
|
386
|
-
incomingChecking: number | null;
|
|
387
|
-
/**
|
|
388
|
-
* total balance for savings type accounts
|
|
389
|
-
*/
|
|
390
|
-
savings: number | null;
|
|
391
|
-
/**
|
|
392
|
-
* total incoming balance for savings type accounts
|
|
393
|
-
*/
|
|
394
|
-
incomingSavings: number | null;
|
|
395
|
-
/**
|
|
396
|
-
* e.g. '€'
|
|
397
|
-
*/
|
|
398
|
-
currency: string;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
373
|
interface BankAccountOriginalTransactionResponse {
|
|
402
374
|
value: number;
|
|
403
375
|
currency: string;
|
|
@@ -405,12 +377,6 @@ interface BankAccountOriginalTransactionResponse {
|
|
|
405
377
|
commissionCurrency: string | null;
|
|
406
378
|
}
|
|
407
379
|
|
|
408
|
-
interface BankAccountTransactionCounterpartyResponse {
|
|
409
|
-
label: string | null;
|
|
410
|
-
accountScheme: BankAccountSchemeNameEnum | null;
|
|
411
|
-
type: string | null;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
380
|
interface AssetCoOwnerResponse {
|
|
415
381
|
id: string;
|
|
416
382
|
name: string;
|
|
@@ -494,6 +460,41 @@ interface BankAccountTransactionResponse {
|
|
|
494
460
|
allocated: Date | null;
|
|
495
461
|
}
|
|
496
462
|
|
|
463
|
+
interface TransactionAllocatedResponse {
|
|
464
|
+
transaction: BankAccountTransactionResponse;
|
|
465
|
+
allocated: boolean;
|
|
466
|
+
errorMessage: string | null;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface BankAccountBalancesResponse {
|
|
470
|
+
/**
|
|
471
|
+
* total balance for checking type accounts
|
|
472
|
+
*/
|
|
473
|
+
checking: number | null;
|
|
474
|
+
/**
|
|
475
|
+
* total incoming balance for checking type accounts
|
|
476
|
+
*/
|
|
477
|
+
incomingChecking: number | null;
|
|
478
|
+
/**
|
|
479
|
+
* total balance for savings type accounts
|
|
480
|
+
*/
|
|
481
|
+
savings: number | null;
|
|
482
|
+
/**
|
|
483
|
+
* total incoming balance for savings type accounts
|
|
484
|
+
*/
|
|
485
|
+
incomingSavings: number | null;
|
|
486
|
+
/**
|
|
487
|
+
* e.g. '€'
|
|
488
|
+
*/
|
|
489
|
+
currency: string;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
interface BankAccountTransactionCounterpartyResponse {
|
|
493
|
+
label: string | null;
|
|
494
|
+
accountScheme: BankAccountSchemeNameEnum | null;
|
|
495
|
+
type: string | null;
|
|
496
|
+
}
|
|
497
|
+
|
|
497
498
|
interface PaginationResponse {
|
|
498
499
|
offset: number;
|
|
499
500
|
limit: number;
|
|
@@ -551,6 +552,7 @@ interface MobilityResponse {
|
|
|
551
552
|
imageUrl: string | null;
|
|
552
553
|
value: number;
|
|
553
554
|
currency: string;
|
|
555
|
+
position: number;
|
|
554
556
|
loan: LoanResponse | null;
|
|
555
557
|
coOwner: AssetCoOwnerResponse | null;
|
|
556
558
|
updatedAt: Date;
|
|
@@ -573,6 +575,7 @@ interface OtherAssetResponse {
|
|
|
573
575
|
imageUrl: string | null;
|
|
574
576
|
value: number;
|
|
575
577
|
currency: string;
|
|
578
|
+
position: number;
|
|
576
579
|
loan: LoanResponse | null;
|
|
577
580
|
coOwner: AssetCoOwnerResponse | null;
|
|
578
581
|
updatedAt: Date;
|
|
@@ -595,6 +598,7 @@ interface RealEstateResponse {
|
|
|
595
598
|
imageUrl: string | null;
|
|
596
599
|
value: number;
|
|
597
600
|
currency: string;
|
|
601
|
+
position: number;
|
|
598
602
|
loan: LoanResponse | null;
|
|
599
603
|
coOwner: AssetCoOwnerResponse | null;
|
|
600
604
|
updatedAt: Date;
|