hl-core 0.0.9-beta.41 → 0.0.9-beta.42-test

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/types/index.ts CHANGED
@@ -81,6 +81,7 @@ declare global {
81
81
  status: string;
82
82
  userId: string;
83
83
  userName: string;
84
+ level?: string;
84
85
  }
85
86
  type TaskHistory = {
86
87
  appointmentDate: string | null;
@@ -267,7 +268,7 @@ declare global {
267
268
  fixInsSum?: number | null;
268
269
  tariffId?: string | number | null;
269
270
  clients?: ClientV2[];
270
- agentCommission?: any;
271
+ agentCommission?: number | null;
271
272
  processDefinitionFgotId?: any;
272
273
  };
273
274
 
@@ -306,6 +307,7 @@ declare global {
306
307
  mainPremium?: number;
307
308
  clients?: ClientV2[];
308
309
  fixInsSum?: number | null;
310
+ agentCommission?: number | null;
309
311
  };
310
312
 
311
313
  interface AddCover {
@@ -320,9 +322,9 @@ declare global {
320
322
  amount: number;
321
323
  premium: number;
322
324
  isMigrate: boolean;
323
- coverPeriodId?: string;
324
- coverPeriodName?: string;
325
- coverPeriodCode?: string;
325
+ coverPeriodId?: string | null;
326
+ coverPeriodName?: string | null;
327
+ coverPeriodCode?: string | null;
326
328
  calculatorValue?: number;
327
329
  coverTypeNameRu?: string;
328
330
  coverTypeNameKz?: string;
@@ -572,6 +574,7 @@ declare global {
572
574
  mainPremium?: number | string | null;
573
575
  processDefinitionFgotId?: string | number;
574
576
  mainInsSum?: number;
577
+ agentCommission?: number | null;
575
578
  };
576
579
 
577
580
  type InsisWorkDataApp = {
@@ -714,4 +717,26 @@ declare global {
714
717
  type LabelSize = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
715
718
 
716
719
  type VuetifyAnimations = 'expand' | 'fab' | 'fade' | 'scale' | 'scroll-x' | 'scroll-y' | 'slide-x' | 'slide-x-r' | 'slide-y' | 'slide-y-r';
720
+
721
+ type InsuredPolicyType = {
722
+ insSum: number;
723
+ insSumWithLoad: number;
724
+ premium: number;
725
+ premiumWithLoad: number;
726
+ insuredRisk: {
727
+ lifeMultiply: number;
728
+ lifeAdditive: number;
729
+ disabilityMultiply: number;
730
+ disabilityAdditive: number;
731
+ traumaTableMultiple: number;
732
+ accidentalLifeMultiply: number;
733
+ accidentalLifeAdditive: number;
734
+ criticalMultiply: number;
735
+ criticalAdditive: number;
736
+ };
737
+ insuredCoverData: {
738
+ coverTypeEnum: number;
739
+ prmeium: number;
740
+ }[];
741
+ };
717
742
  }