@e-trias/woonplan 1.3.81 → 1.3.85

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.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/types.d.ts +2 -1
package/package.json CHANGED
@@ -2,11 +2,12 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.81",
5
+ "version": "1.3.85",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
9
- "release": "git commit -am 'updated to v$npm_package_version' && git push && npm version patch && npm publish"
9
+ "version": "git push && git push --tags",
10
+ "postversion": "npm publish"
10
11
  },
11
12
  "repository": {
12
13
  "type": "git",
package/types.d.ts CHANGED
@@ -30,7 +30,8 @@ export interface IContact{
30
30
  files ?: IContactFile[]
31
31
  notes ?: INote[]
32
32
  lastlogindate?: Date
33
- tags ?: ITag
33
+ tags?: ITag
34
+ logged?: ILogged
34
35
  }
35
36
  export interface INote{
36
37
  id?: string | null