mdz-enum 1.5.85 → 1.5.87

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 +232 -232
  5. package/dist/commercial/index.js +564 -564
  6. package/dist/common/index.d.ts +52 -52
  7. package/dist/common/index.js +151 -151
  8. package/dist/config/index.d.ts +176 -176
  9. package/dist/config/index.js +507 -507
  10. package/dist/finance/index.d.ts +172 -171
  11. package/dist/finance/index.js +448 -445
  12. package/dist/fiscal/index.d.ts +491 -486
  13. package/dist/fiscal/index.js +1221 -1207
  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 +221 -220
  20. package/dist/integration/index.d.ts +27 -27
  21. package/dist/integration/index.js +80 -80
  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 +277 -277
  25. package/dist/marketplace/templates/components/index.js +295 -295
  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 +471 -468
  29. package/dist/marketplace/templates/index.js +44 -44
  30. package/dist/marketplace/templates/pages/index.d.ts +207 -207
  31. package/dist/marketplace/templates/pages/index.js +383 -383
  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 +202 -202
  37. package/dist/platform/index.js +585 -585
  38. package/dist/reports/index.d.ts +57 -57
  39. package/dist/reports/index.js +168 -168
  40. package/package.json +33 -33
@@ -1,468 +1,471 @@
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
- BLOCKS_IDS: {
162
- DETAILS: number;
163
- DESCRIPTION: number;
164
- WARRANTY: number;
165
- RELATED: number;
166
- BANNERS: number;
167
- };
168
- BLOCKS: ({
169
- id: number;
170
- name: string;
171
- icon: {
172
- type: string;
173
- size: number;
174
- };
175
- enabled: boolean;
176
- immutable: boolean;
177
- badge: null;
178
- } | {
179
- id: number;
180
- name: string;
181
- icon: {
182
- type: string;
183
- size: number;
184
- };
185
- enabled: boolean;
186
- immutable: boolean;
187
- badge: {
188
- color: string;
189
- text: string;
190
- };
191
- })[];
192
- };
193
- };
194
- /**
195
- * Constante de configuração de aparência dos componentes (themes)
196
- */
197
- declare const APPEARANCE_COMPONENTS: {
198
- PRODUCT_CARD: {
199
- RADIUS: {
200
- KEY: string;
201
- DEFAULT: string;
202
- VALUES: {
203
- label: string;
204
- value: string;
205
- }[];
206
- };
207
- SHADOW: {
208
- KEY: string;
209
- DEFAULT: string;
210
- VALUES: {
211
- label: string;
212
- value: string;
213
- }[];
214
- };
215
- PROPORTION: {
216
- KEY: string;
217
- DEFAULT: string;
218
- VALUES: {
219
- label: string;
220
- value: string;
221
- }[];
222
- };
223
- SHOW_BUTTON: {
224
- KEY: string;
225
- DEFAULT: string;
226
- VALUES: string[];
227
- };
228
- BORDER: {
229
- KEY: string;
230
- DEFAULT: string;
231
- VALUES: string[];
232
- };
233
- };
234
- BUTTON: {
235
- RADIUS: {
236
- KEY: string;
237
- DEFAULT: string;
238
- VALUES: {
239
- label: string;
240
- value: string;
241
- }[];
242
- };
243
- };
244
- BUY_BUTTON: {
245
- LIGHT: {
246
- COLOR: {
247
- KEY: string;
248
- DEFAULT: string;
249
- };
250
- };
251
- DARK: {
252
- COLOR: {
253
- KEY: string;
254
- DEFAULT: 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
- FOOTER: {
271
- LIGHT: {
272
- COLOR: {
273
- KEY: string;
274
- DEFAULT: string;
275
- };
276
- LOGO_FILTER: {
277
- KEY: string;
278
- DEFAULT: string;
279
- VALUES: string[];
280
- };
281
- };
282
- DARK: {
283
- COLOR: {
284
- KEY: string;
285
- DEFAULT: string;
286
- };
287
- LOGO_FILTER: {
288
- KEY: string;
289
- DEFAULT: string;
290
- VALUES: string[];
291
- };
292
- };
293
- LIGHTTEXT: {
294
- COLOR: {
295
- KEY: string;
296
- DEFAULT: string;
297
- };
298
- };
299
- DARKTEXT: {
300
- COLOR: {
301
- KEY: string;
302
- DEFAULT: string;
303
- };
304
- };
305
- };
306
- HEADER: {
307
- LIGHT: {
308
- COLOR: {
309
- KEY: string;
310
- DEFAULT: string;
311
- };
312
- LOGO_FILTER: {
313
- KEY: string;
314
- DEFAULT: string;
315
- VALUES: string[];
316
- };
317
- };
318
- DARK: {
319
- COLOR: {
320
- KEY: string;
321
- DEFAULT: string;
322
- };
323
- LOGO_FILTER: {
324
- KEY: string;
325
- DEFAULT: string;
326
- VALUES: string[];
327
- };
328
- };
329
- LIGHTTEXT: {
330
- COLOR: {
331
- KEY: string;
332
- DEFAULT: string;
333
- };
334
- };
335
- DARKTEXT: {
336
- COLOR: {
337
- KEY: string;
338
- DEFAULT: string;
339
- };
340
- };
341
- };
342
- SUBMENU: {
343
- LIGHT: {
344
- COLOR: {
345
- KEY: string;
346
- DEFAULT: string;
347
- };
348
- };
349
- DARK: {
350
- COLOR: {
351
- KEY: string;
352
- DEFAULT: 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
- CART_BUTTON: {
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
- COMBINAR_PAYMENT: {
395
- KEY: string;
396
- DEFAULT: string;
397
- VALUES: string[];
398
- };
399
- COMBINAR_ENTREGA: {
400
- KEY: string;
401
- DEFAULT: string;
402
- VALUES: string[];
403
- };
404
- ENVIAR_PEDIDO_WPP: {
405
- KEY: string;
406
- DEFAULT: string;
407
- VALUES: string[];
408
- };
409
- BANNERS_ASPECT_RATIO: {
410
- KEY: string;
411
- DEFAULT: string;
412
- VALUES: string[];
413
- };
414
- HOME_PAGE_HIGHLIGHT: {
415
- ENABLED: {
416
- KEY: string;
417
- DEFAULT: boolean;
418
- };
419
- LIGHT: {
420
- BACKGROUND_COLOR: {
421
- KEY: string;
422
- DEFAULT: string;
423
- };
424
- TEXT_COLOR: {
425
- KEY: string;
426
- DEFAULT: string;
427
- };
428
- TEXT: {
429
- KEY: string;
430
- DEFAULT: string;
431
- };
432
- };
433
- };
434
- };
435
- /**
436
- * Constante de configuração de referencia para elementos gerais (any)
437
- */
438
- declare const APPEARANCE_ELEMENTS: {
439
- LOGO: {
440
- URL: {
441
- DESKTOP: {
442
- KEY: string;
443
- };
444
- MOBILE: {
445
- KEY: string;
446
- };
447
- };
448
- TYPE: {
449
- DESKTOP: {
450
- KEY: string;
451
- DEFAULT: string;
452
- };
453
- MOBILE: {
454
- KEY: string;
455
- DEFAULT: string;
456
- };
457
- };
458
- DESCRIPTION: {
459
- MOBILE: {
460
- KEY: string;
461
- };
462
- DESKTOP: {
463
- KEY: string;
464
- };
465
- };
466
- };
467
- };
468
- 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
+ /**
34
+ * Constante de configuração de referencia para elementos gerais (any)
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
+ BLOCKS_IDS: {
165
+ DETAILS: number;
166
+ DESCRIPTION: number;
167
+ WARRANTY: number;
168
+ RELATED: number;
169
+ BANNERS: number;
170
+ };
171
+ BLOCKS: ({
172
+ id: number;
173
+ name: string;
174
+ icon: {
175
+ type: string;
176
+ size: number;
177
+ };
178
+ enabled: boolean;
179
+ immutable: boolean;
180
+ badge: null;
181
+ } | {
182
+ id: number;
183
+ name: string;
184
+ icon: {
185
+ type: string;
186
+ size: number;
187
+ };
188
+ enabled: boolean;
189
+ immutable: boolean;
190
+ badge: {
191
+ color: string;
192
+ text: string;
193
+ };
194
+ })[];
195
+ };
196
+ };
197
+ /**
198
+ * Constante de configuração de aparência dos componentes (themes)
199
+ */
200
+ declare const APPEARANCE_COMPONENTS: {
201
+ PRODUCT_CARD: {
202
+ RADIUS: {
203
+ KEY: string;
204
+ DEFAULT: string;
205
+ VALUES: {
206
+ label: string;
207
+ value: string;
208
+ }[];
209
+ };
210
+ SHADOW: {
211
+ KEY: string;
212
+ DEFAULT: string;
213
+ VALUES: {
214
+ label: string;
215
+ value: string;
216
+ }[];
217
+ };
218
+ PROPORTION: {
219
+ KEY: string;
220
+ DEFAULT: string;
221
+ VALUES: {
222
+ label: string;
223
+ value: string;
224
+ }[];
225
+ };
226
+ SHOW_BUTTON: {
227
+ KEY: string;
228
+ DEFAULT: string;
229
+ VALUES: string[];
230
+ };
231
+ BORDER: {
232
+ KEY: string;
233
+ DEFAULT: string;
234
+ VALUES: string[];
235
+ };
236
+ };
237
+ BUTTON: {
238
+ RADIUS: {
239
+ KEY: string;
240
+ DEFAULT: string;
241
+ VALUES: {
242
+ label: string;
243
+ value: string;
244
+ }[];
245
+ };
246
+ };
247
+ BUY_BUTTON: {
248
+ LIGHT: {
249
+ COLOR: {
250
+ KEY: string;
251
+ DEFAULT: string;
252
+ };
253
+ };
254
+ DARK: {
255
+ COLOR: {
256
+ KEY: string;
257
+ DEFAULT: string;
258
+ };
259
+ };
260
+ LIGHTTEXT: {
261
+ COLOR: {
262
+ KEY: string;
263
+ DEFAULT: string;
264
+ };
265
+ };
266
+ DARKTEXT: {
267
+ COLOR: {
268
+ KEY: string;
269
+ DEFAULT: string;
270
+ };
271
+ };
272
+ };
273
+ FOOTER: {
274
+ LIGHT: {
275
+ COLOR: {
276
+ KEY: string;
277
+ DEFAULT: string;
278
+ };
279
+ LOGO_FILTER: {
280
+ KEY: string;
281
+ DEFAULT: string;
282
+ VALUES: string[];
283
+ };
284
+ };
285
+ DARK: {
286
+ COLOR: {
287
+ KEY: string;
288
+ DEFAULT: string;
289
+ };
290
+ LOGO_FILTER: {
291
+ KEY: string;
292
+ DEFAULT: string;
293
+ VALUES: string[];
294
+ };
295
+ };
296
+ LIGHTTEXT: {
297
+ COLOR: {
298
+ KEY: string;
299
+ DEFAULT: string;
300
+ };
301
+ };
302
+ DARKTEXT: {
303
+ COLOR: {
304
+ KEY: string;
305
+ DEFAULT: string;
306
+ };
307
+ };
308
+ };
309
+ HEADER: {
310
+ LIGHT: {
311
+ COLOR: {
312
+ KEY: string;
313
+ DEFAULT: string;
314
+ };
315
+ LOGO_FILTER: {
316
+ KEY: string;
317
+ DEFAULT: string;
318
+ VALUES: string[];
319
+ };
320
+ };
321
+ DARK: {
322
+ COLOR: {
323
+ KEY: string;
324
+ DEFAULT: string;
325
+ };
326
+ LOGO_FILTER: {
327
+ KEY: string;
328
+ DEFAULT: string;
329
+ VALUES: string[];
330
+ };
331
+ };
332
+ LIGHTTEXT: {
333
+ COLOR: {
334
+ KEY: string;
335
+ DEFAULT: string;
336
+ };
337
+ };
338
+ DARKTEXT: {
339
+ COLOR: {
340
+ KEY: string;
341
+ DEFAULT: string;
342
+ };
343
+ };
344
+ };
345
+ SUBMENU: {
346
+ LIGHT: {
347
+ COLOR: {
348
+ KEY: string;
349
+ DEFAULT: string;
350
+ };
351
+ };
352
+ DARK: {
353
+ COLOR: {
354
+ KEY: string;
355
+ DEFAULT: 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
+ CART_BUTTON: {
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
+ COMBINAR_PAYMENT: {
398
+ KEY: string;
399
+ DEFAULT: string;
400
+ VALUES: string[];
401
+ };
402
+ COMBINAR_ENTREGA: {
403
+ KEY: string;
404
+ DEFAULT: string;
405
+ VALUES: string[];
406
+ };
407
+ ENVIAR_PEDIDO_WPP: {
408
+ KEY: string;
409
+ DEFAULT: string;
410
+ VALUES: string[];
411
+ };
412
+ BANNERS_ASPECT_RATIO: {
413
+ KEY: string;
414
+ DEFAULT: string;
415
+ VALUES: string[];
416
+ };
417
+ HOME_PAGE_HIGHLIGHT: {
418
+ ENABLED: {
419
+ KEY: string;
420
+ DEFAULT: boolean;
421
+ };
422
+ LIGHT: {
423
+ BACKGROUND_COLOR: {
424
+ KEY: string;
425
+ DEFAULT: string;
426
+ };
427
+ TEXT_COLOR: {
428
+ KEY: string;
429
+ DEFAULT: string;
430
+ };
431
+ TEXT: {
432
+ KEY: string;
433
+ DEFAULT: string;
434
+ };
435
+ };
436
+ };
437
+ };
438
+ /**
439
+ * Constante de configuração de referencia para elementos gerais (any)
440
+ */
441
+ declare const APPEARANCE_ELEMENTS: {
442
+ LOGO: {
443
+ URL: {
444
+ DESKTOP: {
445
+ KEY: string;
446
+ };
447
+ MOBILE: {
448
+ KEY: string;
449
+ };
450
+ };
451
+ TYPE: {
452
+ DESKTOP: {
453
+ KEY: string;
454
+ DEFAULT: string;
455
+ };
456
+ MOBILE: {
457
+ KEY: string;
458
+ DEFAULT: string;
459
+ };
460
+ };
461
+ DESCRIPTION: {
462
+ MOBILE: {
463
+ KEY: string;
464
+ };
465
+ DESKTOP: {
466
+ KEY: string;
467
+ };
468
+ };
469
+ };
470
+ };
471
+ export { APPEARANCE_REFERENCE, APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_ELEMENTS };