heartraite 1.0.71 → 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 = 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.71",
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",
@@ -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;