@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.
@@ -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
- "name": "@openfin/cloud-interop",
3
- "version": "0.4.0",
4
- "description": "",
5
- "files": [
6
- "./dist/*"
7
- ],
8
- "main": "./dist/index.js",
9
- "types": "./dist/index.d.ts",
10
- "scripts": {
11
- "build": "rollup -c"
12
- },
13
- "author": "",
14
- "license": "SEE LICENSE IN LICENSE.md",
15
- "devDependencies": {
16
- "@rollup/plugin-inject": "^5.0.5",
17
- "@rollup/plugin-node-resolve": "^15.2.3",
18
- "@rollup/plugin-typescript": "^11.1.6",
19
- "@types/node": "^20.10.0",
20
- "rollup": "^4.9.6",
21
- "typescript": "^5.3.2"
22
- },
23
- "dependencies": {
24
- "@openfin/core": "^37.80.39",
25
- "axios": "^1.6.2",
26
- "mqtt": "^5.3.1"
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