mdz-enum 1.1.60 → 1.1.62
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 +1 -1
- package/dist/checkout/index.d.ts +27 -27
- package/dist/checkout/index.js +80 -80
- package/dist/commercial/index.d.ts +117 -117
- package/dist/commercial/index.js +337 -337
- package/dist/common/index.d.ts +17 -0
- package/dist/common/index.js +51 -0
- package/dist/config/index.d.ts +95 -95
- package/dist/config/index.js +273 -273
- package/dist/finance/index.d.ts +113 -113
- package/dist/finance/index.js +327 -327
- package/dist/fiscal/index.d.ts +291 -291
- package/dist/fiscal/index.js +862 -862
- package/dist/functions.d.ts +4 -4
- package/dist/functions.js +37 -37
- package/dist/general/index.d.ts +56 -56
- package/dist/general/index.js +205 -205
- package/dist/index.d.ts +13 -12
- package/dist/index.js +127 -123
- package/dist/integration/index.d.ts +10 -10
- package/dist/integration/index.js +31 -31
- package/dist/logistics/index.d.ts +60 -60
- package/dist/logistics/index.js +174 -174
- package/dist/people/index.d.ts +20 -20
- package/dist/people/index.js +59 -59
- package/dist/plataform/index.d.ts +12 -12
- package/dist/plataform/index.js +37 -37
- package/dist/platform/index.d.ts +22 -22
- package/dist/platform/index.js +65 -65
- package/dist/reports/index.d.ts +12 -12
- package/dist/reports/index.js +33 -33
- package/package.json +32 -33
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const TipoSolicitacao: {
|
|
2
|
+
SPED: string;
|
|
3
|
+
SINTEGRA: string;
|
|
4
|
+
description(val: string): "enum not found" | "SPED" | "SINTEGRA";
|
|
5
|
+
};
|
|
6
|
+
export declare const SituacaoSolicitacao: {
|
|
7
|
+
EmEspera: string;
|
|
8
|
+
EmFila: string;
|
|
9
|
+
EmProcessamento: string;
|
|
10
|
+
Encerrada: string;
|
|
11
|
+
description(val: string): "enum not found" | "Em Processamento" | "Em Espera" | "Em Fila" | "Encerrada";
|
|
12
|
+
};
|
|
13
|
+
export declare const SituacaoFila: {
|
|
14
|
+
AguardandoProcessamento: string;
|
|
15
|
+
Processando: string;
|
|
16
|
+
description(val: string): "enum not found" | "Aguardando Processamento" | "Processando";
|
|
17
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SituacaoFila = exports.SituacaoSolicitacao = exports.TipoSolicitacao = void 0;
|
|
4
|
+
exports.TipoSolicitacao = {
|
|
5
|
+
SPED: '1',
|
|
6
|
+
SINTEGRA: '2',
|
|
7
|
+
description(val) {
|
|
8
|
+
switch (val) {
|
|
9
|
+
case this.SPED:
|
|
10
|
+
return 'SPED';
|
|
11
|
+
case this.SINTEGRA:
|
|
12
|
+
return 'SINTEGRA';
|
|
13
|
+
default:
|
|
14
|
+
return 'enum not found';
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
exports.SituacaoSolicitacao = {
|
|
19
|
+
EmEspera: '1',
|
|
20
|
+
EmFila: '2',
|
|
21
|
+
EmProcessamento: '3',
|
|
22
|
+
Encerrada: '4',
|
|
23
|
+
description(val) {
|
|
24
|
+
switch (val) {
|
|
25
|
+
case this.EmEspera:
|
|
26
|
+
return 'Em Espera';
|
|
27
|
+
case this.EmFila:
|
|
28
|
+
return 'Em Fila';
|
|
29
|
+
case this.EmProcessamento:
|
|
30
|
+
return 'Em Processamento';
|
|
31
|
+
case this.Encerrada:
|
|
32
|
+
return 'Encerrada';
|
|
33
|
+
default:
|
|
34
|
+
return 'enum not found';
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
exports.SituacaoFila = {
|
|
39
|
+
AguardandoProcessamento: '1',
|
|
40
|
+
Processando: '2',
|
|
41
|
+
description(val) {
|
|
42
|
+
switch (val) {
|
|
43
|
+
case this.AguardandoProcessamento:
|
|
44
|
+
return 'Aguardando Processamento';
|
|
45
|
+
case this.Processando:
|
|
46
|
+
return 'Processando';
|
|
47
|
+
default:
|
|
48
|
+
return 'enum not found';
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
};
|
package/dist/config/index.d.ts
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
export declare const TipoPermissao: {
|
|
2
|
-
Visualizacao: string;
|
|
3
|
-
Funcao: string;
|
|
4
|
-
description(val: string): "enum not found" | "Visualização" | "Função";
|
|
5
|
-
};
|
|
6
|
-
export declare const TipoDispositivo: {
|
|
7
|
-
Cliente: string;
|
|
8
|
-
Servidor: string;
|
|
9
|
-
description(val: string): "enum not found" | "Cliente" | "Servidor";
|
|
10
|
-
};
|
|
11
|
-
export declare const TipoPeriferico: {
|
|
12
|
-
ImpressoraA4: string;
|
|
13
|
-
Balanca: string;
|
|
14
|
-
Sat: string;
|
|
15
|
-
ImpressoraComprovante: string;
|
|
16
|
-
ImpressoraEtiqueta: string;
|
|
17
|
-
description(val: string): "enum not found" | "Impressora A4" | "Impressora Comprovante" | "Impressora Etiqueta" | "Balanca" | "Sat";
|
|
18
|
-
};
|
|
19
|
-
export declare const ModeloSat: {
|
|
20
|
-
Bematech: string;
|
|
21
|
-
Gertec: string;
|
|
22
|
-
Urano: string;
|
|
23
|
-
Generica: string;
|
|
24
|
-
Sweda: string;
|
|
25
|
-
Tanca: string;
|
|
26
|
-
Dimep: string;
|
|
27
|
-
Nitere: string;
|
|
28
|
-
Elgin: string;
|
|
29
|
-
Care: string;
|
|
30
|
-
Epson: string;
|
|
31
|
-
ControlId: string;
|
|
32
|
-
description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId";
|
|
33
|
-
};
|
|
34
|
-
export declare const VersaoLayoutSat: {
|
|
35
|
-
Layout007: string;
|
|
36
|
-
Layout008: string;
|
|
37
|
-
description(val: string): "enum not found" | "Layout 0.07" | "Layout 0.08";
|
|
38
|
-
};
|
|
39
|
-
export declare const ModoFinalizacao: {
|
|
40
|
-
ImprimirDireto: string;
|
|
41
|
-
SolicitarModal: string;
|
|
42
|
-
description(val: string): "enum not found" | "Imprimir Direto" | "Solicitar Compartilhamento";
|
|
43
|
-
};
|
|
44
|
-
export declare const TipoPrecoPadrao: {
|
|
45
|
-
Varejo: string;
|
|
46
|
-
Atacado: string;
|
|
47
|
-
description(val: string): "enum not found" | "Varejo" | "Atacado";
|
|
48
|
-
};
|
|
49
|
-
export declare const TipoEtiqueta: {
|
|
50
|
-
Produto: string;
|
|
51
|
-
Pedido: string;
|
|
52
|
-
description(val: string): "enum not found" | "Pedido" | "Produto";
|
|
53
|
-
};
|
|
54
|
-
export declare const ModeloEtiqueta: {
|
|
55
|
-
Personalizada: string;
|
|
56
|
-
PreDefinida: string;
|
|
57
|
-
description(val: string): "enum not found" | "Pré Definida" | "Personalizada";
|
|
58
|
-
};
|
|
59
|
-
export declare const ParametroEtiquetaProduto: {
|
|
60
|
-
Sku: string;
|
|
61
|
-
Nome: string;
|
|
62
|
-
Barra: string;
|
|
63
|
-
Marca: string;
|
|
64
|
-
Grade: string;
|
|
65
|
-
Pv: string;
|
|
66
|
-
Pa: string;
|
|
67
|
-
Pvp: string;
|
|
68
|
-
Pap: string;
|
|
69
|
-
description(val: string): "enum not found" | "Sku" | "Descrição" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional";
|
|
70
|
-
};
|
|
71
|
-
export declare const ModeloPimaco: {
|
|
72
|
-
A4351: string;
|
|
73
|
-
description(val: string): "enum not found" | "A4351";
|
|
74
|
-
};
|
|
75
|
-
export declare const TipoImpressao: {
|
|
76
|
-
Arquivo: string;
|
|
77
|
-
Texto: string;
|
|
78
|
-
description(val: string): "enum not found" | "Arquivo" | "Texto";
|
|
79
|
-
};
|
|
80
|
-
export declare const ModeloBalanca: {
|
|
81
|
-
Filizola: string;
|
|
82
|
-
Toledo: string;
|
|
83
|
-
description(val: string): "enum not found" | "Filizola" | "Toledo";
|
|
84
|
-
};
|
|
85
|
-
export declare const TipoInformacaoBalanca: {
|
|
86
|
-
Peso: string;
|
|
87
|
-
PrecoTotal: string;
|
|
88
|
-
description(val: string): "enum not found" | "Peso" | "Preço Total";
|
|
89
|
-
};
|
|
90
|
-
export declare const TipoAtualizacaoSocket: {
|
|
91
|
-
Produto: string;
|
|
92
|
-
TabelaPreco: string;
|
|
93
|
-
Promocao: string;
|
|
94
|
-
description(val: string): "enum not found" | "Produto" | "Tabela de Preço" | "Promoção";
|
|
95
|
-
};
|
|
1
|
+
export declare const TipoPermissao: {
|
|
2
|
+
Visualizacao: string;
|
|
3
|
+
Funcao: string;
|
|
4
|
+
description(val: string): "enum not found" | "Visualização" | "Função";
|
|
5
|
+
};
|
|
6
|
+
export declare const TipoDispositivo: {
|
|
7
|
+
Cliente: string;
|
|
8
|
+
Servidor: string;
|
|
9
|
+
description(val: string): "enum not found" | "Cliente" | "Servidor";
|
|
10
|
+
};
|
|
11
|
+
export declare const TipoPeriferico: {
|
|
12
|
+
ImpressoraA4: string;
|
|
13
|
+
Balanca: string;
|
|
14
|
+
Sat: string;
|
|
15
|
+
ImpressoraComprovante: string;
|
|
16
|
+
ImpressoraEtiqueta: string;
|
|
17
|
+
description(val: string): "enum not found" | "Impressora A4" | "Impressora Comprovante" | "Impressora Etiqueta" | "Balanca" | "Sat";
|
|
18
|
+
};
|
|
19
|
+
export declare const ModeloSat: {
|
|
20
|
+
Bematech: string;
|
|
21
|
+
Gertec: string;
|
|
22
|
+
Urano: string;
|
|
23
|
+
Generica: string;
|
|
24
|
+
Sweda: string;
|
|
25
|
+
Tanca: string;
|
|
26
|
+
Dimep: string;
|
|
27
|
+
Nitere: string;
|
|
28
|
+
Elgin: string;
|
|
29
|
+
Care: string;
|
|
30
|
+
Epson: string;
|
|
31
|
+
ControlId: string;
|
|
32
|
+
description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId";
|
|
33
|
+
};
|
|
34
|
+
export declare const VersaoLayoutSat: {
|
|
35
|
+
Layout007: string;
|
|
36
|
+
Layout008: string;
|
|
37
|
+
description(val: string): "enum not found" | "Layout 0.07" | "Layout 0.08";
|
|
38
|
+
};
|
|
39
|
+
export declare const ModoFinalizacao: {
|
|
40
|
+
ImprimirDireto: string;
|
|
41
|
+
SolicitarModal: string;
|
|
42
|
+
description(val: string): "enum not found" | "Imprimir Direto" | "Solicitar Compartilhamento";
|
|
43
|
+
};
|
|
44
|
+
export declare const TipoPrecoPadrao: {
|
|
45
|
+
Varejo: string;
|
|
46
|
+
Atacado: string;
|
|
47
|
+
description(val: string): "enum not found" | "Varejo" | "Atacado";
|
|
48
|
+
};
|
|
49
|
+
export declare const TipoEtiqueta: {
|
|
50
|
+
Produto: string;
|
|
51
|
+
Pedido: string;
|
|
52
|
+
description(val: string): "enum not found" | "Pedido" | "Produto";
|
|
53
|
+
};
|
|
54
|
+
export declare const ModeloEtiqueta: {
|
|
55
|
+
Personalizada: string;
|
|
56
|
+
PreDefinida: string;
|
|
57
|
+
description(val: string): "enum not found" | "Pré Definida" | "Personalizada";
|
|
58
|
+
};
|
|
59
|
+
export declare const ParametroEtiquetaProduto: {
|
|
60
|
+
Sku: string;
|
|
61
|
+
Nome: string;
|
|
62
|
+
Barra: string;
|
|
63
|
+
Marca: string;
|
|
64
|
+
Grade: string;
|
|
65
|
+
Pv: string;
|
|
66
|
+
Pa: string;
|
|
67
|
+
Pvp: string;
|
|
68
|
+
Pap: string;
|
|
69
|
+
description(val: string): "enum not found" | "Sku" | "Descrição" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional";
|
|
70
|
+
};
|
|
71
|
+
export declare const ModeloPimaco: {
|
|
72
|
+
A4351: string;
|
|
73
|
+
description(val: string): "enum not found" | "A4351";
|
|
74
|
+
};
|
|
75
|
+
export declare const TipoImpressao: {
|
|
76
|
+
Arquivo: string;
|
|
77
|
+
Texto: string;
|
|
78
|
+
description(val: string): "enum not found" | "Arquivo" | "Texto";
|
|
79
|
+
};
|
|
80
|
+
export declare const ModeloBalanca: {
|
|
81
|
+
Filizola: string;
|
|
82
|
+
Toledo: string;
|
|
83
|
+
description(val: string): "enum not found" | "Filizola" | "Toledo";
|
|
84
|
+
};
|
|
85
|
+
export declare const TipoInformacaoBalanca: {
|
|
86
|
+
Peso: string;
|
|
87
|
+
PrecoTotal: string;
|
|
88
|
+
description(val: string): "enum not found" | "Peso" | "Preço Total";
|
|
89
|
+
};
|
|
90
|
+
export declare const TipoAtualizacaoSocket: {
|
|
91
|
+
Produto: string;
|
|
92
|
+
TabelaPreco: string;
|
|
93
|
+
Promocao: string;
|
|
94
|
+
description(val: string): "enum not found" | "Produto" | "Tabela de Preço" | "Promoção";
|
|
95
|
+
};
|