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

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.
@@ -282,10 +282,14 @@ export type Note = {
282
282
  message: string;
283
283
  reference: string;
284
284
  event: string;
285
- detail: {
285
+ detail?: {
286
286
  title: string;
287
- subtitle: string;
287
+ subtitle: {
288
+ start_date: string;
289
+ end_date: string;
290
+ };
288
291
  url: string;
292
+ eventName: string;
289
293
  };
290
294
  updateDate: string;
291
295
  };
@@ -293,8 +297,12 @@ export type NoteUpdateInput = {
293
297
  message: string;
294
298
  detail?: {
295
299
  title: string;
296
- subtitle: string;
300
+ subtitle: {
301
+ start_date: string;
302
+ end_date: string;
303
+ };
297
304
  url: string;
305
+ eventName: string;
298
306
  };
299
307
  };
300
308
  export type NoteInput = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10315",
3
+ "version": "1.0.10316",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",