Variable: MSCopilotStudioTokenRequestSchema
const MSCopilotStudioTokenRequestSchema: ZodObject<{
auth_response: ZodRecord<ZodString, ZodString>;
token_json_uuid: ZodString;
client_id: ZodString;
client_secret: ZodString;
tenant_id: ZodString;
target_uuid: ZodOptional<ZodNullable<ZodString>>;
}, "strict", ZodTypeAny, {
auth_response: Record<string, string>;
token_json_uuid: string;
client_id: string;
client_secret: string;
tenant_id: string;
target_uuid?: string | null;
}, {
auth_response: Record<string, string>;
token_json_uuid: string;
client_id: string;
client_secret: string;
tenant_id: string;
target_uuid?: string | null;
}>;
Defined in: src/models/red-team-capabilities.ts:35
Exchange the authorization callback with its full state parameters. Treat as secret.