Skip to content

Conversation

@github-actions
Copy link

Summary

Automated SDK update to match Python SDK changes.

Source: omgate234/videodb-python
Commit: bfffed541bce11c998437a7bf7b0d4abb4430866
Original message: Merge pull request #3 from omgate234/auto/spec-sync-20260122-125746 feat: sync with OpenAPI spec

Changes

This PR was automatically generated by Codex based on the following Python SDK diff:

Python SDK Diff
diff --git a/videodb/collection.py b/videodb/collection.py
index 9eb9e12..b43df6e 100644
--- a/videodb/collection.py
+++ b/videodb/collection.py
@@ -203,6 +203,18 @@ def create_test_asset(self, name: str, url: str) -> TestAsset:
             path=f"{ApiPath.test_assets}", data=payload
         )
         return TestAsset(self._connection, **ta_data)
+    
+    def delete_test_asset(self, test_asset_id: str) -> None:
+        """Delete the test asset.
+
+        :param str test_asset_id: ID of the test asset to delete
+        :raises InvalidRequestError: If the delete fails
+        :return: None if the delete is successful
+        :rtype: None
+        """
+        return self._connection.delete(
+            path=f"{ApiPath.test_assets}/{test_asset_id}"
+        )
 
     def connect_rtstream(
         self, url: str, name: str, sample_rate: int = None

Review Checklist

  • TypeScript types are correct
  • Async/await patterns match existing code
  • camelCase naming convention followed
  • No breaking changes introduced
  • Tests pass locally

Generated by OpenAI Codex

omgate234 and others added 6 commits January 22, 2026 17:01
Source: omgate234/videodb-python@bfffed5
Original commit: Merge pull request #3 from omgate234/auto/spec-sync-20260122-125746 feat: sync with OpenAPI spec

Generated by OpenAI Codex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants