mdz-enum 1.6.13 → 1.6.15

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