@purpleschool/gptbot 0.7.94-ai-proxy → 0.7.95-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,5 @@
1
+ export const AI_PROXY_CONTROLLER = 'ai-proxy' as const;
2
+
3
+ export const AI_PROXY_ROUTES = {
4
+ IMAGE_CALLBACK: 'image-callback',
5
+ } as const;
@@ -14,7 +14,7 @@ export * from './form-submission';
14
14
  export * from './key-value';
15
15
  export * from './referral';
16
16
  export * from './message';
17
- export * from './kie';
17
+ export * from './ai-proxy';
18
18
  export * from './page';
19
19
  export * from './payment';
20
20
  export * from './presentation';
package/api/routes.ts CHANGED
@@ -788,8 +788,8 @@ export const REST_API = {
788
788
  DELETE_BY_KEY: (namespace: string, key: string) =>
789
789
  `${ROOT}/${CONTROLLERS.KEY_VALUE_NAMESPACE_CONTROLLER}/${CONTROLLERS.KEY_VALUE_NAMESPACE_ROUTES.DELETE_BY_KEY(namespace, key)}`,
790
790
  },
791
- KIE: {
792
- CALLBACK: `${ROOT}/${CONTROLLERS.KIE_CONTROLLER}/${CONTROLLERS.KIE_ROUTES.CALLBACK}`,
791
+ AI_PROXY: {
792
+ IMAGE_CALLBACK: `${ROOT}/${CONTROLLERS.AI_PROXY_CONTROLLER}/${CONTROLLERS.AI_PROXY_ROUTES.IMAGE_CALLBACK}`,
793
793
  },
794
794
  CLOUD_PAYMENTS: {
795
795
  CALLBACK: `${ROOT}/${CONTROLLERS.CLOUD_PAYMENTS_CONTROLLER}/${CONTROLLERS.CLOUD_PAYMENTS_ROUTES.CALLBACK}`,
@@ -0,0 +1,7 @@
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
+ IMAGE_CALLBACK: 'image-callback',
7
+ };
@@ -30,7 +30,7 @@ __exportStar(require("./form-submission"), exports);
30
30
  __exportStar(require("./key-value"), exports);
31
31
  __exportStar(require("./referral"), exports);
32
32
  __exportStar(require("./message"), exports);
33
- __exportStar(require("./kie"), exports);
33
+ __exportStar(require("./ai-proxy"), exports);
34
34
  __exportStar(require("./page"), exports);
35
35
  __exportStar(require("./payment"), exports);
36
36
  __exportStar(require("./presentation"), exports);
@@ -617,8 +617,8 @@ exports.REST_API = {
617
617
  CREATE: (namespace) => `${exports.ROOT}/${CONTROLLERS.KEY_VALUE_NAMESPACE_CONTROLLER}/${CONTROLLERS.KEY_VALUE_NAMESPACE_ROUTES.CREATE(namespace)}`,
618
618
  DELETE_BY_KEY: (namespace, key) => `${exports.ROOT}/${CONTROLLERS.KEY_VALUE_NAMESPACE_CONTROLLER}/${CONTROLLERS.KEY_VALUE_NAMESPACE_ROUTES.DELETE_BY_KEY(namespace, key)}`,
619
619
  },
620
- KIE: {
621
- CALLBACK: `${exports.ROOT}/${CONTROLLERS.KIE_CONTROLLER}/${CONTROLLERS.KIE_ROUTES.CALLBACK}`,
620
+ AI_PROXY: {
621
+ IMAGE_CALLBACK: `${exports.ROOT}/${CONTROLLERS.AI_PROXY_CONTROLLER}/${CONTROLLERS.AI_PROXY_ROUTES.IMAGE_CALLBACK}`,
622
622
  },
623
623
  CLOUD_PAYMENTS: {
624
624
  CALLBACK: `${exports.ROOT}/${CONTROLLERS.CLOUD_PAYMENTS_CONTROLLER}/${CONTROLLERS.CLOUD_PAYMENTS_ROUTES.CALLBACK}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot",
3
- "version": "0.7.94-ai-proxy",
3
+ "version": "0.7.95-ai-proxy",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -1,5 +0,0 @@
1
- export const KIE_CONTROLLER = 'kie' as const;
2
-
3
- export const KIE_ROUTES = {
4
- CALLBACK: 'callback',
5
- } as const;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.KIE_ROUTES = exports.KIE_CONTROLLER = void 0;
4
- exports.KIE_CONTROLLER = 'kie';
5
- exports.KIE_ROUTES = {
6
- CALLBACK: 'callback',
7
- };