mdz-enum 1.1.57 → 1.1.59
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 +111 -111
- package/dist/commercial/index.js +320 -320
- package/dist/config/index.d.ts +95 -89
- package/dist/config/index.js +273 -256
- 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 +12 -12
- package/dist/index.js +122 -120
- 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 -17
- package/dist/platform/index.js +65 -51
- package/dist/reports/index.d.ts +12 -12
- package/dist/reports/index.js +33 -33
- package/package.json +33 -32
package/dist/config/index.d.ts
CHANGED
|
@@ -1,89 +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
|
-
};
|
|
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
|
+
};
|