mdz-enum 1.5.21 → 1.5.22
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.
- package/README.MD +7 -7
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +227 -227
- package/dist/commercial/index.js +549 -549
- package/dist/common/index.d.ts +47 -47
- package/dist/common/index.js +137 -137
- package/dist/config/index.d.ts +166 -138
- package/dist/config/index.js +478 -395
- package/dist/finance/index.d.ts +164 -164
- package/dist/finance/index.js +425 -425
- package/dist/fiscal/index.d.ts +468 -468
- package/dist/fiscal/index.js +1165 -1165
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +257 -257
- package/dist/general/index.js +489 -489
- package/dist/index.d.ts +14 -14
- package/dist/index.js +208 -208
- package/dist/integration/index.d.ts +19 -19
- package/dist/integration/index.js +57 -57
- package/dist/logistics/index.d.ts +124 -124
- package/dist/logistics/index.js +359 -359
- package/dist/marketplace/templates/components/index.d.ts +158 -158
- package/dist/marketplace/templates/components/index.js +171 -171
- package/dist/marketplace/templates/elements/index.d.ts +32 -32
- package/dist/marketplace/templates/elements/index.js +35 -35
- package/dist/marketplace/templates/index.d.ts +292 -295
- package/dist/marketplace/templates/index.js +40 -40
- package/dist/marketplace/templates/pages/index.d.ts +140 -140
- package/dist/marketplace/templates/pages/index.js +310 -310
- package/dist/marketplace/templates/reference/index.d.ts +16 -16
- package/dist/marketplace/templates/reference/index.js +18 -18
- package/dist/people/index.d.ts +36 -36
- package/dist/people/index.js +105 -105
- package/dist/platform/index.d.ts +189 -189
- package/dist/platform/index.js +548 -548
- package/dist/reports/index.d.ts +49 -49
- package/dist/reports/index.js +145 -145
- package/package.json +33 -32
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TipoPagamentoSafeTwoPay = exports.TipoPagamentoTuo = exports.TipoIntegracaoPagamento = void 0;
|
|
4
|
-
exports.TipoIntegracaoPagamento = {
|
|
5
|
-
Tuo: '0',
|
|
6
|
-
ModerBank: '1',
|
|
7
|
-
SafeTwoPay: '2',
|
|
8
|
-
Interno: '3',
|
|
9
|
-
description(val) {
|
|
10
|
-
switch (val) {
|
|
11
|
-
case this.Tuo:
|
|
12
|
-
return 'Tuo Bank';
|
|
13
|
-
case this.ModerBank:
|
|
14
|
-
return 'ModerBank';
|
|
15
|
-
case this.SafeTwoPay:
|
|
16
|
-
return 'Safe2Pay';
|
|
17
|
-
case this.Interno:
|
|
18
|
-
return 'Interno';
|
|
19
|
-
default:
|
|
20
|
-
return 'enum not found';
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
exports.TipoPagamentoTuo = {
|
|
25
|
-
Boleto: 1,
|
|
26
|
-
Debito: 2,
|
|
27
|
-
Cartao: 3,
|
|
28
|
-
description(val) {
|
|
29
|
-
switch (val) {
|
|
30
|
-
case this.Boleto:
|
|
31
|
-
return 'Boleto';
|
|
32
|
-
case this.Cartao:
|
|
33
|
-
return 'Cartão de Crédito';
|
|
34
|
-
case this.Debito:
|
|
35
|
-
return 'Débito';
|
|
36
|
-
default:
|
|
37
|
-
return 'enum not found';
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
|
-
exports.TipoPagamentoSafeTwoPay = {
|
|
42
|
-
Boleto: 1,
|
|
43
|
-
CartaoCredito: 2,
|
|
44
|
-
PIX: 6,
|
|
45
|
-
description(val) {
|
|
46
|
-
switch (val) {
|
|
47
|
-
case this.Boleto:
|
|
48
|
-
return 'Boleto';
|
|
49
|
-
case this.CartaoCredito:
|
|
50
|
-
return 'Cartão de Crédito';
|
|
51
|
-
case this.PIX:
|
|
52
|
-
return 'PIX';
|
|
53
|
-
default:
|
|
54
|
-
return 'enum not found';
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TipoPagamentoSafeTwoPay = exports.TipoPagamentoTuo = exports.TipoIntegracaoPagamento = void 0;
|
|
4
|
+
exports.TipoIntegracaoPagamento = {
|
|
5
|
+
Tuo: '0',
|
|
6
|
+
ModerBank: '1',
|
|
7
|
+
SafeTwoPay: '2',
|
|
8
|
+
Interno: '3',
|
|
9
|
+
description(val) {
|
|
10
|
+
switch (val) {
|
|
11
|
+
case this.Tuo:
|
|
12
|
+
return 'Tuo Bank';
|
|
13
|
+
case this.ModerBank:
|
|
14
|
+
return 'ModerBank';
|
|
15
|
+
case this.SafeTwoPay:
|
|
16
|
+
return 'Safe2Pay';
|
|
17
|
+
case this.Interno:
|
|
18
|
+
return 'Interno';
|
|
19
|
+
default:
|
|
20
|
+
return 'enum not found';
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
};
|
|
24
|
+
exports.TipoPagamentoTuo = {
|
|
25
|
+
Boleto: 1,
|
|
26
|
+
Debito: 2,
|
|
27
|
+
Cartao: 3,
|
|
28
|
+
description(val) {
|
|
29
|
+
switch (val) {
|
|
30
|
+
case this.Boleto:
|
|
31
|
+
return 'Boleto';
|
|
32
|
+
case this.Cartao:
|
|
33
|
+
return 'Cartão de Crédito';
|
|
34
|
+
case this.Debito:
|
|
35
|
+
return 'Débito';
|
|
36
|
+
default:
|
|
37
|
+
return 'enum not found';
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
exports.TipoPagamentoSafeTwoPay = {
|
|
42
|
+
Boleto: 1,
|
|
43
|
+
CartaoCredito: 2,
|
|
44
|
+
PIX: 6,
|
|
45
|
+
description(val) {
|
|
46
|
+
switch (val) {
|
|
47
|
+
case this.Boleto:
|
|
48
|
+
return 'Boleto';
|
|
49
|
+
case this.CartaoCredito:
|
|
50
|
+
return 'Cartão de Crédito';
|
|
51
|
+
case this.PIX:
|
|
52
|
+
return 'PIX';
|
|
53
|
+
default:
|
|
54
|
+
return 'enum not found';
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
};
|
|
@@ -1,124 +1,124 @@
|
|
|
1
|
-
export declare const TipoProduto: {
|
|
2
|
-
Simples: string;
|
|
3
|
-
ComGrade: string;
|
|
4
|
-
description(val: string): "enum not found" | "Simples" | "Com Grade";
|
|
5
|
-
};
|
|
6
|
-
export declare const TipoValoracao: {
|
|
7
|
-
PrecoAquisicao: string;
|
|
8
|
-
PrecoCusto: string;
|
|
9
|
-
PrecoVenda: string;
|
|
10
|
-
PrecoAtacado: string;
|
|
11
|
-
description(val: string): "enum not found" | "Preço de Aquisição" | "Preço de Custo" | "Preço de Venda" | "Preço de Atacado";
|
|
12
|
-
};
|
|
13
|
-
export declare const SituacaoMovimentacaoEstoque: {
|
|
14
|
-
EmEdicao: string;
|
|
15
|
-
Processado: string;
|
|
16
|
-
Estornado: string;
|
|
17
|
-
description(val: string): "enum not found" | "Em Edição" | "Processado" | "Estornado";
|
|
18
|
-
};
|
|
19
|
-
export declare const OrigemMovimentacaoEstoque: {
|
|
20
|
-
Manual: string;
|
|
21
|
-
NotaFiscal: string;
|
|
22
|
-
Pedido: string;
|
|
23
|
-
Inventario: string;
|
|
24
|
-
description(val: string): "enum not found" | "Pedido" | "Nota Fiscal" | "Manual" | "Inventário";
|
|
25
|
-
};
|
|
26
|
-
export declare const OperacaoMovimentacaoEstoque: {
|
|
27
|
-
Entrada: string;
|
|
28
|
-
Saida: string;
|
|
29
|
-
Transferencia: string;
|
|
30
|
-
description(val: string): "enum not found" | "Entrada" | "Saída" | "Transferência";
|
|
31
|
-
};
|
|
32
|
-
export declare const SituacaoQuantidadeEstoque: {
|
|
33
|
-
Negativo: string;
|
|
34
|
-
Positivo: string;
|
|
35
|
-
description(val: string): "enum not found" | "Negativo" | "Positivo";
|
|
36
|
-
};
|
|
37
|
-
export declare const TipoCategoria: {
|
|
38
|
-
Beleza: string;
|
|
39
|
-
Bolsa: string;
|
|
40
|
-
Calçado: string;
|
|
41
|
-
Celular: string;
|
|
42
|
-
Decoracao: string;
|
|
43
|
-
Eletrodomestico: string;
|
|
44
|
-
Eletronico: string;
|
|
45
|
-
Esporte: string;
|
|
46
|
-
Ferramenta: string;
|
|
47
|
-
Game: string;
|
|
48
|
-
Movel: string;
|
|
49
|
-
Vestuario: string;
|
|
50
|
-
Saude: string;
|
|
51
|
-
Automotivo: string;
|
|
52
|
-
MateriaisConstrucao: string;
|
|
53
|
-
description(val: string): "Beleza" | "Bolsas" | "Calçados" | "Celular" | "Decoração" | "Eletrodomésticos" | "Eletrônicos" | "Esportes" | "Ferramentas" | "Games" | "Móveis" | "Vestuário" | "Saúde" | "Automotivo" | "Materiais de Construção" | undefined;
|
|
54
|
-
};
|
|
55
|
-
export declare const TipoImagemGaleria: {
|
|
56
|
-
Geral: string;
|
|
57
|
-
PorGrade: string;
|
|
58
|
-
description(val: string): "enum not found" | "Geral" | "Por Grade";
|
|
59
|
-
};
|
|
60
|
-
export declare const TipoAtualizacaoEstoque: {
|
|
61
|
-
NotaFiscal: string;
|
|
62
|
-
MovimentacaoEstoque: string;
|
|
63
|
-
description(val: string): "enum not found" | "Nota Fiscal" | "Movimentaçaõ de Estoque";
|
|
64
|
-
};
|
|
65
|
-
export declare const TipoLeiRotulagem: {
|
|
66
|
-
Lei_360: string;
|
|
67
|
-
Lei_429: string;
|
|
68
|
-
description(val: string): "enum not found" | "RDC 359/360" | "RDC 429";
|
|
69
|
-
};
|
|
70
|
-
export declare const TipoQuantidadeInfoNutricional: {
|
|
71
|
-
Grama: string;
|
|
72
|
-
Mililitro: string;
|
|
73
|
-
description(val: string): "enum not found" | "100 G (100 gramas)" | "100 ML (100 mililitros)";
|
|
74
|
-
};
|
|
75
|
-
export declare const TipoItem: {
|
|
76
|
-
MercadoriaRevenda: string;
|
|
77
|
-
MateriaPrima: string;
|
|
78
|
-
Embalagem: string;
|
|
79
|
-
ProdutoProcesso: string;
|
|
80
|
-
ProdutoAcabado: string;
|
|
81
|
-
Subproduto: string;
|
|
82
|
-
ProdutoIntermediario: string;
|
|
83
|
-
MaterialUsoConsumo: string;
|
|
84
|
-
AtivoImobilizado: string;
|
|
85
|
-
Servicos: string;
|
|
86
|
-
OutrosInsumos: string;
|
|
87
|
-
Outras: string;
|
|
88
|
-
description(val: string): "enum not found" | "Mercadoria para revenda" | "Matéria-prima" | "Embalagem" | "Produto em processo" | "Produto acabado" | "Subproduto" | "Produto intermediário" | "Material de uso e consumo" | "Ativo imobilizado" | "Serviços" | "Outros insumos" | "Outras";
|
|
89
|
-
};
|
|
90
|
-
export declare const SituacaoInventario: {
|
|
91
|
-
EmAndamento: string;
|
|
92
|
-
Concluido: string;
|
|
93
|
-
Cancelado: string;
|
|
94
|
-
description(val: string): "enum not found" | "Cancelado" | "Em Andamento" | "Concluído";
|
|
95
|
-
};
|
|
96
|
-
export declare const SituacaoItemInventario: {
|
|
97
|
-
Excluido: string;
|
|
98
|
-
Atualizado: string;
|
|
99
|
-
AtualizacaoPendente: string;
|
|
100
|
-
InclusaoPendente: string;
|
|
101
|
-
description(val: string): "enum not found" | "Atualizado" | "Excluído" | "Atualização Pendente" | "Inclusão Pendente";
|
|
102
|
-
};
|
|
103
|
-
export declare const TipoAjusteInventario: {
|
|
104
|
-
Ajuste: string;
|
|
105
|
-
ApenasEntrada: string;
|
|
106
|
-
ApenasSaida: string;
|
|
107
|
-
description(val: string): "enum not found" | "Ajuste" | "Apenas Entrada" | "Apenas Saída";
|
|
108
|
-
};
|
|
109
|
-
export declare const TipoMovimentacaoItemInventario: {
|
|
110
|
-
Entrada: string;
|
|
111
|
-
Saida: string;
|
|
112
|
-
SemMov: string;
|
|
113
|
-
description(val: string): "enum not found" | "Entrada" | "Saída" | "Não Mov.";
|
|
114
|
-
};
|
|
115
|
-
export declare const TipoDesdobramentoProduto: {
|
|
116
|
-
EmProduto: string;
|
|
117
|
-
EmGrade: string;
|
|
118
|
-
description(val: string): "enum not found" | "Produtos" | "Grades";
|
|
119
|
-
};
|
|
120
|
-
export declare const TipoCodigoEtiquetaProduto: {
|
|
121
|
-
SkuProduto: string;
|
|
122
|
-
Ean13: string;
|
|
123
|
-
description(val: string): "enum not found" | "SKU do Produto" | "EAN13";
|
|
124
|
-
};
|
|
1
|
+
export declare const TipoProduto: {
|
|
2
|
+
Simples: string;
|
|
3
|
+
ComGrade: string;
|
|
4
|
+
description(val: string): "enum not found" | "Simples" | "Com Grade";
|
|
5
|
+
};
|
|
6
|
+
export declare const TipoValoracao: {
|
|
7
|
+
PrecoAquisicao: string;
|
|
8
|
+
PrecoCusto: string;
|
|
9
|
+
PrecoVenda: string;
|
|
10
|
+
PrecoAtacado: string;
|
|
11
|
+
description(val: string): "enum not found" | "Preço de Aquisição" | "Preço de Custo" | "Preço de Venda" | "Preço de Atacado";
|
|
12
|
+
};
|
|
13
|
+
export declare const SituacaoMovimentacaoEstoque: {
|
|
14
|
+
EmEdicao: string;
|
|
15
|
+
Processado: string;
|
|
16
|
+
Estornado: string;
|
|
17
|
+
description(val: string): "enum not found" | "Em Edição" | "Processado" | "Estornado";
|
|
18
|
+
};
|
|
19
|
+
export declare const OrigemMovimentacaoEstoque: {
|
|
20
|
+
Manual: string;
|
|
21
|
+
NotaFiscal: string;
|
|
22
|
+
Pedido: string;
|
|
23
|
+
Inventario: string;
|
|
24
|
+
description(val: string): "enum not found" | "Pedido" | "Nota Fiscal" | "Manual" | "Inventário";
|
|
25
|
+
};
|
|
26
|
+
export declare const OperacaoMovimentacaoEstoque: {
|
|
27
|
+
Entrada: string;
|
|
28
|
+
Saida: string;
|
|
29
|
+
Transferencia: string;
|
|
30
|
+
description(val: string): "enum not found" | "Entrada" | "Saída" | "Transferência";
|
|
31
|
+
};
|
|
32
|
+
export declare const SituacaoQuantidadeEstoque: {
|
|
33
|
+
Negativo: string;
|
|
34
|
+
Positivo: string;
|
|
35
|
+
description(val: string): "enum not found" | "Negativo" | "Positivo";
|
|
36
|
+
};
|
|
37
|
+
export declare const TipoCategoria: {
|
|
38
|
+
Beleza: string;
|
|
39
|
+
Bolsa: string;
|
|
40
|
+
Calçado: string;
|
|
41
|
+
Celular: string;
|
|
42
|
+
Decoracao: string;
|
|
43
|
+
Eletrodomestico: string;
|
|
44
|
+
Eletronico: string;
|
|
45
|
+
Esporte: string;
|
|
46
|
+
Ferramenta: string;
|
|
47
|
+
Game: string;
|
|
48
|
+
Movel: string;
|
|
49
|
+
Vestuario: string;
|
|
50
|
+
Saude: string;
|
|
51
|
+
Automotivo: string;
|
|
52
|
+
MateriaisConstrucao: string;
|
|
53
|
+
description(val: string): "Beleza" | "Bolsas" | "Calçados" | "Celular" | "Decoração" | "Eletrodomésticos" | "Eletrônicos" | "Esportes" | "Ferramentas" | "Games" | "Móveis" | "Vestuário" | "Saúde" | "Automotivo" | "Materiais de Construção" | undefined;
|
|
54
|
+
};
|
|
55
|
+
export declare const TipoImagemGaleria: {
|
|
56
|
+
Geral: string;
|
|
57
|
+
PorGrade: string;
|
|
58
|
+
description(val: string): "enum not found" | "Geral" | "Por Grade";
|
|
59
|
+
};
|
|
60
|
+
export declare const TipoAtualizacaoEstoque: {
|
|
61
|
+
NotaFiscal: string;
|
|
62
|
+
MovimentacaoEstoque: string;
|
|
63
|
+
description(val: string): "enum not found" | "Nota Fiscal" | "Movimentaçaõ de Estoque";
|
|
64
|
+
};
|
|
65
|
+
export declare const TipoLeiRotulagem: {
|
|
66
|
+
Lei_360: string;
|
|
67
|
+
Lei_429: string;
|
|
68
|
+
description(val: string): "enum not found" | "RDC 359/360" | "RDC 429";
|
|
69
|
+
};
|
|
70
|
+
export declare const TipoQuantidadeInfoNutricional: {
|
|
71
|
+
Grama: string;
|
|
72
|
+
Mililitro: string;
|
|
73
|
+
description(val: string): "enum not found" | "100 G (100 gramas)" | "100 ML (100 mililitros)";
|
|
74
|
+
};
|
|
75
|
+
export declare const TipoItem: {
|
|
76
|
+
MercadoriaRevenda: string;
|
|
77
|
+
MateriaPrima: string;
|
|
78
|
+
Embalagem: string;
|
|
79
|
+
ProdutoProcesso: string;
|
|
80
|
+
ProdutoAcabado: string;
|
|
81
|
+
Subproduto: string;
|
|
82
|
+
ProdutoIntermediario: string;
|
|
83
|
+
MaterialUsoConsumo: string;
|
|
84
|
+
AtivoImobilizado: string;
|
|
85
|
+
Servicos: string;
|
|
86
|
+
OutrosInsumos: string;
|
|
87
|
+
Outras: string;
|
|
88
|
+
description(val: string): "enum not found" | "Mercadoria para revenda" | "Matéria-prima" | "Embalagem" | "Produto em processo" | "Produto acabado" | "Subproduto" | "Produto intermediário" | "Material de uso e consumo" | "Ativo imobilizado" | "Serviços" | "Outros insumos" | "Outras";
|
|
89
|
+
};
|
|
90
|
+
export declare const SituacaoInventario: {
|
|
91
|
+
EmAndamento: string;
|
|
92
|
+
Concluido: string;
|
|
93
|
+
Cancelado: string;
|
|
94
|
+
description(val: string): "enum not found" | "Cancelado" | "Em Andamento" | "Concluído";
|
|
95
|
+
};
|
|
96
|
+
export declare const SituacaoItemInventario: {
|
|
97
|
+
Excluido: string;
|
|
98
|
+
Atualizado: string;
|
|
99
|
+
AtualizacaoPendente: string;
|
|
100
|
+
InclusaoPendente: string;
|
|
101
|
+
description(val: string): "enum not found" | "Atualizado" | "Excluído" | "Atualização Pendente" | "Inclusão Pendente";
|
|
102
|
+
};
|
|
103
|
+
export declare const TipoAjusteInventario: {
|
|
104
|
+
Ajuste: string;
|
|
105
|
+
ApenasEntrada: string;
|
|
106
|
+
ApenasSaida: string;
|
|
107
|
+
description(val: string): "enum not found" | "Ajuste" | "Apenas Entrada" | "Apenas Saída";
|
|
108
|
+
};
|
|
109
|
+
export declare const TipoMovimentacaoItemInventario: {
|
|
110
|
+
Entrada: string;
|
|
111
|
+
Saida: string;
|
|
112
|
+
SemMov: string;
|
|
113
|
+
description(val: string): "enum not found" | "Entrada" | "Saída" | "Não Mov.";
|
|
114
|
+
};
|
|
115
|
+
export declare const TipoDesdobramentoProduto: {
|
|
116
|
+
EmProduto: string;
|
|
117
|
+
EmGrade: string;
|
|
118
|
+
description(val: string): "enum not found" | "Produtos" | "Grades";
|
|
119
|
+
};
|
|
120
|
+
export declare const TipoCodigoEtiquetaProduto: {
|
|
121
|
+
SkuProduto: string;
|
|
122
|
+
Ean13: string;
|
|
123
|
+
description(val: string): "enum not found" | "SKU do Produto" | "EAN13";
|
|
124
|
+
};
|