mdz-enum 1.5.1 → 1.5.2

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.
@@ -42,6 +42,6 @@ export declare const TipoNotificacao: {
42
42
  };
43
43
  export declare const TipoBusca: {
44
44
  Backend: string;
45
- IndexedDb: string;
45
+ IndexedDB: string;
46
46
  description(val: string): "enum not found" | "Backend" | "IndexedDB";
47
47
  };
@@ -123,12 +123,12 @@ exports.TipoNotificacao = {
123
123
  };
124
124
  exports.TipoBusca = {
125
125
  Backend: '0',
126
- IndexedDb: '1',
126
+ IndexedDB: '1',
127
127
  description(val) {
128
128
  switch (val) {
129
129
  case this.Backend:
130
130
  return 'Backend';
131
- case this.IndexedDb:
131
+ case this.IndexedDB:
132
132
  return 'IndexedDB';
133
133
  default:
134
134
  return 'enum not found';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {