mdz-enum 1.4.2 → 1.4.4

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.
Files changed (38) hide show
  1. package/README.MD +1 -1
  2. package/dist/checkout/index.d.ts +28 -28
  3. package/dist/checkout/index.js +83 -83
  4. package/dist/commercial/index.d.ts +221 -221
  5. package/dist/commercial/index.js +532 -532
  6. package/dist/common/index.d.ts +42 -42
  7. package/dist/common/index.js +123 -123
  8. package/dist/config/index.d.ts +137 -137
  9. package/dist/config/index.js +392 -392
  10. package/dist/finance/index.d.ts +164 -164
  11. package/dist/finance/index.js +425 -425
  12. package/dist/fiscal/index.d.ts +460 -459
  13. package/dist/fiscal/index.js +1153 -1150
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +243 -237
  17. package/dist/general/index.js +449 -432
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +200 -199
  20. package/dist/integration/index.d.ts +19 -19
  21. package/dist/integration/index.js +57 -57
  22. package/dist/logistics/index.d.ts +119 -119
  23. package/dist/logistics/index.js +345 -345
  24. package/dist/marketplace/templates/components/index.d.ts +189 -189
  25. package/dist/marketplace/templates/components/index.js +201 -201
  26. package/dist/marketplace/templates/index.d.ts +248 -253
  27. package/dist/marketplace/templates/index.js +31 -31
  28. package/dist/marketplace/templates/pages/index.d.ts +89 -89
  29. package/dist/marketplace/templates/pages/index.js +216 -216
  30. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  31. package/dist/marketplace/templates/reference/index.js +18 -18
  32. package/dist/people/index.d.ts +35 -35
  33. package/dist/people/index.js +102 -102
  34. package/dist/platform/index.d.ts +177 -177
  35. package/dist/platform/index.js +514 -514
  36. package/dist/reports/index.d.ts +46 -46
  37. package/dist/reports/index.js +136 -136
  38. package/package.json +33 -32
@@ -1,253 +1,248 @@
1
- import APPEARANCE_REFERENCE from './reference';
2
- /**
3
- * Constante de configuração de aparência das páginas
4
- */
5
- declare const APPEARANCE_PAGES: {
6
- HOME_PAGE: {
7
- ID: number;
8
- ORDER: {
9
- KEY: string; /**
10
- * Constante de configuração de aparência das páginas
11
- */
12
- DEFAULT: string;
13
- };
14
- HOME_PAGE_FEATURED_CATEGORY: {
15
- KEY: string;
16
- DEFAULT: string;
17
- };
18
- HOME_PAGE_FEATURED_CATEGORY_TITLE: {
19
- KEY: string;
20
- DEFAULT: string;
21
- };
22
- HOME_PAGE_FEATURED_BRANDS: {
23
- KEY: string;
24
- DEFAULT: string;
25
- };
26
- HOME_PAGE_FEATURED_BRANDS_TITLE: {
27
- KEY: string;
28
- DEFAULT: string;
29
- };
30
- BLOCKS: ({
31
- id: number;
32
- name: string;
33
- icon: {
34
- type: string;
35
- size: number;
36
- };
37
- enabled: boolean;
38
- immutable: boolean;
39
- badge: null;
40
- } | {
41
- id: number;
42
- name: string;
43
- icon: {
44
- type: string;
45
- size: number;
46
- };
47
- enabled: boolean;
48
- immutable: boolean;
49
- badge: {
50
- color: string;
51
- text: string;
52
- };
53
- })[];
54
- };
55
- PRODUCT_PAGE: {
56
- ID: number;
57
- ORDER: {
58
- KEY: string;
59
- DEFAULT: string;
60
- };
61
- BLOCKS: ({
62
- id: number;
63
- name: string;
64
- icon: {
65
- type: string;
66
- size: number;
67
- };
68
- enabled: boolean;
69
- immutable: boolean;
70
- badge: null;
71
- } | {
72
- id: number;
73
- name: string;
74
- icon: {
75
- type: string;
76
- size: number;
77
- };
78
- enabled: boolean;
79
- immutable: boolean;
80
- badge: {
81
- color: string;
82
- text: string;
83
- };
84
- })[];
85
- };
86
- };
87
- /**
88
- * Constante de configuração de aparência dos componentes
89
- */
90
- declare const APPEARANCE_COMPONENTS: {
91
- PRODUCT_CARD: {
92
- RADIUS: {
93
- KEY: string;
94
- DEFAULT: string;
95
- VALUES: {
96
- label: string;
97
- value: string;
98
- }[];
99
- };
100
- SHADOW: {
101
- KEY: string;
102
- DEFAULT: string;
103
- VALUES: {
104
- label: string;
105
- value: string;
106
- }[];
107
- };
108
- PROPORTION: {
109
- KEY: string;
110
- DEFAULT: string;
111
- VALUES: {
112
- label: string;
113
- value: string;
114
- }[];
115
- };
116
- SHOW_BUTTON: {
117
- KEY: string;
118
- DEFAULT: string;
119
- VALUES: string[];
120
- };
121
- };
122
- BUTTON: {
123
- RADIUS: {
124
- KEY: string;
125
- DEFAULT: string;
126
- VALUES: {
127
- label: string;
128
- value: string;
129
- }[];
130
- };
131
- };
132
- BUY_BUTTON: {
133
- LIGHT: {
134
- COLOR: {
135
- KEY: string;
136
- DEFAULT: string;
137
- };
138
- };
139
- DARK: {
140
- COLOR: {
141
- KEY: string;
142
- DEFAULT: string;
143
- };
144
- };
145
- };
146
- LOGO: {
147
- URL: {
148
- DESKTOP: {
149
- KEY: string;
150
- };
151
- MOBILE: {
152
- KEY: string;
153
- };
154
- };
155
- FILTER: {
156
- HEADER: {
157
- KEY: string;
158
- DEFAULT: string;
159
- VALUES: string[];
160
- };
161
- FOOTER: {
162
- KEY: string;
163
- DEFAULT: string;
164
- VALUES: string[];
165
- };
166
- LOADING: {
167
- KEY: string;
168
- DEFAULT: string;
169
- VALUES: string[];
170
- };
171
- };
172
- TYPE: {
173
- DESKTOP: {
174
- KEY: string;
175
- DEFAULT: string;
176
- VALUES: string[];
177
- };
178
- MOBILE: {
179
- KEY: string;
180
- DEFAULT: string;
181
- VALUES: string[];
182
- };
183
- };
184
- SHAPE: {
185
- RECTANGLE: {
186
- TEXT: {
187
- DESKTOP: {
188
- KEY: string;
189
- };
190
- MOBILE: {
191
- KEY: string;
192
- };
193
- };
194
- };
195
- SQUARE: {
196
- TEXT: {
197
- DESKTOP: {
198
- KEY: string;
199
- };
200
- MOBILE: {
201
- KEY: string;
202
- };
203
- };
204
- };
205
- };
206
- };
207
- FOOTER: {
208
- LIGHT: {
209
- COLOR: {
210
- KEY: string;
211
- DEFAULT: string;
212
- };
213
- };
214
- /**
215
- * Constante de configuração de aparência das páginas
216
- */
217
- DARK: {
218
- COLOR: {
219
- KEY: string;
220
- DEFAULT: string;
221
- };
222
- };
223
- };
224
- HEADER: {
225
- LIGHT: {
226
- COLOR: {
227
- KEY: string;
228
- DEFAULT: string;
229
- };
230
- };
231
- DARK: {
232
- COLOR: {
233
- KEY: string;
234
- DEFAULT: string;
235
- };
236
- };
237
- };
238
- CART_BUTTON: {
239
- LIGHT: {
240
- COLOR: {
241
- KEY: string;
242
- DEFAULT: string;
243
- };
244
- };
245
- DARK: {
246
- COLOR: {
247
- KEY: string;
248
- DEFAULT: string;
249
- };
250
- };
251
- };
252
- };
253
- export { APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_REFERENCE };
1
+ import APPEARANCE_REFERENCE from './reference';
2
+ /**
3
+ * Constante de configuração de aparência das páginas
4
+ */
5
+ declare const APPEARANCE_PAGES: {
6
+ HOME_PAGE: {
7
+ ID: number;
8
+ ORDER: {
9
+ KEY: string;
10
+ DEFAULT: string;
11
+ };
12
+ HOME_PAGE_FEATURED_CATEGORY: {
13
+ KEY: string;
14
+ DEFAULT: string;
15
+ };
16
+ HOME_PAGE_FEATURED_CATEGORY_TITLE: {
17
+ KEY: string;
18
+ DEFAULT: string;
19
+ };
20
+ HOME_PAGE_FEATURED_BRANDS: {
21
+ KEY: string;
22
+ DEFAULT: string;
23
+ };
24
+ HOME_PAGE_FEATURED_BRANDS_TITLE: {
25
+ KEY: string;
26
+ DEFAULT: string;
27
+ };
28
+ BLOCKS: ({
29
+ id: number;
30
+ name: string;
31
+ icon: {
32
+ type: string;
33
+ size: number;
34
+ };
35
+ enabled: boolean;
36
+ immutable: boolean;
37
+ badge: null;
38
+ } | {
39
+ id: number;
40
+ name: string;
41
+ icon: {
42
+ type: string;
43
+ size: number;
44
+ };
45
+ enabled: boolean;
46
+ immutable: boolean;
47
+ badge: {
48
+ color: string;
49
+ text: string;
50
+ };
51
+ })[];
52
+ };
53
+ PRODUCT_PAGE: {
54
+ ID: number;
55
+ ORDER: {
56
+ KEY: string;
57
+ DEFAULT: string;
58
+ };
59
+ BLOCKS: ({
60
+ id: number;
61
+ name: string;
62
+ icon: {
63
+ type: string;
64
+ size: number;
65
+ };
66
+ enabled: boolean;
67
+ immutable: boolean;
68
+ badge: null;
69
+ } | {
70
+ id: number;
71
+ name: string;
72
+ icon: {
73
+ type: string;
74
+ size: number;
75
+ };
76
+ enabled: boolean;
77
+ immutable: boolean;
78
+ badge: {
79
+ color: string;
80
+ text: string;
81
+ };
82
+ })[];
83
+ };
84
+ };
85
+ /**
86
+ * Constante de configuração de aparência dos componentes
87
+ */
88
+ declare const APPEARANCE_COMPONENTS: {
89
+ PRODUCT_CARD: {
90
+ RADIUS: {
91
+ KEY: string;
92
+ DEFAULT: string;
93
+ VALUES: {
94
+ label: string;
95
+ value: string;
96
+ }[];
97
+ };
98
+ SHADOW: {
99
+ KEY: string;
100
+ DEFAULT: string;
101
+ VALUES: {
102
+ label: string;
103
+ value: string;
104
+ }[];
105
+ };
106
+ PROPORTION: {
107
+ KEY: string;
108
+ DEFAULT: string;
109
+ VALUES: {
110
+ label: string;
111
+ value: string;
112
+ }[];
113
+ };
114
+ SHOW_BUTTON: {
115
+ KEY: string;
116
+ DEFAULT: string;
117
+ VALUES: string[];
118
+ };
119
+ };
120
+ BUTTON: {
121
+ RADIUS: {
122
+ KEY: string;
123
+ DEFAULT: string;
124
+ VALUES: {
125
+ label: string;
126
+ value: string;
127
+ }[];
128
+ };
129
+ };
130
+ BUY_BUTTON: {
131
+ LIGHT: {
132
+ COLOR: {
133
+ KEY: string;
134
+ DEFAULT: string;
135
+ };
136
+ };
137
+ DARK: {
138
+ COLOR: {
139
+ KEY: string;
140
+ DEFAULT: string;
141
+ };
142
+ };
143
+ };
144
+ LOGO: {
145
+ URL: {
146
+ DESKTOP: {
147
+ KEY: string;
148
+ };
149
+ MOBILE: {
150
+ KEY: string;
151
+ };
152
+ };
153
+ FILTER: {
154
+ HEADER: {
155
+ KEY: string;
156
+ DEFAULT: string;
157
+ VALUES: string[];
158
+ };
159
+ FOOTER: {
160
+ KEY: string;
161
+ DEFAULT: string;
162
+ VALUES: string[];
163
+ };
164
+ LOADING: {
165
+ KEY: string;
166
+ DEFAULT: string;
167
+ VALUES: string[];
168
+ };
169
+ };
170
+ TYPE: {
171
+ DESKTOP: {
172
+ KEY: string;
173
+ DEFAULT: string;
174
+ VALUES: string[];
175
+ };
176
+ MOBILE: {
177
+ KEY: string;
178
+ DEFAULT: string;
179
+ VALUES: string[];
180
+ };
181
+ };
182
+ SHAPE: {
183
+ RECTANGLE: {
184
+ TEXT: {
185
+ DESKTOP: {
186
+ KEY: string;
187
+ };
188
+ MOBILE: {
189
+ KEY: string;
190
+ };
191
+ };
192
+ };
193
+ SQUARE: {
194
+ TEXT: {
195
+ DESKTOP: {
196
+ KEY: string;
197
+ };
198
+ MOBILE: {
199
+ KEY: string;
200
+ };
201
+ };
202
+ };
203
+ };
204
+ };
205
+ FOOTER: {
206
+ LIGHT: {
207
+ COLOR: {
208
+ KEY: string;
209
+ DEFAULT: string;
210
+ };
211
+ };
212
+ DARK: {
213
+ COLOR: {
214
+ KEY: string;
215
+ DEFAULT: string;
216
+ };
217
+ };
218
+ };
219
+ HEADER: {
220
+ LIGHT: {
221
+ COLOR: {
222
+ KEY: string;
223
+ DEFAULT: string;
224
+ };
225
+ };
226
+ DARK: {
227
+ COLOR: {
228
+ KEY: string;
229
+ DEFAULT: string;
230
+ };
231
+ };
232
+ };
233
+ CART_BUTTON: {
234
+ LIGHT: {
235
+ COLOR: {
236
+ KEY: string;
237
+ DEFAULT: string;
238
+ };
239
+ };
240
+ DARK: {
241
+ COLOR: {
242
+ KEY: string;
243
+ DEFAULT: string;
244
+ };
245
+ };
246
+ };
247
+ };
248
+ export { APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_REFERENCE };
@@ -1,31 +1,31 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.APPEARANCE_REFERENCE = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = void 0;
7
- const pages_1 = require("./pages");
8
- const components_1 = require("./components");
9
- const reference_1 = __importDefault(require("./reference"));
10
- exports.APPEARANCE_REFERENCE = reference_1.default;
11
- /**
12
- * Constante de configuração de aparência das páginas
13
- */
14
- const APPEARANCE_PAGES = {
15
- HOME_PAGE: pages_1.HOME_PAGE,
16
- PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
17
- };
18
- exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
19
- /**
20
- * Constante de configuração de aparência dos componentes
21
- */
22
- const APPEARANCE_COMPONENTS = {
23
- PRODUCT_CARD: components_1.PRODUCT_CARD,
24
- BUTTON: components_1.BUTTON,
25
- BUY_BUTTON: components_1.BUY_BUTTON,
26
- LOGO: components_1.LOGO,
27
- FOOTER: components_1.FOOTER,
28
- HEADER: components_1.HEADER,
29
- CART_BUTTON: components_1.CART_BUTTON,
30
- };
31
- exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.APPEARANCE_REFERENCE = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = void 0;
7
+ const pages_1 = require("./pages");
8
+ const components_1 = require("./components");
9
+ const reference_1 = __importDefault(require("./reference"));
10
+ exports.APPEARANCE_REFERENCE = reference_1.default;
11
+ /**
12
+ * Constante de configuração de aparência das páginas
13
+ */
14
+ const APPEARANCE_PAGES = {
15
+ HOME_PAGE: pages_1.HOME_PAGE,
16
+ PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
17
+ };
18
+ exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
19
+ /**
20
+ * Constante de configuração de aparência dos componentes
21
+ */
22
+ const APPEARANCE_COMPONENTS = {
23
+ PRODUCT_CARD: components_1.PRODUCT_CARD,
24
+ BUTTON: components_1.BUTTON,
25
+ BUY_BUTTON: components_1.BUY_BUTTON,
26
+ LOGO: components_1.LOGO,
27
+ FOOTER: components_1.FOOTER,
28
+ HEADER: components_1.HEADER,
29
+ CART_BUTTON: components_1.CART_BUTTON,
30
+ };
31
+ exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;