@hubs101/js-api-skd-client 1.0.10313 → 1.0.10315

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.
package/README.md CHANGED
@@ -20,7 +20,7 @@ Accessing API via stateless interface:
20
20
 
21
21
  ## Creating new release
22
22
 
23
- 1. Commit al changes to git.
23
+ 1. Commit al changes to git
24
24
  2. Prepare build: `npm run build`
25
25
  3. Create new patch version run: `npm version patch`
26
26
  4. Publish package to NPM: `npm publish`
@@ -282,12 +282,20 @@ export type Note = {
282
282
  message: string;
283
283
  reference: string;
284
284
  event: string;
285
- detail: unknown;
285
+ detail: {
286
+ title: string;
287
+ subtitle: string;
288
+ url: string;
289
+ };
286
290
  updateDate: string;
287
291
  };
288
292
  export type NoteUpdateInput = {
289
293
  message: string;
290
- detail?: unknown;
294
+ detail?: {
295
+ title: string;
296
+ subtitle: string;
297
+ url: string;
298
+ };
291
299
  };
292
300
  export type NoteInput = {
293
301
  type: NOTE_TYPE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10313",
3
+ "version": "1.0.10315",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",
@@ -12,7 +12,7 @@
12
12
  "preversion": "npm run lint",
13
13
  "version": "npm run format && git add -A src",
14
14
  "postversion": "git push && git push --tags",
15
- "new-version": "git pull && npm run build && git commit -m \"update api\" -a --no-verify && npm version patch && npm publish"
15
+ "new-version": "git pull ; npm run build && git commit -m \"update api\" -a --no-verify && npm version patch && npm publish"
16
16
  },
17
17
  "meta": {},
18
18
  "description": "Package for easy access to Event App API",
@@ -27,6 +27,7 @@
27
27
  ],
28
28
  "license": "ISC",
29
29
  "dependencies": {
30
+ "@hubs101/js-api-skd-client": "^1.0.10314",
30
31
  "@types/react": "*",
31
32
  "react": "^18.2.0"
32
33
  },