heartraite 1.0.141 → 1.0.143

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.
@@ -60,7 +60,9 @@ export type UpdatePLSAnswerResponse = {
60
60
  export type SubmitPLSCategoryFeedbackResponse = CategoryEvaluation;
61
61
  export type UpdateQuestionsResponse = void;
62
62
  export type CreateReportResponse = void;
63
- export type GetSelfAwarenessReponse = SelfAwareness;
63
+ export type GetSelfAwarenessReponse = SelfAwareness | {
64
+ processing: true;
65
+ };
64
66
  export type GetPLSScoresResponse = PLSScore[];
65
67
  export type CreateBillingPortalResponse = {
66
68
  url: string;
@@ -5,6 +5,7 @@ export type SelfAwareness = {
5
5
  created: string;
6
6
  personality: Personality;
7
7
  loveLanguages: LoveLanguages;
8
+ processing?: boolean;
8
9
  };
9
10
  export type SACategory = {
10
11
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.141",
3
+ "version": "1.0.143",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -87,7 +87,7 @@ export type UpdateQuestionsResponse = void;
87
87
  export type CreateReportResponse = void;
88
88
 
89
89
  // sa
90
- export type GetSelfAwarenessReponse = SelfAwareness;
90
+ export type GetSelfAwarenessReponse = SelfAwareness | { processing: true };
91
91
 
92
92
  // score
93
93
  export type GetPLSScoresResponse = PLSScore[];
@@ -6,6 +6,7 @@ export type SelfAwareness = {
6
6
  created: string;
7
7
  personality: Personality;
8
8
  loveLanguages: LoveLanguages;
9
+ processing?: boolean;
9
10
  };
10
11
 
11
12
  export type SACategory = {