mdz-enum 1.5.46 → 1.5.47

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 (40) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +28 -28
  3. package/dist/checkout/index.js +83 -83
  4. package/dist/commercial/index.d.ts +227 -227
  5. package/dist/commercial/index.js +549 -549
  6. package/dist/common/index.d.ts +51 -51
  7. package/dist/common/index.js +141 -141
  8. package/dist/config/index.d.ts +167 -167
  9. package/dist/config/index.js +481 -481
  10. package/dist/finance/index.d.ts +170 -170
  11. package/dist/finance/index.js +442 -442
  12. package/dist/fiscal/index.d.ts +479 -479
  13. package/dist/fiscal/index.js +1196 -1196
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +264 -264
  17. package/dist/general/index.js +509 -509
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +216 -216
  20. package/dist/integration/index.d.ts +20 -19
  21. package/dist/integration/index.js +60 -57
  22. package/dist/logistics/index.d.ts +130 -130
  23. package/dist/logistics/index.js +376 -376
  24. package/dist/marketplace/templates/components/index.d.ts +238 -238
  25. package/dist/marketplace/templates/components/index.js +252 -252
  26. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  27. package/dist/marketplace/templates/elements/index.js +35 -35
  28. package/dist/marketplace/templates/index.d.ts +366 -366
  29. package/dist/marketplace/templates/index.js +41 -41
  30. package/dist/marketplace/templates/pages/index.d.ts +140 -140
  31. package/dist/marketplace/templates/pages/index.js +310 -310
  32. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  33. package/dist/marketplace/templates/reference/index.js +26 -26
  34. package/dist/people/index.d.ts +36 -36
  35. package/dist/people/index.js +105 -105
  36. package/dist/platform/index.d.ts +193 -193
  37. package/dist/platform/index.js +558 -558
  38. package/dist/reports/index.d.ts +55 -55
  39. package/dist/reports/index.js +162 -162
  40. package/package.json +33 -32
@@ -1,366 +1,366 @@
1
- import APPEARANCE_REFERENCE from './reference';
2
- /**
3
- * Constante de configuração de aparência das páginas (blocks)
4
- */
5
- declare const APPEARANCE_PAGES: {
6
- HOME_PAGE: {
7
- ID: number;
8
- ORDER: {
9
- KEY: string;
10
- DEFAULT: string;
11
- };
12
- HOME_PAGE_CATEGORY: {
13
- KEY: string;
14
- DEFAULT: string;
15
- };
16
- HOME_PAGE_CATEGORY_TITLE: {
17
- KEY: string;
18
- DEFAULT: string;
19
- };
20
- HOME_PAGE_BRANDS: {
21
- KEY: string;
22
- DEFAULT: string;
23
- };
24
- HOME_PAGE_BRANDS_TITLE: {
25
- KEY: string;
26
- DEFAULT: string;
27
- };
28
- HOME_PAGE_SELECTED_PRODUCTS_ONE: {
29
- KEY: string;
30
- DEFAULT: string;
31
- };
32
- HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
33
- KEY: string;
34
- DEFAULT: string;
35
- };
36
- HOME_PAGE_SELECTED_PRODUCTS_TWO: {
37
- KEY: string;
38
- DEFAULT: string;
39
- };
40
- HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
41
- KEY: string;
42
- DEFAULT: string;
43
- };
44
- HOME_PAGE_FEATURED_PRODUCTS: {
45
- KEY: string;
46
- DEFAULT: string;
47
- };
48
- BLOCK_IDS: {
49
- BANNERS: number;
50
- CATEGORIES: number;
51
- PROMOTIONS: number;
52
- LATEST: number;
53
- BEST_SELLERS: number;
54
- MOST_VIEWED: number;
55
- SELECTED_PRODUCTS_ONE: number;
56
- CUSTOM_BANNERS: number;
57
- SELECTED_BRANDS: number;
58
- SELECTED_PRODUCTS_TWO: number;
59
- FEATURED_PRODUCTS: number;
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
- configurable: boolean;
71
- badge: null;
72
- } | {
73
- id: number;
74
- name: string;
75
- icon: {
76
- type: string;
77
- size: number;
78
- };
79
- enabled: boolean;
80
- immutable: boolean;
81
- configurable: boolean;
82
- badge: {
83
- color: string;
84
- text: string;
85
- };
86
- })[];
87
- };
88
- PRODUCT_PAGE: {
89
- ID: number;
90
- ORDER: {
91
- KEY: string;
92
- DEFAULT: string;
93
- };
94
- BLOCKS_IDS: {
95
- DETAILS: number;
96
- DESCRIPTION: number;
97
- WARRANTY: number;
98
- RELATED: number;
99
- BANNERS: number;
100
- };
101
- BLOCKS: ({
102
- id: number;
103
- name: string;
104
- icon: {
105
- type: string;
106
- size: number;
107
- };
108
- enabled: boolean;
109
- immutable: boolean;
110
- badge: null;
111
- } | {
112
- id: number;
113
- name: string;
114
- icon: {
115
- type: string;
116
- size: number;
117
- };
118
- enabled: boolean;
119
- immutable: boolean;
120
- badge: {
121
- color: string;
122
- text: string;
123
- };
124
- })[];
125
- };
126
- };
127
- /**
128
- * Constante de configuração de aparência dos componentes (themes)
129
- */
130
- declare const APPEARANCE_COMPONENTS: {
131
- PRODUCT_CARD: {
132
- RADIUS: {
133
- KEY: string;
134
- DEFAULT: string;
135
- VALUES: {
136
- label: string;
137
- value: string;
138
- }[];
139
- };
140
- SHADOW: {
141
- KEY: string;
142
- DEFAULT: string;
143
- VALUES: {
144
- label: string;
145
- value: string;
146
- }[];
147
- };
148
- PROPORTION: {
149
- KEY: string;
150
- DEFAULT: string;
151
- VALUES: {
152
- label: string;
153
- value: string;
154
- }[];
155
- };
156
- SHOW_BUTTON: {
157
- KEY: string;
158
- DEFAULT: string;
159
- VALUES: string[];
160
- };
161
- };
162
- BUTTON: {
163
- RADIUS: {
164
- KEY: string;
165
- DEFAULT: string;
166
- VALUES: {
167
- label: string;
168
- value: string;
169
- }[];
170
- };
171
- };
172
- BUY_BUTTON: {
173
- LIGHT: {
174
- COLOR: {
175
- KEY: string;
176
- DEFAULT: string;
177
- };
178
- };
179
- DARK: {
180
- COLOR: {
181
- KEY: string;
182
- DEFAULT: string;
183
- };
184
- };
185
- LIGHTTEXT: {
186
- COLOR: {
187
- KEY: string;
188
- DEFAULT: string;
189
- };
190
- };
191
- DARKTEXT: {
192
- COLOR: {
193
- KEY: string;
194
- DEFAULT: string;
195
- };
196
- };
197
- };
198
- FOOTER: {
199
- LIGHT: {
200
- COLOR: {
201
- KEY: string;
202
- DEFAULT: string;
203
- };
204
- LOGO_FILTER: {
205
- KEY: string;
206
- DEFAULT: string;
207
- VALUES: string[];
208
- };
209
- };
210
- DARK: {
211
- COLOR: {
212
- KEY: string;
213
- DEFAULT: string;
214
- };
215
- LOGO_FILTER: {
216
- KEY: string;
217
- DEFAULT: string;
218
- VALUES: string[];
219
- };
220
- };
221
- LIGHTTEXT: {
222
- COLOR: {
223
- KEY: string;
224
- DEFAULT: string;
225
- };
226
- };
227
- DARKTEXT: {
228
- COLOR: {
229
- KEY: string;
230
- DEFAULT: string;
231
- };
232
- };
233
- };
234
- HEADER: {
235
- LIGHT: {
236
- COLOR: {
237
- KEY: string;
238
- DEFAULT: string;
239
- };
240
- LOGO_FILTER: {
241
- KEY: string;
242
- DEFAULT: string;
243
- VALUES: string[];
244
- };
245
- };
246
- DARK: {
247
- COLOR: {
248
- KEY: string;
249
- DEFAULT: string;
250
- };
251
- LOGO_FILTER: {
252
- KEY: string;
253
- DEFAULT: string;
254
- VALUES: string[];
255
- };
256
- };
257
- LIGHTTEXT: {
258
- COLOR: {
259
- KEY: string;
260
- DEFAULT: string;
261
- };
262
- };
263
- DARKTEXT: {
264
- COLOR: {
265
- KEY: string;
266
- DEFAULT: string;
267
- };
268
- };
269
- };
270
- SUBMENU: {
271
- LIGHT: {
272
- COLOR: {
273
- KEY: string;
274
- DEFAULT: string;
275
- };
276
- };
277
- DARK: {
278
- COLOR: {
279
- KEY: string;
280
- DEFAULT: string;
281
- };
282
- };
283
- LIGHTTEXT: {
284
- COLOR: {
285
- KEY: string;
286
- DEFAULT: string;
287
- };
288
- };
289
- DARKTEXT: {
290
- COLOR: {
291
- KEY: string;
292
- DEFAULT: string;
293
- };
294
- };
295
- };
296
- CART_BUTTON: {
297
- LIGHT: {
298
- COLOR: {
299
- KEY: string;
300
- DEFAULT: string;
301
- };
302
- };
303
- DARK: {
304
- COLOR: {
305
- KEY: string;
306
- DEFAULT: string;
307
- };
308
- };
309
- LIGHTTEXT: {
310
- COLOR: {
311
- KEY: string;
312
- DEFAULT: string;
313
- };
314
- };
315
- DARKTEXT: {
316
- COLOR: {
317
- KEY: string;
318
- DEFAULT: string;
319
- };
320
- };
321
- };
322
- COMBINAR_PAYMENT: {
323
- KEY: string;
324
- DEFAULT: string;
325
- VALUES: string[];
326
- };
327
- COMBINAR_ENTREGA: {
328
- KEY: string;
329
- DEFAULT: string;
330
- VALUES: string[];
331
- };
332
- };
333
- /**
334
- * Constante de configuração de referencia para elementos gerais (any)
335
- */
336
- declare const APPEARANCE_ELEMENTS: {
337
- LOGO: {
338
- URL: {
339
- DESKTOP: {
340
- KEY: string;
341
- };
342
- MOBILE: {
343
- KEY: string;
344
- };
345
- };
346
- TYPE: {
347
- DESKTOP: {
348
- KEY: string;
349
- DEFAULT: string;
350
- };
351
- MOBILE: {
352
- KEY: string;
353
- DEFAULT: string;
354
- };
355
- };
356
- DESCRIPTION: {
357
- MOBILE: {
358
- KEY: string;
359
- };
360
- DESKTOP: {
361
- KEY: string;
362
- };
363
- };
364
- };
365
- };
366
- export { APPEARANCE_REFERENCE, APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_ELEMENTS };
1
+ import APPEARANCE_REFERENCE from './reference';
2
+ /**
3
+ * Constante de configuração de aparência das páginas (blocks)
4
+ */
5
+ declare const APPEARANCE_PAGES: {
6
+ HOME_PAGE: {
7
+ ID: number;
8
+ ORDER: {
9
+ KEY: string;
10
+ DEFAULT: string;
11
+ };
12
+ HOME_PAGE_CATEGORY: {
13
+ KEY: string;
14
+ DEFAULT: string;
15
+ };
16
+ HOME_PAGE_CATEGORY_TITLE: {
17
+ KEY: string;
18
+ DEFAULT: string;
19
+ };
20
+ HOME_PAGE_BRANDS: {
21
+ KEY: string;
22
+ DEFAULT: string;
23
+ };
24
+ HOME_PAGE_BRANDS_TITLE: {
25
+ KEY: string;
26
+ DEFAULT: string;
27
+ };
28
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
29
+ KEY: string;
30
+ DEFAULT: string;
31
+ };
32
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
33
+ KEY: string;
34
+ DEFAULT: string;
35
+ };
36
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
37
+ KEY: string;
38
+ DEFAULT: string;
39
+ };
40
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
41
+ KEY: string;
42
+ DEFAULT: string;
43
+ };
44
+ HOME_PAGE_FEATURED_PRODUCTS: {
45
+ KEY: string;
46
+ DEFAULT: string;
47
+ };
48
+ BLOCK_IDS: {
49
+ BANNERS: number;
50
+ CATEGORIES: number;
51
+ PROMOTIONS: number;
52
+ LATEST: number;
53
+ BEST_SELLERS: number;
54
+ MOST_VIEWED: number;
55
+ SELECTED_PRODUCTS_ONE: number;
56
+ CUSTOM_BANNERS: number;
57
+ SELECTED_BRANDS: number;
58
+ SELECTED_PRODUCTS_TWO: number;
59
+ FEATURED_PRODUCTS: number;
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
+ configurable: boolean;
71
+ badge: null;
72
+ } | {
73
+ id: number;
74
+ name: string;
75
+ icon: {
76
+ type: string;
77
+ size: number;
78
+ };
79
+ enabled: boolean;
80
+ immutable: boolean;
81
+ configurable: boolean;
82
+ badge: {
83
+ color: string;
84
+ text: string;
85
+ };
86
+ })[];
87
+ };
88
+ PRODUCT_PAGE: {
89
+ ID: number;
90
+ ORDER: {
91
+ KEY: string;
92
+ DEFAULT: string;
93
+ };
94
+ BLOCKS_IDS: {
95
+ DETAILS: number;
96
+ DESCRIPTION: number;
97
+ WARRANTY: number;
98
+ RELATED: number;
99
+ BANNERS: number;
100
+ };
101
+ BLOCKS: ({
102
+ id: number;
103
+ name: string;
104
+ icon: {
105
+ type: string;
106
+ size: number;
107
+ };
108
+ enabled: boolean;
109
+ immutable: boolean;
110
+ badge: null;
111
+ } | {
112
+ id: number;
113
+ name: string;
114
+ icon: {
115
+ type: string;
116
+ size: number;
117
+ };
118
+ enabled: boolean;
119
+ immutable: boolean;
120
+ badge: {
121
+ color: string;
122
+ text: string;
123
+ };
124
+ })[];
125
+ };
126
+ };
127
+ /**
128
+ * Constante de configuração de aparência dos componentes (themes)
129
+ */
130
+ declare const APPEARANCE_COMPONENTS: {
131
+ PRODUCT_CARD: {
132
+ RADIUS: {
133
+ KEY: string;
134
+ DEFAULT: string;
135
+ VALUES: {
136
+ label: string;
137
+ value: string;
138
+ }[];
139
+ };
140
+ SHADOW: {
141
+ KEY: string;
142
+ DEFAULT: string;
143
+ VALUES: {
144
+ label: string;
145
+ value: string;
146
+ }[];
147
+ };
148
+ PROPORTION: {
149
+ KEY: string;
150
+ DEFAULT: string;
151
+ VALUES: {
152
+ label: string;
153
+ value: string;
154
+ }[];
155
+ };
156
+ SHOW_BUTTON: {
157
+ KEY: string;
158
+ DEFAULT: string;
159
+ VALUES: string[];
160
+ };
161
+ };
162
+ BUTTON: {
163
+ RADIUS: {
164
+ KEY: string;
165
+ DEFAULT: string;
166
+ VALUES: {
167
+ label: string;
168
+ value: string;
169
+ }[];
170
+ };
171
+ };
172
+ BUY_BUTTON: {
173
+ LIGHT: {
174
+ COLOR: {
175
+ KEY: string;
176
+ DEFAULT: string;
177
+ };
178
+ };
179
+ DARK: {
180
+ COLOR: {
181
+ KEY: string;
182
+ DEFAULT: string;
183
+ };
184
+ };
185
+ LIGHTTEXT: {
186
+ COLOR: {
187
+ KEY: string;
188
+ DEFAULT: string;
189
+ };
190
+ };
191
+ DARKTEXT: {
192
+ COLOR: {
193
+ KEY: string;
194
+ DEFAULT: string;
195
+ };
196
+ };
197
+ };
198
+ FOOTER: {
199
+ LIGHT: {
200
+ COLOR: {
201
+ KEY: string;
202
+ DEFAULT: string;
203
+ };
204
+ LOGO_FILTER: {
205
+ KEY: string;
206
+ DEFAULT: string;
207
+ VALUES: string[];
208
+ };
209
+ };
210
+ DARK: {
211
+ COLOR: {
212
+ KEY: string;
213
+ DEFAULT: string;
214
+ };
215
+ LOGO_FILTER: {
216
+ KEY: string;
217
+ DEFAULT: string;
218
+ VALUES: string[];
219
+ };
220
+ };
221
+ LIGHTTEXT: {
222
+ COLOR: {
223
+ KEY: string;
224
+ DEFAULT: string;
225
+ };
226
+ };
227
+ DARKTEXT: {
228
+ COLOR: {
229
+ KEY: string;
230
+ DEFAULT: string;
231
+ };
232
+ };
233
+ };
234
+ HEADER: {
235
+ LIGHT: {
236
+ COLOR: {
237
+ KEY: string;
238
+ DEFAULT: string;
239
+ };
240
+ LOGO_FILTER: {
241
+ KEY: string;
242
+ DEFAULT: string;
243
+ VALUES: string[];
244
+ };
245
+ };
246
+ DARK: {
247
+ COLOR: {
248
+ KEY: string;
249
+ DEFAULT: string;
250
+ };
251
+ LOGO_FILTER: {
252
+ KEY: string;
253
+ DEFAULT: string;
254
+ VALUES: string[];
255
+ };
256
+ };
257
+ LIGHTTEXT: {
258
+ COLOR: {
259
+ KEY: string;
260
+ DEFAULT: string;
261
+ };
262
+ };
263
+ DARKTEXT: {
264
+ COLOR: {
265
+ KEY: string;
266
+ DEFAULT: string;
267
+ };
268
+ };
269
+ };
270
+ SUBMENU: {
271
+ LIGHT: {
272
+ COLOR: {
273
+ KEY: string;
274
+ DEFAULT: string;
275
+ };
276
+ };
277
+ DARK: {
278
+ COLOR: {
279
+ KEY: string;
280
+ DEFAULT: string;
281
+ };
282
+ };
283
+ LIGHTTEXT: {
284
+ COLOR: {
285
+ KEY: string;
286
+ DEFAULT: string;
287
+ };
288
+ };
289
+ DARKTEXT: {
290
+ COLOR: {
291
+ KEY: string;
292
+ DEFAULT: string;
293
+ };
294
+ };
295
+ };
296
+ CART_BUTTON: {
297
+ LIGHT: {
298
+ COLOR: {
299
+ KEY: string;
300
+ DEFAULT: string;
301
+ };
302
+ };
303
+ DARK: {
304
+ COLOR: {
305
+ KEY: string;
306
+ DEFAULT: string;
307
+ };
308
+ };
309
+ LIGHTTEXT: {
310
+ COLOR: {
311
+ KEY: string;
312
+ DEFAULT: string;
313
+ };
314
+ };
315
+ DARKTEXT: {
316
+ COLOR: {
317
+ KEY: string;
318
+ DEFAULT: string;
319
+ };
320
+ };
321
+ };
322
+ COMBINAR_PAYMENT: {
323
+ KEY: string;
324
+ DEFAULT: string;
325
+ VALUES: string[];
326
+ };
327
+ COMBINAR_ENTREGA: {
328
+ KEY: string;
329
+ DEFAULT: string;
330
+ VALUES: string[];
331
+ };
332
+ };
333
+ /**
334
+ * Constante de configuração de referencia para elementos gerais (any)
335
+ */
336
+ declare const APPEARANCE_ELEMENTS: {
337
+ LOGO: {
338
+ URL: {
339
+ DESKTOP: {
340
+ KEY: string;
341
+ };
342
+ MOBILE: {
343
+ KEY: string;
344
+ };
345
+ };
346
+ TYPE: {
347
+ DESKTOP: {
348
+ KEY: string;
349
+ DEFAULT: string;
350
+ };
351
+ MOBILE: {
352
+ KEY: string;
353
+ DEFAULT: string;
354
+ };
355
+ };
356
+ DESCRIPTION: {
357
+ MOBILE: {
358
+ KEY: string;
359
+ };
360
+ DESKTOP: {
361
+ KEY: string;
362
+ };
363
+ };
364
+ };
365
+ };
366
+ export { APPEARANCE_REFERENCE, APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_ELEMENTS };