mdz-enum 1.1.89 → 1.1.90
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.
|
@@ -136,5 +136,6 @@ export declare const SituacaoEtiqueta: {
|
|
|
136
136
|
Criada: string;
|
|
137
137
|
Paga: string;
|
|
138
138
|
Gerada: string;
|
|
139
|
-
|
|
139
|
+
Impressa: string;
|
|
140
|
+
description(val: string): "enum not found" | "Etiqueta Pendente" | "Etiqueta Criada" | "Etiqueta Paga" | "Etiqueta Gerada" | "Etiqueta Impressa";
|
|
140
141
|
};
|
package/dist/commercial/index.js
CHANGED
|
@@ -386,6 +386,7 @@ exports.SituacaoEtiqueta = {
|
|
|
386
386
|
Criada: '1',
|
|
387
387
|
Paga: '2',
|
|
388
388
|
Gerada: '3',
|
|
389
|
+
Impressa: '4',
|
|
389
390
|
description(val) {
|
|
390
391
|
switch (val) {
|
|
391
392
|
case this.Pendente:
|
|
@@ -396,6 +397,8 @@ exports.SituacaoEtiqueta = {
|
|
|
396
397
|
return 'Etiqueta Paga';
|
|
397
398
|
case this.Gerada:
|
|
398
399
|
return 'Etiqueta Gerada';
|
|
400
|
+
case this.Impressa:
|
|
401
|
+
return 'Etiqueta Impressa';
|
|
399
402
|
default:
|
|
400
403
|
return 'enum not found';
|
|
401
404
|
}
|