mdz-enum 1.5.69 → 1.5.71

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.
@@ -24,7 +24,11 @@ export declare const OrigemPedido: {
24
24
  Ecommerce: string;
25
25
  MercadoLivre: string;
26
26
  PDV: string;
27
- description(val: string): "enum not found" | "PDV" | "Erp" | "Ecommerce" | "Mercado Livre";
27
+ Tray: string;
28
+ MagazineLuiza: string;
29
+ Amazon: string;
30
+ Shopee: string;
31
+ description(val: string): "enum not found" | "PDV" | "Erp" | "Ecommerce" | "Mercado Livre" | "Tray" | "Magazine Luiza" | "Amazon" | "Shopee";
28
32
  };
29
33
  export declare const TipoFrete: {
30
34
  ContratacaoContaRemetente: string;
@@ -68,6 +68,10 @@ exports.OrigemPedido = {
68
68
  Ecommerce: '1',
69
69
  MercadoLivre: '2',
70
70
  PDV: '3',
71
+ Tray: '4',
72
+ MagazineLuiza: '5',
73
+ Amazon: '6',
74
+ Shopee: '7',
71
75
  description(val) {
72
76
  switch (val) {
73
77
  case this.Erp:
@@ -78,6 +82,14 @@ exports.OrigemPedido = {
78
82
  return 'Mercado Livre';
79
83
  case this.PDV:
80
84
  return 'PDV';
85
+ case this.Tray:
86
+ return 'Tray';
87
+ case this.MagazineLuiza:
88
+ return 'Magazine Luiza';
89
+ case this.Amazon:
90
+ return 'Amazon';
91
+ case this.Shopee:
92
+ return 'Shopee';
81
93
  default:
82
94
  return 'enum not found';
83
95
  }
@@ -17,7 +17,8 @@ export declare const AgrupamentoRelatorio: {
17
17
  Preco: string;
18
18
  Operacao: string;
19
19
  MeioPagamento: string;
20
- description(val: string): "Vendedor" | "enum not found" | "Produto" | "Cliente" | "Data" | "Operação" | "Marca" | "Documento" | "Categoria" | "Filial" | "Plano de Contas" | "Centro de Custo" | "Preço" | "Meio de Pagamento";
20
+ Fornecedor: string;
21
+ description(val: string): "Vendedor" | "enum not found" | "Produto" | "Cliente" | "Data" | "Operação" | "Marca" | "Fornecedor" | "Documento" | "Categoria" | "Filial" | "Plano de Contas" | "Centro de Custo" | "Preço" | "Meio de Pagamento";
21
22
  };
22
23
  export declare const AgrupamentoRelatoriosProdutos: {
23
24
  Produto: string;
@@ -29,6 +29,7 @@ exports.AgrupamentoRelatorio = {
29
29
  Preco: '11',
30
30
  Operacao: '12',
31
31
  MeioPagamento: '13',
32
+ Fornecedor: '14',
32
33
  description(val) {
33
34
  switch (val) {
34
35
  case this.Cliente:
@@ -57,6 +58,8 @@ exports.AgrupamentoRelatorio = {
57
58
  return 'Operação';
58
59
  case this.MeioPagamento:
59
60
  return 'Meio de Pagamento';
61
+ case this.Fornecedor:
62
+ return 'Fornecedor';
60
63
  default:
61
64
  return 'enum not found';
62
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.69",
3
+ "version": "1.5.71",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {