@openfin/cloud-interop 0.1.0 → 0.2.0
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.
- package/dist/index.js +29 -7
- package/dist/interfaces.d.ts +1 -1
- package/package.json +3 -2
package/dist/interfaces.d.ts
CHANGED
@@ -10,7 +10,7 @@ export interface ConnectParams {
|
|
10
10
|
* The user ID to connect as.
|
11
11
|
* Note: Might be the sub from a openid JWT
|
12
12
|
*/
|
13
|
-
userId
|
13
|
+
userId: string;
|
14
14
|
/**
|
15
15
|
* ID for a group of shared applications. Until we have auth we can't rely on only userId.
|
16
16
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@openfin/cloud-interop",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.2.0",
|
4
4
|
"description": "",
|
5
5
|
"files": [
|
6
6
|
"./dist/*"
|
@@ -13,6 +13,7 @@
|
|
13
13
|
"author": "",
|
14
14
|
"license": "SEE LICENSE IN LICENSE.md",
|
15
15
|
"devDependencies": {
|
16
|
+
"@rollup/plugin-inject": "^5.0.5",
|
16
17
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
17
18
|
"@rollup/plugin-typescript": "^11.1.6",
|
18
19
|
"@types/node": "^20.10.0",
|
@@ -24,4 +25,4 @@
|
|
24
25
|
"axios": "^1.6.2",
|
25
26
|
"mqtt": "^5.3.1"
|
26
27
|
}
|
27
|
-
}
|
28
|
+
}
|