@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.
- package/api/controllers/http/ai-proxy.ts +5 -0
- package/api/controllers/http/index.ts +1 -1
- package/api/routes.ts +2 -2
- package/build/api/controllers/http/ai-proxy.js +7 -0
- package/build/api/controllers/http/index.js +1 -1
- package/build/api/routes.js +2 -2
- package/package.json +1 -1
- package/api/controllers/http/kie.ts +0 -5
- package/build/api/controllers/http/kie.js +0 -7
|
@@ -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 './
|
|
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
|
-
|
|
792
|
-
|
|
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}`,
|
|
@@ -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("./
|
|
33
|
+
__exportStar(require("./ai-proxy"), exports);
|
|
34
34
|
__exportStar(require("./page"), exports);
|
|
35
35
|
__exportStar(require("./payment"), exports);
|
|
36
36
|
__exportStar(require("./presentation"), exports);
|
package/build/api/routes.js
CHANGED
|
@@ -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
|
-
|
|
621
|
-
|
|
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