mdz-enum 1.6.25 → 1.6.27

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