@purpleschool/gptbot-tools 0.0.75-ai-proxy → 0.0.76-ai-proxy

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.
@@ -0,0 +1 @@
1
+ export * from './routes';
@@ -0,0 +1,6 @@
1
+ export const AI_PROXY_CONTROLLER = 'ai-proxy';
2
+
3
+ export const AI_PROXY_ROUTES = {
4
+ VIDEO_CALLBACK: 'video/callback',
5
+ VIDEO_EDITOR_CALLBACK: 'video-editor/callback',
6
+ };
@@ -0,0 +1 @@
1
+ export * from './ai-proxy.routes';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./routes"), exports);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AI_PROXY_ROUTES = exports.AI_PROXY_CONTROLLER = void 0;
4
+ exports.AI_PROXY_CONTROLLER = 'ai-proxy';
5
+ exports.AI_PROXY_ROUTES = {
6
+ VIDEO_CALLBACK: 'video/callback',
7
+ VIDEO_EDITOR_CALLBACK: 'video-editor/callback',
8
+ };
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./ai-proxy.routes"), exports);
package/build/index.js CHANGED
@@ -48,6 +48,7 @@ __exportStar(require("./writer"), exports);
48
48
  __exportStar(require("./image-editor"), exports);
49
49
  __exportStar(require("./video-editor"), exports);
50
50
  __exportStar(require("./music"), exports);
51
+ __exportStar(require("./ai-proxy"), exports);
51
52
  const common = __importStar(require("./common"));
52
53
  const paraphrase = __importStar(require("./paraphrase"));
53
54
  const tools = __importStar(require("./tools"));
package/index.ts CHANGED
@@ -9,6 +9,7 @@ export * from './writer';
9
9
  export * from './image-editor';
10
10
  export * from './video-editor';
11
11
  export * from './music';
12
+ export * from './ai-proxy';
12
13
 
13
14
  import * as common from './common';
14
15
  import * as paraphrase from './paraphrase';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot-tools",
3
- "version": "0.0.75-ai-proxy",
3
+ "version": "0.0.76-ai-proxy",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "scripts": {