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;
|
package/dist/types/sa.types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -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[];
|