mdz-enum 1.6.57 → 1.6.59

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 (44) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +33 -33
  3. package/dist/checkout/index.js +97 -97
  4. package/dist/commercial/index.d.ts +247 -247
  5. package/dist/commercial/index.js +607 -607
  6. package/dist/common/index.d.ts +71 -71
  7. package/dist/common/index.js +205 -205
  8. package/dist/config/index.d.ts +199 -192
  9. package/dist/config/index.js +573 -553
  10. package/dist/eva/index.d.ts +143 -143
  11. package/dist/eva/index.js +173 -173
  12. package/dist/finance/index.d.ts +240 -240
  13. package/dist/finance/index.js +728 -728
  14. package/dist/fiscal/index.d.ts +572 -572
  15. package/dist/fiscal/index.js +1484 -1484
  16. package/dist/functions.d.ts +11 -11
  17. package/dist/functions.js +74 -74
  18. package/dist/general/index.d.ts +265 -265
  19. package/dist/general/index.js +512 -512
  20. package/dist/home/index.d.ts +86 -86
  21. package/dist/home/index.js +262 -262
  22. package/dist/index.d.ts +16 -16
  23. package/dist/index.js +266 -265
  24. package/dist/integration/index.d.ts +37 -37
  25. package/dist/integration/index.js +109 -109
  26. package/dist/logistics/index.d.ts +174 -174
  27. package/dist/logistics/index.js +493 -493
  28. package/dist/marketplace/templates/components/index.d.ts +321 -321
  29. package/dist/marketplace/templates/components/index.js +347 -347
  30. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  31. package/dist/marketplace/templates/elements/index.js +35 -35
  32. package/dist/marketplace/templates/index.d.ts +540 -541
  33. package/dist/marketplace/templates/index.js +49 -49
  34. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  35. package/dist/marketplace/templates/pages/index.js +413 -413
  36. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  37. package/dist/marketplace/templates/reference/index.js +26 -26
  38. package/dist/people/index.d.ts +62 -62
  39. package/dist/people/index.js +180 -180
  40. package/dist/platform/index.d.ts +208 -208
  41. package/dist/platform/index.js +603 -603
  42. package/dist/reports/index.d.ts +96 -95
  43. package/dist/reports/index.js +281 -278
  44. package/package.json +33 -33
@@ -1,95 +1,96 @@
1
- export declare const TipoRelatorio: {
2
- Resumido: string;
3
- Detalhado: string;
4
- description(val: string): "enum not found" | "Resumido" | "Detalhado";
5
- };
6
- export declare const AgrupamentoRelatorio: {
7
- Cliente: string;
8
- Data: string;
9
- Produto: string;
10
- Documento: string;
11
- Vendedor: string;
12
- Categoria: string;
13
- Marca: string;
14
- Filial: string;
15
- PlanoConta: string;
16
- CentroCusto: string;
17
- Preco: string;
18
- Operacao: string;
19
- MeioPagamento: string;
20
- Fornecedor: string;
21
- OperadoraCartao: string;
22
- Colecao: string;
23
- Lote: string;
24
- Validade: string;
25
- 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" | "Operadora Cartão" | "Coleção" | "Lote" | "Validade";
26
- };
27
- export declare const AgrupamentoRelatoriosProdutos: {
28
- Produto: string;
29
- Categoria: string;
30
- Marca: string;
31
- UnidadeMedida: string;
32
- CenarioFiscal: string;
33
- NCM: string;
34
- Filial: string;
35
- EnderecoEstoque: string;
36
- InventarioP7: string;
37
- Lote: string;
38
- Validade: string;
39
- description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Filial" | "Lote" | "Validade" | "Unidade de Medida" | "Cenário Fiscal" | "NCM" | "Endereço de Estoque" | "Inventário P7";
40
- };
41
- export declare const TipoPreco: {
42
- Compra: string;
43
- CompraMedio: string;
44
- Custo: string;
45
- CustoMedio: string;
46
- Venda: string;
47
- VendaAtacado: string;
48
- description(val: string): "enum not found" | "Venda" | "Compra" | "Compra médio" | "Custo" | "Custo médio" | "Venda atacado";
49
- };
50
- export declare const AgrupamentoRelatorioPessoas: {
51
- Pessoa: string;
52
- Tipo: string;
53
- Classificacao: string;
54
- Cidade: string;
55
- Origem: string;
56
- description(val: string): "enum not found" | "Pessoa" | "Tipo" | "Classificação" | "Cidade" | "Origem";
57
- };
58
- export declare const SituacaoQtdEstoque: {
59
- Zerado: string;
60
- Negativo: string;
61
- Positivo: string;
62
- description(val: string): "enum not found" | "Negativo" | "Positivo" | "Zerado";
63
- };
64
- export declare const PrioridadeCompra: {
65
- Alta: string;
66
- Media: string;
67
- Baixa: string;
68
- description(val: string): "enum not found" | "Alta" | "Média" | "Baixa";
69
- };
70
- export declare const StatusCompra: {
71
- ComprarUrgente: string;
72
- Comprar: string;
73
- Atencao: string;
74
- Normal: string;
75
- RevisarDemanda: string;
76
- SemDemanda: string;
77
- Parado: string;
78
- Excesso: string;
79
- description(val: string): "enum not found" | "Normal" | "Comprar urgente" | "Comprar" | "Atenção" | "Revisar Demanda" | "Sem demanda" | "Parado" | "Excesso";
80
- };
81
- export declare const FaixaCobertura: {
82
- Critica: string;
83
- Baixa: string;
84
- Normal: string;
85
- Alta: string;
86
- Excesso: string;
87
- description(val: string): "enum not found" | "Normal" | "Alta" | "Baixa" | "Excesso" | "Crítica";
88
- };
89
- export declare const TendenciaDemanda: {
90
- Acelerando: string;
91
- Estavel: string;
92
- Desacelerando: string;
93
- SemDemanda: string;
94
- description(val: string): "enum not found" | "Sem demanda" | "Acelerando" | "Estável" | "Desacelerando";
95
- };
1
+ export declare const TipoRelatorio: {
2
+ Resumido: string;
3
+ Detalhado: string;
4
+ description(val: string): "enum not found" | "Resumido" | "Detalhado";
5
+ };
6
+ export declare const AgrupamentoRelatorio: {
7
+ Cliente: string;
8
+ Data: string;
9
+ Produto: string;
10
+ Documento: string;
11
+ Vendedor: string;
12
+ Categoria: string;
13
+ Marca: string;
14
+ Filial: string;
15
+ PlanoConta: string;
16
+ CentroCusto: string;
17
+ Preco: string;
18
+ Operacao: string;
19
+ MeioPagamento: string;
20
+ Fornecedor: string;
21
+ OperadoraCartao: string;
22
+ Colecao: string;
23
+ Lote: string;
24
+ Validade: string;
25
+ Objeto: string;
26
+ 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" | "Operadora Cartão" | "Coleção" | "Lote" | "Validade" | "Objeto";
27
+ };
28
+ export declare const AgrupamentoRelatoriosProdutos: {
29
+ Produto: string;
30
+ Categoria: string;
31
+ Marca: string;
32
+ UnidadeMedida: string;
33
+ CenarioFiscal: string;
34
+ NCM: string;
35
+ Filial: string;
36
+ EnderecoEstoque: string;
37
+ InventarioP7: string;
38
+ Lote: string;
39
+ Validade: string;
40
+ description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Filial" | "Lote" | "Validade" | "Unidade de Medida" | "Cenário Fiscal" | "NCM" | "Endereço de Estoque" | "Inventário P7";
41
+ };
42
+ export declare const TipoPreco: {
43
+ Compra: string;
44
+ CompraMedio: string;
45
+ Custo: string;
46
+ CustoMedio: string;
47
+ Venda: string;
48
+ VendaAtacado: string;
49
+ description(val: string): "enum not found" | "Venda" | "Compra" | "Compra médio" | "Custo" | "Custo médio" | "Venda atacado";
50
+ };
51
+ export declare const AgrupamentoRelatorioPessoas: {
52
+ Pessoa: string;
53
+ Tipo: string;
54
+ Classificacao: string;
55
+ Cidade: string;
56
+ Origem: string;
57
+ description(val: string): "enum not found" | "Pessoa" | "Tipo" | "Classificação" | "Cidade" | "Origem";
58
+ };
59
+ export declare const SituacaoQtdEstoque: {
60
+ Zerado: string;
61
+ Negativo: string;
62
+ Positivo: string;
63
+ description(val: string): "enum not found" | "Negativo" | "Positivo" | "Zerado";
64
+ };
65
+ export declare const PrioridadeCompra: {
66
+ Alta: string;
67
+ Media: string;
68
+ Baixa: string;
69
+ description(val: string): "enum not found" | "Alta" | "Média" | "Baixa";
70
+ };
71
+ export declare const StatusCompra: {
72
+ ComprarUrgente: string;
73
+ Comprar: string;
74
+ Atencao: string;
75
+ Normal: string;
76
+ RevisarDemanda: string;
77
+ SemDemanda: string;
78
+ Parado: string;
79
+ Excesso: string;
80
+ description(val: string): "enum not found" | "Normal" | "Comprar urgente" | "Comprar" | "Atenção" | "Revisar Demanda" | "Sem demanda" | "Parado" | "Excesso";
81
+ };
82
+ export declare const FaixaCobertura: {
83
+ Critica: string;
84
+ Baixa: string;
85
+ Normal: string;
86
+ Alta: string;
87
+ Excesso: string;
88
+ description(val: string): "enum not found" | "Normal" | "Alta" | "Baixa" | "Excesso" | "Crítica";
89
+ };
90
+ export declare const TendenciaDemanda: {
91
+ Acelerando: string;
92
+ Estavel: string;
93
+ Desacelerando: string;
94
+ SemDemanda: string;
95
+ description(val: string): "enum not found" | "Sem demanda" | "Acelerando" | "Estável" | "Desacelerando";
96
+ };