orchestrator-client 5.7.12 → 5.8.3

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.cts CHANGED
@@ -656,6 +656,7 @@ declare class OrchestratorAsync {
656
656
  createVSATask(params: {
657
657
  userId: string;
658
658
  goalPrompt: string;
659
+ variant?: "portal_user" | "operator";
659
660
  title?: string;
660
661
  agentModelId?: string;
661
662
  orchestratorModelId?: string;
package/dist/index.d.ts CHANGED
@@ -656,6 +656,7 @@ declare class OrchestratorAsync {
656
656
  createVSATask(params: {
657
657
  userId: string;
658
658
  goalPrompt: string;
659
+ variant?: "portal_user" | "operator";
659
660
  title?: string;
660
661
  agentModelId?: string;
661
662
  orchestratorModelId?: string;
package/dist/index.js CHANGED
@@ -691,6 +691,7 @@ var OrchestratorAsync = class {
691
691
  const body = {
692
692
  user_id: params.userId,
693
693
  goal_prompt: params.goalPrompt,
694
+ variant: params.variant ?? "portal_user",
694
695
  title: params.title,
695
696
  agent_model_id: params.agentModelId,
696
697
  orchestrator_model_id: params.orchestratorModelId,