only_ever_generator 0.4.2 → 0.4.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.
package/dist/index.js CHANGED
@@ -7,10 +7,9 @@
7
7
  // const app = express();
8
8
  // const port = 3000;
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
- // import { returnPromptData } from "./constants/prompt_data";
11
- /// While Publishing the package , and using this code as a separate npm module
12
- /// uncomment the below line and comment all the others, expect the import of OnlyEverGenerator
13
- // export {OnlyEverGenerator};
10
+ exports.OnlyEverGenerator = void 0;
11
+ const app_1 = require("./bootstrap/app");
12
+ Object.defineProperty(exports, "OnlyEverGenerator", { enumerable: true, get: function () { return app_1.OnlyEverGenerator; } });
14
13
  // //. All the Codes Below uses express and are strictly for development purpose, while publishing the package, comment everything
15
14
  // //below this line
16
15
  // let oeGen = new OnlyEverGenerator(config.openAIKey, "gpt-4o", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "only_ever_generator",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "start": "npm run build && nodemon dist/index.js",
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@ import { OnlyEverGenerator } from "./bootstrap/app";
11
11
 
12
12
  /// While Publishing the package , and using this code as a separate npm module
13
13
  /// uncomment the below line and comment all the others, expect the import of OnlyEverGenerator
14
- // export {OnlyEverGenerator};
14
+ export {OnlyEverGenerator};
15
15
 
16
16
  // //. All the Codes Below uses express and are strictly for development purpose, while publishing the package, comment everything
17
17
  // //below this line