mdz-enum 1.1.46 → 1.1.47

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.
@@ -100,5 +100,6 @@ export declare const ModalConsignacaoOperacao: {
100
100
  Concluir: string;
101
101
  Vender: string;
102
102
  Cancelar: string;
103
- description(val: string): "enum not found" | "Enviar ao Cliente" | "Finalizar" | "Concluir" | "Vender" | "Cancelar";
103
+ RetornoCliente: string;
104
+ description(val: string): "Retorno do Cliente" | "enum not found" | "Enviar ao Cliente" | "Finalizar" | "Concluir" | "Vender" | "Cancelar";
104
105
  };
@@ -281,6 +281,7 @@ exports.ModalConsignacaoOperacao = {
281
281
  Concluir: '2',
282
282
  Vender: '3',
283
283
  Cancelar: '4',
284
+ RetornoCliente: '5',
284
285
  description(val) {
285
286
  switch (val) {
286
287
  case this.EnviarAoCliente:
@@ -293,6 +294,8 @@ exports.ModalConsignacaoOperacao = {
293
294
  return 'Vender';
294
295
  case this.Cancelar:
295
296
  return 'Cancelar';
297
+ case this.RetornoCliente:
298
+ return 'Retorno do Cliente';
296
299
  default:
297
300
  return 'enum not found';
298
301
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {