meemup-library 1.3.54 → 1.3.55

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.
@@ -27,6 +27,7 @@ interface ICategory {
27
27
  priority: number;
28
28
  allergicStuffs: number[];
29
29
  color: string | null;
30
+ accesses: number[];
30
31
  }
31
32
  export declare const initCategory: ICategory;
32
33
  export default ICategory;
@@ -25,5 +25,6 @@ export const initCategory = {
25
25
  spiciness: 0,
26
26
  priority: 0,
27
27
  allergicStuffs: [],
28
- color: null
28
+ color: null,
29
+ accesses: []
29
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.3.54",
3
+ "version": "1.3.55",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "remove:one": "rimraf dist",
12
12
  "remove:two": "rimraf ./src/dist",
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "commit": "git add . && git commit -m \"version.1.3.54 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.3.55 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"