mdz-enum 1.5.2 → 1.5.4

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 (37) 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 +461 -461
  12. package/dist/fiscal/index.js +1156 -1156
  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 +203 -201
  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 -119
  22. package/dist/logistics/index.js +359 -345
  23. package/dist/marketplace/templates/components/index.d.ts +189 -189
  24. package/dist/marketplace/templates/components/index.js +201 -201
  25. package/dist/marketplace/templates/index.d.ts +275 -270
  26. package/dist/marketplace/templates/index.js +31 -31
  27. package/dist/marketplace/templates/pages/index.d.ts +120 -120
  28. package/dist/marketplace/templates/pages/index.js +290 -290
  29. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  30. package/dist/marketplace/templates/reference/index.js +18 -18
  31. package/dist/people/index.d.ts +35 -35
  32. package/dist/people/index.js +102 -102
  33. package/dist/platform/index.d.ts +184 -177
  34. package/dist/platform/index.js +534 -514
  35. package/dist/reports/index.d.ts +46 -46
  36. package/dist/reports/index.js +136 -136
  37. package/package.json +1 -1
@@ -1,270 +1,275 @@
1
- import APPEARANCE_REFERENCE from './reference';
2
- /**
3
- * Constante de configuração de aparência das páginas
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
- BLOCKS: ({
49
- id: number;
50
- name: string;
51
- icon: {
52
- type: string;
53
- size: number;
54
- };
55
- enabled: boolean;
56
- immutable: boolean;
57
- configurable: boolean;
58
- badge: null;
59
- } | {
60
- id: number;
61
- name: string;
62
- icon: {
63
- type: string;
64
- size: number;
65
- };
66
- enabled: boolean;
67
- immutable: boolean;
68
- configurable: boolean;
69
- badge: {
70
- color: string;
71
- text: string;
72
- };
73
- })[];
74
- };
75
- PRODUCT_PAGE: {
76
- ID: number;
77
- ORDER: {
78
- KEY: string;
79
- DEFAULT: string;
80
- };
81
- BLOCKS: ({
82
- id: number;
83
- name: string;
84
- icon: {
85
- type: string;
86
- size: number;
87
- };
88
- enabled: boolean;
89
- immutable: boolean;
90
- badge: null;
91
- } | {
92
- id: number;
93
- name: string;
94
- icon: {
95
- type: string;
96
- size: number;
97
- };
98
- enabled: boolean;
99
- immutable: boolean;
100
- badge: {
101
- color: string;
102
- text: string;
103
- };
104
- })[];
105
- };
106
- };
107
- /**
108
- * Constante de configuração de aparência dos componentes
109
- */
110
- declare const APPEARANCE_COMPONENTS: {
111
- PRODUCT_CARD: {
112
- RADIUS: {
113
- KEY: string;
114
- DEFAULT: string;
115
- VALUES: {
116
- label: string;
117
- value: string;
118
- }[];
119
- };
120
- SHADOW: {
121
- KEY: string;
122
- DEFAULT: string;
123
- VALUES: {
124
- label: string;
125
- value: string;
126
- }[];
127
- };
128
- PROPORTION: {
129
- KEY: string;
130
- DEFAULT: string;
131
- VALUES: {
132
- label: string;
133
- value: string;
134
- }[];
135
- };
136
- SHOW_BUTTON: {
137
- KEY: string;
138
- DEFAULT: string;
139
- VALUES: string[];
140
- };
141
- };
142
- BUTTON: {
143
- RADIUS: {
144
- KEY: string;
145
- DEFAULT: string;
146
- VALUES: {
147
- label: string;
148
- value: string;
149
- }[];
150
- };
151
- };
152
- BUY_BUTTON: {
153
- LIGHT: {
154
- COLOR: {
155
- KEY: string;
156
- DEFAULT: string;
157
- };
158
- };
159
- DARK: {
160
- COLOR: {
161
- KEY: string;
162
- DEFAULT: string;
163
- };
164
- };
165
- };
166
- LOGO: {
167
- URL: {
168
- DESKTOP: {
169
- KEY: string;
170
- };
171
- MOBILE: {
172
- KEY: string;
173
- };
174
- };
175
- FILTER: {
176
- HEADER: {
177
- KEY: string;
178
- DEFAULT: string;
179
- VALUES: string[];
180
- };
181
- FOOTER: {
182
- KEY: string;
183
- DEFAULT: string;
184
- VALUES: string[];
185
- };
186
- LOADING: {
187
- KEY: string;
188
- DEFAULT: string;
189
- VALUES: string[];
190
- };
191
- };
192
- TYPE: {
193
- DESKTOP: {
194
- KEY: string;
195
- DEFAULT: string;
196
- VALUES: string[];
197
- };
198
- MOBILE: {
199
- KEY: string;
200
- DEFAULT: string;
201
- VALUES: string[];
202
- };
203
- };
204
- SHAPE: {
205
- RECTANGLE: {
206
- TEXT: {
207
- DESKTOP: {
208
- KEY: string;
209
- };
210
- MOBILE: {
211
- KEY: string;
212
- };
213
- };
214
- };
215
- SQUARE: {
216
- TEXT: {
217
- DESKTOP: {
218
- KEY: string;
219
- };
220
- MOBILE: {
221
- KEY: string;
222
- };
223
- };
224
- };
225
- };
226
- };
227
- FOOTER: {
228
- LIGHT: {
229
- COLOR: {
230
- KEY: string;
231
- DEFAULT: string;
232
- };
233
- };
234
- DARK: {
235
- COLOR: {
236
- KEY: string;
237
- DEFAULT: string;
238
- };
239
- };
240
- };
241
- HEADER: {
242
- LIGHT: {
243
- COLOR: {
244
- KEY: string;
245
- DEFAULT: string;
246
- };
247
- };
248
- DARK: {
249
- COLOR: {
250
- KEY: string;
251
- DEFAULT: string;
252
- };
253
- };
254
- };
255
- CART_BUTTON: {
256
- LIGHT: {
257
- COLOR: {
258
- KEY: string;
259
- DEFAULT: string;
260
- };
261
- };
262
- DARK: {
263
- COLOR: {
264
- KEY: string;
265
- DEFAULT: string;
266
- };
267
- };
268
- };
269
- };
270
- export { APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_REFERENCE };
1
+ import APPEARANCE_REFERENCE from './reference';
2
+ /**
3
+ * Constante de configuração de aparência das páginas
4
+ */
5
+ declare const APPEARANCE_PAGES: {
6
+ HOME_PAGE: {
7
+ ID: number;
8
+ ORDER: {
9
+ KEY: string; /**
10
+ * Constante de configuração de aparência das páginas
11
+ */
12
+ DEFAULT: string;
13
+ };
14
+ HOME_PAGE_CATEGORY: {
15
+ KEY: string;
16
+ DEFAULT: string;
17
+ };
18
+ HOME_PAGE_CATEGORY_TITLE: {
19
+ KEY: string;
20
+ DEFAULT: string;
21
+ };
22
+ HOME_PAGE_BRANDS: {
23
+ KEY: string;
24
+ DEFAULT: string;
25
+ };
26
+ HOME_PAGE_BRANDS_TITLE: {
27
+ KEY: string;
28
+ DEFAULT: string;
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
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
39
+ KEY: string;
40
+ DEFAULT: string;
41
+ };
42
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
43
+ KEY: string;
44
+ DEFAULT: string;
45
+ };
46
+ HOME_PAGE_FEATURED_PRODUCTS: {
47
+ KEY: string;
48
+ DEFAULT: string;
49
+ };
50
+ BLOCKS: ({
51
+ id: number;
52
+ name: string;
53
+ icon: {
54
+ type: string;
55
+ size: number;
56
+ };
57
+ enabled: boolean;
58
+ immutable: boolean;
59
+ configurable: boolean;
60
+ badge: null;
61
+ } | {
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: {
72
+ color: string;
73
+ text: string;
74
+ };
75
+ })[];
76
+ };
77
+ PRODUCT_PAGE: {
78
+ ID: number;
79
+ ORDER: {
80
+ KEY: string;
81
+ DEFAULT: string;
82
+ };
83
+ BLOCKS: ({
84
+ id: number;
85
+ name: string;
86
+ icon: {
87
+ type: string;
88
+ size: number;
89
+ };
90
+ enabled: boolean;
91
+ immutable: boolean;
92
+ badge: null;
93
+ } | {
94
+ id: number;
95
+ name: string;
96
+ icon: {
97
+ type: string;
98
+ size: number;
99
+ };
100
+ enabled: boolean;
101
+ immutable: boolean;
102
+ badge: {
103
+ color: string;
104
+ text: string;
105
+ };
106
+ })[];
107
+ };
108
+ };
109
+ /**
110
+ * Constante de configuração de aparência dos componentes
111
+ */
112
+ declare const APPEARANCE_COMPONENTS: {
113
+ PRODUCT_CARD: {
114
+ RADIUS: {
115
+ KEY: string;
116
+ DEFAULT: string;
117
+ VALUES: {
118
+ label: string;
119
+ value: string;
120
+ }[];
121
+ };
122
+ SHADOW: {
123
+ KEY: string;
124
+ DEFAULT: string;
125
+ VALUES: {
126
+ label: string;
127
+ value: string;
128
+ }[];
129
+ };
130
+ PROPORTION: {
131
+ KEY: string;
132
+ DEFAULT: string;
133
+ VALUES: {
134
+ label: string;
135
+ value: string;
136
+ }[];
137
+ };
138
+ SHOW_BUTTON: {
139
+ KEY: string;
140
+ DEFAULT: string;
141
+ VALUES: string[];
142
+ };
143
+ };
144
+ BUTTON: {
145
+ RADIUS: {
146
+ KEY: string;
147
+ DEFAULT: string;
148
+ VALUES: {
149
+ label: string;
150
+ value: string;
151
+ }[];
152
+ };
153
+ };
154
+ BUY_BUTTON: {
155
+ LIGHT: {
156
+ COLOR: {
157
+ KEY: string;
158
+ DEFAULT: string;
159
+ };
160
+ };
161
+ DARK: {
162
+ COLOR: {
163
+ KEY: string;
164
+ DEFAULT: string;
165
+ };
166
+ };
167
+ };
168
+ LOGO: {
169
+ URL: {
170
+ DESKTOP: {
171
+ KEY: string;
172
+ };
173
+ MOBILE: {
174
+ KEY: string;
175
+ };
176
+ };
177
+ FILTER: {
178
+ HEADER: {
179
+ KEY: string;
180
+ DEFAULT: string;
181
+ VALUES: string[];
182
+ };
183
+ FOOTER: {
184
+ KEY: string;
185
+ DEFAULT: string;
186
+ VALUES: string[];
187
+ };
188
+ LOADING: {
189
+ KEY: string;
190
+ DEFAULT: string;
191
+ VALUES: string[];
192
+ };
193
+ };
194
+ TYPE: {
195
+ DESKTOP: {
196
+ KEY: string;
197
+ DEFAULT: string;
198
+ VALUES: string[];
199
+ };
200
+ MOBILE: {
201
+ KEY: string;
202
+ DEFAULT: string;
203
+ VALUES: string[];
204
+ };
205
+ };
206
+ SHAPE: {
207
+ RECTANGLE: {
208
+ TEXT: {
209
+ DESKTOP: {
210
+ KEY: string;
211
+ };
212
+ MOBILE: {
213
+ KEY: string;
214
+ };
215
+ };
216
+ };
217
+ SQUARE: {
218
+ TEXT: {
219
+ DESKTOP: {
220
+ KEY: string;
221
+ };
222
+ MOBILE: {
223
+ KEY: string;
224
+ };
225
+ };
226
+ };
227
+ };
228
+ };
229
+ FOOTER: {
230
+ LIGHT: {
231
+ COLOR: {
232
+ KEY: string;
233
+ DEFAULT: string;
234
+ };
235
+ };
236
+ /**
237
+ * Constante de configuração de aparência das páginas
238
+ */
239
+ DARK: {
240
+ COLOR: {
241
+ KEY: string;
242
+ DEFAULT: string;
243
+ };
244
+ };
245
+ };
246
+ HEADER: {
247
+ LIGHT: {
248
+ COLOR: {
249
+ KEY: string;
250
+ DEFAULT: string;
251
+ };
252
+ };
253
+ DARK: {
254
+ COLOR: {
255
+ KEY: string;
256
+ DEFAULT: string;
257
+ };
258
+ };
259
+ };
260
+ CART_BUTTON: {
261
+ LIGHT: {
262
+ COLOR: {
263
+ KEY: string;
264
+ DEFAULT: string;
265
+ };
266
+ };
267
+ DARK: {
268
+ COLOR: {
269
+ KEY: string;
270
+ DEFAULT: string;
271
+ };
272
+ };
273
+ };
274
+ };
275
+ export { APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_REFERENCE };
@@ -1,31 +1,31 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.APPEARANCE_REFERENCE = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = void 0;
7
- const pages_1 = require("./pages");
8
- const components_1 = require("./components");
9
- const reference_1 = __importDefault(require("./reference"));
10
- exports.APPEARANCE_REFERENCE = reference_1.default;
11
- /**
12
- * Constante de configuração de aparência das páginas
13
- */
14
- const APPEARANCE_PAGES = {
15
- HOME_PAGE: pages_1.HOME_PAGE,
16
- PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
17
- };
18
- exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
19
- /**
20
- * Constante de configuração de aparência dos componentes
21
- */
22
- const APPEARANCE_COMPONENTS = {
23
- PRODUCT_CARD: components_1.PRODUCT_CARD,
24
- BUTTON: components_1.BUTTON,
25
- BUY_BUTTON: components_1.BUY_BUTTON,
26
- LOGO: components_1.LOGO,
27
- FOOTER: components_1.FOOTER,
28
- HEADER: components_1.HEADER,
29
- CART_BUTTON: components_1.CART_BUTTON,
30
- };
31
- exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.APPEARANCE_REFERENCE = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = void 0;
7
+ const pages_1 = require("./pages");
8
+ const components_1 = require("./components");
9
+ const reference_1 = __importDefault(require("./reference"));
10
+ exports.APPEARANCE_REFERENCE = reference_1.default;
11
+ /**
12
+ * Constante de configuração de aparência das páginas
13
+ */
14
+ const APPEARANCE_PAGES = {
15
+ HOME_PAGE: pages_1.HOME_PAGE,
16
+ PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
17
+ };
18
+ exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
19
+ /**
20
+ * Constante de configuração de aparência dos componentes
21
+ */
22
+ const APPEARANCE_COMPONENTS = {
23
+ PRODUCT_CARD: components_1.PRODUCT_CARD,
24
+ BUTTON: components_1.BUTTON,
25
+ BUY_BUTTON: components_1.BUY_BUTTON,
26
+ LOGO: components_1.LOGO,
27
+ FOOTER: components_1.FOOTER,
28
+ HEADER: components_1.HEADER,
29
+ CART_BUTTON: components_1.CART_BUTTON,
30
+ };
31
+ exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;