@etsoo/appscript 1.1.57 → 1.1.58

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.
@@ -30,6 +30,10 @@ export interface RefreshTokenProps<D extends {}> {
30
30
  * Data to pass
31
31
  */
32
32
  data?: D;
33
+ /**
34
+ * Support relogin or not
35
+ */
36
+ relogin?: boolean;
33
37
  /**
34
38
  * Show loading bar or not
35
39
  */
@@ -30,6 +30,10 @@ export interface RefreshTokenProps<D extends {}> {
30
30
  * Data to pass
31
31
  */
32
32
  data?: D;
33
+ /**
34
+ * Support relogin or not
35
+ */
36
+ relogin?: boolean;
33
37
  /**
34
38
  * Show loading bar or not
35
39
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.1.57",
3
+ "version": "1.1.58",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -54,6 +54,11 @@ export interface RefreshTokenProps<D extends {}> {
54
54
  */
55
55
  data?: D;
56
56
 
57
+ /**
58
+ * Support relogin or not
59
+ */
60
+ relogin?: boolean;
61
+
57
62
  /**
58
63
  * Show loading bar or not
59
64
  */