sowhat-types 2.0.87 → 2.0.88

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 CHANGED
@@ -95,14 +95,14 @@ interface AllocateTransactionInput {
95
95
  type: BudgetTypeEnum;
96
96
  }
97
97
 
98
- interface TimePaginationInput {
99
- startDate: Date;
100
- endDate: Date;
98
+ interface PaginationInput {
99
+ offset: number;
100
+ limit: number;
101
101
  }
102
102
 
103
103
  interface FetchBankAccountTransactionsInput {
104
104
  accountId: string;
105
- pagination: TimePaginationInput;
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 BankAccountOriginalTransactionResponse {
303
- value: number;
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 BudgetIncomesAllocationResponse {
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
- position: number;
320
- transactions: BankAccountTransactionResponse[];
321
- bankAccount: BankAccountResponse | null;
322
- updatedAt: Date | null;
323
- createdAt: Date;
323
+ commission: number;
324
+ commissionCurrency: string | null;
324
325
  }
325
326
 
326
- interface BankAccountTransactionResponse {
327
- id: string;
328
- accountId: string;
329
- applicationDate: Date;
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 BudgetExpensesAllocationResponse {
349
+ interface BudgetIncomesAllocationResponse {
365
350
  id: string;
366
351
  name: string;
367
352
  icon: string;
@@ -378,60 +363,54 @@ interface BudgetExpensesAllocationResponse {
378
363
  createdAt: Date;
379
364
  }
380
365
 
381
- interface BudgetExpensesAllocationsResponse {
382
- id: string;
383
- allocations: BudgetExpensesAllocationResponse[];
384
- }
385
-
386
- interface BudgetIncomesAllocationsResponse {
366
+ interface BudgetExpensesAllocationResponse {
387
367
  id: string;
388
- allocations: BudgetIncomesAllocationResponse[];
389
- }
390
-
391
- interface TransactionBudgetAllocationsResponse {
392
- type: BudgetTypeEnum;
393
- mainBudget: BudgetIncomesAllocationsResponse | BudgetExpensesAllocationsResponse;
394
- previousBudget: BudgetIncomesAllocationsResponse | BudgetExpensesAllocationsResponse | null;
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 BankAccountTransactionCounterpartyResponse {
421
- label: string | null;
422
- accountScheme: BankAccountSchemeNameEnum | null;
423
- type: string | null;
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 TimePaginationResponse {
427
- startDate: Date;
428
- endDate: Date;
405
+ interface PaginationResponse {
406
+ offset: number;
407
+ limit: number;
429
408
  hasMore: boolean;
430
409
  }
431
410
 
432
411
  interface BankAccountTransactionsResponse {
433
412
  transactions: BankAccountTransactionResponse[];
434
- pagination: TimePaginationResponse;
413
+ pagination: PaginationResponse;
435
414
  }
436
415
 
437
416
  interface BankAccountUpdatedResponse {
@@ -560,6 +539,11 @@ interface BudgetExpensesAllocationsBatchUpdatedResponse {
560
539
  errorMessage: string | null;
561
540
  }
562
541
 
542
+ interface BudgetExpensesAllocationsResponse {
543
+ id: string;
544
+ allocations: BudgetExpensesAllocationResponse[];
545
+ }
546
+
563
547
  interface BudgetIncomesAllocationDeletedResponse {
564
548
  deleted: boolean;
565
549
  errorMessage: string | null;
@@ -575,6 +559,11 @@ interface BudgetIncomesAllocationsBatchUpdatedResponse {
575
559
  errorMessage: string | null;
576
560
  }
577
561
 
562
+ interface BudgetIncomesAllocationsResponse {
563
+ id: string;
564
+ allocations: BudgetIncomesAllocationResponse[];
565
+ }
566
+
578
567
  interface BudgetSavingsAllocationDeletedResponse {
579
568
  deleted: boolean;
580
569
  errorMessage: string | null;
@@ -704,12 +693,6 @@ interface UserAssetsResponse {
704
693
  otherAssets: OtherAssetResponse[];
705
694
  }
706
695
 
707
- interface PaginationResponse {
708
- offset: number;
709
- limit: number;
710
- hasMore: boolean;
711
- }
712
-
713
696
  interface ReportValueResponse {
714
697
  value: number;
715
698
  vsLastMonthPercent: number | null;
@@ -741,4 +724,4 @@ declare class FilterArgs {
741
724
  take: number;
742
725
  }
743
726
 
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 TimePaginationInput, type TimePaginationResponse, type TransactionAllocatedResponse, type TransactionBudgetAllocationsResponse, 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 };
727
+ 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 TimePaginationInput {
99
- startDate: Date;
100
- endDate: Date;
98
+ interface PaginationInput {
99
+ offset: number;
100
+ limit: number;
101
101
  }
102
102
 
103
103
  interface FetchBankAccountTransactionsInput {
104
104
  accountId: string;
105
- pagination: TimePaginationInput;
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 BankAccountOriginalTransactionResponse {
303
- value: number;
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 BudgetIncomesAllocationResponse {
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
- position: number;
320
- transactions: BankAccountTransactionResponse[];
321
- bankAccount: BankAccountResponse | null;
322
- updatedAt: Date | null;
323
- createdAt: Date;
323
+ commission: number;
324
+ commissionCurrency: string | null;
324
325
  }
325
326
 
326
- interface BankAccountTransactionResponse {
327
- id: string;
328
- accountId: string;
329
- applicationDate: Date;
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 BudgetExpensesAllocationResponse {
349
+ interface BudgetIncomesAllocationResponse {
365
350
  id: string;
366
351
  name: string;
367
352
  icon: string;
@@ -378,60 +363,54 @@ interface BudgetExpensesAllocationResponse {
378
363
  createdAt: Date;
379
364
  }
380
365
 
381
- interface BudgetExpensesAllocationsResponse {
382
- id: string;
383
- allocations: BudgetExpensesAllocationResponse[];
384
- }
385
-
386
- interface BudgetIncomesAllocationsResponse {
366
+ interface BudgetExpensesAllocationResponse {
387
367
  id: string;
388
- allocations: BudgetIncomesAllocationResponse[];
389
- }
390
-
391
- interface TransactionBudgetAllocationsResponse {
392
- type: BudgetTypeEnum;
393
- mainBudget: BudgetIncomesAllocationsResponse | BudgetExpensesAllocationsResponse;
394
- previousBudget: BudgetIncomesAllocationsResponse | BudgetExpensesAllocationsResponse | null;
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 BankAccountTransactionCounterpartyResponse {
421
- label: string | null;
422
- accountScheme: BankAccountSchemeNameEnum | null;
423
- type: string | null;
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 TimePaginationResponse {
427
- startDate: Date;
428
- endDate: Date;
405
+ interface PaginationResponse {
406
+ offset: number;
407
+ limit: number;
429
408
  hasMore: boolean;
430
409
  }
431
410
 
432
411
  interface BankAccountTransactionsResponse {
433
412
  transactions: BankAccountTransactionResponse[];
434
- pagination: TimePaginationResponse;
413
+ pagination: PaginationResponse;
435
414
  }
436
415
 
437
416
  interface BankAccountUpdatedResponse {
@@ -560,6 +539,11 @@ interface BudgetExpensesAllocationsBatchUpdatedResponse {
560
539
  errorMessage: string | null;
561
540
  }
562
541
 
542
+ interface BudgetExpensesAllocationsResponse {
543
+ id: string;
544
+ allocations: BudgetExpensesAllocationResponse[];
545
+ }
546
+
563
547
  interface BudgetIncomesAllocationDeletedResponse {
564
548
  deleted: boolean;
565
549
  errorMessage: string | null;
@@ -575,6 +559,11 @@ interface BudgetIncomesAllocationsBatchUpdatedResponse {
575
559
  errorMessage: string | null;
576
560
  }
577
561
 
562
+ interface BudgetIncomesAllocationsResponse {
563
+ id: string;
564
+ allocations: BudgetIncomesAllocationResponse[];
565
+ }
566
+
578
567
  interface BudgetSavingsAllocationDeletedResponse {
579
568
  deleted: boolean;
580
569
  errorMessage: string | null;
@@ -704,12 +693,6 @@ interface UserAssetsResponse {
704
693
  otherAssets: OtherAssetResponse[];
705
694
  }
706
695
 
707
- interface PaginationResponse {
708
- offset: number;
709
- limit: number;
710
- hasMore: boolean;
711
- }
712
-
713
696
  interface ReportValueResponse {
714
697
  value: number;
715
698
  vsLastMonthPercent: number | null;
@@ -741,4 +724,4 @@ declare class FilterArgs {
741
724
  take: number;
742
725
  }
743
726
 
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 TimePaginationInput, type TimePaginationResponse, type TransactionAllocatedResponse, type TransactionBudgetAllocationsResponse, 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 };
727
+ 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.87",
3
+ "version": "2.0.88",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",