lisichatbot 2.3.2 → 2.3.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisichatbot",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
package/src/index.js CHANGED
@@ -4114,7 +4114,7 @@ function displayMessage(message) {
4114
4114
  // console.log('💬 Message displayed:', message);
4115
4115
  }
4116
4116
 
4117
- module.exports = {
4117
+ export {
4118
4118
  init,
4119
4119
  getState,
4120
4120
  reset,
@@ -4122,4 +4122,4 @@ module.exports = {
4122
4122
  editStep,
4123
4123
  displayMessage,
4124
4124
  startEditPath // ✅ NEW: Export edit path function
4125
- };
4125
+ };