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.
@@ -49,7 +49,7 @@ export type HandleLikeSeenRequest = {
49
49
  userId: string;
50
50
  };
51
51
  export type RemoveMatchRequest = {
52
- recipientId: string;
52
+ matchId: string;
53
53
  };
54
54
  export type GetMatchRequest = {
55
55
  matchId: string;
@@ -61,7 +61,7 @@ export type CreateCheckoutSessionResponse = {
61
61
  url: string;
62
62
  };
63
63
  export type GetProductsResponse = StripeProduct[];
64
- export type RegisterOnboardingResponse = User;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.70",
3
+ "version": "1.0.72",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 = { recipientId: string };
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 = User;
87
+ export type RegisterOnboardingResponse = void;
88
88
  export type GetUserResponse = User;
89
89
  export type UpdateUserResponse = User;
90
90
  export type DeleteUserResponse = void;