mdz-enum 1.5.5 → 1.5.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 (39) hide show
  1. package/dist/checkout/index.d.ts +28 -28
  2. package/dist/checkout/index.js +83 -83
  3. package/dist/commercial/index.d.ts +221 -221
  4. package/dist/commercial/index.js +532 -532
  5. package/dist/common/index.d.ts +47 -47
  6. package/dist/common/index.js +137 -137
  7. package/dist/config/index.d.ts +137 -137
  8. package/dist/config/index.js +392 -392
  9. package/dist/finance/index.d.ts +164 -164
  10. package/dist/finance/index.js +425 -425
  11. package/dist/fiscal/index.d.ts +462 -462
  12. package/dist/fiscal/index.js +1159 -1159
  13. package/dist/functions.d.ts +11 -11
  14. package/dist/functions.js +74 -74
  15. package/dist/general/index.d.ts +243 -243
  16. package/dist/general/index.js +449 -449
  17. package/dist/index.d.ts +14 -14
  18. package/dist/index.js +204 -203
  19. package/dist/integration/index.d.ts +19 -19
  20. package/dist/integration/index.js +57 -57
  21. package/dist/logistics/index.d.ts +124 -124
  22. package/dist/logistics/index.js +359 -359
  23. package/dist/marketplace/templates/components/index.d.ts +145 -189
  24. package/dist/marketplace/templates/components/index.js +156 -201
  25. package/dist/marketplace/templates/elements/index.d.ts +34 -0
  26. package/dist/marketplace/templates/elements/index.js +37 -0
  27. package/dist/marketplace/templates/index.d.ts +284 -275
  28. package/dist/marketplace/templates/index.js +38 -31
  29. package/dist/marketplace/templates/pages/index.d.ts +140 -120
  30. package/dist/marketplace/templates/pages/index.js +310 -290
  31. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  32. package/dist/marketplace/templates/reference/index.js +18 -18
  33. package/dist/people/index.d.ts +35 -35
  34. package/dist/people/index.js +102 -102
  35. package/dist/platform/index.d.ts +184 -184
  36. package/dist/platform/index.js +534 -534
  37. package/dist/reports/index.d.ts +46 -46
  38. package/dist/reports/index.js +136 -136
  39. package/package.json +1 -1
@@ -1,120 +1,140 @@
1
- /** Referencia da aparencia na pagina inicial */
2
- declare const HOME_PAGE: {
3
- ID: number;
4
- /**
5
- * Blocos disponiveis na pagina
6
- */
7
- ORDER: {
8
- KEY: string;
9
- DEFAULT: string;
10
- };
11
- HOME_PAGE_CATEGORY: {
12
- KEY: string;
13
- DEFAULT: string;
14
- };
15
- HOME_PAGE_CATEGORY_TITLE: {
16
- KEY: string;
17
- DEFAULT: string;
18
- };
19
- HOME_PAGE_BRANDS: {
20
- KEY: string;
21
- DEFAULT: string;
22
- };
23
- HOME_PAGE_BRANDS_TITLE: {
24
- KEY: string;
25
- DEFAULT: string;
26
- };
27
- /**
28
- * Produtos selecionados (1)
29
- */
30
- HOME_PAGE_SELECTED_PRODUCTS_ONE: {
31
- KEY: string;
32
- DEFAULT: string;
33
- };
34
- HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
35
- KEY: string;
36
- DEFAULT: string;
37
- };
38
- /**
39
- * Produtos selecionados (2)
40
- */
41
- HOME_PAGE_SELECTED_PRODUCTS_TWO: {
42
- KEY: string;
43
- DEFAULT: string;
44
- };
45
- HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
46
- KEY: string;
47
- DEFAULT: string;
48
- };
49
- /**
50
- * Produtos em destaque
51
- */
52
- HOME_PAGE_FEATURED_PRODUCTS: {
53
- KEY: string;
54
- DEFAULT: string;
55
- };
56
- BLOCKS: ({
57
- id: number;
58
- name: string;
59
- icon: {
60
- type: string;
61
- size: number;
62
- };
63
- enabled: boolean;
64
- immutable: boolean;
65
- configurable: boolean;
66
- badge: null;
67
- } | {
68
- id: number;
69
- name: string;
70
- icon: {
71
- type: string;
72
- size: number;
73
- };
74
- enabled: boolean;
75
- immutable: boolean;
76
- configurable: boolean;
77
- badge: {
78
- color: string;
79
- text: string;
80
- };
81
- })[];
82
- };
83
- /**
84
- * Referencia da aparencia na pagina de produto
85
- */
86
- declare const PRODUCT_PAGE: {
87
- ID: number;
88
- /**
89
- * Blocos disponiveis na pagina
90
- */
91
- ORDER: {
92
- KEY: string;
93
- DEFAULT: string;
94
- };
95
- BLOCKS: ({
96
- id: number;
97
- name: string;
98
- icon: {
99
- type: string;
100
- size: number;
101
- };
102
- enabled: boolean;
103
- immutable: boolean;
104
- badge: null;
105
- } | {
106
- id: number;
107
- name: string;
108
- icon: {
109
- type: string;
110
- size: number;
111
- };
112
- enabled: boolean;
113
- immutable: boolean;
114
- badge: {
115
- color: string;
116
- text: string;
117
- };
118
- })[];
119
- };
120
- export { HOME_PAGE, PRODUCT_PAGE };
1
+ /** Referencia da aparencia na pagina inicial */
2
+ declare const HOME_PAGE: {
3
+ ID: number;
4
+ /**
5
+ * Blocos disponiveis na pagina
6
+ */
7
+ ORDER: {
8
+ KEY: string;
9
+ DEFAULT: string;
10
+ };
11
+ HOME_PAGE_CATEGORY: {
12
+ KEY: string;
13
+ DEFAULT: string;
14
+ };
15
+ HOME_PAGE_CATEGORY_TITLE: {
16
+ KEY: string;
17
+ DEFAULT: string;
18
+ };
19
+ HOME_PAGE_BRANDS: {
20
+ KEY: string;
21
+ DEFAULT: string;
22
+ };
23
+ HOME_PAGE_BRANDS_TITLE: {
24
+ KEY: string;
25
+ DEFAULT: string;
26
+ };
27
+ /**
28
+ * Produtos selecionados (1)
29
+ */
30
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
31
+ KEY: string;
32
+ DEFAULT: string;
33
+ };
34
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
35
+ KEY: string;
36
+ DEFAULT: string;
37
+ };
38
+ /**
39
+ * Produtos selecionados (2)
40
+ */
41
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
42
+ KEY: string;
43
+ DEFAULT: string;
44
+ };
45
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
46
+ KEY: string;
47
+ DEFAULT: string;
48
+ };
49
+ /**
50
+ * Produtos em destaque
51
+ */
52
+ HOME_PAGE_FEATURED_PRODUCTS: {
53
+ KEY: string;
54
+ DEFAULT: string;
55
+ };
56
+ BLOCK_IDS: {
57
+ BANNERS: number;
58
+ CATEGORIES: number;
59
+ PROMOTIONS: number;
60
+ LATEST: number;
61
+ BEST_SELLERS: number;
62
+ MOST_VIEWED: number;
63
+ SELECTED_PRODUCTS_ONE: number;
64
+ CUSTOM_BANNERS: number;
65
+ SELECTED_BRANDS: number;
66
+ SELECTED_PRODUCTS_TWO: number;
67
+ FEATURED_PRODUCTS: number;
68
+ };
69
+ BLOCKS: ({
70
+ id: number;
71
+ name: string;
72
+ icon: {
73
+ type: string;
74
+ size: number;
75
+ };
76
+ enabled: boolean;
77
+ immutable: boolean;
78
+ configurable: boolean;
79
+ badge: null;
80
+ } | {
81
+ id: number;
82
+ name: string;
83
+ icon: {
84
+ type: string;
85
+ size: number;
86
+ };
87
+ enabled: boolean;
88
+ immutable: boolean;
89
+ configurable: boolean;
90
+ badge: {
91
+ color: string;
92
+ text: string;
93
+ };
94
+ })[];
95
+ };
96
+ /**
97
+ * Referencia da aparencia na pagina de produto
98
+ */
99
+ declare const PRODUCT_PAGE: {
100
+ ID: number;
101
+ /**
102
+ * Blocos disponiveis na pagina
103
+ */
104
+ ORDER: {
105
+ KEY: string;
106
+ DEFAULT: string;
107
+ };
108
+ BLOCKS_IDS: {
109
+ DETAILS: number;
110
+ DESCRIPTION: number;
111
+ WARRANTY: number;
112
+ RELATED: number;
113
+ BANNERS: number;
114
+ };
115
+ BLOCKS: ({
116
+ id: number;
117
+ name: string;
118
+ icon: {
119
+ type: string;
120
+ size: number;
121
+ };
122
+ enabled: boolean;
123
+ immutable: boolean;
124
+ badge: null;
125
+ } | {
126
+ id: number;
127
+ name: string;
128
+ icon: {
129
+ type: string;
130
+ size: number;
131
+ };
132
+ enabled: boolean;
133
+ immutable: boolean;
134
+ badge: {
135
+ color: string;
136
+ text: string;
137
+ };
138
+ })[];
139
+ };
140
+ export { HOME_PAGE, PRODUCT_PAGE };