mdz-enum 1.6.4 → 1.6.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.
Files changed (40) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +33 -33
  3. package/dist/checkout/index.js +97 -97
  4. package/dist/commercial/index.d.ts +237 -237
  5. package/dist/commercial/index.js +578 -578
  6. package/dist/common/index.d.ts +59 -59
  7. package/dist/common/index.js +171 -171
  8. package/dist/config/index.d.ts +177 -177
  9. package/dist/config/index.js +510 -510
  10. package/dist/finance/index.d.ts +177 -177
  11. package/dist/finance/index.js +462 -462
  12. package/dist/fiscal/index.d.ts +493 -492
  13. package/dist/fiscal/index.js +1227 -1224
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +265 -265
  17. package/dist/general/index.js +512 -512
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +229 -225
  20. package/dist/integration/index.d.ts +27 -27
  21. package/dist/integration/index.js +80 -80
  22. package/dist/logistics/index.d.ts +135 -135
  23. package/dist/logistics/index.js +390 -390
  24. package/dist/marketplace/templates/components/index.d.ts +285 -285
  25. package/dist/marketplace/templates/components/index.js +305 -305
  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 +502 -502
  29. package/dist/marketplace/templates/index.js +45 -45
  30. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  31. package/dist/marketplace/templates/pages/index.js +413 -413
  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 +50 -50
  35. package/dist/people/index.js +145 -145
  36. package/dist/platform/index.d.ts +205 -204
  37. package/dist/platform/index.js +594 -591
  38. package/dist/reports/index.d.ts +89 -57
  39. package/dist/reports/index.js +260 -168
  40. package/package.json +33 -32
@@ -1,502 +1,502 @@
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_CATEGORY_SHAPE: {
21
- KEY: string;
22
- DEFAULT: string;
23
- };
24
- HOME_PAGE_CATEGORY_SIZE: {
25
- KEY: string;
26
- DEFAULT: string;
27
- };
28
- HOME_PAGE_CATEGORY_BORDER: {
29
- KEY: string;
30
- DEFAULT: string;
31
- VALUES: string[];
32
- };
33
- HOME_PAGE_BRANDS: {
34
- KEY: string;
35
- DEFAULT: string;
36
- };
37
- HOME_PAGE_BRANDS_TITLE: {
38
- KEY: string;
39
- DEFAULT: string;
40
- };
41
- HOME_PAGE_BRANDS_SHAPE: {
42
- KEY: string;
43
- DEFAULT: string;
44
- };
45
- HOME_PAGE_BRANDS_SIZE: {
46
- KEY: string;
47
- DEFAULT: string;
48
- };
49
- HOME_PAGE_BRANDS_BORDER: {
50
- KEY: string;
51
- DEFAULT: string;
52
- VALUES: string[];
53
- };
54
- HOME_PAGE_SELECTED_PRODUCTS_ONE: {
55
- KEY: string;
56
- DEFAULT: string;
57
- };
58
- HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
59
- KEY: string;
60
- DEFAULT: string;
61
- };
62
- HOME_PAGE_SELECTED_PRODUCTS_TWO: {
63
- KEY: string;
64
- DEFAULT: string;
65
- };
66
- HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
67
- KEY: string;
68
- DEFAULT: string;
69
- };
70
- HOME_PAGE_FEATURED_PRODUCTS: {
71
- KEY: string;
72
- DEFAULT: string;
73
- };
74
- HOME_PAGE_BANNERS_EXTRA_1_COLUMNS: {
75
- KEY: string;
76
- DEFAULT: string;
77
- VALUES: string[];
78
- };
79
- HOME_PAGE_BANNERS_EXTRA_1_SIZE: {
80
- KEY: string;
81
- DEFAULT: string;
82
- VALUES: string[];
83
- };
84
- HOME_PAGE_BANNERS_EXTRA_1_SHAPE: {
85
- KEY: string;
86
- DEFAULT: string;
87
- VALUES: string[];
88
- };
89
- HOME_PAGE_BANNERS_EXTRA_1_ORIENTATION: {
90
- KEY: string;
91
- DEFAULT: string;
92
- VALUES: string[];
93
- };
94
- HOME_PAGE_BANNERS_EXTRA_2_COLUMNS: {
95
- KEY: string;
96
- DEFAULT: string;
97
- VALUES: string[];
98
- };
99
- HOME_PAGE_BANNERS_EXTRA_2_SIZE: {
100
- KEY: string;
101
- DEFAULT: string;
102
- VALUES: string[];
103
- };
104
- HOME_PAGE_BANNERS_EXTRA_2_SHAPE: {
105
- KEY: string;
106
- DEFAULT: string;
107
- VALUES: string[];
108
- };
109
- HOME_PAGE_BANNERS_EXTRA_2_ORIENTATION: {
110
- KEY: string;
111
- DEFAULT: string;
112
- VALUES: string[];
113
- };
114
- BLOCK_IDS: {
115
- BANNERS: number;
116
- BANNERS_EXTRA_1: number;
117
- BANNERS_EXTRA_2: number;
118
- CATEGORIES: number;
119
- PROMOTIONS: number;
120
- LATEST: number;
121
- BEST_SELLERS: number;
122
- MOST_VIEWED: number;
123
- SELECTED_PRODUCTS_ONE: number;
124
- SELECTED_BRANDS: number;
125
- SELECTED_PRODUCTS_TWO: number;
126
- FEATURED_PRODUCTS: number;
127
- };
128
- BLOCKS: ({
129
- id: number;
130
- name: string;
131
- icon: {
132
- type: string;
133
- size: number;
134
- };
135
- enabled: boolean;
136
- immutable: boolean;
137
- configurable: boolean;
138
- badge: null;
139
- } | {
140
- id: number;
141
- name: string;
142
- icon: {
143
- type: string;
144
- size: number;
145
- };
146
- enabled: boolean;
147
- immutable: boolean;
148
- configurable: boolean;
149
- badge: {
150
- color: string;
151
- text: string;
152
- };
153
- })[];
154
- };
155
- PRODUCT_PAGE: {
156
- ID: number;
157
- ORDER: {
158
- KEY: string;
159
- DEFAULT: string;
160
- };
161
- PRODUCT_PAGE_ATTRIBUTES_TITLE: {
162
- KEY: string;
163
- DEFAULT: string;
164
- };
165
- PRODUCT_PAGE_RELATED_TITLE: {
166
- KEY: string;
167
- DEFAULT: string;
168
- };
169
- PRODUCT_PAGE_DESCRIPTION_TITLE: {
170
- KEY: string;
171
- DEFAULT: string;
172
- };
173
- BLOCKS_IDS: {
174
- DETAILS: number;
175
- DESCRIPTION: number;
176
- WARRANTY: number;
177
- RELATED: number;
178
- BANNERS: number;
179
- ATTRIBUTES: number;
180
- };
181
- BLOCKS: ({
182
- id: number;
183
- name: string;
184
- icon: {
185
- type: string;
186
- size: number;
187
- };
188
- enabled: boolean;
189
- immutable: boolean;
190
- badge: null;
191
- configurable?: undefined;
192
- } | {
193
- id: number;
194
- name: string;
195
- icon: {
196
- type: string;
197
- size: number;
198
- };
199
- enabled: boolean;
200
- immutable: boolean;
201
- configurable: boolean;
202
- badge: null;
203
- } | {
204
- id: number;
205
- name: string;
206
- icon: {
207
- type: string;
208
- size: number;
209
- };
210
- enabled: boolean;
211
- immutable: boolean;
212
- configurable: boolean;
213
- badge: {
214
- color: string;
215
- text: string;
216
- };
217
- })[];
218
- };
219
- };
220
- /**
221
- * Constante de configuração de aparência dos componentes (themes)
222
- */
223
- declare const APPEARANCE_COMPONENTS: {
224
- PRODUCT_CARD: {
225
- RADIUS: {
226
- KEY: string;
227
- DEFAULT: string;
228
- VALUES: {
229
- label: string;
230
- value: string;
231
- }[];
232
- };
233
- SHADOW: {
234
- KEY: string;
235
- DEFAULT: string;
236
- VALUES: {
237
- label: string;
238
- value: string;
239
- }[];
240
- };
241
- PROPORTION: {
242
- KEY: string;
243
- DEFAULT: string;
244
- VALUES: {
245
- label: string;
246
- value: string;
247
- }[];
248
- };
249
- SHOW_BUTTON: {
250
- KEY: string;
251
- DEFAULT: string;
252
- VALUES: string[];
253
- };
254
- BORDER: {
255
- KEY: string;
256
- DEFAULT: string;
257
- VALUES: string[];
258
- };
259
- };
260
- BUTTON: {
261
- RADIUS: {
262
- KEY: string;
263
- DEFAULT: string;
264
- VALUES: {
265
- label: string;
266
- value: string;
267
- }[];
268
- };
269
- };
270
- BUY_BUTTON: {
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
- FOOTER: {
297
- LIGHT: {
298
- COLOR: {
299
- KEY: string;
300
- DEFAULT: string;
301
- };
302
- LOGO_FILTER: {
303
- KEY: string;
304
- DEFAULT: string;
305
- VALUES: string[];
306
- };
307
- };
308
- DARK: {
309
- COLOR: {
310
- KEY: string;
311
- DEFAULT: string;
312
- };
313
- LOGO_FILTER: {
314
- KEY: string;
315
- DEFAULT: string;
316
- VALUES: string[];
317
- };
318
- };
319
- LIGHTTEXT: {
320
- COLOR: {
321
- KEY: string;
322
- DEFAULT: string;
323
- };
324
- };
325
- DARKTEXT: {
326
- COLOR: {
327
- KEY: string;
328
- DEFAULT: string;
329
- };
330
- };
331
- };
332
- HEADER: {
333
- LIGHT: {
334
- COLOR: {
335
- KEY: string;
336
- DEFAULT: string;
337
- };
338
- LOGO_FILTER: {
339
- KEY: string;
340
- DEFAULT: string;
341
- VALUES: string[];
342
- };
343
- };
344
- DARK: {
345
- COLOR: {
346
- KEY: string;
347
- DEFAULT: string;
348
- };
349
- LOGO_FILTER: {
350
- KEY: string;
351
- DEFAULT: string;
352
- VALUES: string[];
353
- };
354
- };
355
- LIGHTTEXT: {
356
- COLOR: {
357
- KEY: string;
358
- DEFAULT: string;
359
- };
360
- };
361
- DARKTEXT: {
362
- COLOR: {
363
- KEY: string;
364
- DEFAULT: string;
365
- };
366
- };
367
- };
368
- SUBMENU: {
369
- LIGHT: {
370
- COLOR: {
371
- KEY: string;
372
- DEFAULT: string;
373
- };
374
- };
375
- DARK: {
376
- COLOR: {
377
- KEY: string;
378
- DEFAULT: string;
379
- };
380
- };
381
- LIGHTTEXT: {
382
- COLOR: {
383
- KEY: string;
384
- DEFAULT: string;
385
- };
386
- };
387
- DARKTEXT: {
388
- COLOR: {
389
- KEY: string;
390
- DEFAULT: string;
391
- };
392
- };
393
- };
394
- CART_BUTTON: {
395
- LIGHT: {
396
- COLOR: {
397
- KEY: string;
398
- DEFAULT: string;
399
- };
400
- };
401
- DARK: {
402
- COLOR: {
403
- KEY: string;
404
- DEFAULT: string;
405
- };
406
- };
407
- LIGHTTEXT: {
408
- COLOR: {
409
- KEY: string;
410
- DEFAULT: string;
411
- };
412
- };
413
- DARKTEXT: {
414
- COLOR: {
415
- KEY: string;
416
- DEFAULT: string;
417
- };
418
- };
419
- };
420
- COMBINAR_PAYMENT: {
421
- KEY: string;
422
- DEFAULT: string;
423
- VALUES: string[];
424
- };
425
- COMBINAR_ENTREGA: {
426
- KEY: string;
427
- DEFAULT: string;
428
- VALUES: string[];
429
- };
430
- ENVIAR_PEDIDO_WPP: {
431
- KEY: string;
432
- DEFAULT: string;
433
- VALUES: string[];
434
- };
435
- BANNERS_ASPECT_RATIO: {
436
- KEY: string;
437
- DEFAULT: string;
438
- VALUES: string[];
439
- };
440
- IMAGE_DISPLAY: {
441
- KEY: string;
442
- DEFAULT: string;
443
- VALUES: {
444
- label: string;
445
- value: string;
446
- }[];
447
- };
448
- HOME_PAGE_HIGHLIGHT: {
449
- ENABLED: {
450
- KEY: string;
451
- DEFAULT: boolean;
452
- };
453
- LIGHT: {
454
- BACKGROUND_COLOR: {
455
- KEY: string;
456
- DEFAULT: string;
457
- };
458
- TEXT_COLOR: {
459
- KEY: string;
460
- DEFAULT: string;
461
- };
462
- TEXT: {
463
- KEY: string;
464
- DEFAULT: string;
465
- };
466
- };
467
- };
468
- };
469
- /**
470
- * Constante de configuração de referencia para elementos gerais (any)
471
- */
472
- declare const APPEARANCE_ELEMENTS: {
473
- LOGO: {
474
- URL: {
475
- DESKTOP: {
476
- KEY: string;
477
- };
478
- MOBILE: {
479
- KEY: string;
480
- };
481
- };
482
- TYPE: {
483
- DESKTOP: {
484
- KEY: string;
485
- DEFAULT: string;
486
- };
487
- MOBILE: {
488
- KEY: string;
489
- DEFAULT: string;
490
- };
491
- };
492
- DESCRIPTION: {
493
- MOBILE: {
494
- KEY: string;
495
- };
496
- DESKTOP: {
497
- KEY: string;
498
- };
499
- };
500
- };
501
- };
502
- 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_CATEGORY_SHAPE: {
21
+ KEY: string;
22
+ DEFAULT: string;
23
+ };
24
+ HOME_PAGE_CATEGORY_SIZE: {
25
+ KEY: string;
26
+ DEFAULT: string;
27
+ };
28
+ HOME_PAGE_CATEGORY_BORDER: {
29
+ KEY: string;
30
+ DEFAULT: string;
31
+ VALUES: string[];
32
+ };
33
+ HOME_PAGE_BRANDS: {
34
+ KEY: string;
35
+ DEFAULT: string;
36
+ };
37
+ HOME_PAGE_BRANDS_TITLE: {
38
+ KEY: string;
39
+ DEFAULT: string;
40
+ };
41
+ HOME_PAGE_BRANDS_SHAPE: {
42
+ KEY: string;
43
+ DEFAULT: string;
44
+ };
45
+ HOME_PAGE_BRANDS_SIZE: {
46
+ KEY: string;
47
+ DEFAULT: string;
48
+ };
49
+ HOME_PAGE_BRANDS_BORDER: {
50
+ KEY: string;
51
+ DEFAULT: string;
52
+ VALUES: string[];
53
+ };
54
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
55
+ KEY: string;
56
+ DEFAULT: string;
57
+ };
58
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
59
+ KEY: string;
60
+ DEFAULT: string;
61
+ };
62
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
63
+ KEY: string;
64
+ DEFAULT: string;
65
+ };
66
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
67
+ KEY: string;
68
+ DEFAULT: string;
69
+ };
70
+ HOME_PAGE_FEATURED_PRODUCTS: {
71
+ KEY: string;
72
+ DEFAULT: string;
73
+ };
74
+ HOME_PAGE_BANNERS_EXTRA_1_COLUMNS: {
75
+ KEY: string;
76
+ DEFAULT: string;
77
+ VALUES: string[];
78
+ };
79
+ HOME_PAGE_BANNERS_EXTRA_1_SIZE: {
80
+ KEY: string;
81
+ DEFAULT: string;
82
+ VALUES: string[];
83
+ };
84
+ HOME_PAGE_BANNERS_EXTRA_1_SHAPE: {
85
+ KEY: string;
86
+ DEFAULT: string;
87
+ VALUES: string[];
88
+ };
89
+ HOME_PAGE_BANNERS_EXTRA_1_ORIENTATION: {
90
+ KEY: string;
91
+ DEFAULT: string;
92
+ VALUES: string[];
93
+ };
94
+ HOME_PAGE_BANNERS_EXTRA_2_COLUMNS: {
95
+ KEY: string;
96
+ DEFAULT: string;
97
+ VALUES: string[];
98
+ };
99
+ HOME_PAGE_BANNERS_EXTRA_2_SIZE: {
100
+ KEY: string;
101
+ DEFAULT: string;
102
+ VALUES: string[];
103
+ };
104
+ HOME_PAGE_BANNERS_EXTRA_2_SHAPE: {
105
+ KEY: string;
106
+ DEFAULT: string;
107
+ VALUES: string[];
108
+ };
109
+ HOME_PAGE_BANNERS_EXTRA_2_ORIENTATION: {
110
+ KEY: string;
111
+ DEFAULT: string;
112
+ VALUES: string[];
113
+ };
114
+ BLOCK_IDS: {
115
+ BANNERS: number;
116
+ BANNERS_EXTRA_1: number;
117
+ BANNERS_EXTRA_2: number;
118
+ CATEGORIES: number;
119
+ PROMOTIONS: number;
120
+ LATEST: number;
121
+ BEST_SELLERS: number;
122
+ MOST_VIEWED: number;
123
+ SELECTED_PRODUCTS_ONE: number;
124
+ SELECTED_BRANDS: number;
125
+ SELECTED_PRODUCTS_TWO: number;
126
+ FEATURED_PRODUCTS: number;
127
+ };
128
+ BLOCKS: ({
129
+ id: number;
130
+ name: string;
131
+ icon: {
132
+ type: string;
133
+ size: number;
134
+ };
135
+ enabled: boolean;
136
+ immutable: boolean;
137
+ configurable: boolean;
138
+ badge: null;
139
+ } | {
140
+ id: number;
141
+ name: string;
142
+ icon: {
143
+ type: string;
144
+ size: number;
145
+ };
146
+ enabled: boolean;
147
+ immutable: boolean;
148
+ configurable: boolean;
149
+ badge: {
150
+ color: string;
151
+ text: string;
152
+ };
153
+ })[];
154
+ };
155
+ PRODUCT_PAGE: {
156
+ ID: number;
157
+ ORDER: {
158
+ KEY: string;
159
+ DEFAULT: string;
160
+ };
161
+ PRODUCT_PAGE_ATTRIBUTES_TITLE: {
162
+ KEY: string;
163
+ DEFAULT: string;
164
+ };
165
+ PRODUCT_PAGE_RELATED_TITLE: {
166
+ KEY: string;
167
+ DEFAULT: string;
168
+ };
169
+ PRODUCT_PAGE_DESCRIPTION_TITLE: {
170
+ KEY: string;
171
+ DEFAULT: string;
172
+ };
173
+ BLOCKS_IDS: {
174
+ DETAILS: number;
175
+ DESCRIPTION: number;
176
+ WARRANTY: number;
177
+ RELATED: number;
178
+ BANNERS: number;
179
+ ATTRIBUTES: number;
180
+ };
181
+ BLOCKS: ({
182
+ id: number;
183
+ name: string;
184
+ icon: {
185
+ type: string;
186
+ size: number;
187
+ };
188
+ enabled: boolean;
189
+ immutable: boolean;
190
+ badge: null;
191
+ configurable?: undefined;
192
+ } | {
193
+ id: number;
194
+ name: string;
195
+ icon: {
196
+ type: string;
197
+ size: number;
198
+ };
199
+ enabled: boolean;
200
+ immutable: boolean;
201
+ configurable: boolean;
202
+ badge: null;
203
+ } | {
204
+ id: number;
205
+ name: string;
206
+ icon: {
207
+ type: string;
208
+ size: number;
209
+ };
210
+ enabled: boolean;
211
+ immutable: boolean;
212
+ configurable: boolean;
213
+ badge: {
214
+ color: string;
215
+ text: string;
216
+ };
217
+ })[];
218
+ };
219
+ };
220
+ /**
221
+ * Constante de configuração de aparência dos componentes (themes)
222
+ */
223
+ declare const APPEARANCE_COMPONENTS: {
224
+ PRODUCT_CARD: {
225
+ RADIUS: {
226
+ KEY: string;
227
+ DEFAULT: string;
228
+ VALUES: {
229
+ label: string;
230
+ value: string;
231
+ }[];
232
+ };
233
+ SHADOW: {
234
+ KEY: string;
235
+ DEFAULT: string;
236
+ VALUES: {
237
+ label: string;
238
+ value: string;
239
+ }[];
240
+ };
241
+ PROPORTION: {
242
+ KEY: string;
243
+ DEFAULT: string;
244
+ VALUES: {
245
+ label: string;
246
+ value: string;
247
+ }[];
248
+ };
249
+ SHOW_BUTTON: {
250
+ KEY: string;
251
+ DEFAULT: string;
252
+ VALUES: string[];
253
+ };
254
+ BORDER: {
255
+ KEY: string;
256
+ DEFAULT: string;
257
+ VALUES: string[];
258
+ };
259
+ };
260
+ BUTTON: {
261
+ RADIUS: {
262
+ KEY: string;
263
+ DEFAULT: string;
264
+ VALUES: {
265
+ label: string;
266
+ value: string;
267
+ }[];
268
+ };
269
+ };
270
+ BUY_BUTTON: {
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
+ FOOTER: {
297
+ LIGHT: {
298
+ COLOR: {
299
+ KEY: string;
300
+ DEFAULT: string;
301
+ };
302
+ LOGO_FILTER: {
303
+ KEY: string;
304
+ DEFAULT: string;
305
+ VALUES: string[];
306
+ };
307
+ };
308
+ DARK: {
309
+ COLOR: {
310
+ KEY: string;
311
+ DEFAULT: string;
312
+ };
313
+ LOGO_FILTER: {
314
+ KEY: string;
315
+ DEFAULT: string;
316
+ VALUES: string[];
317
+ };
318
+ };
319
+ LIGHTTEXT: {
320
+ COLOR: {
321
+ KEY: string;
322
+ DEFAULT: string;
323
+ };
324
+ };
325
+ DARKTEXT: {
326
+ COLOR: {
327
+ KEY: string;
328
+ DEFAULT: string;
329
+ };
330
+ };
331
+ };
332
+ HEADER: {
333
+ LIGHT: {
334
+ COLOR: {
335
+ KEY: string;
336
+ DEFAULT: string;
337
+ };
338
+ LOGO_FILTER: {
339
+ KEY: string;
340
+ DEFAULT: string;
341
+ VALUES: string[];
342
+ };
343
+ };
344
+ DARK: {
345
+ COLOR: {
346
+ KEY: string;
347
+ DEFAULT: string;
348
+ };
349
+ LOGO_FILTER: {
350
+ KEY: string;
351
+ DEFAULT: string;
352
+ VALUES: string[];
353
+ };
354
+ };
355
+ LIGHTTEXT: {
356
+ COLOR: {
357
+ KEY: string;
358
+ DEFAULT: string;
359
+ };
360
+ };
361
+ DARKTEXT: {
362
+ COLOR: {
363
+ KEY: string;
364
+ DEFAULT: string;
365
+ };
366
+ };
367
+ };
368
+ SUBMENU: {
369
+ LIGHT: {
370
+ COLOR: {
371
+ KEY: string;
372
+ DEFAULT: string;
373
+ };
374
+ };
375
+ DARK: {
376
+ COLOR: {
377
+ KEY: string;
378
+ DEFAULT: string;
379
+ };
380
+ };
381
+ LIGHTTEXT: {
382
+ COLOR: {
383
+ KEY: string;
384
+ DEFAULT: string;
385
+ };
386
+ };
387
+ DARKTEXT: {
388
+ COLOR: {
389
+ KEY: string;
390
+ DEFAULT: string;
391
+ };
392
+ };
393
+ };
394
+ CART_BUTTON: {
395
+ LIGHT: {
396
+ COLOR: {
397
+ KEY: string;
398
+ DEFAULT: string;
399
+ };
400
+ };
401
+ DARK: {
402
+ COLOR: {
403
+ KEY: string;
404
+ DEFAULT: string;
405
+ };
406
+ };
407
+ LIGHTTEXT: {
408
+ COLOR: {
409
+ KEY: string;
410
+ DEFAULT: string;
411
+ };
412
+ };
413
+ DARKTEXT: {
414
+ COLOR: {
415
+ KEY: string;
416
+ DEFAULT: string;
417
+ };
418
+ };
419
+ };
420
+ COMBINAR_PAYMENT: {
421
+ KEY: string;
422
+ DEFAULT: string;
423
+ VALUES: string[];
424
+ };
425
+ COMBINAR_ENTREGA: {
426
+ KEY: string;
427
+ DEFAULT: string;
428
+ VALUES: string[];
429
+ };
430
+ ENVIAR_PEDIDO_WPP: {
431
+ KEY: string;
432
+ DEFAULT: string;
433
+ VALUES: string[];
434
+ };
435
+ BANNERS_ASPECT_RATIO: {
436
+ KEY: string;
437
+ DEFAULT: string;
438
+ VALUES: string[];
439
+ };
440
+ IMAGE_DISPLAY: {
441
+ KEY: string;
442
+ DEFAULT: string;
443
+ VALUES: {
444
+ label: string;
445
+ value: string;
446
+ }[];
447
+ };
448
+ HOME_PAGE_HIGHLIGHT: {
449
+ ENABLED: {
450
+ KEY: string;
451
+ DEFAULT: boolean;
452
+ };
453
+ LIGHT: {
454
+ BACKGROUND_COLOR: {
455
+ KEY: string;
456
+ DEFAULT: string;
457
+ };
458
+ TEXT_COLOR: {
459
+ KEY: string;
460
+ DEFAULT: string;
461
+ };
462
+ TEXT: {
463
+ KEY: string;
464
+ DEFAULT: string;
465
+ };
466
+ };
467
+ };
468
+ };
469
+ /**
470
+ * Constante de configuração de referencia para elementos gerais (any)
471
+ */
472
+ declare const APPEARANCE_ELEMENTS: {
473
+ LOGO: {
474
+ URL: {
475
+ DESKTOP: {
476
+ KEY: string;
477
+ };
478
+ MOBILE: {
479
+ KEY: string;
480
+ };
481
+ };
482
+ TYPE: {
483
+ DESKTOP: {
484
+ KEY: string;
485
+ DEFAULT: string;
486
+ };
487
+ MOBILE: {
488
+ KEY: string;
489
+ DEFAULT: string;
490
+ };
491
+ };
492
+ DESCRIPTION: {
493
+ MOBILE: {
494
+ KEY: string;
495
+ };
496
+ DESKTOP: {
497
+ KEY: string;
498
+ };
499
+ };
500
+ };
501
+ };
502
+ export { APPEARANCE_REFERENCE, APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_ELEMENTS };