mdz-enum 1.2.23 → 1.2.24
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.
|
@@ -84,5 +84,6 @@ export declare const SituacaoItemInventario: {
|
|
|
84
84
|
Excluido: string;
|
|
85
85
|
Atualizado: string;
|
|
86
86
|
AtualizacaoPendente: string;
|
|
87
|
-
|
|
87
|
+
InclusaoPendente: string;
|
|
88
|
+
description(val: string): "enum not found" | "Atualizado" | "Excluído" | "Atualização Pendente" | "Inclusão Pendente";
|
|
88
89
|
};
|
package/dist/logistics/index.js
CHANGED
|
@@ -242,6 +242,7 @@ exports.SituacaoItemInventario = {
|
|
|
242
242
|
Excluido: '0',
|
|
243
243
|
Atualizado: '1',
|
|
244
244
|
AtualizacaoPendente: '2',
|
|
245
|
+
InclusaoPendente: '3',
|
|
245
246
|
description(val) {
|
|
246
247
|
switch (val) {
|
|
247
248
|
case this.Atualizado:
|
|
@@ -250,6 +251,8 @@ exports.SituacaoItemInventario = {
|
|
|
250
251
|
return 'Excluído';
|
|
251
252
|
case this.AtualizacaoPendente:
|
|
252
253
|
return 'Atualização Pendente';
|
|
254
|
+
case this.InclusaoPendente:
|
|
255
|
+
return 'Inclusão Pendente';
|
|
253
256
|
default:
|
|
254
257
|
return 'enum not found';
|
|
255
258
|
}
|