@openfin/fdc3-api 40.82.11 → 40.82.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/out/fdc3-api-alpha.d.ts +698 -213
- package/out/fdc3-api-beta.d.ts +698 -213
- package/out/fdc3-api-public.d.ts +698 -213
- package/out/fdc3-api.d.ts +698 -213
- package/out/fdc3-api.js +28 -2
- package/package.json +2 -2
package/out/fdc3-api.js
CHANGED
|
@@ -77,9 +77,32 @@ var utils$1 = {};
|
|
|
77
77
|
|
|
78
78
|
var PrivateChannelClient$1 = {};
|
|
79
79
|
|
|
80
|
+
var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
81
|
+
if (k2 === undefined) k2 = k;
|
|
82
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
83
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
84
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
85
|
+
}
|
|
86
|
+
Object.defineProperty(o, k2, desc);
|
|
87
|
+
}) : (function(o, m, k, k2) {
|
|
88
|
+
if (k2 === undefined) k2 = k;
|
|
89
|
+
o[k2] = m[k];
|
|
90
|
+
}));
|
|
91
|
+
var __setModuleDefault = (commonjsGlobal && commonjsGlobal.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
92
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
93
|
+
}) : function(o, v) {
|
|
94
|
+
o["default"] = v;
|
|
95
|
+
});
|
|
96
|
+
var __importStar = (commonjsGlobal && commonjsGlobal.__importStar) || function (mod) {
|
|
97
|
+
if (mod && mod.__esModule) return mod;
|
|
98
|
+
var result = {};
|
|
99
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
100
|
+
__setModuleDefault(result, mod);
|
|
101
|
+
return result;
|
|
102
|
+
};
|
|
80
103
|
Object.defineProperty(PrivateChannelClient$1, "__esModule", { value: true });
|
|
81
104
|
PrivateChannelClient$1.PrivateChannelClient = void 0;
|
|
82
|
-
const utils = utils$2;
|
|
105
|
+
const utils = __importStar(utils$2);
|
|
83
106
|
class PrivateChannelClient {
|
|
84
107
|
constructor(client, id) {
|
|
85
108
|
this.id = id;
|
|
@@ -1153,11 +1176,14 @@ function requireInteropClient () {
|
|
|
1153
1176
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
1154
1177
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
1155
1178
|
};
|
|
1179
|
+
var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) {
|
|
1180
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
1181
|
+
};
|
|
1156
1182
|
var _InteropClient_clientPromise, _InteropClient_sessionContextGroups;
|
|
1157
1183
|
Object.defineProperty(InteropClient, "__esModule", { value: true });
|
|
1158
1184
|
InteropClient.InteropClient = void 0;
|
|
1159
1185
|
const base_1 = base;
|
|
1160
|
-
const SessionContextGroupClient_1 = SessionContextGroupClient$1;
|
|
1186
|
+
const SessionContextGroupClient_1 = __importDefault(SessionContextGroupClient$1);
|
|
1161
1187
|
const fdc3_1_2_1 = requireFdc31_2();
|
|
1162
1188
|
const fdc3_2_0_1 = requireFdc32_0();
|
|
1163
1189
|
const utils_1 = utils$2;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/fdc3-api",
|
|
3
|
-
"version": "40.82.
|
|
3
|
+
"version": "40.82.12",
|
|
4
4
|
"description": "OpenFin fdc3 module utilities and types.",
|
|
5
|
-
"license": "SEE LICENSE IN LICENSE.
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"private": false,
|
|
7
7
|
"main": "./out/fdc3-api.js",
|
|
8
8
|
"types": "./out/fdc3-api.d.ts",
|