vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Type Alias BatchResultRecord

    BatchResultRecord: {
        error: RecordError | undefined;
        operation: RecordOperationType;
        recordId: string | undefined;
        ref: string;
        success: boolean;
    } & (
        | { error: undefined; recordId: string; success: true }
        | { error: RecordError; recordId: undefined; success: false }
    )