heartraite 1.0.70 → 1.0.72
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.
|
@@ -61,7 +61,7 @@ export type CreateCheckoutSessionResponse = {
|
|
|
61
61
|
url: string;
|
|
62
62
|
};
|
|
63
63
|
export type GetProductsResponse = StripeProduct[];
|
|
64
|
-
export type RegisterOnboardingResponse =
|
|
64
|
+
export type RegisterOnboardingResponse = void;
|
|
65
65
|
export type GetUserResponse = User;
|
|
66
66
|
export type UpdateUserResponse = User;
|
|
67
67
|
export type DeleteUserResponse = void;
|
package/package.json
CHANGED
|
@@ -17,7 +17,6 @@ import {
|
|
|
17
17
|
GetMatchesRequest,
|
|
18
18
|
GetMatchRequest,
|
|
19
19
|
GetMessagesRequest,
|
|
20
|
-
GetPLSScoresRequest,
|
|
21
20
|
GetPLSSubmissionRequest,
|
|
22
21
|
GetProductsRequest,
|
|
23
22
|
GetSelfAwarenessRequest,
|
|
@@ -56,7 +55,6 @@ import {
|
|
|
56
55
|
GetMatchesResponse,
|
|
57
56
|
GetMatchResponse,
|
|
58
57
|
GetMessagesResponse,
|
|
59
|
-
GetPLSScoresResponse,
|
|
60
58
|
GetPLSSubmissionResponse,
|
|
61
59
|
GetProductsResponse,
|
|
62
60
|
GetSelfAwarenessReponse,
|
|
@@ -61,7 +61,7 @@ export type GetLikesRequest = { limit: number; offset: string };
|
|
|
61
61
|
export type HandleLikeSeenRequest = { userId: string };
|
|
62
62
|
|
|
63
63
|
// match
|
|
64
|
-
export type RemoveMatchRequest = {
|
|
64
|
+
export type RemoveMatchRequest = { matchId: string };
|
|
65
65
|
export type GetMatchRequest = { matchId: string };
|
|
66
66
|
export type HandleMatchSeenRequest = { userId: string };
|
|
67
67
|
export type GetMatchesRequest = { limit: number; offset: string };
|
|
@@ -84,7 +84,7 @@ export type CreateCheckoutSessionResponse = { url: string };
|
|
|
84
84
|
export type GetProductsResponse = StripeProduct[];
|
|
85
85
|
|
|
86
86
|
// user
|
|
87
|
-
export type RegisterOnboardingResponse =
|
|
87
|
+
export type RegisterOnboardingResponse = void;
|
|
88
88
|
export type GetUserResponse = User;
|
|
89
89
|
export type UpdateUserResponse = User;
|
|
90
90
|
export type DeleteUserResponse = void;
|