@bisondesk/core-sdk 1.0.301 → 1.0.302

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.
@@ -379,8 +379,16 @@ export type AmortizationTableTemplateData = {
379
379
  deposit: string;
380
380
  startUpFee: string;
381
381
  monthlyAmount: string;
382
+ capital: string;
383
+ balance: string;
384
+ interest: string;
382
385
  insurance: string;
383
386
  expirationDate: string;
384
387
  total: string;
385
388
  }[];
386
389
  };
390
+
391
+ export enum LEASING_EXPORT_TYPES {
392
+ RENTAL_SOLUTIONS = 'rental-solutions',
393
+ DEFAULT = 'default',
394
+ }