mdz-enum 1.5.3 → 1.5.5

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 +462 -461
  12. package/dist/fiscal/index.js +1159 -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 -202
  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 -184
  34. package/dist/platform/index.js +534 -534
  35. package/dist/reports/index.d.ts +46 -46
  36. package/dist/reports/index.js +136 -136
  37. package/package.json +1 -1
@@ -1,290 +1,290 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PRODUCT_PAGE = exports.HOME_PAGE = void 0;
4
- const DEFAULT_ICON_SIZE = 32;
5
- /** Referencia da aparencia na pagina inicial */
6
- const HOME_PAGE = {
7
- ID: 1,
8
- /**
9
- * Blocos disponiveis na pagina
10
- */
11
- ORDER: {
12
- KEY: 'home_page_blocks',
13
- DEFAULT: '1,3,4,5,6,11',
14
- },
15
- HOME_PAGE_CATEGORY: {
16
- KEY: 'home_page_categories',
17
- DEFAULT: '',
18
- },
19
- HOME_PAGE_CATEGORY_TITLE: {
20
- KEY: 'home_page_categories_title',
21
- DEFAULT: '',
22
- },
23
- HOME_PAGE_BRANDS: {
24
- KEY: 'home_page_brands',
25
- DEFAULT: '',
26
- },
27
- HOME_PAGE_BRANDS_TITLE: {
28
- KEY: 'home_page_brands_title',
29
- DEFAULT: '',
30
- },
31
- /**
32
- * Produtos selecionados (1)
33
- */
34
- HOME_PAGE_SELECTED_PRODUCTS_ONE: {
35
- KEY: 'home_page_selected_one_products',
36
- DEFAULT: '',
37
- },
38
- HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
39
- KEY: 'home_page_selected_products_one_title',
40
- DEFAULT: '',
41
- },
42
- /**
43
- * Produtos selecionados (2)
44
- */
45
- HOME_PAGE_SELECTED_PRODUCTS_TWO: {
46
- KEY: 'home_page_selected_two_products',
47
- DEFAULT: '',
48
- },
49
- HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
50
- KEY: 'home_page_selected_products_two_title',
51
- DEFAULT: '',
52
- },
53
- /**
54
- * Produtos em destaque
55
- */
56
- HOME_PAGE_FEATURED_PRODUCTS: {
57
- KEY: 'home_page_featured_products',
58
- DEFAULT: '',
59
- },
60
- BLOCKS: [
61
- {
62
- id: 1,
63
- name: 'Banners principais',
64
- icon: { type: 'FaImages', size: DEFAULT_ICON_SIZE },
65
- enabled: true,
66
- immutable: true,
67
- configurable: true,
68
- badge: null,
69
- },
70
- {
71
- id: 2,
72
- name: 'Categorias selecionadas',
73
- icon: {
74
- type: 'Fatypes',
75
- size: DEFAULT_ICON_SIZE,
76
- },
77
- enabled: true,
78
- immutable: false,
79
- configurable: true,
80
- badge: {
81
- color: 'success',
82
- text: 'Novo',
83
- },
84
- },
85
- {
86
- id: 3,
87
- name: 'Produtos em promoção',
88
- icon: {
89
- type: 'FaBagShopping',
90
- size: DEFAULT_ICON_SIZE,
91
- },
92
- enabled: true,
93
- immutable: false,
94
- configurable: false,
95
- badge: null,
96
- },
97
- {
98
- id: 4,
99
- name: 'Últimos lançamentos',
100
- icon: {
101
- type: 'FaBagShopping',
102
- size: DEFAULT_ICON_SIZE,
103
- },
104
- enabled: true,
105
- immutable: false,
106
- configurable: false,
107
- badge: null,
108
- },
109
- {
110
- id: 5,
111
- name: 'Produtos mais vendidos',
112
- icon: {
113
- type: 'FaBagShopping',
114
- size: DEFAULT_ICON_SIZE,
115
- },
116
- enabled: false,
117
- immutable: false,
118
- configurable: false,
119
- badge: {
120
- color: 'info',
121
- text: 'Em breve',
122
- },
123
- },
124
- {
125
- id: 6,
126
- name: 'Produtos mais vistos',
127
- icon: {
128
- type: 'FaBagShopping',
129
- size: DEFAULT_ICON_SIZE,
130
- },
131
- enabled: false,
132
- immutable: false,
133
- configurable: false,
134
- badge: {
135
- color: 'info',
136
- text: 'Em breve',
137
- },
138
- },
139
- {
140
- id: 7,
141
- name: 'Produtos selecionados (1)',
142
- icon: {
143
- type: 'FaBagShopping',
144
- size: DEFAULT_ICON_SIZE,
145
- },
146
- enabled: true,
147
- immutable: false,
148
- configurable: true,
149
- badge: {
150
- color: 'success',
151
- text: 'Novo',
152
- },
153
- },
154
- {
155
- id: 8,
156
- name: 'Banners personalizados',
157
- icon: {
158
- type: 'FaImages',
159
- size: DEFAULT_ICON_SIZE,
160
- },
161
- enabled: false,
162
- immutable: false,
163
- configurable: true,
164
- badge: {
165
- color: 'info',
166
- text: 'Em breve',
167
- },
168
- },
169
- {
170
- id: 9,
171
- name: 'Marcas selecionadas',
172
- icon: {
173
- type: 'Fatypes',
174
- size: DEFAULT_ICON_SIZE,
175
- },
176
- enabled: true,
177
- immutable: false,
178
- configurable: true,
179
- badge: {
180
- color: 'success',
181
- text: 'Novo',
182
- },
183
- },
184
- {
185
- id: 10,
186
- name: 'Produtos selecionados (2)',
187
- icon: {
188
- type: 'FaBagShopping',
189
- size: DEFAULT_ICON_SIZE,
190
- },
191
- enabled: true,
192
- immutable: false,
193
- configurable: true,
194
- badge: {
195
- color: 'success',
196
- text: 'Novo',
197
- },
198
- },
199
- {
200
- id: 11,
201
- name: 'Produtos em destaque',
202
- icon: {
203
- type: 'FaBagShopping',
204
- size: DEFAULT_ICON_SIZE,
205
- },
206
- enabled: true,
207
- immutable: false,
208
- configurable: false,
209
- badge: {
210
- color: 'success',
211
- text: 'Novo',
212
- },
213
- },
214
- ],
215
- };
216
- exports.HOME_PAGE = HOME_PAGE;
217
- /**
218
- * Referencia da aparencia na pagina de produto
219
- */
220
- const PRODUCT_PAGE = {
221
- ID: 2,
222
- /**
223
- * Blocos disponiveis na pagina
224
- */
225
- ORDER: {
226
- KEY: 'product_page_blocks',
227
- DEFAULT: '1,2,3,4,5',
228
- },
229
- BLOCKS: [
230
- {
231
- id: 1,
232
- name: 'Detalhes do produto',
233
- icon: {
234
- type: 'FaTag',
235
- size: DEFAULT_ICON_SIZE,
236
- },
237
- enabled: true,
238
- immutable: true,
239
- badge: null,
240
- },
241
- {
242
- id: 2,
243
- name: 'Descrição do produto',
244
- icon: {
245
- type: 'Fatypes',
246
- size: DEFAULT_ICON_SIZE,
247
- },
248
- enabled: true,
249
- immutable: false,
250
- badge: null,
251
- },
252
- {
253
- id: 3,
254
- name: 'Garantia do produto',
255
- icon: {
256
- type: 'FaTimeline',
257
- size: DEFAULT_ICON_SIZE,
258
- },
259
- enabled: true,
260
- immutable: false,
261
- badge: null,
262
- },
263
- {
264
- id: 4,
265
- name: 'Produtos relacionados',
266
- icon: {
267
- type: 'FaBagShopping',
268
- size: DEFAULT_ICON_SIZE,
269
- },
270
- enabled: true,
271
- immutable: false,
272
- badge: null,
273
- },
274
- {
275
- id: 5,
276
- name: 'Banners personalizados',
277
- icon: {
278
- type: 'FaImages',
279
- size: DEFAULT_ICON_SIZE,
280
- },
281
- enabled: false,
282
- immutable: false,
283
- badge: {
284
- color: 'info',
285
- text: 'Em breve',
286
- },
287
- },
288
- ],
289
- };
290
- exports.PRODUCT_PAGE = PRODUCT_PAGE;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PRODUCT_PAGE = exports.HOME_PAGE = void 0;
4
+ const DEFAULT_ICON_SIZE = 32;
5
+ /** Referencia da aparencia na pagina inicial */
6
+ const HOME_PAGE = {
7
+ ID: 1,
8
+ /**
9
+ * Blocos disponiveis na pagina
10
+ */
11
+ ORDER: {
12
+ KEY: 'home_page_blocks',
13
+ DEFAULT: '1,3,4,5,6,11',
14
+ },
15
+ HOME_PAGE_CATEGORY: {
16
+ KEY: 'home_page_categories',
17
+ DEFAULT: '',
18
+ },
19
+ HOME_PAGE_CATEGORY_TITLE: {
20
+ KEY: 'home_page_categories_title',
21
+ DEFAULT: '',
22
+ },
23
+ HOME_PAGE_BRANDS: {
24
+ KEY: 'home_page_brands',
25
+ DEFAULT: '',
26
+ },
27
+ HOME_PAGE_BRANDS_TITLE: {
28
+ KEY: 'home_page_brands_title',
29
+ DEFAULT: '',
30
+ },
31
+ /**
32
+ * Produtos selecionados (1)
33
+ */
34
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
35
+ KEY: 'home_page_selected_one_products',
36
+ DEFAULT: '',
37
+ },
38
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
39
+ KEY: 'home_page_selected_products_one_title',
40
+ DEFAULT: '',
41
+ },
42
+ /**
43
+ * Produtos selecionados (2)
44
+ */
45
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
46
+ KEY: 'home_page_selected_two_products',
47
+ DEFAULT: '',
48
+ },
49
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
50
+ KEY: 'home_page_selected_products_two_title',
51
+ DEFAULT: '',
52
+ },
53
+ /**
54
+ * Produtos em destaque
55
+ */
56
+ HOME_PAGE_FEATURED_PRODUCTS: {
57
+ KEY: 'home_page_featured_products',
58
+ DEFAULT: '',
59
+ },
60
+ BLOCKS: [
61
+ {
62
+ id: 1,
63
+ name: 'Banners principais',
64
+ icon: { type: 'FaImages', size: DEFAULT_ICON_SIZE },
65
+ enabled: true,
66
+ immutable: true,
67
+ configurable: true,
68
+ badge: null,
69
+ },
70
+ {
71
+ id: 2,
72
+ name: 'Categorias selecionadas',
73
+ icon: {
74
+ type: 'Fatypes',
75
+ size: DEFAULT_ICON_SIZE,
76
+ },
77
+ enabled: true,
78
+ immutable: false,
79
+ configurable: true,
80
+ badge: {
81
+ color: 'success',
82
+ text: 'Novo',
83
+ },
84
+ },
85
+ {
86
+ id: 3,
87
+ name: 'Produtos em promoção',
88
+ icon: {
89
+ type: 'FaBagShopping',
90
+ size: DEFAULT_ICON_SIZE,
91
+ },
92
+ enabled: true,
93
+ immutable: false,
94
+ configurable: false,
95
+ badge: null,
96
+ },
97
+ {
98
+ id: 4,
99
+ name: 'Últimos lançamentos',
100
+ icon: {
101
+ type: 'FaBagShopping',
102
+ size: DEFAULT_ICON_SIZE,
103
+ },
104
+ enabled: true,
105
+ immutable: false,
106
+ configurable: false,
107
+ badge: null,
108
+ },
109
+ {
110
+ id: 5,
111
+ name: 'Produtos mais vendidos',
112
+ icon: {
113
+ type: 'FaBagShopping',
114
+ size: DEFAULT_ICON_SIZE,
115
+ },
116
+ enabled: false,
117
+ immutable: false,
118
+ configurable: false,
119
+ badge: {
120
+ color: 'info',
121
+ text: 'Em breve',
122
+ },
123
+ },
124
+ {
125
+ id: 6,
126
+ name: 'Produtos mais vistos',
127
+ icon: {
128
+ type: 'FaBagShopping',
129
+ size: DEFAULT_ICON_SIZE,
130
+ },
131
+ enabled: false,
132
+ immutable: false,
133
+ configurable: false,
134
+ badge: {
135
+ color: 'info',
136
+ text: 'Em breve',
137
+ },
138
+ },
139
+ {
140
+ id: 7,
141
+ name: 'Produtos selecionados (1)',
142
+ icon: {
143
+ type: 'FaBagShopping',
144
+ size: DEFAULT_ICON_SIZE,
145
+ },
146
+ enabled: true,
147
+ immutable: false,
148
+ configurable: true,
149
+ badge: {
150
+ color: 'success',
151
+ text: 'Novo',
152
+ },
153
+ },
154
+ {
155
+ id: 8,
156
+ name: 'Banners personalizados',
157
+ icon: {
158
+ type: 'FaImages',
159
+ size: DEFAULT_ICON_SIZE,
160
+ },
161
+ enabled: false,
162
+ immutable: false,
163
+ configurable: true,
164
+ badge: {
165
+ color: 'info',
166
+ text: 'Em breve',
167
+ },
168
+ },
169
+ {
170
+ id: 9,
171
+ name: 'Marcas selecionadas',
172
+ icon: {
173
+ type: 'Fatypes',
174
+ size: DEFAULT_ICON_SIZE,
175
+ },
176
+ enabled: true,
177
+ immutable: false,
178
+ configurable: true,
179
+ badge: {
180
+ color: 'success',
181
+ text: 'Novo',
182
+ },
183
+ },
184
+ {
185
+ id: 10,
186
+ name: 'Produtos selecionados (2)',
187
+ icon: {
188
+ type: 'FaBagShopping',
189
+ size: DEFAULT_ICON_SIZE,
190
+ },
191
+ enabled: true,
192
+ immutable: false,
193
+ configurable: true,
194
+ badge: {
195
+ color: 'success',
196
+ text: 'Novo',
197
+ },
198
+ },
199
+ {
200
+ id: 11,
201
+ name: 'Produtos em destaque',
202
+ icon: {
203
+ type: 'FaBagShopping',
204
+ size: DEFAULT_ICON_SIZE,
205
+ },
206
+ enabled: true,
207
+ immutable: false,
208
+ configurable: false,
209
+ badge: {
210
+ color: 'success',
211
+ text: 'Novo',
212
+ },
213
+ },
214
+ ],
215
+ };
216
+ exports.HOME_PAGE = HOME_PAGE;
217
+ /**
218
+ * Referencia da aparencia na pagina de produto
219
+ */
220
+ const PRODUCT_PAGE = {
221
+ ID: 2,
222
+ /**
223
+ * Blocos disponiveis na pagina
224
+ */
225
+ ORDER: {
226
+ KEY: 'product_page_blocks',
227
+ DEFAULT: '1,2,3,4,5',
228
+ },
229
+ BLOCKS: [
230
+ {
231
+ id: 1,
232
+ name: 'Detalhes do produto',
233
+ icon: {
234
+ type: 'FaTag',
235
+ size: DEFAULT_ICON_SIZE,
236
+ },
237
+ enabled: true,
238
+ immutable: true,
239
+ badge: null,
240
+ },
241
+ {
242
+ id: 2,
243
+ name: 'Descrição do produto',
244
+ icon: {
245
+ type: 'Fatypes',
246
+ size: DEFAULT_ICON_SIZE,
247
+ },
248
+ enabled: true,
249
+ immutable: false,
250
+ badge: null,
251
+ },
252
+ {
253
+ id: 3,
254
+ name: 'Garantia do produto',
255
+ icon: {
256
+ type: 'FaTimeline',
257
+ size: DEFAULT_ICON_SIZE,
258
+ },
259
+ enabled: true,
260
+ immutable: false,
261
+ badge: null,
262
+ },
263
+ {
264
+ id: 4,
265
+ name: 'Produtos relacionados',
266
+ icon: {
267
+ type: 'FaBagShopping',
268
+ size: DEFAULT_ICON_SIZE,
269
+ },
270
+ enabled: true,
271
+ immutable: false,
272
+ badge: null,
273
+ },
274
+ {
275
+ id: 5,
276
+ name: 'Banners personalizados',
277
+ icon: {
278
+ type: 'FaImages',
279
+ size: DEFAULT_ICON_SIZE,
280
+ },
281
+ enabled: false,
282
+ immutable: false,
283
+ badge: {
284
+ color: 'info',
285
+ text: 'Em breve',
286
+ },
287
+ },
288
+ ],
289
+ };
290
+ exports.PRODUCT_PAGE = PRODUCT_PAGE;
@@ -1,16 +1,16 @@
1
- /**
2
- * Referencia de configuracao da aparencia
3
- */
4
- declare const APPEARANCE_REFERENCE: {
5
- /** Cor primaria */
6
- PRIMARY_COLOR: {
7
- KEY: string;
8
- DEFAULT: string;
9
- };
10
- /** Cor secundaria */
11
- SECONDARY_COLOR: {
12
- KEY: string;
13
- DEFAULT: string;
14
- };
15
- };
16
- export default APPEARANCE_REFERENCE;
1
+ /**
2
+ * Referencia de configuracao da aparencia
3
+ */
4
+ declare const APPEARANCE_REFERENCE: {
5
+ /** Cor primaria */
6
+ PRIMARY_COLOR: {
7
+ KEY: string;
8
+ DEFAULT: string;
9
+ };
10
+ /** Cor secundaria */
11
+ SECONDARY_COLOR: {
12
+ KEY: string;
13
+ DEFAULT: string;
14
+ };
15
+ };
16
+ export default APPEARANCE_REFERENCE;
@@ -1,18 +1,18 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- /**
4
- * Referencia de configuracao da aparencia
5
- */
6
- const APPEARANCE_REFERENCE = {
7
- /** Cor primaria */
8
- PRIMARY_COLOR: {
9
- KEY: 'color_primary',
10
- DEFAULT: '#624495',
11
- },
12
- /** Cor secundaria */
13
- SECONDARY_COLOR: {
14
- KEY: 'color_secondary',
15
- DEFAULT: '#000000',
16
- },
17
- };
18
- exports.default = APPEARANCE_REFERENCE;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ /**
4
+ * Referencia de configuracao da aparencia
5
+ */
6
+ const APPEARANCE_REFERENCE = {
7
+ /** Cor primaria */
8
+ PRIMARY_COLOR: {
9
+ KEY: 'color_primary',
10
+ DEFAULT: '#624495',
11
+ },
12
+ /** Cor secundaria */
13
+ SECONDARY_COLOR: {
14
+ KEY: 'color_secondary',
15
+ DEFAULT: '#000000',
16
+ },
17
+ };
18
+ exports.default = APPEARANCE_REFERENCE;