mdz-enum 1.6.80 → 1.6.82
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/dist/checkout/index.d.ts +33 -33
- package/dist/checkout/index.js +97 -97
- package/dist/commercial/index.d.ts +254 -248
- package/dist/commercial/index.js +627 -610
- package/dist/common/index.d.ts +71 -71
- package/dist/common/index.js +205 -205
- package/dist/config/index.d.ts +200 -200
- package/dist/config/index.js +576 -576
- package/dist/eva/index.d.ts +164 -145
- package/dist/eva/index.js +233 -179
- package/dist/finance/index.d.ts +240 -240
- package/dist/finance/index.js +728 -728
- package/dist/fiscal/index.d.ts +572 -572
- package/dist/fiscal/index.js +1484 -1484
- 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/home/index.d.ts +88 -88
- package/dist/home/index.js +268 -268
- package/dist/index.d.ts +16 -16
- package/dist/index.js +275 -270
- package/dist/integration/index.d.ts +37 -37
- package/dist/integration/index.js +109 -109
- package/dist/logistics/index.d.ts +195 -195
- package/dist/logistics/index.js +554 -554
- package/dist/marketplace/templates/components/index.d.ts +352 -352
- package/dist/marketplace/templates/components/index.js +383 -383
- 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 +589 -592
- package/dist/marketplace/templates/index.js +49 -49
- package/dist/marketplace/templates/pages/index.d.ts +254 -254
- package/dist/marketplace/templates/pages/index.js +443 -443
- 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 +65 -65
- package/dist/people/index.js +189 -189
- package/dist/platform/index.d.ts +220 -220
- package/dist/platform/index.js +638 -638
- package/dist/reports/index.d.ts +103 -103
- package/dist/reports/index.js +301 -301
- package/package.json +1 -1
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
export declare const TipoIntegracaoPagamento: {
|
|
2
|
-
Tuo: string;
|
|
3
|
-
ModerBank: string;
|
|
4
|
-
SafeTwoPay: string;
|
|
5
|
-
Interno: string;
|
|
6
|
-
Pagbank: string;
|
|
7
|
-
description(val: string): "enum not found" | "ModerBank" | "Tuo Bank" | "Safe2Pay" | "Interno" | "Pagbank";
|
|
8
|
-
};
|
|
9
|
-
export declare const TipoPagamentoTuo: {
|
|
10
|
-
Boleto: number;
|
|
11
|
-
Debito: number;
|
|
12
|
-
Cartao: number;
|
|
13
|
-
description(val: number): "enum not found" | "Boleto" | "Cartão de Crédito" | "Débito";
|
|
14
|
-
};
|
|
15
|
-
export declare const TipoPagamentoSafeTwoPay: {
|
|
16
|
-
Boleto: number;
|
|
17
|
-
CartaoCredito: number;
|
|
18
|
-
PIX: number;
|
|
19
|
-
description(val: number): "enum not found" | "Boleto" | "Cartão de Crédito" | "PIX";
|
|
20
|
-
};
|
|
21
|
-
export declare const TipoProcessamentoPlugFourMarket: {
|
|
22
|
-
CadastroProduto: number;
|
|
23
|
-
AtualizacaoEstoque: number;
|
|
24
|
-
ReceberPedido: number;
|
|
25
|
-
ConfirmarPedido: number;
|
|
26
|
-
ConfirmarEnvio: number;
|
|
27
|
-
ConfirmarEntrega: number;
|
|
28
|
-
FaturarPedido: number;
|
|
29
|
-
ParearCategorias: number;
|
|
30
|
-
description(val: number): "enum not found" | "Cadastro Produto" | "Atualização Estoque" | "Receber Pedido" | "Confirmar Pedido" | "Confirmar Envio" | "Confirmar Entrega" | "Faturar Pedido" | "Parear Categorias";
|
|
31
|
-
};
|
|
32
|
-
export declare const SituacaoPareamentoCategoria: {
|
|
33
|
-
Pareada: string;
|
|
34
|
-
Pendente: string;
|
|
35
|
-
Ausente: string;
|
|
36
|
-
description(val: string): "enum not found" | "Pareada" | "Aguardando pareamento" | "Ausente no marketplace";
|
|
37
|
-
};
|
|
1
|
+
export declare const TipoIntegracaoPagamento: {
|
|
2
|
+
Tuo: string;
|
|
3
|
+
ModerBank: string;
|
|
4
|
+
SafeTwoPay: string;
|
|
5
|
+
Interno: string;
|
|
6
|
+
Pagbank: string;
|
|
7
|
+
description(val: string): "enum not found" | "ModerBank" | "Tuo Bank" | "Safe2Pay" | "Interno" | "Pagbank";
|
|
8
|
+
};
|
|
9
|
+
export declare const TipoPagamentoTuo: {
|
|
10
|
+
Boleto: number;
|
|
11
|
+
Debito: number;
|
|
12
|
+
Cartao: number;
|
|
13
|
+
description(val: number): "enum not found" | "Boleto" | "Cartão de Crédito" | "Débito";
|
|
14
|
+
};
|
|
15
|
+
export declare const TipoPagamentoSafeTwoPay: {
|
|
16
|
+
Boleto: number;
|
|
17
|
+
CartaoCredito: number;
|
|
18
|
+
PIX: number;
|
|
19
|
+
description(val: number): "enum not found" | "Boleto" | "Cartão de Crédito" | "PIX";
|
|
20
|
+
};
|
|
21
|
+
export declare const TipoProcessamentoPlugFourMarket: {
|
|
22
|
+
CadastroProduto: number;
|
|
23
|
+
AtualizacaoEstoque: number;
|
|
24
|
+
ReceberPedido: number;
|
|
25
|
+
ConfirmarPedido: number;
|
|
26
|
+
ConfirmarEnvio: number;
|
|
27
|
+
ConfirmarEntrega: number;
|
|
28
|
+
FaturarPedido: number;
|
|
29
|
+
ParearCategorias: number;
|
|
30
|
+
description(val: number): "enum not found" | "Cadastro Produto" | "Atualização Estoque" | "Receber Pedido" | "Confirmar Pedido" | "Confirmar Envio" | "Confirmar Entrega" | "Faturar Pedido" | "Parear Categorias";
|
|
31
|
+
};
|
|
32
|
+
export declare const SituacaoPareamentoCategoria: {
|
|
33
|
+
Pareada: string;
|
|
34
|
+
Pendente: string;
|
|
35
|
+
Ausente: string;
|
|
36
|
+
description(val: string): "enum not found" | "Pareada" | "Aguardando pareamento" | "Ausente no marketplace";
|
|
37
|
+
};
|
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SituacaoPareamentoCategoria = exports.TipoProcessamentoPlugFourMarket = exports.TipoPagamentoSafeTwoPay = exports.TipoPagamentoTuo = exports.TipoIntegracaoPagamento = void 0;
|
|
4
|
-
exports.TipoIntegracaoPagamento = {
|
|
5
|
-
Tuo: '0',
|
|
6
|
-
ModerBank: '1',
|
|
7
|
-
SafeTwoPay: '2',
|
|
8
|
-
Interno: '3',
|
|
9
|
-
Pagbank: '4',
|
|
10
|
-
description(val) {
|
|
11
|
-
switch (val) {
|
|
12
|
-
case this.Tuo:
|
|
13
|
-
return 'Tuo Bank';
|
|
14
|
-
case this.ModerBank:
|
|
15
|
-
return 'ModerBank';
|
|
16
|
-
case this.SafeTwoPay:
|
|
17
|
-
return 'Safe2Pay';
|
|
18
|
-
case this.Interno:
|
|
19
|
-
return 'Interno';
|
|
20
|
-
case this.Pagbank:
|
|
21
|
-
return 'Pagbank';
|
|
22
|
-
default:
|
|
23
|
-
return 'enum not found';
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
};
|
|
27
|
-
exports.TipoPagamentoTuo = {
|
|
28
|
-
Boleto: 1,
|
|
29
|
-
Debito: 2,
|
|
30
|
-
Cartao: 3,
|
|
31
|
-
description(val) {
|
|
32
|
-
switch (val) {
|
|
33
|
-
case this.Boleto:
|
|
34
|
-
return 'Boleto';
|
|
35
|
-
case this.Cartao:
|
|
36
|
-
return 'Cartão de Crédito';
|
|
37
|
-
case this.Debito:
|
|
38
|
-
return 'Débito';
|
|
39
|
-
default:
|
|
40
|
-
return 'enum not found';
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
};
|
|
44
|
-
exports.TipoPagamentoSafeTwoPay = {
|
|
45
|
-
Boleto: 1,
|
|
46
|
-
CartaoCredito: 2,
|
|
47
|
-
PIX: 6,
|
|
48
|
-
description(val) {
|
|
49
|
-
switch (val) {
|
|
50
|
-
case this.Boleto:
|
|
51
|
-
return 'Boleto';
|
|
52
|
-
case this.CartaoCredito:
|
|
53
|
-
return 'Cartão de Crédito';
|
|
54
|
-
case this.PIX:
|
|
55
|
-
return 'PIX';
|
|
56
|
-
default:
|
|
57
|
-
return 'enum not found';
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
};
|
|
61
|
-
exports.TipoProcessamentoPlugFourMarket = {
|
|
62
|
-
CadastroProduto: 1,
|
|
63
|
-
AtualizacaoEstoque: 2,
|
|
64
|
-
ReceberPedido: 4,
|
|
65
|
-
ConfirmarPedido: 5,
|
|
66
|
-
ConfirmarEnvio: 6,
|
|
67
|
-
ConfirmarEntrega: 7,
|
|
68
|
-
FaturarPedido: 8,
|
|
69
|
-
ParearCategorias: 9,
|
|
70
|
-
description(val) {
|
|
71
|
-
switch (val) {
|
|
72
|
-
case this.CadastroProduto:
|
|
73
|
-
return 'Cadastro Produto';
|
|
74
|
-
case this.AtualizacaoEstoque:
|
|
75
|
-
return 'Atualização Estoque';
|
|
76
|
-
case this.ReceberPedido:
|
|
77
|
-
return 'Receber Pedido';
|
|
78
|
-
case this.ConfirmarPedido:
|
|
79
|
-
return 'Confirmar Pedido';
|
|
80
|
-
case this.ConfirmarEnvio:
|
|
81
|
-
return 'Confirmar Envio';
|
|
82
|
-
case this.ConfirmarEntrega:
|
|
83
|
-
return 'Confirmar Entrega';
|
|
84
|
-
case this.FaturarPedido:
|
|
85
|
-
return 'Faturar Pedido';
|
|
86
|
-
case this.ParearCategorias:
|
|
87
|
-
return 'Parear Categorias';
|
|
88
|
-
default:
|
|
89
|
-
return 'enum not found';
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
};
|
|
93
|
-
exports.SituacaoPareamentoCategoria = {
|
|
94
|
-
Pareada: '0',
|
|
95
|
-
Pendente: '1',
|
|
96
|
-
Ausente: '2',
|
|
97
|
-
description(val) {
|
|
98
|
-
switch (val) {
|
|
99
|
-
case this.Pareada:
|
|
100
|
-
return 'Pareada';
|
|
101
|
-
case this.Pendente:
|
|
102
|
-
return 'Aguardando pareamento';
|
|
103
|
-
case this.Ausente:
|
|
104
|
-
return 'Ausente no marketplace';
|
|
105
|
-
default:
|
|
106
|
-
return 'enum not found';
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SituacaoPareamentoCategoria = exports.TipoProcessamentoPlugFourMarket = exports.TipoPagamentoSafeTwoPay = exports.TipoPagamentoTuo = exports.TipoIntegracaoPagamento = void 0;
|
|
4
|
+
exports.TipoIntegracaoPagamento = {
|
|
5
|
+
Tuo: '0',
|
|
6
|
+
ModerBank: '1',
|
|
7
|
+
SafeTwoPay: '2',
|
|
8
|
+
Interno: '3',
|
|
9
|
+
Pagbank: '4',
|
|
10
|
+
description(val) {
|
|
11
|
+
switch (val) {
|
|
12
|
+
case this.Tuo:
|
|
13
|
+
return 'Tuo Bank';
|
|
14
|
+
case this.ModerBank:
|
|
15
|
+
return 'ModerBank';
|
|
16
|
+
case this.SafeTwoPay:
|
|
17
|
+
return 'Safe2Pay';
|
|
18
|
+
case this.Interno:
|
|
19
|
+
return 'Interno';
|
|
20
|
+
case this.Pagbank:
|
|
21
|
+
return 'Pagbank';
|
|
22
|
+
default:
|
|
23
|
+
return 'enum not found';
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
exports.TipoPagamentoTuo = {
|
|
28
|
+
Boleto: 1,
|
|
29
|
+
Debito: 2,
|
|
30
|
+
Cartao: 3,
|
|
31
|
+
description(val) {
|
|
32
|
+
switch (val) {
|
|
33
|
+
case this.Boleto:
|
|
34
|
+
return 'Boleto';
|
|
35
|
+
case this.Cartao:
|
|
36
|
+
return 'Cartão de Crédito';
|
|
37
|
+
case this.Debito:
|
|
38
|
+
return 'Débito';
|
|
39
|
+
default:
|
|
40
|
+
return 'enum not found';
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
exports.TipoPagamentoSafeTwoPay = {
|
|
45
|
+
Boleto: 1,
|
|
46
|
+
CartaoCredito: 2,
|
|
47
|
+
PIX: 6,
|
|
48
|
+
description(val) {
|
|
49
|
+
switch (val) {
|
|
50
|
+
case this.Boleto:
|
|
51
|
+
return 'Boleto';
|
|
52
|
+
case this.CartaoCredito:
|
|
53
|
+
return 'Cartão de Crédito';
|
|
54
|
+
case this.PIX:
|
|
55
|
+
return 'PIX';
|
|
56
|
+
default:
|
|
57
|
+
return 'enum not found';
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
exports.TipoProcessamentoPlugFourMarket = {
|
|
62
|
+
CadastroProduto: 1, //Recebe payload unico para ja vincular diretamente ao marketplace
|
|
63
|
+
AtualizacaoEstoque: 2, //Recebe payload unico para atualizar estoque
|
|
64
|
+
ReceberPedido: 4,
|
|
65
|
+
ConfirmarPedido: 5,
|
|
66
|
+
ConfirmarEnvio: 6,
|
|
67
|
+
ConfirmarEntrega: 7,
|
|
68
|
+
FaturarPedido: 8,
|
|
69
|
+
ParearCategorias: 9,
|
|
70
|
+
description(val) {
|
|
71
|
+
switch (val) {
|
|
72
|
+
case this.CadastroProduto:
|
|
73
|
+
return 'Cadastro Produto';
|
|
74
|
+
case this.AtualizacaoEstoque:
|
|
75
|
+
return 'Atualização Estoque';
|
|
76
|
+
case this.ReceberPedido:
|
|
77
|
+
return 'Receber Pedido';
|
|
78
|
+
case this.ConfirmarPedido:
|
|
79
|
+
return 'Confirmar Pedido';
|
|
80
|
+
case this.ConfirmarEnvio:
|
|
81
|
+
return 'Confirmar Envio';
|
|
82
|
+
case this.ConfirmarEntrega:
|
|
83
|
+
return 'Confirmar Entrega';
|
|
84
|
+
case this.FaturarPedido:
|
|
85
|
+
return 'Faturar Pedido';
|
|
86
|
+
case this.ParearCategorias:
|
|
87
|
+
return 'Parear Categorias';
|
|
88
|
+
default:
|
|
89
|
+
return 'enum not found';
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
};
|
|
93
|
+
exports.SituacaoPareamentoCategoria = {
|
|
94
|
+
Pareada: '0',
|
|
95
|
+
Pendente: '1',
|
|
96
|
+
Ausente: '2',
|
|
97
|
+
description(val) {
|
|
98
|
+
switch (val) {
|
|
99
|
+
case this.Pareada:
|
|
100
|
+
return 'Pareada';
|
|
101
|
+
case this.Pendente:
|
|
102
|
+
return 'Aguardando pareamento';
|
|
103
|
+
case this.Ausente:
|
|
104
|
+
return 'Ausente no marketplace';
|
|
105
|
+
default:
|
|
106
|
+
return 'enum not found';
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
};
|