wingbot 3.46.0-alpha.11 → 3.46.0-alpha.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/index.js CHANGED
@@ -48,6 +48,10 @@ const compileWithState = require('./src/utils/compileWithState');
48
48
  const onInteractionHandler = require('./src/analytics/onInteractionHandler');
49
49
  const GA4 = require('./src/analytics/GA4');
50
50
  const plugins = require('./plugins/plugins.json');
51
+ const extractText = require('./src/transcript/extractText');
52
+ const htmlBodyFromTranscript = require('./src/transcript/htmlBodyFromTranscript');
53
+ const textBodyFromTranscript = require('./src/transcript/textBodyFromTranscript');
54
+ const transcriptFromHistory = require('./src/transcript/transcriptFromHistory');
51
55
  const {
52
56
  bufferloader,
53
57
  MemoryStateStorage
@@ -135,5 +139,11 @@ module.exports = {
135
139
 
136
140
  // ANALYTICS
137
141
  onInteractionHandler,
138
- GA4
142
+ GA4,
143
+
144
+ // TRANSCRIPTS
145
+ extractText,
146
+ htmlBodyFromTranscript,
147
+ textBodyFromTranscript,
148
+ transcriptFromHistory
139
149
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.46.0-alpha.11",
3
+ "version": "3.46.0-alpha.12",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -428,6 +428,7 @@ function onInteractionHandler (
428
428
  prevAction,
429
429
  skill: useSkill,
430
430
  isGoto: true,
431
+ withUser,
431
432
  ...langsExtension
432
433
  };
433
434