@jacobbd/relay-ai 0.9.7 → 0.10.0
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/{chunk-BJ4AE3PS.js → chunk-2NXLK3O6.js} +174 -20
- package/dist/chunk-2NXLK3O6.js.map +1 -0
- package/dist/{chunk-NYKVDBQC.js → chunk-P4IS6537.js} +7 -1
- package/dist/chunk-P4IS6537.js.map +1 -0
- package/dist/cli.js +67 -13
- package/dist/cli.js.map +1 -1
- package/dist/core/index.d.ts +8 -0
- package/dist/core/index.js +510 -4
- package/dist/core/index.js.map +1 -1
- package/dist/{provider-templates-CGWE66TD.js → provider-templates-7M24FAAI.js} +2 -2
- package/dist/{ui-command-NM4MNZLO.js → ui-command-6ZMM5K5K.js} +4 -4
- package/package.json +1 -1
- package/dist/chunk-BJ4AE3PS.js.map +0 -1
- package/dist/chunk-NYKVDBQC.js.map +0 -1
- /package/dist/{provider-templates-CGWE66TD.js.map → provider-templates-7M24FAAI.js.map} +0 -0
- /package/dist/{ui-command-NM4MNZLO.js.map → ui-command-6ZMM5K5K.js.map} +0 -0
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
listAddableTemplates,
|
|
8
8
|
listSupportedTemplates,
|
|
9
9
|
listVisibleOAuthTemplates
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-P4IS6537.js";
|
|
11
11
|
init_provider_templates();
|
|
12
12
|
export {
|
|
13
13
|
PROVIDER_TEMPLATES,
|
|
@@ -17,4 +17,4 @@ export {
|
|
|
17
17
|
listSupportedTemplates,
|
|
18
18
|
listVisibleOAuthTemplates
|
|
19
19
|
};
|
|
20
|
-
//# sourceMappingURL=provider-templates-
|
|
20
|
+
//# sourceMappingURL=provider-templates-7M24FAAI.js.map
|
|
@@ -85,14 +85,14 @@ import {
|
|
|
85
85
|
updateCustomEndpointProvider,
|
|
86
86
|
validateCustomEndpointUrl,
|
|
87
87
|
writeSecureLogLine
|
|
88
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-2NXLK3O6.js";
|
|
89
89
|
import {
|
|
90
90
|
__toCommonJS,
|
|
91
91
|
init_provider_templates,
|
|
92
92
|
listAddableTemplates,
|
|
93
93
|
listVisibleOAuthTemplates,
|
|
94
94
|
provider_templates_exports
|
|
95
|
-
} from "./chunk-
|
|
95
|
+
} from "./chunk-P4IS6537.js";
|
|
96
96
|
|
|
97
97
|
// src/ui-command.ts
|
|
98
98
|
import { createServer } from "http";
|
|
@@ -958,7 +958,7 @@ async function handleAddProvider(req, res) {
|
|
|
958
958
|
sendJson(res, 400, { error: "templateId required" });
|
|
959
959
|
return;
|
|
960
960
|
}
|
|
961
|
-
const { listSupportedTemplates } = await import("./provider-templates-
|
|
961
|
+
const { listSupportedTemplates } = await import("./provider-templates-7M24FAAI.js");
|
|
962
962
|
const template = listSupportedTemplates().find((t) => t.id === templateId);
|
|
963
963
|
if (!template) {
|
|
964
964
|
sendJson(res, 404, { error: `Template '${templateId}' not found` });
|
|
@@ -1810,4 +1810,4 @@ export {
|
|
|
1810
1810
|
resolveUiShutdownDecision,
|
|
1811
1811
|
runUiCommand
|
|
1812
1812
|
};
|
|
1813
|
-
//# sourceMappingURL=ui-command-
|
|
1813
|
+
//# sourceMappingURL=ui-command-6ZMM5K5K.js.map
|