canonicalwebteam.store-api 6.4.0__tar.gz → 6.6.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.
Potentially problematic release.
This version of canonicalwebteam.store-api might be problematic. Click here for more details.
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/PKG-INFO +1 -1
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/store_api/publishergw.py +5 -3
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/pyproject.toml +1 -1
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/LICENSE +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/README.md +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/__init__.py +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/exceptions.py +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/store_api/__init__.py +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/store_api/base.py +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/store_api/dashboard.py +0 -0
- {canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/store_api/devicegw.py +0 -0
|
@@ -243,10 +243,12 @@ class PublisherGW(Base):
|
|
|
243
243
|
headers=self._get_dev_token_authorization_header(session),
|
|
244
244
|
)
|
|
245
245
|
|
|
246
|
-
|
|
247
|
-
return self.process_response(response)
|
|
246
|
+
processed_response = self.process_response(response)
|
|
248
247
|
|
|
249
|
-
|
|
248
|
+
if "metadata" not in processed_response:
|
|
249
|
+
return processed_response
|
|
250
|
+
|
|
251
|
+
return processed_response["metadata"]
|
|
250
252
|
|
|
251
253
|
def update_package_metadata(
|
|
252
254
|
self, publisher_auth: str, package_type: str, name: str, data: dict
|
|
File without changes
|
|
File without changes
|
{canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/__init__.py
RENAMED
|
File without changes
|
{canonicalwebteam_store_api-6.4.0 → canonicalwebteam_store_api-6.6.0}/canonicalwebteam/exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|