mdz-enum 1.5.76 → 1.5.78
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 +33 -33
- package/dist/checkout/index.js +97 -97
- package/dist/commercial/index.d.ts +232 -232
- package/dist/commercial/index.js +564 -564
- package/dist/common/index.d.ts +52 -52
- package/dist/common/index.js +151 -151
- package/dist/config/index.d.ts +167 -167
- package/dist/config/index.js +481 -481
- package/dist/finance/index.d.ts +170 -170
- package/dist/finance/index.js +442 -442
- package/dist/fiscal/index.d.ts +486 -486
- package/dist/fiscal/index.js +1207 -1207
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +265 -265
- package/dist/general/index.js +512 -512
- package/dist/index.d.ts +14 -14
- package/dist/index.js +219 -218
- package/dist/integration/index.d.ts +27 -27
- package/dist/integration/index.js +80 -80
- package/dist/logistics/index.d.ts +130 -130
- package/dist/logistics/index.js +376 -376
- package/dist/marketplace/templates/components/index.d.ts +277 -277
- package/dist/marketplace/templates/components/index.js +295 -295
- 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 +458 -458
- package/dist/marketplace/templates/index.js +44 -44
- package/dist/marketplace/templates/pages/index.d.ts +197 -197
- package/dist/marketplace/templates/pages/index.js +373 -373
- package/dist/marketplace/templates/reference/index.d.ts +24 -24
- package/dist/marketplace/templates/reference/index.js +26 -26
- package/dist/people/index.d.ts +50 -43
- package/dist/people/index.js +145 -125
- package/dist/platform/index.d.ts +197 -197
- package/dist/platform/index.js +570 -570
- package/dist/reports/index.d.ts +57 -57
- package/dist/reports/index.js +168 -168
- package/package.json +33 -33
package/README.MD
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# mdz-enum
|
|
2
|
-
|
|
3
|
-
Gerenciador de enumerados e classes.
|
|
4
|
-
|
|
5
|
-
VESÃO DE SOFTWARE: vide `package.json`
|
|
6
|
-
|
|
7
|
-
NODE: `14.18.1`
|
|
1
|
+
# mdz-enum
|
|
2
|
+
|
|
3
|
+
Gerenciador de enumerados e classes.
|
|
4
|
+
|
|
5
|
+
VESÃO DE SOFTWARE: vide `package.json`
|
|
6
|
+
|
|
7
|
+
NODE: `14.18.1`
|
package/dist/checkout/index.d.ts
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export declare const TipoItemCheckout: {
|
|
2
|
-
Produto: string;
|
|
3
|
-
Categoria: string;
|
|
4
|
-
Marca: string;
|
|
5
|
-
description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria";
|
|
6
|
-
};
|
|
7
|
-
export declare const TipoBuscaAutocomplete: {
|
|
8
|
-
Produto: string;
|
|
9
|
-
Pessoa: string;
|
|
10
|
-
Usuario: string;
|
|
11
|
-
Pedido: string;
|
|
12
|
-
description(val: string): "enum not found" | "Produto" | "Pedido" | "Pessoa" | "Usuário";
|
|
13
|
-
};
|
|
14
|
-
export declare const ModoVisualizacaoMobile: {
|
|
15
|
-
Insert: string;
|
|
16
|
-
List: string;
|
|
17
|
-
description(val: string): "enum not found" | "Insert" | "List";
|
|
18
|
-
};
|
|
19
|
-
export declare const ModoOperacaoPdv: {
|
|
20
|
-
Venda: string;
|
|
21
|
-
Pedido: string;
|
|
22
|
-
Orcamento: string;
|
|
23
|
-
Devolucao: string;
|
|
24
|
-
Consignacao: string;
|
|
25
|
-
Recebimento: string;
|
|
26
|
-
ValeCredito: string;
|
|
27
|
-
description(val: string): "enum not found" | "Venda" | "Consignação" | "Pedido" | "Orçamento" | "Recebimento" | "Devolução" | "Vale Crédito";
|
|
28
|
-
};
|
|
29
|
-
export declare const TipoItemOperacaoPdv: {
|
|
30
|
-
Produto: string;
|
|
31
|
-
Servico: string;
|
|
32
|
-
description(val: string): "enum not found" | "Produto" | "Serviço";
|
|
33
|
-
};
|
|
1
|
+
export declare const TipoItemCheckout: {
|
|
2
|
+
Produto: string;
|
|
3
|
+
Categoria: string;
|
|
4
|
+
Marca: string;
|
|
5
|
+
description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria";
|
|
6
|
+
};
|
|
7
|
+
export declare const TipoBuscaAutocomplete: {
|
|
8
|
+
Produto: string;
|
|
9
|
+
Pessoa: string;
|
|
10
|
+
Usuario: string;
|
|
11
|
+
Pedido: string;
|
|
12
|
+
description(val: string): "enum not found" | "Produto" | "Pedido" | "Pessoa" | "Usuário";
|
|
13
|
+
};
|
|
14
|
+
export declare const ModoVisualizacaoMobile: {
|
|
15
|
+
Insert: string;
|
|
16
|
+
List: string;
|
|
17
|
+
description(val: string): "enum not found" | "Insert" | "List";
|
|
18
|
+
};
|
|
19
|
+
export declare const ModoOperacaoPdv: {
|
|
20
|
+
Venda: string;
|
|
21
|
+
Pedido: string;
|
|
22
|
+
Orcamento: string;
|
|
23
|
+
Devolucao: string;
|
|
24
|
+
Consignacao: string;
|
|
25
|
+
Recebimento: string;
|
|
26
|
+
ValeCredito: string;
|
|
27
|
+
description(val: string): "enum not found" | "Venda" | "Consignação" | "Pedido" | "Orçamento" | "Recebimento" | "Devolução" | "Vale Crédito";
|
|
28
|
+
};
|
|
29
|
+
export declare const TipoItemOperacaoPdv: {
|
|
30
|
+
Produto: string;
|
|
31
|
+
Servico: string;
|
|
32
|
+
description(val: string): "enum not found" | "Produto" | "Serviço";
|
|
33
|
+
};
|
package/dist/checkout/index.js
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TipoItemOperacaoPdv = exports.ModoOperacaoPdv = exports.ModoVisualizacaoMobile = exports.TipoBuscaAutocomplete = exports.TipoItemCheckout = void 0;
|
|
4
|
-
exports.TipoItemCheckout = {
|
|
5
|
-
Produto: '0',
|
|
6
|
-
Categoria: '1',
|
|
7
|
-
Marca: '2',
|
|
8
|
-
description(val) {
|
|
9
|
-
switch (val) {
|
|
10
|
-
case this.Produto:
|
|
11
|
-
return 'Produto';
|
|
12
|
-
case this.Categoria:
|
|
13
|
-
return 'Categoria';
|
|
14
|
-
case this.Marca:
|
|
15
|
-
return 'Marca';
|
|
16
|
-
default:
|
|
17
|
-
return 'enum not found';
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
exports.TipoBuscaAutocomplete = {
|
|
22
|
-
Produto: '0',
|
|
23
|
-
Pessoa: '1',
|
|
24
|
-
Usuario: '2',
|
|
25
|
-
Pedido: '3',
|
|
26
|
-
description(val) {
|
|
27
|
-
switch (val) {
|
|
28
|
-
case this.Produto:
|
|
29
|
-
return 'Produto';
|
|
30
|
-
case this.Pessoa:
|
|
31
|
-
return 'Pessoa';
|
|
32
|
-
case this.Usuario:
|
|
33
|
-
return 'Usuário';
|
|
34
|
-
case this.Pedido:
|
|
35
|
-
return 'Pedido';
|
|
36
|
-
default:
|
|
37
|
-
return 'enum not found';
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
|
-
exports.ModoVisualizacaoMobile = {
|
|
42
|
-
Insert: '0',
|
|
43
|
-
List: '1',
|
|
44
|
-
description(val) {
|
|
45
|
-
switch (val) {
|
|
46
|
-
case this.Insert:
|
|
47
|
-
return 'Insert';
|
|
48
|
-
case this.List:
|
|
49
|
-
return 'List';
|
|
50
|
-
default:
|
|
51
|
-
return 'enum not found';
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
};
|
|
55
|
-
exports.ModoOperacaoPdv = {
|
|
56
|
-
Venda: '0',
|
|
57
|
-
Pedido: '1',
|
|
58
|
-
Orcamento: '2',
|
|
59
|
-
Devolucao: '3',
|
|
60
|
-
Consignacao: '4',
|
|
61
|
-
Recebimento: '5',
|
|
62
|
-
ValeCredito: '6',
|
|
63
|
-
description(val) {
|
|
64
|
-
switch (val) {
|
|
65
|
-
case this.Venda:
|
|
66
|
-
return 'Venda';
|
|
67
|
-
case this.Pedido:
|
|
68
|
-
return 'Pedido';
|
|
69
|
-
case this.Orcamento:
|
|
70
|
-
return 'Orçamento';
|
|
71
|
-
case this.Devolucao:
|
|
72
|
-
return 'Devolução';
|
|
73
|
-
case this.Consignacao:
|
|
74
|
-
return 'Consignação';
|
|
75
|
-
case this.Recebimento:
|
|
76
|
-
return 'Recebimento';
|
|
77
|
-
case this.ValeCredito:
|
|
78
|
-
return 'Vale Crédito';
|
|
79
|
-
default:
|
|
80
|
-
return 'enum not found';
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
};
|
|
84
|
-
exports.TipoItemOperacaoPdv = {
|
|
85
|
-
Produto: '0',
|
|
86
|
-
Servico: '1',
|
|
87
|
-
description(val) {
|
|
88
|
-
switch (val) {
|
|
89
|
-
case this.Produto:
|
|
90
|
-
return 'Produto';
|
|
91
|
-
case this.Servico:
|
|
92
|
-
return 'Serviço';
|
|
93
|
-
default:
|
|
94
|
-
return 'enum not found';
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TipoItemOperacaoPdv = exports.ModoOperacaoPdv = exports.ModoVisualizacaoMobile = exports.TipoBuscaAutocomplete = exports.TipoItemCheckout = void 0;
|
|
4
|
+
exports.TipoItemCheckout = {
|
|
5
|
+
Produto: '0',
|
|
6
|
+
Categoria: '1',
|
|
7
|
+
Marca: '2',
|
|
8
|
+
description(val) {
|
|
9
|
+
switch (val) {
|
|
10
|
+
case this.Produto:
|
|
11
|
+
return 'Produto';
|
|
12
|
+
case this.Categoria:
|
|
13
|
+
return 'Categoria';
|
|
14
|
+
case this.Marca:
|
|
15
|
+
return 'Marca';
|
|
16
|
+
default:
|
|
17
|
+
return 'enum not found';
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
exports.TipoBuscaAutocomplete = {
|
|
22
|
+
Produto: '0',
|
|
23
|
+
Pessoa: '1',
|
|
24
|
+
Usuario: '2',
|
|
25
|
+
Pedido: '3',
|
|
26
|
+
description(val) {
|
|
27
|
+
switch (val) {
|
|
28
|
+
case this.Produto:
|
|
29
|
+
return 'Produto';
|
|
30
|
+
case this.Pessoa:
|
|
31
|
+
return 'Pessoa';
|
|
32
|
+
case this.Usuario:
|
|
33
|
+
return 'Usuário';
|
|
34
|
+
case this.Pedido:
|
|
35
|
+
return 'Pedido';
|
|
36
|
+
default:
|
|
37
|
+
return 'enum not found';
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
exports.ModoVisualizacaoMobile = {
|
|
42
|
+
Insert: '0',
|
|
43
|
+
List: '1',
|
|
44
|
+
description(val) {
|
|
45
|
+
switch (val) {
|
|
46
|
+
case this.Insert:
|
|
47
|
+
return 'Insert';
|
|
48
|
+
case this.List:
|
|
49
|
+
return 'List';
|
|
50
|
+
default:
|
|
51
|
+
return 'enum not found';
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
exports.ModoOperacaoPdv = {
|
|
56
|
+
Venda: '0',
|
|
57
|
+
Pedido: '1',
|
|
58
|
+
Orcamento: '2',
|
|
59
|
+
Devolucao: '3',
|
|
60
|
+
Consignacao: '4',
|
|
61
|
+
Recebimento: '5',
|
|
62
|
+
ValeCredito: '6',
|
|
63
|
+
description(val) {
|
|
64
|
+
switch (val) {
|
|
65
|
+
case this.Venda:
|
|
66
|
+
return 'Venda';
|
|
67
|
+
case this.Pedido:
|
|
68
|
+
return 'Pedido';
|
|
69
|
+
case this.Orcamento:
|
|
70
|
+
return 'Orçamento';
|
|
71
|
+
case this.Devolucao:
|
|
72
|
+
return 'Devolução';
|
|
73
|
+
case this.Consignacao:
|
|
74
|
+
return 'Consignação';
|
|
75
|
+
case this.Recebimento:
|
|
76
|
+
return 'Recebimento';
|
|
77
|
+
case this.ValeCredito:
|
|
78
|
+
return 'Vale Crédito';
|
|
79
|
+
default:
|
|
80
|
+
return 'enum not found';
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
};
|
|
84
|
+
exports.TipoItemOperacaoPdv = {
|
|
85
|
+
Produto: '0',
|
|
86
|
+
Servico: '1',
|
|
87
|
+
description(val) {
|
|
88
|
+
switch (val) {
|
|
89
|
+
case this.Produto:
|
|
90
|
+
return 'Produto';
|
|
91
|
+
case this.Servico:
|
|
92
|
+
return 'Serviço';
|
|
93
|
+
default:
|
|
94
|
+
return 'enum not found';
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
};
|