mdz-enum 1.5.90 → 1.5.91

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.
@@ -167,8 +167,9 @@ declare const APPEARANCE_PAGES: {
167
167
  WARRANTY: number;
168
168
  RELATED: number;
169
169
  BANNERS: number;
170
+ ATTRIBUTES: number;
170
171
  };
171
- BLOCKS: ({
172
+ BLOCKS: {
172
173
  id: number;
173
174
  name: string;
174
175
  icon: {
@@ -178,20 +179,7 @@ declare const APPEARANCE_PAGES: {
178
179
  enabled: boolean;
179
180
  immutable: boolean;
180
181
  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
- })[];
182
+ }[];
195
183
  };
196
184
  };
197
185
  /**
@@ -178,8 +178,9 @@ declare const PRODUCT_PAGE: {
178
178
  WARRANTY: number;
179
179
  RELATED: number;
180
180
  BANNERS: number;
181
+ ATTRIBUTES: number;
181
182
  };
182
- BLOCKS: ({
183
+ BLOCKS: {
183
184
  id: number;
184
185
  name: string;
185
186
  icon: {
@@ -189,19 +190,6 @@ declare const PRODUCT_PAGE: {
189
190
  enabled: boolean;
190
191
  immutable: boolean;
191
192
  badge: null;
192
- } | {
193
- id: number;
194
- name: string;
195
- icon: {
196
- type: string;
197
- size: number;
198
- };
199
- enabled: boolean;
200
- immutable: boolean;
201
- badge: {
202
- color: string;
203
- text: string;
204
- };
205
- })[];
193
+ }[];
206
194
  };
207
195
  export { HOME_PAGE, PRODUCT_PAGE };
@@ -318,6 +318,7 @@ const PRODUCT_PAGE = {
318
318
  WARRANTY: 3,
319
319
  RELATED: 4,
320
320
  BANNERS: 5,
321
+ ATTRIBUTES: 6,
321
322
  },
322
323
  BLOCKS: [
323
324
  {
@@ -364,20 +365,20 @@ const PRODUCT_PAGE = {
364
365
  immutable: false,
365
366
  badge: null,
366
367
  },
367
- {
368
- id: 5,
369
- name: 'Banners personalizados',
370
- icon: {
371
- type: 'FaImages',
372
- size: DEFAULT_ICON_SIZE,
373
- },
374
- enabled: false,
375
- immutable: false,
376
- badge: {
377
- color: 'info',
378
- text: 'Em breve',
379
- },
380
- },
368
+ // {
369
+ // id: 5,
370
+ // name: 'Banners personalizados',
371
+ // icon: {
372
+ // type: 'FaImages',
373
+ // size: DEFAULT_ICON_SIZE,
374
+ // },
375
+ // enabled: false,
376
+ // immutable: false,
377
+ // badge: {
378
+ // color: 'info',
379
+ // text: 'Em breve',
380
+ // },
381
+ // },
381
382
  {
382
383
  id: 6,
383
384
  name: 'Atributos do produto',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.90",
3
+ "version": "1.5.91",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {