mdz-enum 1.5.59 → 1.5.61

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.
@@ -170,8 +170,9 @@ export declare const ModeloNotaFiscal: {
170
170
  NFe: string;
171
171
  NFCe: string;
172
172
  SAT: string;
173
- description(val: string): "enum not found" | "Pré Venda" | "Nota Fiscal de produtor rural" | "Nota Fiscal Eletrônica" | "Nota Fiscal de Consumidor Eletrônica" | "SAT";
174
- shortDescription(val: string): "enum not found" | "SAT" | "PV" | "NFP" | "NFe" | "NFCe";
173
+ NFSR: string;
174
+ description(val: string): "enum not found" | "Pré Venda" | "Nota Fiscal de produtor rural" | "Nota Fiscal Eletrônica" | "Nota Fiscal de Consumidor Eletrônica" | "SAT" | "Nota Fiscal de Serviço Registro";
175
+ shortDescription(val: string): "enum not found" | "SAT" | "PV" | "NFP" | "NFe" | "NFCe" | "NFSR";
175
176
  };
176
177
  export declare const IdentificadorLocalDestino: {
177
178
  OperacaoInterna: string;
@@ -497,6 +497,7 @@ exports.ModeloNotaFiscal = {
497
497
  NFe: '55',
498
498
  NFCe: '65',
499
499
  SAT: '59',
500
+ NFSR: '97',
500
501
  description(val) {
501
502
  switch (val) {
502
503
  case this.PreVenda:
@@ -509,6 +510,8 @@ exports.ModeloNotaFiscal = {
509
510
  return 'Nota Fiscal de Consumidor Eletrônica';
510
511
  case this.SAT:
511
512
  return 'SAT';
513
+ case this.NFSR:
514
+ return 'Nota Fiscal de Serviço Registro';
512
515
  default:
513
516
  return 'enum not found';
514
517
  }
@@ -525,6 +528,8 @@ exports.ModeloNotaFiscal = {
525
528
  return 'NFCe';
526
529
  case this.SAT:
527
530
  return 'SAT';
531
+ case this.NFSR:
532
+ return 'NFSR';
528
533
  default:
529
534
  return 'enum not found';
530
535
  }
@@ -258,7 +258,10 @@ declare const BANNERS_ASPECT_RATIO: {
258
258
  * Referencia para faixa de destaque na home.
259
259
  */
260
260
  declare const HOME_PAGE_HIGHLIGHT: {
261
- ENABLED: boolean;
261
+ ENABLED: {
262
+ KEY: string;
263
+ DEFAULT: boolean;
264
+ };
262
265
  LIGHT: {
263
266
  BACKGROUND_COLOR: {
264
267
  KEY: string;
@@ -276,7 +276,10 @@ exports.BANNERS_ASPECT_RATIO = BANNERS_ASPECT_RATIO;
276
276
  * Referencia para faixa de destaque na home.
277
277
  */
278
278
  const HOME_PAGE_HIGHLIGHT = {
279
- ENABLED: false,
279
+ ENABLED: {
280
+ KEY: 'component_highlight_enabled',
281
+ DEFAULT: false,
282
+ },
280
283
  LIGHT: {
281
284
  BACKGROUND_COLOR: {
282
285
  KEY: 'component_highlight_color_light',
@@ -348,7 +348,10 @@ declare const APPEARANCE_COMPONENTS: {
348
348
  VALUES: string[];
349
349
  };
350
350
  HOME_PAGE_HIGHLIGHT: {
351
- ENABLED: boolean;
351
+ ENABLED: {
352
+ KEY: string;
353
+ DEFAULT: boolean;
354
+ };
352
355
  LIGHT: {
353
356
  BACKGROUND_COLOR: {
354
357
  KEY: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.59",
3
+ "version": "1.5.61",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {