mdz-enum 1.5.21 → 1.5.22
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/README.MD +7 -7
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +227 -227
- package/dist/commercial/index.js +549 -549
- package/dist/common/index.d.ts +47 -47
- package/dist/common/index.js +137 -137
- package/dist/config/index.d.ts +166 -138
- package/dist/config/index.js +478 -395
- package/dist/finance/index.d.ts +164 -164
- package/dist/finance/index.js +425 -425
- package/dist/fiscal/index.d.ts +468 -468
- package/dist/fiscal/index.js +1165 -1165
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +257 -257
- package/dist/general/index.js +489 -489
- package/dist/index.d.ts +14 -14
- package/dist/index.js +208 -208
- package/dist/integration/index.d.ts +19 -19
- package/dist/integration/index.js +57 -57
- package/dist/logistics/index.d.ts +124 -124
- package/dist/logistics/index.js +359 -359
- package/dist/marketplace/templates/components/index.d.ts +158 -158
- package/dist/marketplace/templates/components/index.js +171 -171
- package/dist/marketplace/templates/elements/index.d.ts +32 -32
- package/dist/marketplace/templates/elements/index.js +35 -35
- package/dist/marketplace/templates/index.d.ts +292 -295
- package/dist/marketplace/templates/index.js +40 -40
- package/dist/marketplace/templates/pages/index.d.ts +140 -140
- package/dist/marketplace/templates/pages/index.js +310 -310
- package/dist/marketplace/templates/reference/index.d.ts +16 -16
- package/dist/marketplace/templates/reference/index.js +18 -18
- package/dist/people/index.d.ts +36 -36
- package/dist/people/index.js +105 -105
- package/dist/platform/index.d.ts +189 -189
- package/dist/platform/index.js +548 -548
- package/dist/reports/index.d.ts +49 -49
- package/dist/reports/index.js +145 -145
- package/package.json +33 -32
|
@@ -1,140 +1,140 @@
|
|
|
1
|
-
/** Referencia da aparencia na pagina inicial */
|
|
2
|
-
declare const HOME_PAGE: {
|
|
3
|
-
ID: number;
|
|
4
|
-
/**
|
|
5
|
-
* Blocos disponiveis na pagina
|
|
6
|
-
*/
|
|
7
|
-
ORDER: {
|
|
8
|
-
KEY: string;
|
|
9
|
-
DEFAULT: string;
|
|
10
|
-
};
|
|
11
|
-
HOME_PAGE_CATEGORY: {
|
|
12
|
-
KEY: string;
|
|
13
|
-
DEFAULT: string;
|
|
14
|
-
};
|
|
15
|
-
HOME_PAGE_CATEGORY_TITLE: {
|
|
16
|
-
KEY: string;
|
|
17
|
-
DEFAULT: string;
|
|
18
|
-
};
|
|
19
|
-
HOME_PAGE_BRANDS: {
|
|
20
|
-
KEY: string;
|
|
21
|
-
DEFAULT: string;
|
|
22
|
-
};
|
|
23
|
-
HOME_PAGE_BRANDS_TITLE: {
|
|
24
|
-
KEY: string;
|
|
25
|
-
DEFAULT: string;
|
|
26
|
-
};
|
|
27
|
-
/**
|
|
28
|
-
* Produtos selecionados (1)
|
|
29
|
-
*/
|
|
30
|
-
HOME_PAGE_SELECTED_PRODUCTS_ONE: {
|
|
31
|
-
KEY: string;
|
|
32
|
-
DEFAULT: string;
|
|
33
|
-
};
|
|
34
|
-
HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
|
|
35
|
-
KEY: string;
|
|
36
|
-
DEFAULT: string;
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* Produtos selecionados (2)
|
|
40
|
-
*/
|
|
41
|
-
HOME_PAGE_SELECTED_PRODUCTS_TWO: {
|
|
42
|
-
KEY: string;
|
|
43
|
-
DEFAULT: string;
|
|
44
|
-
};
|
|
45
|
-
HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
|
|
46
|
-
KEY: string;
|
|
47
|
-
DEFAULT: string;
|
|
48
|
-
};
|
|
49
|
-
/**
|
|
50
|
-
* Produtos em destaque
|
|
51
|
-
*/
|
|
52
|
-
HOME_PAGE_FEATURED_PRODUCTS: {
|
|
53
|
-
KEY: string;
|
|
54
|
-
DEFAULT: string;
|
|
55
|
-
};
|
|
56
|
-
BLOCK_IDS: {
|
|
57
|
-
BANNERS: number;
|
|
58
|
-
CATEGORIES: number;
|
|
59
|
-
PROMOTIONS: number;
|
|
60
|
-
LATEST: number;
|
|
61
|
-
BEST_SELLERS: number;
|
|
62
|
-
MOST_VIEWED: number;
|
|
63
|
-
SELECTED_PRODUCTS_ONE: number;
|
|
64
|
-
CUSTOM_BANNERS: number;
|
|
65
|
-
SELECTED_BRANDS: number;
|
|
66
|
-
SELECTED_PRODUCTS_TWO: number;
|
|
67
|
-
FEATURED_PRODUCTS: number;
|
|
68
|
-
};
|
|
69
|
-
BLOCKS: ({
|
|
70
|
-
id: number;
|
|
71
|
-
name: string;
|
|
72
|
-
icon: {
|
|
73
|
-
type: string;
|
|
74
|
-
size: number;
|
|
75
|
-
};
|
|
76
|
-
enabled: boolean;
|
|
77
|
-
immutable: boolean;
|
|
78
|
-
configurable: boolean;
|
|
79
|
-
badge: null;
|
|
80
|
-
} | {
|
|
81
|
-
id: number;
|
|
82
|
-
name: string;
|
|
83
|
-
icon: {
|
|
84
|
-
type: string;
|
|
85
|
-
size: number;
|
|
86
|
-
};
|
|
87
|
-
enabled: boolean;
|
|
88
|
-
immutable: boolean;
|
|
89
|
-
configurable: boolean;
|
|
90
|
-
badge: {
|
|
91
|
-
color: string;
|
|
92
|
-
text: string;
|
|
93
|
-
};
|
|
94
|
-
})[];
|
|
95
|
-
};
|
|
96
|
-
/**
|
|
97
|
-
* Referencia da aparencia na pagina de produto
|
|
98
|
-
*/
|
|
99
|
-
declare const PRODUCT_PAGE: {
|
|
100
|
-
ID: number;
|
|
101
|
-
/**
|
|
102
|
-
* Blocos disponiveis na pagina
|
|
103
|
-
*/
|
|
104
|
-
ORDER: {
|
|
105
|
-
KEY: string;
|
|
106
|
-
DEFAULT: string;
|
|
107
|
-
};
|
|
108
|
-
BLOCKS_IDS: {
|
|
109
|
-
DETAILS: number;
|
|
110
|
-
DESCRIPTION: number;
|
|
111
|
-
WARRANTY: number;
|
|
112
|
-
RELATED: number;
|
|
113
|
-
BANNERS: number;
|
|
114
|
-
};
|
|
115
|
-
BLOCKS: ({
|
|
116
|
-
id: number;
|
|
117
|
-
name: string;
|
|
118
|
-
icon: {
|
|
119
|
-
type: string;
|
|
120
|
-
size: number;
|
|
121
|
-
};
|
|
122
|
-
enabled: boolean;
|
|
123
|
-
immutable: boolean;
|
|
124
|
-
badge: null;
|
|
125
|
-
} | {
|
|
126
|
-
id: number;
|
|
127
|
-
name: string;
|
|
128
|
-
icon: {
|
|
129
|
-
type: string;
|
|
130
|
-
size: number;
|
|
131
|
-
};
|
|
132
|
-
enabled: boolean;
|
|
133
|
-
immutable: boolean;
|
|
134
|
-
badge: {
|
|
135
|
-
color: string;
|
|
136
|
-
text: string;
|
|
137
|
-
};
|
|
138
|
-
})[];
|
|
139
|
-
};
|
|
140
|
-
export { HOME_PAGE, PRODUCT_PAGE };
|
|
1
|
+
/** Referencia da aparencia na pagina inicial */
|
|
2
|
+
declare const HOME_PAGE: {
|
|
3
|
+
ID: number;
|
|
4
|
+
/**
|
|
5
|
+
* Blocos disponiveis na pagina
|
|
6
|
+
*/
|
|
7
|
+
ORDER: {
|
|
8
|
+
KEY: string;
|
|
9
|
+
DEFAULT: string;
|
|
10
|
+
};
|
|
11
|
+
HOME_PAGE_CATEGORY: {
|
|
12
|
+
KEY: string;
|
|
13
|
+
DEFAULT: string;
|
|
14
|
+
};
|
|
15
|
+
HOME_PAGE_CATEGORY_TITLE: {
|
|
16
|
+
KEY: string;
|
|
17
|
+
DEFAULT: string;
|
|
18
|
+
};
|
|
19
|
+
HOME_PAGE_BRANDS: {
|
|
20
|
+
KEY: string;
|
|
21
|
+
DEFAULT: string;
|
|
22
|
+
};
|
|
23
|
+
HOME_PAGE_BRANDS_TITLE: {
|
|
24
|
+
KEY: string;
|
|
25
|
+
DEFAULT: string;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Produtos selecionados (1)
|
|
29
|
+
*/
|
|
30
|
+
HOME_PAGE_SELECTED_PRODUCTS_ONE: {
|
|
31
|
+
KEY: string;
|
|
32
|
+
DEFAULT: string;
|
|
33
|
+
};
|
|
34
|
+
HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
|
|
35
|
+
KEY: string;
|
|
36
|
+
DEFAULT: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Produtos selecionados (2)
|
|
40
|
+
*/
|
|
41
|
+
HOME_PAGE_SELECTED_PRODUCTS_TWO: {
|
|
42
|
+
KEY: string;
|
|
43
|
+
DEFAULT: string;
|
|
44
|
+
};
|
|
45
|
+
HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
|
|
46
|
+
KEY: string;
|
|
47
|
+
DEFAULT: string;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Produtos em destaque
|
|
51
|
+
*/
|
|
52
|
+
HOME_PAGE_FEATURED_PRODUCTS: {
|
|
53
|
+
KEY: string;
|
|
54
|
+
DEFAULT: string;
|
|
55
|
+
};
|
|
56
|
+
BLOCK_IDS: {
|
|
57
|
+
BANNERS: number;
|
|
58
|
+
CATEGORIES: number;
|
|
59
|
+
PROMOTIONS: number;
|
|
60
|
+
LATEST: number;
|
|
61
|
+
BEST_SELLERS: number;
|
|
62
|
+
MOST_VIEWED: number;
|
|
63
|
+
SELECTED_PRODUCTS_ONE: number;
|
|
64
|
+
CUSTOM_BANNERS: number;
|
|
65
|
+
SELECTED_BRANDS: number;
|
|
66
|
+
SELECTED_PRODUCTS_TWO: number;
|
|
67
|
+
FEATURED_PRODUCTS: number;
|
|
68
|
+
};
|
|
69
|
+
BLOCKS: ({
|
|
70
|
+
id: number;
|
|
71
|
+
name: string;
|
|
72
|
+
icon: {
|
|
73
|
+
type: string;
|
|
74
|
+
size: number;
|
|
75
|
+
};
|
|
76
|
+
enabled: boolean;
|
|
77
|
+
immutable: boolean;
|
|
78
|
+
configurable: boolean;
|
|
79
|
+
badge: null;
|
|
80
|
+
} | {
|
|
81
|
+
id: number;
|
|
82
|
+
name: string;
|
|
83
|
+
icon: {
|
|
84
|
+
type: string;
|
|
85
|
+
size: number;
|
|
86
|
+
};
|
|
87
|
+
enabled: boolean;
|
|
88
|
+
immutable: boolean;
|
|
89
|
+
configurable: boolean;
|
|
90
|
+
badge: {
|
|
91
|
+
color: string;
|
|
92
|
+
text: string;
|
|
93
|
+
};
|
|
94
|
+
})[];
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Referencia da aparencia na pagina de produto
|
|
98
|
+
*/
|
|
99
|
+
declare const PRODUCT_PAGE: {
|
|
100
|
+
ID: number;
|
|
101
|
+
/**
|
|
102
|
+
* Blocos disponiveis na pagina
|
|
103
|
+
*/
|
|
104
|
+
ORDER: {
|
|
105
|
+
KEY: string;
|
|
106
|
+
DEFAULT: string;
|
|
107
|
+
};
|
|
108
|
+
BLOCKS_IDS: {
|
|
109
|
+
DETAILS: number;
|
|
110
|
+
DESCRIPTION: number;
|
|
111
|
+
WARRANTY: number;
|
|
112
|
+
RELATED: number;
|
|
113
|
+
BANNERS: number;
|
|
114
|
+
};
|
|
115
|
+
BLOCKS: ({
|
|
116
|
+
id: number;
|
|
117
|
+
name: string;
|
|
118
|
+
icon: {
|
|
119
|
+
type: string;
|
|
120
|
+
size: number;
|
|
121
|
+
};
|
|
122
|
+
enabled: boolean;
|
|
123
|
+
immutable: boolean;
|
|
124
|
+
badge: null;
|
|
125
|
+
} | {
|
|
126
|
+
id: number;
|
|
127
|
+
name: string;
|
|
128
|
+
icon: {
|
|
129
|
+
type: string;
|
|
130
|
+
size: number;
|
|
131
|
+
};
|
|
132
|
+
enabled: boolean;
|
|
133
|
+
immutable: boolean;
|
|
134
|
+
badge: {
|
|
135
|
+
color: string;
|
|
136
|
+
text: string;
|
|
137
|
+
};
|
|
138
|
+
})[];
|
|
139
|
+
};
|
|
140
|
+
export { HOME_PAGE, PRODUCT_PAGE };
|