math-main-components 0.0.92 → 0.0.94

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.
@@ -0,0 +1,10 @@
1
+ import { User } from "./User";
2
+ export interface Feedback {
3
+ id: string;
4
+ user: User;
5
+ userId: number;
6
+ message: string;
7
+ answers: object[];
8
+ createdAt: Date;
9
+ updatedAt: Date;
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "math-main-components",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "author": "Emilian Scheel",
5
5
  "files": [
6
6
  "dist/**/*"
@@ -44,7 +44,6 @@
44
44
  "clean": "rm -rf dist",
45
45
  "increment-version": "npm --no-git-tag-version version patch",
46
46
  "git-add-all": "git add .",
47
- "publish": "npm publish --access public",
48
47
  "build": "npm run build:js && npm run build:types",
49
48
  "build:js": "rollup -c",
50
49
  "build:types": "tsc --emitDeclarationOnly --outDir dist"