mdz-enum 1.5.63 → 1.5.65
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.
|
@@ -41,10 +41,10 @@ export declare const TipoDescontoPromocao: {
|
|
|
41
41
|
description(val: string): "enum not found" | "Percentual" | "Valor";
|
|
42
42
|
};
|
|
43
43
|
export declare const TipoMarketplace: {
|
|
44
|
-
|
|
44
|
+
Marcketplace: string;
|
|
45
45
|
Ecommerce: string;
|
|
46
46
|
All: string;
|
|
47
|
-
description(val: string): "enum not found" | "Ecommerce" | "
|
|
47
|
+
description(val: string): "enum not found" | "Ecommerce" | "Marcketplace" | "Todas integrações";
|
|
48
48
|
};
|
|
49
49
|
export declare const SituacaoProdutoMarketplace: {
|
|
50
50
|
Pendente: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -124,13 +124,13 @@ exports.TipoDescontoPromocao = {
|
|
|
124
124
|
},
|
|
125
125
|
};
|
|
126
126
|
exports.TipoMarketplace = {
|
|
127
|
-
|
|
127
|
+
Marcketplace: '1',
|
|
128
128
|
Ecommerce: '2',
|
|
129
129
|
All: '3',
|
|
130
130
|
description(val) {
|
|
131
131
|
switch (val) {
|
|
132
|
-
case this.
|
|
133
|
-
return '
|
|
132
|
+
case this.Marcketplace:
|
|
133
|
+
return 'Marcketplace';
|
|
134
134
|
case this.Ecommerce:
|
|
135
135
|
return 'Ecommerce';
|
|
136
136
|
case this.All:
|
package/dist/general/index.d.ts
CHANGED
|
@@ -255,7 +255,8 @@ export declare const TipoPendencia: {
|
|
|
255
255
|
Consignacao: string;
|
|
256
256
|
PedidoCompra: string;
|
|
257
257
|
NotasPendente: string;
|
|
258
|
-
|
|
258
|
+
OrdemServico: string;
|
|
259
|
+
description(val: string): "enum not found" | "Ordem de Serviço" | "Aniversariantes" | "Documento de Entrada" | "Documento de Saída" | "Pedidos de Entrega" | "Orçamentos" | "Consignações" | "Pedidos de Compra" | "Notas Pendentes";
|
|
259
260
|
};
|
|
260
261
|
export declare const TipoDocumento: {
|
|
261
262
|
Identidade: string;
|
package/dist/general/index.js
CHANGED
|
@@ -470,6 +470,7 @@ exports.TipoPendencia = {
|
|
|
470
470
|
Consignacao: '5',
|
|
471
471
|
PedidoCompra: '6',
|
|
472
472
|
NotasPendente: '7',
|
|
473
|
+
OrdemServico: '8',
|
|
473
474
|
description(val) {
|
|
474
475
|
switch (val) {
|
|
475
476
|
case this.Aniversariantes:
|
|
@@ -484,6 +485,8 @@ exports.TipoPendencia = {
|
|
|
484
485
|
return 'Orçamentos';
|
|
485
486
|
case this.Consignacao:
|
|
486
487
|
return 'Consignações';
|
|
488
|
+
case this.OrdemServico:
|
|
489
|
+
return 'Ordem de Serviço';
|
|
487
490
|
case this.PedidoCompra:
|
|
488
491
|
return 'Pedidos de Compra';
|
|
489
492
|
case this.NotasPendente:
|