heartraite 1.0.136 → 1.0.137
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Submission, CategoryEvaluation } from "./submission.types";
|
|
2
|
-
import { Event,
|
|
2
|
+
import { Event, FullParticipantWithCS } from "./event.types";
|
|
3
3
|
import { UserMatch } from "./match.types";
|
|
4
4
|
import { MatchableUser, MatchCheck } from "./matchmaking.types";
|
|
5
5
|
import { Message } from "./message.types";
|
|
@@ -32,7 +32,7 @@ export type SubmitAnswerResponse = {
|
|
|
32
32
|
categoryEvaluation?: CategoryEvaluation;
|
|
33
33
|
};
|
|
34
34
|
export type SubmitCategoryFeedbackResponse = CategoryEvaluation;
|
|
35
|
-
export type GetEventMatchResponse =
|
|
35
|
+
export type GetEventMatchResponse = FullParticipantWithCS;
|
|
36
36
|
export type GetUserEventsResponse = Event[];
|
|
37
37
|
export type JoinEventResponse = Event;
|
|
38
38
|
export type GetEventResponse = Event;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Submission, CategoryEvaluation } from "./submission.types";
|
|
2
|
-
import { Event,
|
|
2
|
+
import { Event, FullParticipantWithCS } from "./event.types";
|
|
3
3
|
import { UserMatch } from "./match.types";
|
|
4
4
|
import { MatchableUser, MatchCheck } from "./matchmaking.types";
|
|
5
5
|
import { Message } from "./message.types";
|
|
@@ -43,7 +43,7 @@ export type SubmitAnswerResponse = {
|
|
|
43
43
|
export type SubmitCategoryFeedbackResponse = CategoryEvaluation;
|
|
44
44
|
|
|
45
45
|
// event
|
|
46
|
-
export type GetEventMatchResponse =
|
|
46
|
+
export type GetEventMatchResponse = FullParticipantWithCS;
|
|
47
47
|
export type GetUserEventsResponse = Event[];
|
|
48
48
|
export type JoinEventResponse = Event;
|
|
49
49
|
export type GetEventResponse = Event;
|