mdz-enum 1.6.35 → 1.6.36
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.
|
@@ -143,9 +143,9 @@ export declare const SituacaoEntrega: {
|
|
|
143
143
|
EmTransporte: string;
|
|
144
144
|
Entregue: string;
|
|
145
145
|
Combinar: string;
|
|
146
|
-
|
|
146
|
+
EmSeparacao: string;
|
|
147
147
|
Recusado: string;
|
|
148
|
-
description(val: string): "enum not found" | "Aguardando envio" | "Objeto postado" | "Objeto em transporte" | "Objeto entregue" | "Entrega a combinar" | "Entrega em
|
|
148
|
+
description(val: string): "enum not found" | "Aguardando envio" | "Objeto postado" | "Objeto em transporte" | "Objeto entregue" | "Entrega a combinar" | "Entrega em separação" | "Entrega recusada";
|
|
149
149
|
};
|
|
150
150
|
export declare const SituacaoEtiqueta: {
|
|
151
151
|
Pendente: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -406,7 +406,7 @@ exports.SituacaoEntrega = {
|
|
|
406
406
|
EmTransporte: '2',
|
|
407
407
|
Entregue: '3',
|
|
408
408
|
Combinar: '4',
|
|
409
|
-
|
|
409
|
+
EmSeparacao: '5',
|
|
410
410
|
Recusado: '6',
|
|
411
411
|
description(val) {
|
|
412
412
|
switch (val) {
|
|
@@ -420,8 +420,8 @@ exports.SituacaoEntrega = {
|
|
|
420
420
|
return 'Objeto entregue';
|
|
421
421
|
case this.Combinar:
|
|
422
422
|
return 'Entrega a combinar';
|
|
423
|
-
case this.
|
|
424
|
-
return 'Entrega em
|
|
423
|
+
case this.EmSeparacao:
|
|
424
|
+
return 'Entrega em separação';
|
|
425
425
|
case this.Recusado:
|
|
426
426
|
return 'Entrega recusada';
|
|
427
427
|
default:
|