mdz-enum 1.5.39 → 1.5.41
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/general/index.d.ts +5 -3
- package/dist/general/index.js +13 -7
- package/package.json +1 -1
package/dist/general/index.d.ts
CHANGED
|
@@ -247,13 +247,15 @@ export declare const TipoAjuste: {
|
|
|
247
247
|
description(val: string): "enum not found" | "Desconto" | "Acréscimo";
|
|
248
248
|
};
|
|
249
249
|
export declare const TipoPendencia: {
|
|
250
|
+
Aniversariantes: string;
|
|
250
251
|
DocumentoEntrada: string;
|
|
251
252
|
DocumentoSaida: string;
|
|
252
253
|
PedidosEntrega: string;
|
|
254
|
+
Orcamento: string;
|
|
255
|
+
Consignacao: string;
|
|
256
|
+
PedidoCompra: string;
|
|
253
257
|
NotasPendente: string;
|
|
254
|
-
|
|
255
|
-
Aniversariantes: string;
|
|
256
|
-
description(val: string): "enum not found" | "Documento de Entrada" | "Documento de Saída" | "Pedidos de Entrega" | "Notas Pendentes" | "Comissão Pendente" | "Aniversariantes";
|
|
258
|
+
description(val: string): "enum not found" | "Aniversariantes" | "Documento de Entrada" | "Documento de Saída" | "Pedidos de Entrega" | "Orçamentos" | "Consignações" | "Pedidos de Compra" | "Notas Pendentes";
|
|
257
259
|
};
|
|
258
260
|
export declare const TipoDocumento: {
|
|
259
261
|
Identidade: string;
|
package/dist/general/index.js
CHANGED
|
@@ -462,26 +462,32 @@ exports.TipoAjuste = {
|
|
|
462
462
|
},
|
|
463
463
|
};
|
|
464
464
|
exports.TipoPendencia = {
|
|
465
|
+
Aniversariantes: '0',
|
|
465
466
|
DocumentoEntrada: '1',
|
|
466
467
|
DocumentoSaida: '2',
|
|
467
468
|
PedidosEntrega: '3',
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
469
|
+
Orcamento: '4',
|
|
470
|
+
Consignacao: '5',
|
|
471
|
+
PedidoCompra: '6',
|
|
472
|
+
NotasPendente: '7',
|
|
471
473
|
description(val) {
|
|
472
474
|
switch (val) {
|
|
475
|
+
case this.Aniversariantes:
|
|
476
|
+
return 'Aniversariantes';
|
|
473
477
|
case this.DocumentoEntrada:
|
|
474
478
|
return 'Documento de Entrada';
|
|
475
479
|
case this.DocumentoSaida:
|
|
476
480
|
return 'Documento de Saída';
|
|
477
481
|
case this.PedidosEntrega:
|
|
478
482
|
return 'Pedidos de Entrega';
|
|
483
|
+
case this.Orcamento:
|
|
484
|
+
return 'Orçamentos';
|
|
485
|
+
case this.Consignacao:
|
|
486
|
+
return 'Consignações';
|
|
487
|
+
case this.PedidoCompra:
|
|
488
|
+
return 'Pedidos de Compra';
|
|
479
489
|
case this.NotasPendente:
|
|
480
490
|
return 'Notas Pendentes';
|
|
481
|
-
case this.ComissaoPendente:
|
|
482
|
-
return 'Comissão Pendente';
|
|
483
|
-
case this.Aniversariantes:
|
|
484
|
-
return 'Aniversariantes';
|
|
485
491
|
default:
|
|
486
492
|
return 'enum not found';
|
|
487
493
|
}
|