botframework-directlinejs 0.15.3-master.dbb4063 → 0.15.3-master.fb239fe
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/directline.js +1 -1
- package/dist/stats.json +9 -9
- package/lib/directLine.js +1 -1
- package/lib/directLineStreaming.d.ts +1 -1
- package/lib/directLineStreaming.js +171 -138
- package/package.json +1 -1
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hash": "
|
|
2
|
+
"hash": "f0eaa0c1edf650fb35f6",
|
|
3
3
|
"version": "5.76.2",
|
|
4
4
|
"time": null,
|
|
5
5
|
"publicPath": "auto",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
{
|
|
14
14
|
"type": "asset",
|
|
15
15
|
"name": "directline.js",
|
|
16
|
-
"size":
|
|
16
|
+
"size": 302297,
|
|
17
17
|
"emitted": false,
|
|
18
18
|
"comparedForEmit": false,
|
|
19
19
|
"cached": true,
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"initial": true,
|
|
66
66
|
"entry": true,
|
|
67
67
|
"recorded": false,
|
|
68
|
-
"size":
|
|
68
|
+
"size": 1049866,
|
|
69
69
|
"sizes": {
|
|
70
|
-
"javascript":
|
|
70
|
+
"javascript": 1048950,
|
|
71
71
|
"runtime": 916
|
|
72
72
|
},
|
|
73
73
|
"names": [
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"directline.js"
|
|
82
82
|
],
|
|
83
83
|
"auxiliaryFiles": [],
|
|
84
|
-
"hash": "
|
|
84
|
+
"hash": "3cd0f39629e8fc5b1e6c",
|
|
85
85
|
"childrenByOrder": {},
|
|
86
86
|
"id": 884,
|
|
87
87
|
"siblings": [],
|
|
@@ -251,9 +251,9 @@
|
|
|
251
251
|
"type": "module",
|
|
252
252
|
"moduleType": "javascript/auto",
|
|
253
253
|
"layer": null,
|
|
254
|
-
"size":
|
|
254
|
+
"size": 65470,
|
|
255
255
|
"sizes": {
|
|
256
|
-
"javascript":
|
|
256
|
+
"javascript": 65470
|
|
257
257
|
},
|
|
258
258
|
"built": true,
|
|
259
259
|
"codeGenerated": true,
|
|
@@ -29293,9 +29293,9 @@
|
|
|
29293
29293
|
"type": "module",
|
|
29294
29294
|
"moduleType": "javascript/auto",
|
|
29295
29295
|
"layer": null,
|
|
29296
|
-
"size":
|
|
29296
|
+
"size": 65470,
|
|
29297
29297
|
"sizes": {
|
|
29298
|
-
"javascript":
|
|
29298
|
+
"javascript": 65470
|
|
29299
29299
|
},
|
|
29300
29300
|
"built": true,
|
|
29301
29301
|
"codeGenerated": true,
|
package/lib/directLine.js
CHANGED
|
@@ -757,7 +757,7 @@ var DirectLine = /*#__PURE__*/function () {
|
|
|
757
757
|
clientAgent += "; ".concat(customAgent);
|
|
758
758
|
}
|
|
759
759
|
|
|
760
|
-
return "".concat(DIRECT_LINE_VERSION, " (").concat(clientAgent, " ").concat("0.15.3-master.
|
|
760
|
+
return "".concat(DIRECT_LINE_VERSION, " (").concat(clientAgent, " ").concat("0.15.3-master.fb239fe", ")");
|
|
761
761
|
}
|
|
762
762
|
}, {
|
|
763
763
|
key: "setUserId",
|
|
@@ -19,7 +19,7 @@ export declare class DirectLineStreaming implements IBotConnection {
|
|
|
19
19
|
private queueActivities;
|
|
20
20
|
private _botAgent;
|
|
21
21
|
constructor(options: DirectLineStreamingOptions);
|
|
22
|
-
reconnect({ conversationId, token }: Conversation): void
|
|
22
|
+
reconnect({ conversationId, token }: Conversation): Promise<void>;
|
|
23
23
|
end(): void;
|
|
24
24
|
private commonHeaders;
|
|
25
25
|
private getBotAgent;
|