mdz-enum 1.2.56 → 1.2.58
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
CHANGED
|
@@ -23,5 +23,6 @@ export declare const ModoOperacaoPdv: {
|
|
|
23
23
|
Devolucao: string;
|
|
24
24
|
Consignacao: string;
|
|
25
25
|
Recebimento: string;
|
|
26
|
-
|
|
26
|
+
ValeCredito: string;
|
|
27
|
+
description(val: string): "enum not found" | "Orçamento" | "Pedido" | "Consignação" | "Recebimento" | "Venda" | "Devolução" | "Vale Crédito";
|
|
27
28
|
};
|
package/dist/checkout/index.js
CHANGED
|
@@ -59,6 +59,7 @@ exports.ModoOperacaoPdv = {
|
|
|
59
59
|
Devolucao: '3',
|
|
60
60
|
Consignacao: '4',
|
|
61
61
|
Recebimento: '5',
|
|
62
|
+
ValeCredito: '6',
|
|
62
63
|
description(val) {
|
|
63
64
|
switch (val) {
|
|
64
65
|
case this.Venda:
|
|
@@ -73,6 +74,8 @@ exports.ModoOperacaoPdv = {
|
|
|
73
74
|
return 'Consignação';
|
|
74
75
|
case this.Recebimento:
|
|
75
76
|
return 'Recebimento';
|
|
77
|
+
case this.ValeCredito:
|
|
78
|
+
return 'Vale Crédito';
|
|
76
79
|
default:
|
|
77
80
|
return 'enum not found';
|
|
78
81
|
}
|
package/dist/platform/index.d.ts
CHANGED
|
@@ -111,7 +111,8 @@ export declare const TipoAplicativo: {
|
|
|
111
111
|
Ecommerce: number;
|
|
112
112
|
MercadoLivre: number;
|
|
113
113
|
Sped: number;
|
|
114
|
-
|
|
114
|
+
TEF: number;
|
|
115
|
+
description(val: number): "enum not found" | "Mercado Livre" | "Modershop" | "Marketplace" | "Loja Virtual" | "Sped" | "TEF";
|
|
115
116
|
};
|
|
116
117
|
export declare const TipoTransacao: {
|
|
117
118
|
Compra: string;
|
package/dist/platform/index.js
CHANGED
|
@@ -314,6 +314,7 @@ exports.TipoAplicativo = {
|
|
|
314
314
|
Ecommerce: 5,
|
|
315
315
|
MercadoLivre: 7,
|
|
316
316
|
Sped: 8,
|
|
317
|
+
TEF: 9,
|
|
317
318
|
description(val) {
|
|
318
319
|
switch (val) {
|
|
319
320
|
case this.Modershop:
|
|
@@ -326,6 +327,8 @@ exports.TipoAplicativo = {
|
|
|
326
327
|
return 'Mercado Livre';
|
|
327
328
|
case this.Sped:
|
|
328
329
|
return 'Sped';
|
|
330
|
+
case this.TEF:
|
|
331
|
+
return 'TEF';
|
|
329
332
|
default:
|
|
330
333
|
return 'enum not found';
|
|
331
334
|
}
|