@openfin/cloud-interop-core-api 0.0.1-alpha.6e103e6 → 0.0.1-alpha.7616ec0
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/api.d.ts +22 -9
- package/dist/index.cjs +292 -104
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +285 -3863
- package/dist/{interfaces.d.ts → interfaces/connect.interface.d.ts} +7 -54
- package/dist/interfaces/event.interface.d.ts +15 -0
- package/dist/interfaces/index.d.ts +2 -0
- package/package.json +4 -4
|
@@ -83,60 +83,13 @@ export type CloudInteropSettings = {
|
|
|
83
83
|
export type InteropSession = {
|
|
84
84
|
sessionId: string;
|
|
85
85
|
};
|
|
86
|
-
|
|
87
|
-
* Represents a source session
|
|
88
|
-
*/
|
|
89
|
-
export type Source = {
|
|
90
|
-
/**
|
|
91
|
-
* Source session id
|
|
92
|
-
*/
|
|
86
|
+
export type CreateSessionResponse = {
|
|
93
87
|
sessionId: string;
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
88
|
+
sessionRootTopic: string;
|
|
89
|
+
url: string;
|
|
90
|
+
token: string;
|
|
91
|
+
orgId: string;
|
|
92
|
+
sub: string;
|
|
93
|
+
platformId: string;
|
|
97
94
|
sourceId: string;
|
|
98
|
-
/**
|
|
99
|
-
* source environment display name
|
|
100
|
-
*/
|
|
101
|
-
sourceDisplayName: string;
|
|
102
|
-
};
|
|
103
|
-
/**
|
|
104
|
-
* Represents the details of an intent found during discovery
|
|
105
|
-
*/
|
|
106
|
-
export type IntentDetail = {
|
|
107
|
-
/**
|
|
108
|
-
* The location of the intent implementation
|
|
109
|
-
*/
|
|
110
|
-
source: Source;
|
|
111
|
-
/**
|
|
112
|
-
* The instance id of the intent
|
|
113
|
-
*/
|
|
114
|
-
intentInstanceId: string;
|
|
115
|
-
/**
|
|
116
|
-
* The name of the intent
|
|
117
|
-
*/
|
|
118
|
-
intentName: string;
|
|
119
|
-
};
|
|
120
|
-
/**
|
|
121
|
-
* Represents a context received from another cloud interop publisher
|
|
122
|
-
*
|
|
123
|
-
* @export
|
|
124
|
-
* @type ContextEvent
|
|
125
|
-
* @property {string} contextGroup - The context group
|
|
126
|
-
* @property {object} context - The context
|
|
127
|
-
* @property {Source} source - The source of the context
|
|
128
|
-
*/
|
|
129
|
-
export type ContextEvent = {
|
|
130
|
-
/**
|
|
131
|
-
* The context group
|
|
132
|
-
*/
|
|
133
|
-
contextGroup: string;
|
|
134
|
-
/**
|
|
135
|
-
* The context object
|
|
136
|
-
*/
|
|
137
|
-
context: object;
|
|
138
|
-
/**
|
|
139
|
-
* The source of the context
|
|
140
|
-
*/
|
|
141
|
-
source: Source;
|
|
142
95
|
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ContextEvent, EndReportIntentsEvent, IntentDetailsEvent, IntentResultEvent, InvokeIntentEvent, ReportIntentsEvent } from '@openfin/shared-utils';
|
|
2
|
+
export type EventMap = {
|
|
3
|
+
reconnected: () => void;
|
|
4
|
+
disconnected: () => void;
|
|
5
|
+
context: (event: ContextEvent) => void;
|
|
6
|
+
reconnecting: (attemptNo: number) => void;
|
|
7
|
+
error: (error: Error) => void;
|
|
8
|
+
'session-expired': () => void;
|
|
9
|
+
'report-intents': (event: ReportIntentsEvent) => void;
|
|
10
|
+
'end-report-intents': (event: EndReportIntentsEvent) => void;
|
|
11
|
+
'intent-details': (event: IntentDetailsEvent) => void;
|
|
12
|
+
'invoke-intent': (event: InvokeIntentEvent) => void;
|
|
13
|
+
'intent-result': (event: IntentResultEvent) => void;
|
|
14
|
+
};
|
|
15
|
+
export type EventListenersMap = Map<keyof EventMap, Array<(...args: Parameters<EventMap[keyof EventMap]>) => void>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/cloud-interop-core-api",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.7616ec0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"files": [
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"browser": "./dist/index.mjs",
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "rollup -c",
|
|
13
|
+
"build": "rimraf dist && rollup -c",
|
|
14
14
|
"build:watch": "rollup -c --watch",
|
|
15
15
|
"typecheck": "tsc --noEmit",
|
|
16
16
|
"test": "jest --coverage",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
26
26
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
27
27
|
"@types/jest": "^29.5.14",
|
|
28
|
-
"@types/node": "^
|
|
28
|
+
"@types/node": "^22.7.7",
|
|
29
29
|
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
30
30
|
"@typescript-eslint/parser": "^7.15.0",
|
|
31
31
|
"eslint": "^8.57.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"typescript": "^5.6.3"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"
|
|
45
|
+
"@openfin/shared-utils": "file:../shared-utils",
|
|
46
46
|
"mqtt": "^5.3.1"
|
|
47
47
|
},
|
|
48
48
|
"eslintConfig": {
|