mdz-enum 1.6.8 → 1.6.10

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 (40) 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 +237 -237
  5. package/dist/commercial/index.js +578 -578
  6. package/dist/common/index.d.ts +59 -59
  7. package/dist/common/index.js +171 -171
  8. package/dist/config/index.d.ts +181 -179
  9. package/dist/config/index.js +522 -516
  10. package/dist/finance/index.d.ts +177 -177
  11. package/dist/finance/index.js +462 -462
  12. package/dist/fiscal/index.d.ts +493 -493
  13. package/dist/fiscal/index.js +1227 -1227
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +265 -265
  17. package/dist/general/index.js +512 -512
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +229 -229
  20. package/dist/integration/index.d.ts +27 -27
  21. package/dist/integration/index.js +80 -80
  22. package/dist/logistics/index.d.ts +135 -135
  23. package/dist/logistics/index.js +390 -390
  24. package/dist/marketplace/templates/components/index.d.ts +285 -285
  25. package/dist/marketplace/templates/components/index.js +305 -305
  26. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  27. package/dist/marketplace/templates/elements/index.js +35 -35
  28. package/dist/marketplace/templates/index.d.ts +502 -502
  29. package/dist/marketplace/templates/index.js +45 -45
  30. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  31. package/dist/marketplace/templates/pages/index.js +413 -413
  32. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  33. package/dist/marketplace/templates/reference/index.js +26 -26
  34. package/dist/people/index.d.ts +50 -50
  35. package/dist/people/index.js +145 -145
  36. package/dist/platform/index.d.ts +205 -205
  37. package/dist/platform/index.js +594 -594
  38. package/dist/reports/index.d.ts +89 -89
  39. package/dist/reports/index.js +260 -260
  40. package/package.json +33 -33
@@ -1,89 +1,89 @@
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
- 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";
23
- };
24
- export declare const AgrupamentoRelatoriosProdutos: {
25
- Produto: string;
26
- Categoria: string;
27
- Marca: string;
28
- UnidadeMedida: string;
29
- CenarioFiscal: string;
30
- NCM: string;
31
- Filial: string;
32
- EnderecoEstoque: string;
33
- InventarioP7: string;
34
- description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Filial" | "Unidade de Medida" | "Cenário Fiscal" | "NCM" | "Endereço de Estoque" | "Inventário P7";
35
- };
36
- export declare const TipoPreco: {
37
- Compra: string;
38
- CompraMedio: string;
39
- Custo: string;
40
- CustoMedio: string;
41
- Venda: string;
42
- VendaAtacado: string;
43
- description(val: string): "enum not found" | "Venda" | "Compra" | "Compra médio" | "Custo" | "Custo médio" | "Venda atacado";
44
- };
45
- export declare const AgrupamentoRelatorioPessoas: {
46
- Pessoa: string;
47
- Tipo: string;
48
- Classificacao: string;
49
- Cidade: string;
50
- description(val: string): "enum not found" | "Pessoa" | "Tipo" | "Classificação" | "Cidade";
51
- };
52
- export declare const SituacaoQtdEstoque: {
53
- Zerado: string;
54
- Negativo: string;
55
- Positivo: string;
56
- description(val: string): "enum not found" | "Negativo" | "Positivo" | "Zerado";
57
- };
58
- export declare const PrioridadeCompra: {
59
- Alta: string;
60
- Media: string;
61
- Baixa: string;
62
- description(val: string): "enum not found" | "Alta" | "Média" | "Baixa";
63
- };
64
- export declare const StatusCompra: {
65
- ComprarUrgente: string;
66
- Comprar: string;
67
- Atencao: string;
68
- Normal: string;
69
- RevisarDemanda: string;
70
- SemDemanda: string;
71
- Parado: string;
72
- Excesso: string;
73
- description(val: string): "enum not found" | "Normal" | "Comprar urgente" | "Comprar" | "Atenção" | "Revisar Demanda" | "Sem demanda" | "Parado" | "Excesso";
74
- };
75
- export declare const FaixaCobertura: {
76
- Critica: string;
77
- Baixa: string;
78
- Normal: string;
79
- Alta: string;
80
- Excesso: string;
81
- description(val: string): "enum not found" | "Normal" | "Alta" | "Baixa" | "Excesso" | "Crítica";
82
- };
83
- export declare const TendenciaDemanda: {
84
- Acelerando: string;
85
- Estavel: string;
86
- Desacelerando: string;
87
- SemDemanda: string;
88
- description(val: string): "enum not found" | "Sem demanda" | "Acelerando" | "Estável" | "Desacelerando";
89
- };
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
+ 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";
23
+ };
24
+ export declare const AgrupamentoRelatoriosProdutos: {
25
+ Produto: string;
26
+ Categoria: string;
27
+ Marca: string;
28
+ UnidadeMedida: string;
29
+ CenarioFiscal: string;
30
+ NCM: string;
31
+ Filial: string;
32
+ EnderecoEstoque: string;
33
+ InventarioP7: string;
34
+ description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Filial" | "Unidade de Medida" | "Cenário Fiscal" | "NCM" | "Endereço de Estoque" | "Inventário P7";
35
+ };
36
+ export declare const TipoPreco: {
37
+ Compra: string;
38
+ CompraMedio: string;
39
+ Custo: string;
40
+ CustoMedio: string;
41
+ Venda: string;
42
+ VendaAtacado: string;
43
+ description(val: string): "enum not found" | "Venda" | "Compra" | "Compra médio" | "Custo" | "Custo médio" | "Venda atacado";
44
+ };
45
+ export declare const AgrupamentoRelatorioPessoas: {
46
+ Pessoa: string;
47
+ Tipo: string;
48
+ Classificacao: string;
49
+ Cidade: string;
50
+ description(val: string): "enum not found" | "Pessoa" | "Tipo" | "Classificação" | "Cidade";
51
+ };
52
+ export declare const SituacaoQtdEstoque: {
53
+ Zerado: string;
54
+ Negativo: string;
55
+ Positivo: string;
56
+ description(val: string): "enum not found" | "Negativo" | "Positivo" | "Zerado";
57
+ };
58
+ export declare const PrioridadeCompra: {
59
+ Alta: string;
60
+ Media: string;
61
+ Baixa: string;
62
+ description(val: string): "enum not found" | "Alta" | "Média" | "Baixa";
63
+ };
64
+ export declare const StatusCompra: {
65
+ ComprarUrgente: string;
66
+ Comprar: string;
67
+ Atencao: string;
68
+ Normal: string;
69
+ RevisarDemanda: string;
70
+ SemDemanda: string;
71
+ Parado: string;
72
+ Excesso: string;
73
+ description(val: string): "enum not found" | "Normal" | "Comprar urgente" | "Comprar" | "Atenção" | "Revisar Demanda" | "Sem demanda" | "Parado" | "Excesso";
74
+ };
75
+ export declare const FaixaCobertura: {
76
+ Critica: string;
77
+ Baixa: string;
78
+ Normal: string;
79
+ Alta: string;
80
+ Excesso: string;
81
+ description(val: string): "enum not found" | "Normal" | "Alta" | "Baixa" | "Excesso" | "Crítica";
82
+ };
83
+ export declare const TendenciaDemanda: {
84
+ Acelerando: string;
85
+ Estavel: string;
86
+ Desacelerando: string;
87
+ SemDemanda: string;
88
+ description(val: string): "enum not found" | "Sem demanda" | "Acelerando" | "Estável" | "Desacelerando";
89
+ };