@openfin/cloud-interop 0.3.0 → 0.38.39

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.
@@ -7,12 +7,15 @@ export interface ConnectParams {
7
7
  */
8
8
  url: string;
9
9
  /**
10
- * The user ID to connect as.
11
- * Note: Might be the sub from a openid JWT
10
+ * The user to connect as. Credentials provided by OpenFin.
12
11
  */
13
12
  userId: string;
14
13
  /**
15
- * ID for a group of shared applications. Until we have auth we can't rely on only userId.
14
+ * Password for the user. Credentials provided by OpenFin.
15
+ */
16
+ password: string;
17
+ /**
18
+ * ID for a group of shared applications.
16
19
  */
17
20
  platformId: string;
18
21
  /**
@@ -31,14 +34,14 @@ export interface ConnectParams {
31
34
  realm?: string;
32
35
  }
33
36
  /**
34
- * Represents a session
35
- */
37
+ * Represents a session
38
+ */
36
39
  export interface InteropSession {
37
40
  sessionId: string;
38
41
  }
39
42
  /**
40
- * Represents a source session
41
- */
43
+ * Represents a source session
44
+ */
42
45
  export interface Source {
43
46
  /**
44
47
  * Source session id
@@ -54,8 +57,8 @@ export interface Source {
54
57
  sourceDisplayName: string;
55
58
  }
56
59
  /**
57
- * Represents the details of an intent found during discovery
58
- */
60
+ * Represents the details of an intent found during discovery
61
+ */
59
62
  export interface IntentDetail {
60
63
  /**
61
64
  * The location of the intent implementation
package/package.json CHANGED
@@ -1,28 +1,27 @@
1
- {
2
- "name": "@openfin/cloud-interop",
3
- "version": "0.3.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
- }
1
+ {
2
+ "name": "@openfin/cloud-interop",
3
+ "version": "0.38.39",
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
+ "peerDependencies": {
21
+ "@openfin/core": "38.81.39"
22
+ },
23
+ "dependencies": {
24
+ "axios": "^1.6.2",
25
+ "mqtt": "^5.3.1"
26
+ }
28
27
  }
File without changes