tapdata-sdk 0.2.0__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tapdata_sdk
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: A Python client library for interacting with Tapdata API
5
5
  Author-email: doubled <309294891@qq.com>
6
6
  License: MIT
@@ -321,6 +321,8 @@ isort tapdata_sdk/
321
321
  ```
322
322
 
323
323
  ## Changelog
324
+ ### v0.3.0 (2026-02-03)
325
+ - ✨ added TaskDetail and TaskRelation function
324
326
 
325
327
  ### v0.2.0 (2026-01-29)
326
328
  - ✨ Refactored code architecture with modular design
@@ -284,6 +284,8 @@ isort tapdata_sdk/
284
284
  ```
285
285
 
286
286
  ## Changelog
287
+ ### v0.3.0 (2026-02-03)
288
+ - ✨ added TaskDetail and TaskRelation function
287
289
 
288
290
  ### v0.2.0 (2026-01-29)
289
291
  - ✨ Refactored code architecture with modular design
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tapdata_sdk"
7
- version = "0.2.0"
7
+ version = "0.3.0"
8
8
  description = "A Python client library for interacting with Tapdata API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -20,7 +20,7 @@ Examples:
20
20
  >>> client.tasks.stop(tasks[0].id)
21
21
  """
22
22
  from .client import TapdataClient, ConnectionClient, TaskClient
23
- from .models import Connection, Task, TaskLog
23
+ from .models import Connection, Task, TaskLog, TaskDetail, TaskRelation
24
24
  from .enums import ConnectionType, DatabaseType, Status, LogLevel
25
25
  from .exceptions import (
26
26
  TapdataError,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tapdata_sdk
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: A Python client library for interacting with Tapdata API
5
5
  Author-email: doubled <309294891@qq.com>
6
6
  License: MIT
@@ -321,6 +321,8 @@ isort tapdata_sdk/
321
321
  ```
322
322
 
323
323
  ## Changelog
324
+ ### v0.3.0 (2026-02-03)
325
+ - ✨ added TaskDetail and TaskRelation function
324
326
 
325
327
  ### v0.2.0 (2026-01-29)
326
328
  - ✨ Refactored code architecture with modular design
File without changes
File without changes
File without changes