📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-29 16:09:10 +00:00
parent 90c6c04c3f
commit f7f50d9fea
314 changed files with 31913 additions and 351 deletions
@@ -0,0 +1,31 @@
# List Collections
Show all available Weaviate collections with their properties.
## Usage
```bash
uv run scripts/list_collections.py [--json]
```
## Parameters
| Parameter | Flag | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `--json` | — | No | `false` | Output in JSON format |
## Output
- **Default**: Markdown table with collection names, descriptions, and property lists
- **JSON**: Array of collection objects with full property details
## Examples
```bash
uv run scripts/list_collections.py
```
```bash
uv run scripts/list_collections.py --json
```