ccjk 13.5.5 → 13.5.6
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/chunks/codex-config-switch.mjs +2 -2
- package/dist/chunks/codex.mjs +386 -117
- package/dist/chunks/features.mjs +4 -4
- package/dist/chunks/index8.mjs +40 -12
- package/dist/chunks/init.mjs +26 -2
- package/dist/chunks/mcp-cli.mjs +1 -1
- package/dist/chunks/mcp.mjs +2 -2
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/uninstall.mjs +1 -1
- package/dist/cli.mjs +0 -0
- package/dist/i18n/locales/en/codex.json +9 -5
- package/dist/i18n/locales/en/mcp.json +2 -0
- package/dist/i18n/locales/en/menu.json +67 -0
- package/dist/i18n/locales/zh-CN/codex.json +9 -5
- package/dist/i18n/locales/zh-CN/mcp.json +2 -0
- package/dist/i18n/locales/zh-CN/menu.json +67 -0
- package/package.json +65 -68
|
@@ -193,7 +193,7 @@ async function handleAddProvider() {
|
|
|
193
193
|
defaultValue: true
|
|
194
194
|
});
|
|
195
195
|
if (setAsDefault) {
|
|
196
|
-
const { switchToProvider } = await import('./codex.mjs').then(function (n) { return n.
|
|
196
|
+
const { switchToProvider } = await import('./codex.mjs').then(function (n) { return n.v; });
|
|
197
197
|
const switched = await switchToProvider(provider.id);
|
|
198
198
|
if (switched) {
|
|
199
199
|
console.log(a.green(i18n.t("multi-config:profileSetAsDefault", { name: provider.name })));
|
|
@@ -388,7 +388,7 @@ ${i18n.t("codex:copyingProvider", { name: provider.name })}`));
|
|
|
388
388
|
defaultValue: false
|
|
389
389
|
});
|
|
390
390
|
if (setAsDefault) {
|
|
391
|
-
const { switchToProvider } = await import('./codex.mjs').then(function (n) { return n.
|
|
391
|
+
const { switchToProvider } = await import('./codex.mjs').then(function (n) { return n.v; });
|
|
392
392
|
const switched = await switchToProvider(copiedProvider.id);
|
|
393
393
|
if (switched) {
|
|
394
394
|
console.log(a.green(i18n.t("multi-config:profileSetAsDefault", { name: copiedProvider.name })));
|