@etsoo/appscript 1.5.54 → 1.5.55

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.
@@ -47,7 +47,7 @@ export type AppLoginParams = {
47
47
  /**
48
48
  * Login parameters to pass
49
49
  */
50
- params: DataTypes.SimpleObject & {
50
+ params?: DataTypes.SimpleObject & {
51
51
  /**
52
52
  * Try login with cached refresh token
53
53
  */
@@ -47,7 +47,7 @@ export type AppLoginParams = {
47
47
  /**
48
48
  * Login parameters to pass
49
49
  */
50
- params: DataTypes.SimpleObject & {
50
+ params?: DataTypes.SimpleObject & {
51
51
  /**
52
52
  * Try login with cached refresh token
53
53
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.5.54",
3
+ "version": "1.5.55",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/app/IApp.ts CHANGED
@@ -70,7 +70,7 @@ export type AppLoginParams = {
70
70
  /**
71
71
  * Login parameters to pass
72
72
  */
73
- params: DataTypes.SimpleObject & {
73
+ params?: DataTypes.SimpleObject & {
74
74
  /**
75
75
  * Try login with cached refresh token
76
76
  */