mdz-enum 1.1.39 → 1.1.41

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.
@@ -82,7 +82,9 @@ export declare const SituacaoItemConsignacao: {
82
82
  Faturado: string;
83
83
  EnviadoCliente: string;
84
84
  RetornoCliente: string;
85
- description(val: string): "Faturado" | "Enviado ao Cliente" | "Retorno do Cliente" | "enum not found" | "Pendente de Envio";
85
+ RetornoClienteParcial: string;
86
+ AguardandoFaturamento: string;
87
+ description(val: string): "Faturado" | "Enviado ao Cliente" | "Retorno do Cliente" | "enum not found" | "Pendente de Envio" | "Retorno Parcial do Cliente" | "Aguardando Faturamento";
86
88
  };
87
89
  export declare const TipoDataPedido: {
88
90
  data_cadastro: string;
@@ -231,6 +231,8 @@ exports.SituacaoItemConsignacao = {
231
231
  Faturado: '1',
232
232
  EnviadoCliente: '2',
233
233
  RetornoCliente: '3',
234
+ RetornoClienteParcial: '4',
235
+ AguardandoFaturamento: '5',
234
236
  description(val) {
235
237
  switch (val) {
236
238
  case this.Faturado:
@@ -241,6 +243,10 @@ exports.SituacaoItemConsignacao = {
241
243
  return 'Enviado ao Cliente';
242
244
  case this.RetornoCliente:
243
245
  return 'Retorno do Cliente';
246
+ case this.RetornoClienteParcial:
247
+ return 'Retorno Parcial do Cliente';
248
+ case this.AguardandoFaturamento:
249
+ return 'Aguardando Faturamento';
244
250
  default:
245
251
  return 'enum not found';
246
252
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.1.39",
3
+ "version": "1.1.41",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {