@corbat-tech/coco 2.19.0 → 2.20.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.
package/dist/index.d.ts CHANGED
@@ -502,9 +502,11 @@ declare const CocoConfigSchema: z.ZodObject<{
502
502
  kimi: "kimi";
503
503
  "kimi-code": "kimi-code";
504
504
  lmstudio: "lmstudio";
505
+ qwen: "qwen";
505
506
  deepseek: "deepseek";
506
507
  mistral: "mistral";
507
508
  codex: "codex";
509
+ copilot: "copilot";
508
510
  ollama: "ollama";
509
511
  groq: "groq";
510
512
  openrouter: "openrouter";
@@ -567,9 +569,9 @@ declare const CocoConfigSchema: z.ZodObject<{
567
569
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
568
570
  auth: z.ZodOptional<z.ZodObject<{
569
571
  type: z.ZodEnum<{
570
- apikey: "apikey";
571
572
  oauth: "oauth";
572
573
  bearer: "bearer";
574
+ apikey: "apikey";
573
575
  }>;
574
576
  token: z.ZodOptional<z.ZodString>;
575
577
  tokenEnv: z.ZodOptional<z.ZodString>;