@akanjs/cli 2.3.5-rc.12 → 2.3.5-rc.13
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/package.json +2 -2
- package/templates/lib/sig.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/cli",
|
|
3
|
-
"version": "2.3.5-rc.
|
|
3
|
+
"version": "2.3.5-rc.13",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@langchain/openai": "^1.4.6",
|
|
36
36
|
"@tailwindcss/node": "^4.3.0",
|
|
37
37
|
"@trapezedev/project": "^7.1.4",
|
|
38
|
-
"akanjs": "2.3.5-rc.
|
|
38
|
+
"akanjs": "2.3.5-rc.13",
|
|
39
39
|
"chalk": "^5.6.2",
|
|
40
40
|
"commander": "^14.0.3",
|
|
41
41
|
"daisyui": "^5.5.20",
|
package/templates/lib/sig.ts
CHANGED
|
@@ -57,7 +57,7 @@ ${serviceModules.map((module) => `export const ${module} = SignalRegistry.regist
|
|
|
57
57
|
|
|
58
58
|
export const fetchSignals = [${signalNames.join(", ")}] as const;
|
|
59
59
|
export type Fetch = FetchClientType<typeof fetchSignals>;
|
|
60
|
-
export const fetch
|
|
60
|
+
export const fetch = FetchClient.from(...fetchSignals) as unknown as Fetch;
|
|
61
61
|
|
|
62
62
|
export const getSerializedSignal = () => fetch.serializedSignal
|
|
63
63
|
`;
|