Skip to main content

Variable: MSCopilotStudioAuthUrlRequestSchema

const MSCopilotStudioAuthUrlRequestSchema: ZodObject<{
client_id: ZodString;
client_secret: ZodString;
tenant_id: ZodString;
target_uuid: ZodOptional<ZodNullable<ZodString>>;
token_json_uuid: ZodOptional<ZodNullable<ZodString>>;
}, "strict", ZodTypeAny, {
client_id: string;
client_secret: string;
tenant_id: string;
target_uuid?: string | null;
token_json_uuid?: string | null;
}, {
client_id: string;
client_secret: string;
tenant_id: string;
target_uuid?: string | null;
token_json_uuid?: string | null;
}>;

Defined in: src/models/red-team-capabilities.ts:20

Credentials used to initiate Copilot Studio authorization. Treat as secret.