@resolveio/server-lib 22.2.0 → 22.2.1

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.
@@ -21173,10 +21173,13 @@ function resolveSingleWorkerTarget(value) {
21173
21173
  }
21174
21174
  function normalizeConversationMode(value) {
21175
21175
  var normalized = normalizeOptionalString(value).toLowerCase();
21176
- if (normalized === 'codex') {
21176
+ if (normalized === 'codex' || normalized === 'aicoder') {
21177
21177
  return 'codex';
21178
21178
  }
21179
- return 'openai';
21179
+ if (normalized === 'openai') {
21180
+ return 'codex';
21181
+ }
21182
+ return 'codex';
21180
21183
  }
21181
21184
  function normalizeConversationStatus(value) {
21182
21185
  var normalized = normalizeOptionalString(value).toLowerCase();