mdz-enum 1.1.20 → 1.1.21

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.
@@ -1,4 +0,0 @@
1
- export declare const listEnum: (object: any, filters?: never[]) => {
2
- value: any;
3
- label: any;
4
- }[];
package/dist/functions.js DELETED
@@ -1,37 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.listEnum = void 0;
4
- const listEnum = (object, filters = []) => {
5
- let list = [];
6
- if (filters && filters.length > 0) {
7
- for (var filter in filters) {
8
- for (var key in object) {
9
- if (typeof object[key] === 'function')
10
- continue;
11
- if (object[key] !== filters[filter])
12
- continue;
13
- const item = {
14
- value: object[key],
15
- label: object.description ? object.description(object[key]) : '',
16
- };
17
- list.push(item);
18
- }
19
- }
20
- }
21
- else {
22
- for (var key in object) {
23
- if (typeof object[key] === 'function')
24
- continue;
25
- const item = {
26
- value: object[key],
27
- label: object.description ? object.description(object[key]) : '',
28
- };
29
- list.push(item);
30
- }
31
- }
32
- list = list.sort(function (a, b) {
33
- return b.label - a.label;
34
- });
35
- return list;
36
- };
37
- exports.listEnum = listEnum;
@@ -1,56 +0,0 @@
1
- export declare const Situacao: {
2
- Inativo: string;
3
- Ativo: string;
4
- description(val: string): "enum not found" | "Inativo" | "Ativo";
5
- };
6
- export declare const TipoCompartilhamento: {
7
- NotaFiscal: string;
8
- PedidoVenda: string;
9
- Boleto: string;
10
- description(val: string): "enum not found" | "Pedido" | "Nota Fiscal" | "Boleto";
11
- };
12
- export declare const TipoDescontoGeneral: {
13
- Percentual: string;
14
- Valor: string;
15
- description(val: string): "enum not found" | "Valor" | "Percentual";
16
- };
17
- export declare const TipoTempo: {
18
- Dias: string;
19
- Semanas: string;
20
- Meses: string;
21
- Anos: string;
22
- description(val: string): "Dias" | "Semanas" | "Meses" | "Anos" | undefined;
23
- };
24
- export declare const Uf: {
25
- RO: string;
26
- AC: string;
27
- AM: string;
28
- RR: string;
29
- PA: string;
30
- AP: string;
31
- TO: string;
32
- MA: string;
33
- PI: string;
34
- CE: string;
35
- RN: string;
36
- PB: string;
37
- PE: string;
38
- AL: string;
39
- SE: string;
40
- BA: string;
41
- MG: string;
42
- ES: string;
43
- RJ: string;
44
- SP: string;
45
- PR: string;
46
- SC: string;
47
- RS: string;
48
- MS: string;
49
- MT: string;
50
- GO: string;
51
- DF: string;
52
- AN: string;
53
- EX: string;
54
- description(val: string): "Rondônia" | "Acre" | "Amazonas" | "Roraima" | "Pará" | "Amapá" | "Tocantins" | "Maranhão" | "Rio Grande do Norte" | "Paraíba" | "Pernambuco" | "Alagoas" | "Sergipe" | "Bahia" | "Minas Gerais" | "Espírito Santo" | "Rio de Janeiro" | "São Paulo" | "Paraná" | "Santa Catarina" | "Rio Grande do Sul" | "Mato Grosso do Sul" | "Mato Grosso" | "Goiás" | "Distrito Federal" | undefined;
55
- shortDescription(val: string): "RO" | "AC" | "AM" | "RR" | "PA" | "AP" | "TO" | "MA" | "RN" | "PB" | "PE" | "AL" | "SE" | "BA" | "MG" | "ES" | "RJ" | "SP" | "PR" | "SC" | "RS" | "MS" | "MT" | "GO" | "DF" | undefined;
56
- };
@@ -1,205 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = exports.TipoCompartilhamento = exports.Situacao = void 0;
4
- exports.Situacao = {
5
- Inativo: '0',
6
- Ativo: '1',
7
- description(val) {
8
- switch (val) {
9
- case this.Inativo:
10
- return 'Inativo';
11
- case this.Ativo:
12
- return 'Ativo';
13
- default:
14
- return 'enum not found';
15
- }
16
- },
17
- };
18
- exports.TipoCompartilhamento = {
19
- NotaFiscal: '1',
20
- PedidoVenda: '2',
21
- Boleto: '3',
22
- description(val) {
23
- switch (val) {
24
- case this.NotaFiscal:
25
- return 'Nota Fiscal';
26
- case this.PedidoVenda:
27
- return 'Pedido';
28
- case this.Boleto:
29
- return 'Boleto';
30
- default:
31
- return 'enum not found';
32
- }
33
- },
34
- };
35
- exports.TipoDescontoGeneral = {
36
- Percentual: '0',
37
- Valor: '1',
38
- description(val) {
39
- switch (val) {
40
- case this.Percentual:
41
- return 'Percentual';
42
- case this.Valor:
43
- return 'Valor';
44
- default:
45
- return 'enum not found';
46
- }
47
- },
48
- };
49
- exports.TipoTempo = {
50
- Dias: '1',
51
- Semanas: '2',
52
- Meses: '3',
53
- Anos: '4',
54
- description(val) {
55
- switch (val) {
56
- case this.Dias:
57
- return 'Dias';
58
- case this.Semanas:
59
- return 'Semanas';
60
- case this.Meses:
61
- return 'Meses';
62
- case this.Anos:
63
- return 'Anos';
64
- }
65
- },
66
- };
67
- exports.Uf = {
68
- RO: '11',
69
- AC: '12',
70
- AM: '13',
71
- RR: '14',
72
- PA: '15',
73
- AP: '16',
74
- TO: '17',
75
- MA: '21',
76
- PI: '22',
77
- CE: '23',
78
- RN: '24',
79
- PB: '25',
80
- PE: '26',
81
- AL: '27',
82
- SE: '28',
83
- BA: '29',
84
- MG: '31',
85
- ES: '32',
86
- RJ: '33',
87
- SP: '35',
88
- PR: '41',
89
- SC: '42',
90
- RS: '43',
91
- MS: '50',
92
- MT: '51',
93
- GO: '52',
94
- DF: '53',
95
- AN: '91',
96
- EX: '99',
97
- description(val) {
98
- switch (val) {
99
- case this.RO:
100
- return 'Rondônia';
101
- case this.AC:
102
- return 'Acre';
103
- case this.AM:
104
- return 'Amazonas';
105
- case this.RR:
106
- return 'Roraima';
107
- case this.PA:
108
- return 'Pará';
109
- case this.AP:
110
- return 'Amapá';
111
- case this.TO:
112
- return 'Tocantins';
113
- case this.MA:
114
- return 'Maranhão';
115
- case this.RN:
116
- return 'Rio Grande do Norte';
117
- case this.PB:
118
- return 'Paraíba';
119
- case this.PE:
120
- return 'Pernambuco';
121
- case this.AL:
122
- return 'Alagoas';
123
- case this.SE:
124
- return 'Sergipe';
125
- case this.BA:
126
- return 'Bahia';
127
- case this.MG:
128
- return 'Minas Gerais';
129
- case this.ES:
130
- return 'Espírito Santo';
131
- case this.RJ:
132
- return 'Rio de Janeiro';
133
- case this.SP:
134
- return 'São Paulo';
135
- case this.PR:
136
- return 'Paraná';
137
- case this.SC:
138
- return 'Santa Catarina';
139
- case this.RS:
140
- return 'Rio Grande do Sul';
141
- case this.MS:
142
- return 'Mato Grosso do Sul';
143
- case this.MT:
144
- return 'Mato Grosso';
145
- case this.GO:
146
- return 'Goiás';
147
- case this.DF:
148
- return 'Distrito Federal';
149
- }
150
- },
151
- shortDescription(val) {
152
- switch (val) {
153
- case this.RO:
154
- return 'RO';
155
- case this.AC:
156
- return 'AC';
157
- case this.AM:
158
- return 'AM';
159
- case this.RR:
160
- return 'RR';
161
- case this.PA:
162
- return 'PA';
163
- case this.AP:
164
- return 'AP';
165
- case this.TO:
166
- return 'TO';
167
- case this.MA:
168
- return 'MA';
169
- case this.RN:
170
- return 'RN';
171
- case this.PB:
172
- return 'PB';
173
- case this.PE:
174
- return 'PE';
175
- case this.AL:
176
- return 'AL';
177
- case this.SE:
178
- return 'SE';
179
- case this.BA:
180
- return 'BA';
181
- case this.MG:
182
- return 'MG';
183
- case this.ES:
184
- return 'ES';
185
- case this.RJ:
186
- return 'RJ';
187
- case this.SP:
188
- return 'SP';
189
- case this.PR:
190
- return 'PR';
191
- case this.SC:
192
- return 'SC';
193
- case this.RS:
194
- return 'RS';
195
- case this.MS:
196
- return 'MS';
197
- case this.MT:
198
- return 'MT';
199
- case this.GO:
200
- return 'GO';
201
- case this.DF:
202
- return 'DF';
203
- }
204
- },
205
- };
package/dist/index.d.ts DELETED
@@ -1,11 +0,0 @@
1
- export { listEnum } from './functions';
2
- export { SituacaoPedido, OperacaoPedido, OrigemPedido, TipoFrete, TipoDescontoPromocao, TipoMarketplace, SituacaoProdutoMarketplace, StatusProcessoCarrinho, TipoAplicacaoTabelaPreco, TipoValorTabelaPreco, } from './commercial';
3
- export { TipoDispositivo, TipoPermissao, TipoPeriferico, ModeloSat, ModoFinalizacao, VersaoLayoutSat, TipoPrecoPadrao, TipoEtiqueta, ModeloEtiqueta, ParametroEtiquetaProduto, ModeloPimaco, } from './config';
4
- export { MeioPagamento, OperacaoOperadoraCartao, TipoCalculoParcelamento, TipoPromocao, IndicadorFormaPagamento, BandeiraCartao, SituacaoDocumentoFinanceiro, TipoLancamentoDocumentoFinanceiro, TipoCaixaOperacao, SituacaoCaixa, TipoValorConfiguracaoBoleto, SituacaoBoleto, SituacaoConciliacao, TipoDataDocumentoFinanceiro, TipoCalculoTaxaCartaoCredito, } from './finance';
5
- export { COFINS, ICMS_CSOSN, ICMS_CST, IPI, PIS, TipoOperacaoNotaFiscal, OperacaoNotaFiscal, ModeloNotaFiscal, OrigemProduto, IdentificadorLocalDestino, AmbienteNotaFiscal, ConsumidorFinalNotaFiscal, FinalidadeEmissaoNotaFiscal, IndicadorIEDestinatario, IndicadorIntermediador, IndicadorPresencaNotaFiscal, ModalidadeBaseCalculo, ModalidadeBaseCalculoST, MotivoDesoneracao, RegimeTributario, TipoEmissaoNotaFiscal, TipoImpressaoDanfe, SituacaoNotaFiscal, TipoInformacaoAdicional, TipoDesconto, SituacaoManifestoDestinatario, TipoEventoManifestacao, } from './fiscal';
6
- export { Situacao, TipoCompartilhamento, TipoDescontoGeneral, TipoTempo, Uf } from './general';
7
- export { TipoEndereco, TipoPessoa, GeneroPessoa } from './people';
8
- export { TipoProduto, TipoValoracao, SituacaoMovimentacaoEstoque, OrigemMovimentacaoEstoque, TipoCategoria, TipoImagemGaleria, } from './logistics';
9
- export { TipoRelatorio, AgrupamentoRelatorio } from './reports/index';
10
- export { TipoOrganizacao, SituacaoOrganizacao } from './plataform';
11
- export { TipoIntegracaoPagamento, TipoPagamentoTuo } from './integration';
package/dist/index.js DELETED
@@ -1,100 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FinalidadeEmissaoNotaFiscal = exports.ConsumidorFinalNotaFiscal = exports.AmbienteNotaFiscal = exports.IdentificadorLocalDestino = exports.OrigemProduto = exports.ModeloNotaFiscal = exports.OperacaoNotaFiscal = exports.TipoOperacaoNotaFiscal = exports.PIS = exports.IPI = exports.ICMS_CST = exports.ICMS_CSOSN = exports.COFINS = exports.TipoCalculoTaxaCartaoCredito = exports.TipoDataDocumentoFinanceiro = exports.SituacaoConciliacao = exports.SituacaoBoleto = exports.TipoValorConfiguracaoBoleto = exports.SituacaoCaixa = exports.TipoCaixaOperacao = exports.TipoLancamentoDocumentoFinanceiro = exports.SituacaoDocumentoFinanceiro = exports.BandeiraCartao = exports.IndicadorFormaPagamento = exports.TipoPromocao = exports.TipoCalculoParcelamento = exports.OperacaoOperadoraCartao = exports.MeioPagamento = exports.ModeloPimaco = exports.ParametroEtiquetaProduto = exports.ModeloEtiqueta = exports.TipoEtiqueta = exports.TipoPrecoPadrao = exports.VersaoLayoutSat = exports.ModoFinalizacao = exports.ModeloSat = exports.TipoPeriferico = exports.TipoPermissao = exports.TipoDispositivo = exports.TipoValorTabelaPreco = exports.TipoAplicacaoTabelaPreco = exports.StatusProcessoCarrinho = exports.SituacaoProdutoMarketplace = exports.TipoMarketplace = exports.TipoDescontoPromocao = exports.TipoFrete = exports.OrigemPedido = exports.OperacaoPedido = exports.SituacaoPedido = exports.listEnum = void 0;
4
- exports.TipoPagamentoTuo = exports.TipoIntegracaoPagamento = exports.SituacaoOrganizacao = exports.TipoOrganizacao = exports.AgrupamentoRelatorio = exports.TipoRelatorio = exports.TipoImagemGaleria = exports.TipoCategoria = exports.OrigemMovimentacaoEstoque = exports.SituacaoMovimentacaoEstoque = exports.TipoValoracao = exports.TipoProduto = exports.GeneroPessoa = exports.TipoPessoa = exports.TipoEndereco = exports.Uf = exports.TipoTempo = exports.TipoDescontoGeneral = exports.TipoCompartilhamento = exports.Situacao = exports.TipoEventoManifestacao = exports.SituacaoManifestoDestinatario = exports.TipoDesconto = exports.TipoInformacaoAdicional = exports.SituacaoNotaFiscal = exports.TipoImpressaoDanfe = exports.TipoEmissaoNotaFiscal = exports.RegimeTributario = exports.MotivoDesoneracao = exports.ModalidadeBaseCalculoST = exports.ModalidadeBaseCalculo = exports.IndicadorPresencaNotaFiscal = exports.IndicadorIntermediador = exports.IndicadorIEDestinatario = void 0;
5
- var functions_1 = require("./functions");
6
- Object.defineProperty(exports, "listEnum", { enumerable: true, get: function () { return functions_1.listEnum; } });
7
- var commercial_1 = require("./commercial");
8
- Object.defineProperty(exports, "SituacaoPedido", { enumerable: true, get: function () { return commercial_1.SituacaoPedido; } });
9
- Object.defineProperty(exports, "OperacaoPedido", { enumerable: true, get: function () { return commercial_1.OperacaoPedido; } });
10
- Object.defineProperty(exports, "OrigemPedido", { enumerable: true, get: function () { return commercial_1.OrigemPedido; } });
11
- Object.defineProperty(exports, "TipoFrete", { enumerable: true, get: function () { return commercial_1.TipoFrete; } });
12
- Object.defineProperty(exports, "TipoDescontoPromocao", { enumerable: true, get: function () { return commercial_1.TipoDescontoPromocao; } });
13
- Object.defineProperty(exports, "TipoMarketplace", { enumerable: true, get: function () { return commercial_1.TipoMarketplace; } });
14
- Object.defineProperty(exports, "SituacaoProdutoMarketplace", { enumerable: true, get: function () { return commercial_1.SituacaoProdutoMarketplace; } });
15
- Object.defineProperty(exports, "StatusProcessoCarrinho", { enumerable: true, get: function () { return commercial_1.StatusProcessoCarrinho; } });
16
- Object.defineProperty(exports, "TipoAplicacaoTabelaPreco", { enumerable: true, get: function () { return commercial_1.TipoAplicacaoTabelaPreco; } });
17
- Object.defineProperty(exports, "TipoValorTabelaPreco", { enumerable: true, get: function () { return commercial_1.TipoValorTabelaPreco; } });
18
- var config_1 = require("./config");
19
- Object.defineProperty(exports, "TipoDispositivo", { enumerable: true, get: function () { return config_1.TipoDispositivo; } });
20
- Object.defineProperty(exports, "TipoPermissao", { enumerable: true, get: function () { return config_1.TipoPermissao; } });
21
- Object.defineProperty(exports, "TipoPeriferico", { enumerable: true, get: function () { return config_1.TipoPeriferico; } });
22
- Object.defineProperty(exports, "ModeloSat", { enumerable: true, get: function () { return config_1.ModeloSat; } });
23
- Object.defineProperty(exports, "ModoFinalizacao", { enumerable: true, get: function () { return config_1.ModoFinalizacao; } });
24
- Object.defineProperty(exports, "VersaoLayoutSat", { enumerable: true, get: function () { return config_1.VersaoLayoutSat; } });
25
- Object.defineProperty(exports, "TipoPrecoPadrao", { enumerable: true, get: function () { return config_1.TipoPrecoPadrao; } });
26
- Object.defineProperty(exports, "TipoEtiqueta", { enumerable: true, get: function () { return config_1.TipoEtiqueta; } });
27
- Object.defineProperty(exports, "ModeloEtiqueta", { enumerable: true, get: function () { return config_1.ModeloEtiqueta; } });
28
- Object.defineProperty(exports, "ParametroEtiquetaProduto", { enumerable: true, get: function () { return config_1.ParametroEtiquetaProduto; } });
29
- Object.defineProperty(exports, "ModeloPimaco", { enumerable: true, get: function () { return config_1.ModeloPimaco; } });
30
- var finance_1 = require("./finance");
31
- Object.defineProperty(exports, "MeioPagamento", { enumerable: true, get: function () { return finance_1.MeioPagamento; } });
32
- Object.defineProperty(exports, "OperacaoOperadoraCartao", { enumerable: true, get: function () { return finance_1.OperacaoOperadoraCartao; } });
33
- Object.defineProperty(exports, "TipoCalculoParcelamento", { enumerable: true, get: function () { return finance_1.TipoCalculoParcelamento; } });
34
- Object.defineProperty(exports, "TipoPromocao", { enumerable: true, get: function () { return finance_1.TipoPromocao; } });
35
- Object.defineProperty(exports, "IndicadorFormaPagamento", { enumerable: true, get: function () { return finance_1.IndicadorFormaPagamento; } });
36
- Object.defineProperty(exports, "BandeiraCartao", { enumerable: true, get: function () { return finance_1.BandeiraCartao; } });
37
- Object.defineProperty(exports, "SituacaoDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.SituacaoDocumentoFinanceiro; } });
38
- Object.defineProperty(exports, "TipoLancamentoDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.TipoLancamentoDocumentoFinanceiro; } });
39
- Object.defineProperty(exports, "TipoCaixaOperacao", { enumerable: true, get: function () { return finance_1.TipoCaixaOperacao; } });
40
- Object.defineProperty(exports, "SituacaoCaixa", { enumerable: true, get: function () { return finance_1.SituacaoCaixa; } });
41
- Object.defineProperty(exports, "TipoValorConfiguracaoBoleto", { enumerable: true, get: function () { return finance_1.TipoValorConfiguracaoBoleto; } });
42
- Object.defineProperty(exports, "SituacaoBoleto", { enumerable: true, get: function () { return finance_1.SituacaoBoleto; } });
43
- Object.defineProperty(exports, "SituacaoConciliacao", { enumerable: true, get: function () { return finance_1.SituacaoConciliacao; } });
44
- Object.defineProperty(exports, "TipoDataDocumentoFinanceiro", { enumerable: true, get: function () { return finance_1.TipoDataDocumentoFinanceiro; } });
45
- Object.defineProperty(exports, "TipoCalculoTaxaCartaoCredito", { enumerable: true, get: function () { return finance_1.TipoCalculoTaxaCartaoCredito; } });
46
- //teste de exportação
47
- var fiscal_1 = require("./fiscal");
48
- Object.defineProperty(exports, "COFINS", { enumerable: true, get: function () { return fiscal_1.COFINS; } });
49
- Object.defineProperty(exports, "ICMS_CSOSN", { enumerable: true, get: function () { return fiscal_1.ICMS_CSOSN; } });
50
- Object.defineProperty(exports, "ICMS_CST", { enumerable: true, get: function () { return fiscal_1.ICMS_CST; } });
51
- Object.defineProperty(exports, "IPI", { enumerable: true, get: function () { return fiscal_1.IPI; } });
52
- Object.defineProperty(exports, "PIS", { enumerable: true, get: function () { return fiscal_1.PIS; } });
53
- Object.defineProperty(exports, "TipoOperacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.TipoOperacaoNotaFiscal; } });
54
- Object.defineProperty(exports, "OperacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.OperacaoNotaFiscal; } });
55
- Object.defineProperty(exports, "ModeloNotaFiscal", { enumerable: true, get: function () { return fiscal_1.ModeloNotaFiscal; } });
56
- Object.defineProperty(exports, "OrigemProduto", { enumerable: true, get: function () { return fiscal_1.OrigemProduto; } });
57
- Object.defineProperty(exports, "IdentificadorLocalDestino", { enumerable: true, get: function () { return fiscal_1.IdentificadorLocalDestino; } });
58
- Object.defineProperty(exports, "AmbienteNotaFiscal", { enumerable: true, get: function () { return fiscal_1.AmbienteNotaFiscal; } });
59
- Object.defineProperty(exports, "ConsumidorFinalNotaFiscal", { enumerable: true, get: function () { return fiscal_1.ConsumidorFinalNotaFiscal; } });
60
- Object.defineProperty(exports, "FinalidadeEmissaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.FinalidadeEmissaoNotaFiscal; } });
61
- Object.defineProperty(exports, "IndicadorIEDestinatario", { enumerable: true, get: function () { return fiscal_1.IndicadorIEDestinatario; } });
62
- Object.defineProperty(exports, "IndicadorIntermediador", { enumerable: true, get: function () { return fiscal_1.IndicadorIntermediador; } });
63
- Object.defineProperty(exports, "IndicadorPresencaNotaFiscal", { enumerable: true, get: function () { return fiscal_1.IndicadorPresencaNotaFiscal; } });
64
- Object.defineProperty(exports, "ModalidadeBaseCalculo", { enumerable: true, get: function () { return fiscal_1.ModalidadeBaseCalculo; } });
65
- Object.defineProperty(exports, "ModalidadeBaseCalculoST", { enumerable: true, get: function () { return fiscal_1.ModalidadeBaseCalculoST; } });
66
- Object.defineProperty(exports, "MotivoDesoneracao", { enumerable: true, get: function () { return fiscal_1.MotivoDesoneracao; } });
67
- Object.defineProperty(exports, "RegimeTributario", { enumerable: true, get: function () { return fiscal_1.RegimeTributario; } });
68
- Object.defineProperty(exports, "TipoEmissaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.TipoEmissaoNotaFiscal; } });
69
- Object.defineProperty(exports, "TipoImpressaoDanfe", { enumerable: true, get: function () { return fiscal_1.TipoImpressaoDanfe; } });
70
- Object.defineProperty(exports, "SituacaoNotaFiscal", { enumerable: true, get: function () { return fiscal_1.SituacaoNotaFiscal; } });
71
- Object.defineProperty(exports, "TipoInformacaoAdicional", { enumerable: true, get: function () { return fiscal_1.TipoInformacaoAdicional; } });
72
- Object.defineProperty(exports, "TipoDesconto", { enumerable: true, get: function () { return fiscal_1.TipoDesconto; } });
73
- Object.defineProperty(exports, "SituacaoManifestoDestinatario", { enumerable: true, get: function () { return fiscal_1.SituacaoManifestoDestinatario; } });
74
- Object.defineProperty(exports, "TipoEventoManifestacao", { enumerable: true, get: function () { return fiscal_1.TipoEventoManifestacao; } });
75
- var general_1 = require("./general");
76
- Object.defineProperty(exports, "Situacao", { enumerable: true, get: function () { return general_1.Situacao; } });
77
- Object.defineProperty(exports, "TipoCompartilhamento", { enumerable: true, get: function () { return general_1.TipoCompartilhamento; } });
78
- Object.defineProperty(exports, "TipoDescontoGeneral", { enumerable: true, get: function () { return general_1.TipoDescontoGeneral; } });
79
- Object.defineProperty(exports, "TipoTempo", { enumerable: true, get: function () { return general_1.TipoTempo; } });
80
- Object.defineProperty(exports, "Uf", { enumerable: true, get: function () { return general_1.Uf; } });
81
- var people_1 = require("./people");
82
- Object.defineProperty(exports, "TipoEndereco", { enumerable: true, get: function () { return people_1.TipoEndereco; } });
83
- Object.defineProperty(exports, "TipoPessoa", { enumerable: true, get: function () { return people_1.TipoPessoa; } });
84
- Object.defineProperty(exports, "GeneroPessoa", { enumerable: true, get: function () { return people_1.GeneroPessoa; } });
85
- var logistics_1 = require("./logistics");
86
- Object.defineProperty(exports, "TipoProduto", { enumerable: true, get: function () { return logistics_1.TipoProduto; } });
87
- Object.defineProperty(exports, "TipoValoracao", { enumerable: true, get: function () { return logistics_1.TipoValoracao; } });
88
- Object.defineProperty(exports, "SituacaoMovimentacaoEstoque", { enumerable: true, get: function () { return logistics_1.SituacaoMovimentacaoEstoque; } });
89
- Object.defineProperty(exports, "OrigemMovimentacaoEstoque", { enumerable: true, get: function () { return logistics_1.OrigemMovimentacaoEstoque; } });
90
- Object.defineProperty(exports, "TipoCategoria", { enumerable: true, get: function () { return logistics_1.TipoCategoria; } });
91
- Object.defineProperty(exports, "TipoImagemGaleria", { enumerable: true, get: function () { return logistics_1.TipoImagemGaleria; } });
92
- var index_1 = require("./reports/index");
93
- Object.defineProperty(exports, "TipoRelatorio", { enumerable: true, get: function () { return index_1.TipoRelatorio; } });
94
- Object.defineProperty(exports, "AgrupamentoRelatorio", { enumerable: true, get: function () { return index_1.AgrupamentoRelatorio; } });
95
- var plataform_1 = require("./plataform");
96
- Object.defineProperty(exports, "TipoOrganizacao", { enumerable: true, get: function () { return plataform_1.TipoOrganizacao; } });
97
- Object.defineProperty(exports, "SituacaoOrganizacao", { enumerable: true, get: function () { return plataform_1.SituacaoOrganizacao; } });
98
- var integration_1 = require("./integration");
99
- Object.defineProperty(exports, "TipoIntegracaoPagamento", { enumerable: true, get: function () { return integration_1.TipoIntegracaoPagamento; } });
100
- Object.defineProperty(exports, "TipoPagamentoTuo", { enumerable: true, get: function () { return integration_1.TipoPagamentoTuo; } });
@@ -1,10 +0,0 @@
1
- export declare const TipoIntegracaoPagamento: {
2
- Tuo: string;
3
- description(val: string): "enum not found" | "Tuo Banck";
4
- };
5
- export declare const TipoPagamentoTuo: {
6
- Boleto: number;
7
- Debito: number;
8
- Cartao: number;
9
- description(val: number): "enum not found" | "Cartão de Crédito" | "Débito" | "Boleto";
10
- };
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoPagamentoTuo = exports.TipoIntegracaoPagamento = void 0;
4
- exports.TipoIntegracaoPagamento = {
5
- Tuo: '0',
6
- description(val) {
7
- switch (val) {
8
- case this.Tuo:
9
- return 'Tuo Banck';
10
- default:
11
- return 'enum not found';
12
- }
13
- },
14
- };
15
- exports.TipoPagamentoTuo = {
16
- Boleto: 1,
17
- Debito: 2,
18
- Cartao: 3,
19
- description(val) {
20
- switch (val) {
21
- case this.Boleto:
22
- return 'Boleto';
23
- case this.Cartao:
24
- return 'Cartão de Crédito';
25
- case this.Debito:
26
- return 'Débito';
27
- default:
28
- return 'enum not found';
29
- }
30
- },
31
- };
@@ -1,45 +0,0 @@
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" | "Processado" | "Estornado" | "Em Edição";
18
- };
19
- export declare const OrigemMovimentacaoEstoque: {
20
- Manual: string;
21
- NotaFiscal: string;
22
- Pedido: string;
23
- description(val: string): "enum not found" | "Pedido" | "Nota Fiscal" | "Manual";
24
- };
25
- export declare const TipoCategoria: {
26
- Beleza: string;
27
- Bolsa: string;
28
- Calçado: string;
29
- Celular: string;
30
- Decoracao: string;
31
- Eletrodomestico: string;
32
- Eletronico: string;
33
- Esporte: string;
34
- Ferramenta: string;
35
- Game: string;
36
- Movel: string;
37
- Vestuario: string;
38
- Saude: string;
39
- description(val: string): "Beleza" | "Bolsas" | "Calçados" | "Celular" | "Decoração" | "Eletrodomésticos" | "Eletrônicos" | "Esportes" | "Ferramentas" | "Games" | "Móveis" | "Vestuário" | "Saúde" | undefined;
40
- };
41
- export declare const TipoImagemGaleria: {
42
- Geral: string;
43
- PorGrade: string;
44
- description(val: string): "enum not found" | "Geral" | "Por Grade";
45
- };
@@ -1,132 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoImagemGaleria = exports.TipoCategoria = exports.OrigemMovimentacaoEstoque = exports.SituacaoMovimentacaoEstoque = exports.TipoValoracao = exports.TipoProduto = void 0;
4
- exports.TipoProduto = {
5
- Simples: '0',
6
- ComGrade: '1',
7
- description(val) {
8
- switch (val) {
9
- case this.Simples:
10
- return 'Simples';
11
- case this.ComGrade:
12
- return 'Com Grade';
13
- default:
14
- return 'enum not found';
15
- }
16
- },
17
- };
18
- exports.TipoValoracao = {
19
- PrecoAquisicao: '0',
20
- PrecoCusto: '1',
21
- PrecoVenda: '2',
22
- PrecoAtacado: '3',
23
- description(val) {
24
- switch (val) {
25
- case this.PrecoAquisicao:
26
- return 'Preço de Aquisição';
27
- case this.PrecoCusto:
28
- return 'Preço de Custo';
29
- case this.PrecoVenda:
30
- return 'Preço de Venda';
31
- case this.PrecoAtacado:
32
- return 'Preço de Atacado';
33
- default:
34
- return 'enum not found';
35
- }
36
- },
37
- };
38
- exports.SituacaoMovimentacaoEstoque = {
39
- EmEdicao: '0',
40
- Processado: '1',
41
- Estornado: '2',
42
- description(val) {
43
- switch (val) {
44
- case this.EmEdicao:
45
- return 'Em Edição';
46
- case this.Processado:
47
- return 'Processado';
48
- case this.Estornado:
49
- return 'Estornado';
50
- default:
51
- return 'enum not found';
52
- }
53
- },
54
- };
55
- exports.OrigemMovimentacaoEstoque = {
56
- Manual: '1',
57
- NotaFiscal: '2',
58
- Pedido: '3',
59
- description(val) {
60
- switch (val) {
61
- case this.Manual:
62
- return 'Manual';
63
- case this.NotaFiscal:
64
- return 'Nota Fiscal';
65
- case this.Pedido:
66
- return 'Pedido';
67
- default:
68
- return 'enum not found';
69
- }
70
- },
71
- };
72
- exports.TipoCategoria = {
73
- Beleza: '0',
74
- Bolsa: '1',
75
- Calçado: '2',
76
- Celular: '3',
77
- Decoracao: '4',
78
- Eletrodomestico: '5',
79
- Eletronico: '6',
80
- Esporte: '7',
81
- Ferramenta: '8',
82
- Game: '9',
83
- Movel: '10',
84
- Vestuario: '11',
85
- Saude: '12',
86
- description(val) {
87
- switch (val) {
88
- case this.Beleza:
89
- return 'Beleza';
90
- case this.Bolsa:
91
- return 'Bolsas';
92
- case this.Calçado:
93
- return 'Calçados';
94
- case this.Celular:
95
- return 'Celular';
96
- case this.Decoracao:
97
- return 'Decoração';
98
- case this.Eletrodomestico:
99
- return 'Eletrodomésticos';
100
- case this.Eletronico:
101
- return 'Eletrônicos';
102
- case this.Esporte:
103
- return 'Esportes';
104
- case this.Ferramenta:
105
- return 'Ferramentas';
106
- case this.Game:
107
- return 'Games';
108
- case this.Movel:
109
- return 'Móveis';
110
- case this.Vestuario:
111
- return 'Vestuário';
112
- case this.Saude:
113
- return 'Saúde';
114
- default:
115
- break;
116
- }
117
- },
118
- };
119
- exports.TipoImagemGaleria = {
120
- Geral: '0',
121
- PorGrade: '1',
122
- description(val) {
123
- switch (val) {
124
- case this.Geral:
125
- return 'Geral';
126
- case this.PorGrade:
127
- return 'Por Grade';
128
- default:
129
- return 'enum not found';
130
- }
131
- },
132
- };
@@ -1,15 +0,0 @@
1
- export declare const TipoEndereco: {
2
- Residencial: string;
3
- Comercial: string;
4
- description(val: string): "enum not found" | "Residencial" | "Comercial";
5
- };
6
- export declare const TipoPessoa: {
7
- Fisico: string;
8
- Juridico: string;
9
- description(val: string): "enum not found" | "Físico" | "Jurídico";
10
- };
11
- export declare const GeneroPessoa: {
12
- Masculino: string;
13
- Feminino: string;
14
- description(val: string): "enum not found" | "Masculino" | "Feminino";
15
- };