@elliemae/pui-scripting-object 1.19.0 → 1.19.1
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.
|
@@ -104,11 +104,12 @@ export interface IAuth extends IScriptingObject {
|
|
|
104
104
|
createAuthCode(clientId: string): Promise<string>;
|
|
105
105
|
/**
|
|
106
106
|
* Get child access token for the given plugin
|
|
107
|
+
* Host implementing this scripting object method,
|
|
108
|
+
* should able to find out the caller of this api and request necessary child token
|
|
107
109
|
*
|
|
108
|
-
* @param appInfo metadata about the plugin requesting the access token
|
|
109
110
|
* @returns access token with the api base url
|
|
110
111
|
*/
|
|
111
|
-
getAccessToken(
|
|
112
|
+
getAccessToken(): Promise<TokenInfo>;
|
|
112
113
|
/**
|
|
113
114
|
* Get current logged in user information
|
|
114
115
|
*
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-scripting-object",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.1",
|
|
4
4
|
"description": "Typescript defintions for Scripting Objects",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
+
"type": "module",
|
|
6
7
|
"main": "./dist/cjs/index.js",
|
|
7
8
|
"module": "./dist/es/index.js",
|
|
8
9
|
"unpkg": "./dist/umd/index.js",
|
|
@@ -67,8 +68,8 @@
|
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
70
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.6.0",
|
|
70
|
-
"@elliemae/pui-cli": "~
|
|
71
|
-
"@elliemae/pui-doc-gen": "~1.4
|
|
71
|
+
"@elliemae/pui-cli": "~8.0.0",
|
|
72
|
+
"@elliemae/pui-doc-gen": "~1.6.4",
|
|
72
73
|
"@elliemae/pui-theme": "~2.6.0",
|
|
73
74
|
"@types/styled-components": "~5.1.26",
|
|
74
75
|
"history": "~5.3.0",
|