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

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
@@ -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';
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
  }