mdz-enum 1.1.84 → 1.1.86

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.
@@ -108,7 +108,8 @@ export declare const ModalConsignacaoOperacao: {
108
108
  };
109
109
  export declare const TipoIntegracaoFrete: {
110
110
  Frenet: string;
111
- description(val: string): "enum not found" | "Frenet";
111
+ MelhorEnvio: string;
112
+ description(val: string): "enum not found" | "Frenet" | "Melhor Envio";
112
113
  };
113
114
  export declare const SituacaoOperacao: {
114
115
  EmEdicao: string;
@@ -312,10 +312,13 @@ exports.ModalConsignacaoOperacao = {
312
312
  };
313
313
  exports.TipoIntegracaoFrete = {
314
314
  Frenet: '1',
315
+ MelhorEnvio: '2',
315
316
  description(val) {
316
317
  switch (val) {
317
318
  case this.Frenet:
318
319
  return 'Frenet';
320
+ case this.MelhorEnvio:
321
+ return 'Melhor Envio';
319
322
  default:
320
323
  return 'enum not found';
321
324
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.1.84",
3
+ "version": "1.1.86",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {