botframework-directlinejs 0.15.2-master.e88b998 → 0.15.3-master.c2f9b2a
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 +14 -14
- package/lib/directLine.js +1 -1
- package/lib/directLineStreaming.d.ts +1 -1
- package/lib/directLineStreaming.js +175 -140
- package/package.json +3 -3
package/dist/stats.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hash": "
|
|
3
|
-
"version": "5.
|
|
2
|
+
"hash": "99354f45eaf4f5aaf6f4",
|
|
3
|
+
"version": "5.76.2",
|
|
4
4
|
"time": null,
|
|
5
5
|
"publicPath": "auto",
|
|
6
6
|
"outputPath": "/home/runner/work/BotFramework-DirectLineJS/BotFramework-DirectLineJS/dist",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
{
|
|
14
14
|
"type": "asset",
|
|
15
15
|
"name": "directline.js",
|
|
16
|
-
"size":
|
|
16
|
+
"size": 302360,
|
|
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": 1050095,
|
|
69
69
|
"sizes": {
|
|
70
|
-
"javascript":
|
|
70
|
+
"javascript": 1049179,
|
|
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": "bc9c17c1c4cf7224f159",
|
|
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": 65699,
|
|
255
255
|
"sizes": {
|
|
256
|
-
"javascript":
|
|
256
|
+
"javascript": 65699
|
|
257
257
|
},
|
|
258
258
|
"built": true,
|
|
259
259
|
"codeGenerated": true,
|
|
@@ -3182,9 +3182,9 @@
|
|
|
3182
3182
|
"type": "module",
|
|
3183
3183
|
"moduleType": "javascript/auto",
|
|
3184
3184
|
"layer": null,
|
|
3185
|
-
"size":
|
|
3185
|
+
"size": 429614,
|
|
3186
3186
|
"sizes": {
|
|
3187
|
-
"javascript":
|
|
3187
|
+
"javascript": 429614
|
|
3188
3188
|
},
|
|
3189
3189
|
"built": true,
|
|
3190
3190
|
"codeGenerated": true,
|
|
@@ -29293,9 +29293,9 @@
|
|
|
29293
29293
|
"type": "module",
|
|
29294
29294
|
"moduleType": "javascript/auto",
|
|
29295
29295
|
"layer": null,
|
|
29296
|
-
"size":
|
|
29296
|
+
"size": 65699,
|
|
29297
29297
|
"sizes": {
|
|
29298
|
-
"javascript":
|
|
29298
|
+
"javascript": 65699
|
|
29299
29299
|
},
|
|
29300
29300
|
"built": true,
|
|
29301
29301
|
"codeGenerated": true,
|
|
@@ -32413,9 +32413,9 @@
|
|
|
32413
32413
|
"type": "module",
|
|
32414
32414
|
"moduleType": "javascript/auto",
|
|
32415
32415
|
"layer": null,
|
|
32416
|
-
"size":
|
|
32416
|
+
"size": 429614,
|
|
32417
32417
|
"sizes": {
|
|
32418
|
-
"javascript":
|
|
32418
|
+
"javascript": 429614
|
|
32419
32419
|
},
|
|
32420
32420
|
"built": true,
|
|
32421
32421
|
"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.
|
|
760
|
+
return "".concat(DIRECT_LINE_VERSION, " (").concat(clientAgent, " ").concat("0.15.3-master.c2f9b2a", ")");
|
|
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;
|