@openfin/cloud-interop 0.4.0 → 0.36.12
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/LICENSE.md +4 -4
- package/README.md +55 -55
- package/{dist → out}/api.d.ts +2 -3
- package/{dist → out}/index.d.ts +1 -1
- package/{dist → out}/index.js +15 -21
- package/{dist → out}/interfaces.d.ts +6 -6
- package/package.json +37 -28
- /package/{dist → out}/override.d.ts +0 -0
@@ -34,14 +34,14 @@ export interface ConnectParams {
|
|
34
34
|
realm?: string;
|
35
35
|
}
|
36
36
|
/**
|
37
|
-
* Represents a session
|
38
|
-
*/
|
37
|
+
* Represents a session
|
38
|
+
*/
|
39
39
|
export interface InteropSession {
|
40
40
|
sessionId: string;
|
41
41
|
}
|
42
42
|
/**
|
43
|
-
* Represents a source session
|
44
|
-
*/
|
43
|
+
* Represents a source session
|
44
|
+
*/
|
45
45
|
export interface Source {
|
46
46
|
/**
|
47
47
|
* Source session id
|
@@ -57,8 +57,8 @@ export interface Source {
|
|
57
57
|
sourceDisplayName: string;
|
58
58
|
}
|
59
59
|
/**
|
60
|
-
* Represents the details of an intent found during discovery
|
61
|
-
*/
|
60
|
+
* Represents the details of an intent found during discovery
|
61
|
+
*/
|
62
62
|
export interface IntentDetail {
|
63
63
|
/**
|
64
64
|
* The location of the intent implementation
|
package/package.json
CHANGED
@@ -1,28 +1,37 @@
|
|
1
|
-
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
"
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
"
|
19
|
-
"
|
20
|
-
"
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
1
|
+
{
|
2
|
+
"name": "@openfin/cloud-interop",
|
3
|
+
"version": "0.36.12",
|
4
|
+
"description": "",
|
5
|
+
"private": false,
|
6
|
+
"files": [
|
7
|
+
"./out/*"
|
8
|
+
],
|
9
|
+
"main": "./out/index.js",
|
10
|
+
"types": "./out/index.d.ts",
|
11
|
+
"scripts": {
|
12
|
+
"prebuild": "rimraf out",
|
13
|
+
"build": "rollup -c",
|
14
|
+
"ci:prepublish": "of-npm prepublish",
|
15
|
+
"ci:postpublish": "of-npm postpublish",
|
16
|
+
"ci:publish": "npm publish"
|
17
|
+
},
|
18
|
+
"author": "",
|
19
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
20
|
+
"devDependencies": {
|
21
|
+
"@rollup/plugin-inject": "^5.0.5",
|
22
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
23
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
24
|
+
"@openfin/core": "36.80.11",
|
25
|
+
"@types/node": "^20.10.0",
|
26
|
+
"rimraf": "^5.0.5",
|
27
|
+
"rollup": "^4.9.6",
|
28
|
+
"typescript": "^5.3.2"
|
29
|
+
},
|
30
|
+
"peerDependencies": {
|
31
|
+
"@openfin/core": "36.80.11"
|
32
|
+
},
|
33
|
+
"dependencies": {
|
34
|
+
"axios": "^1.6.2",
|
35
|
+
"mqtt": "^5.3.1"
|
36
|
+
}
|
37
|
+
}
|
File without changes
|