hl-core 0.0.9-beta.50 → 0.0.9-beta.52

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/enum.ts CHANGED
@@ -13,6 +13,9 @@ export enum Actions {
13
13
  rejectclient = 'rejectclient',
14
14
  rejectclientCustom = 'rejectclientCustom',
15
15
 
16
+ cancel = 'cancel',
17
+ cancelCustom = 'cancelCustom',
18
+
16
19
  reject = 'reject',
17
20
  rejectCustom = 'rejectCustom',
18
21
 
@@ -69,12 +72,15 @@ export enum PostActions {
69
72
  export enum Roles {
70
73
  Manager = 'Manager',
71
74
  Admin = 'Admin',
75
+ Jurist = 'Jurist',
72
76
  Underwriter = 'Underwriter',
77
+ Actuary = 'Actuary',
73
78
  Agent = 'Agent',
74
79
  Compliance = 'Compliance',
75
80
  AgentMycar = 'AgentMycar',
76
81
  Analyst = 'Analyst',
77
82
  UPK = 'UPK',
83
+ URP = 'URP',
78
84
  FinCenter = 'FinCenter',
79
85
  Supervisor = 'Supervisor',
80
86
  Support = 'Support',
@@ -83,7 +89,12 @@ export enum Roles {
83
89
  DRNSJ = 'DRNSJ',
84
90
  HeadManager = 'HeadManager',
85
91
  AgentAuletti = 'AgentAuletti',
92
+ USNS = 'USNS',
93
+ Accountant = 'Accountant',
86
94
  BranchDirector = 'BranchDirector',
95
+ USNSACCINS = 'USNSACCINS',
96
+ Dsuio = 'Dsuio',
97
+ Adjuster = 'Adjuster',
87
98
  }
88
99
 
89
100
  export enum Statuses {
@@ -91,6 +102,7 @@ export enum Statuses {
91
102
  EditForm = 'EditForm',
92
103
  EditBeneficiaryForm = 'EditBeneficiaryForm',
93
104
  DocumentsSignedFrom = 'DocumentsSignedFrom',
105
+ PreparationDossierForm = 'PreparationDossierForm',
94
106
  UnderwriterForm = 'UnderwriterForm',
95
107
  AffilationResolutionForm = 'AffilationResolutionForm',
96
108
  Completed = 'Completed',
@@ -102,6 +114,12 @@ export enum Statuses {
102
114
  DocumentsSignedClientFrom = 'DocumentsSignedClientFrom',
103
115
  InputDataForm = 'InputDataForm',
104
116
  ApproveForm = 'ApproveForm',
117
+ AttachAppContractForm = 'AttachAppContractForm',
118
+ ControllerDpForm = 'ControllerDpForm',
119
+ ActuaryForm = 'ActuaryForm',
120
+ DsoUsnsForm = 'DsoUsnsForm',
121
+ AccountantForm = 'AccountantForm',
122
+ ContractSignedByAuthorizedPerson = 'ContractSignedByAuthorizedPerson',
105
123
  }
106
124
 
107
125
  export enum MemberCodes {
package/types/index.ts CHANGED
@@ -28,7 +28,8 @@ declare global {
28
28
  | 'pensionannuity'
29
29
  | 'dso'
30
30
  | 'uu'
31
- | 'auletti';
31
+ | 'auletti'
32
+ | 'prepensionannuity';
32
33
  type MemberKeys = keyof ReturnType<typeof useFormStore>;
33
34
  type MemberFormTypes = 'policyholderForm' | 'insuredForm' | 'beneficiaryForm' | 'beneficialOwnerForm' | 'policyholdersRepresentativeForm' | 'productConditionsForm';
34
35
  type SingleMember = 'policyholderForm' | 'policyholdersRepresentativeForm';
@@ -353,8 +354,8 @@ declare global {
353
354
 
354
355
  type SignDataType = {
355
356
  processInstanceId: string;
356
- name: 'Statement' | 'Agreement' | 'Contract';
357
- format: 'pdf';
357
+ name: 'Statement' | 'Agreement' | 'Contract' | 'PA_Contract' | 'PA_Statement' | 'PA_RefundStatement' | 'PA_RefundAgreement' | 'PAEnpf_Agreement' | 'InvoicePayment';
358
+ format: 'pdf' | 'xml';
358
359
  };
359
360
 
360
361
  type SmsDataType = {
@@ -751,4 +752,6 @@ declare global {
751
752
  prmeium: number;
752
753
  }[];
753
754
  };
755
+
756
+ type ResponseStructure<T> = { code: 0; message: 'OK'; data: T };
754
757
  }