heartraite 1.0.124 → 1.0.125

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.
@@ -10,7 +10,6 @@ import { CA } from "./ca.types";
10
10
  import { SelfAwareness } from "./sa.types";
11
11
  import { PLSScore } from "./pls.types";
12
12
  import { AdvancedMatch } from "./am.types";
13
- import { EventParticipation } from "./event.types";
14
13
  export type SyncAffiliateResponse = void;
15
14
  export type RegisterUserResponse = {
16
15
  success: boolean;
@@ -33,7 +32,7 @@ export type SubmitAnswerResponse = {
33
32
  categoryEvaluation?: CategoryEvaluation;
34
33
  };
35
34
  export type SubmitCategoryFeedbackResponse = CategoryEvaluation;
36
- export type GetUserEventsResponse = EventParticipation[];
35
+ export type GetUserEventsResponse = Event[];
37
36
  export type JoinEventResponse = Event;
38
37
  export type GetEventResponse = Event;
39
38
  export type SubmitFeedbackResponse = undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.124",
3
+ "version": "1.0.125",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,7 +44,7 @@ export type SubmitAnswerResponse = {
44
44
  export type SubmitCategoryFeedbackResponse = CategoryEvaluation;
45
45
 
46
46
  // event
47
- export type GetUserEventsResponse = EventParticipation[];
47
+ export type GetUserEventsResponse = Event[];
48
48
  export type JoinEventResponse = Event;
49
49
  export type GetEventResponse = Event;
50
50