hl-core 0.0.10-beta.41-5 → 0.0.10-beta.41-6
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/composables/classes.ts +28 -28
- package/package.json +1 -1
package/composables/classes.ts
CHANGED
|
@@ -5,6 +5,34 @@ import type * as Types from '../types';
|
|
|
5
5
|
|
|
6
6
|
type LinkType = Partial<RouteLocationNormalized> | Partial<RouteLocationNormalizedLoaded> | string | null | boolean;
|
|
7
7
|
|
|
8
|
+
export {
|
|
9
|
+
MenuItem,
|
|
10
|
+
Value,
|
|
11
|
+
CountryValue,
|
|
12
|
+
IDocument,
|
|
13
|
+
DocumentItem,
|
|
14
|
+
MenuOption,
|
|
15
|
+
InitialColumns,
|
|
16
|
+
User,
|
|
17
|
+
Contragent,
|
|
18
|
+
Member,
|
|
19
|
+
CalculatorForm,
|
|
20
|
+
ProductConditions,
|
|
21
|
+
MemberSettings,
|
|
22
|
+
DataStoreClass,
|
|
23
|
+
FormStoreClass,
|
|
24
|
+
Address,
|
|
25
|
+
PolicyholderActivity,
|
|
26
|
+
BaseGroupClass,
|
|
27
|
+
PhysGroupClass,
|
|
28
|
+
GroupMember,
|
|
29
|
+
BankInfoClass,
|
|
30
|
+
PolicyholderClass,
|
|
31
|
+
BeneficialOwner,
|
|
32
|
+
TransferContract,
|
|
33
|
+
RequiredDocument,
|
|
34
|
+
};
|
|
35
|
+
|
|
8
36
|
class MenuItemConfig {
|
|
9
37
|
id: any;
|
|
10
38
|
title: string | null;
|
|
@@ -1835,31 +1863,3 @@ class TransferContract {
|
|
|
1835
1863
|
class RequiredDocument extends Value {
|
|
1836
1864
|
iin: string = '';
|
|
1837
1865
|
}
|
|
1838
|
-
|
|
1839
|
-
export {
|
|
1840
|
-
MenuItem,
|
|
1841
|
-
Value,
|
|
1842
|
-
CountryValue,
|
|
1843
|
-
IDocument,
|
|
1844
|
-
DocumentItem,
|
|
1845
|
-
MenuOption,
|
|
1846
|
-
InitialColumns,
|
|
1847
|
-
User,
|
|
1848
|
-
Contragent,
|
|
1849
|
-
Member,
|
|
1850
|
-
CalculatorForm,
|
|
1851
|
-
ProductConditions,
|
|
1852
|
-
MemberSettings,
|
|
1853
|
-
DataStoreClass,
|
|
1854
|
-
FormStoreClass,
|
|
1855
|
-
Address,
|
|
1856
|
-
PolicyholderActivity,
|
|
1857
|
-
BaseGroupClass,
|
|
1858
|
-
PhysGroupClass,
|
|
1859
|
-
GroupMember,
|
|
1860
|
-
BankInfoClass,
|
|
1861
|
-
PolicyholderClass,
|
|
1862
|
-
BeneficialOwner,
|
|
1863
|
-
TransferContract,
|
|
1864
|
-
RequiredDocument,
|
|
1865
|
-
};
|