@candlerip/shared3 0.0.82 → 0.0.83

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.82",
3
+ "version": "0.0.83",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  export interface Auth {
2
- accessToken: string;
2
+ accessToken?: string;
3
3
  isAuthenticated: boolean;
4
- user: {
4
+ user?: {
5
5
  [key in string]: any;
6
6
  };
7
7
  }