wds-client 0.13.0__py3-none-any.whl → 0.15.0__py3-none-any.whl
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.
- wds_client/__init__.py +3 -1
- wds_client/api/__init__.py +1 -0
- wds_client/api/collection_api.py +1419 -0
- wds_client/api/instances_api.py +28 -18
- wds_client/api/records_api.py +3 -0
- wds_client/api/schema_api.py +2 -0
- wds_client/api_client.py +1 -1
- wds_client/configuration.py +1 -1
- wds_client/models/__init__.py +1 -0
- wds_client/models/collection.py +99 -0
- {wds_client-0.13.0.dist-info → wds_client-0.15.0.dist-info}/METADATA +1 -1
- {wds_client-0.13.0.dist-info → wds_client-0.15.0.dist-info}/RECORD +14 -12
- {wds_client-0.13.0.dist-info → wds_client-0.15.0.dist-info}/WHEEL +1 -1
- {wds_client-0.13.0.dist-info → wds_client-0.15.0.dist-info}/top_level.txt +0 -0
wds_client/__init__.py
CHANGED
@@ -14,11 +14,12 @@
|
|
14
14
|
""" # noqa: E501
|
15
15
|
|
16
16
|
|
17
|
-
__version__ = "0.
|
17
|
+
__version__ = "0.15.0"
|
18
18
|
|
19
19
|
# import apis into sdk package
|
20
20
|
from wds_client.api.capabilities_api import CapabilitiesApi
|
21
21
|
from wds_client.api.cloning_api import CloningApi
|
22
|
+
from wds_client.api.collection_api import CollectionApi
|
22
23
|
from wds_client.api.general_wds_information_api import GeneralWDSInformationApi
|
23
24
|
from wds_client.api.import_api import ImportApi
|
24
25
|
from wds_client.api.instances_api import InstancesApi
|
@@ -52,6 +53,7 @@ from wds_client.models.build import Build
|
|
52
53
|
from wds_client.models.capabilities import Capabilities
|
53
54
|
from wds_client.models.clone_job import CloneJob
|
54
55
|
from wds_client.models.clone_response import CloneResponse
|
56
|
+
from wds_client.models.collection import Collection
|
55
57
|
from wds_client.models.commit import Commit
|
56
58
|
from wds_client.models.error_response import ErrorResponse
|
57
59
|
from wds_client.models.generic_job import GenericJob
|
wds_client/api/__init__.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# import apis into api package
|
4
4
|
from wds_client.api.capabilities_api import CapabilitiesApi
|
5
5
|
from wds_client.api.cloning_api import CloningApi
|
6
|
+
from wds_client.api.collection_api import CollectionApi
|
6
7
|
from wds_client.api.general_wds_information_api import GeneralWDSInformationApi
|
7
8
|
from wds_client.api.import_api import ImportApi
|
8
9
|
from wds_client.api.instances_api import InstancesApi
|