RubyGems
npm
Organizations
Log in
Sign up
npm
@candlerip/shared3
Versions diffs
0.0.82 → 0.0.83
@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.
Files changed (2)
hide
show
package/package.json
+1
-1
package/src/auth/auth/domain.d.ts
+2
-2
package/package.json
CHANGED
Viewed
@@ -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": {
package/src/auth/auth/domain.d.ts
CHANGED
Viewed
@@ -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
}