@eeplatform/core 1.0.2 → 1.0.3

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/core
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 7a92d16: Update dependencies
8
+
3
9
  ## 1.0.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -277,12 +277,11 @@ declare function useAuthService(): {
277
277
  email: string;
278
278
  password: string;
279
279
  }) => Promise<{
280
- accessToken: string;
281
- refreshToken: string;
282
- id: bson.ObjectId | undefined;
280
+ sid: string;
281
+ user: string;
283
282
  }>;
284
283
  refreshToken: (token: string) => Promise<string>;
285
- logout: (token: string) => Promise<string>;
284
+ logout: (sid: string) => Promise<string>;
286
285
  };
287
286
 
288
287
  declare function useAuthController(): {