mdz-enum 1.2.98 → 1.2.99
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.
|
@@ -114,7 +114,8 @@ export declare const SituacaoOperacao: {
|
|
|
114
114
|
EmEdicao: string;
|
|
115
115
|
Pendente: string;
|
|
116
116
|
Processado: string;
|
|
117
|
-
|
|
117
|
+
EmProcessamento: string;
|
|
118
|
+
description(val: string): "enum not found" | "Pendente" | "Em processamento" | "Processado" | "Em edição";
|
|
118
119
|
};
|
|
119
120
|
export declare const SituacaoPagamento: {
|
|
120
121
|
Pendente: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -326,6 +326,7 @@ exports.SituacaoOperacao = {
|
|
|
326
326
|
EmEdicao: '1',
|
|
327
327
|
Pendente: '2',
|
|
328
328
|
Processado: '3',
|
|
329
|
+
EmProcessamento: '4',
|
|
329
330
|
description(val) {
|
|
330
331
|
switch (val) {
|
|
331
332
|
case this.EmEdicao:
|
|
@@ -334,6 +335,8 @@ exports.SituacaoOperacao = {
|
|
|
334
335
|
return 'Pendente';
|
|
335
336
|
case this.Processado:
|
|
336
337
|
return 'Processado';
|
|
338
|
+
case this.EmProcessamento:
|
|
339
|
+
return 'Em processamento';
|
|
337
340
|
default:
|
|
338
341
|
return 'enum not found';
|
|
339
342
|
}
|