---------------------------------------------------------------------- This is the API documentation for the gdtest_rst_mixed_dirs library. ---------------------------------------------------------------------- ## Functions Utility functions process_v2(data: list) -> list Process data using the v2 pipeline. Parameters ---------- data The data to process. Returns ------- list The processed data. .. versionadded:: 2.0 .. note:: Replaces the old process() function. .. tip:: Use with batch_mode for best results. safe_delete(item_id: str) -> bool Safely delete an item by its identifier. Parameters ---------- item_id The identifier of the item to delete. Returns ------- bool True if the item was deleted successfully. .. important:: Validates before deletion. .. caution:: Rate limited to 100 calls per minute. transform_legacy(data: dict) -> dict Transform data using the legacy algorithm. Parameters ---------- data The data dictionary to transform. Returns ------- dict The transformed data. .. deprecated:: 1.0 Use transform_v2() instead. .. warning:: May produce unexpected results with nested dicts.