feat: implement manual user validation and user deletion flow

This commit is contained in:
Christian Vidal Wolf
2026-05-20 13:33:37 +02:00
parent 1d105e19ae
commit 47b9303202
22 changed files with 2613 additions and 93 deletions
+3
View File
@@ -37,6 +37,8 @@ export interface BCSyncPreviewSection {
writeUrlTemplate: string | null;
writeBodyTemplate: string | null;
canApply: boolean;
supported?: boolean;
supportReason?: string | null;
}
export interface BCSyncPreviewResult {
@@ -59,6 +61,7 @@ export interface BCSyncApplyResult {
itemUnitsOfMeasure: { applied: boolean; reason?: string; url?: string };
};
error?: string;
warning?: string;
}
async function readResponsePayload(res: Response): Promise<{ data: any; rawText: string }> {