mdz-enum 1.5.33 → 1.5.35

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.
@@ -108,7 +108,8 @@ export declare const TipoImportacao: {
108
108
  Estoque: string;
109
109
  CodigoBarras: string;
110
110
  Grade: string;
111
- description(val: string): "enum not found" | "Produto" | "Pessoa" | "Estoque" | "Código de Barras" | "Grade";
111
+ DocumentoFinanceiro: string;
112
+ description(val: string): "enum not found" | "Produto" | "Pessoa" | "Estoque" | "Código de Barras" | "Grade" | "Documento Financeiro";
112
113
  };
113
114
  export declare const ModeloImportacao: {
114
115
  Importacao: string;
@@ -303,6 +303,7 @@ exports.TipoImportacao = {
303
303
  Estoque: '3',
304
304
  CodigoBarras: '4',
305
305
  Grade: '5',
306
+ DocumentoFinanceiro: '6',
306
307
  description(val) {
307
308
  switch (val) {
308
309
  case this.Produto:
@@ -315,6 +316,8 @@ exports.TipoImportacao = {
315
316
  return 'Código de Barras';
316
317
  case this.Grade:
317
318
  return 'Grade';
319
+ case this.DocumentoFinanceiro:
320
+ return 'Documento Financeiro';
318
321
  default:
319
322
  return 'enum not found';
320
323
  }
@@ -128,7 +128,7 @@ const PRODUCT_CARD = {
128
128
  /** Proporcao */
129
129
  PROPORTION: {
130
130
  KEY: 'component_product_card_proportion',
131
- DEFAULT: '4/4',
131
+ DEFAULT: '3/4',
132
132
  VALUES: [
133
133
  { label: '4/4', value: '4/4' },
134
134
  { label: '3/4', value: '3/4' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.33",
3
+ "version": "1.5.35",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {