crc-pulp-npm-client 20250819.1__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.
Potentially problematic release.
This version of crc-pulp-npm-client might be problematic. Click here for more details.
- crc-pulp_npm-client/__init__.py +2 -0
- crc-pulp_npm-client/api/__init__.py +9 -0
- crc-pulp_npm-client/api/content_packages_api.py +1964 -0
- crc-pulp_npm-client/api/distributions_npm_api.py +2934 -0
- crc-pulp_npm-client/api/remotes_npm_api.py +2962 -0
- crc-pulp_npm-client/api/repositories_npm_api.py +3604 -0
- crc-pulp_npm-client/api/repositories_npm_versions_api.py +1670 -0
- crc-pulp_npm-client/api_client.py +798 -0
- crc-pulp_npm-client/api_response.py +21 -0
- crc-pulp_npm-client/configuration.py +628 -0
- crc-pulp_npm-client/exceptions.py +200 -0
- crc-pulp_npm-client/models/__init__.py +44 -0
- crc-pulp_npm-client/models/async_operation_response.py +88 -0
- crc-pulp_npm-client/models/content_summary_response.py +92 -0
- crc-pulp_npm-client/models/npm_npm_distribution.py +116 -0
- crc-pulp_npm-client/models/npm_npm_distribution_response.py +140 -0
- crc-pulp_npm-client/models/npm_npm_remote.py +205 -0
- crc-pulp_npm-client/models/npm_npm_remote_response.py +199 -0
- crc-pulp_npm-client/models/npm_npm_remote_response_hidden_fields_inner.py +90 -0
- crc-pulp_npm-client/models/npm_npm_repository.py +112 -0
- crc-pulp_npm-client/models/npm_npm_repository_response.py +137 -0
- crc-pulp_npm-client/models/npm_package_response.py +113 -0
- crc-pulp_npm-client/models/paginated_repository_version_response_list.py +112 -0
- crc-pulp_npm-client/models/paginatednpm_npm_distribution_response_list.py +112 -0
- crc-pulp_npm-client/models/paginatednpm_npm_remote_response_list.py +112 -0
- crc-pulp_npm-client/models/paginatednpm_npm_repository_response_list.py +112 -0
- crc-pulp_npm-client/models/paginatednpm_package_response_list.py +112 -0
- crc-pulp_npm-client/models/patchednpm_npm_distribution.py +116 -0
- crc-pulp_npm-client/models/patchednpm_npm_remote.py +205 -0
- crc-pulp_npm-client/models/patchednpm_npm_repository.py +112 -0
- crc-pulp_npm-client/models/policy_enum.py +39 -0
- crc-pulp_npm-client/models/repair.py +88 -0
- crc-pulp_npm-client/models/repository_add_remove_content.py +93 -0
- crc-pulp_npm-client/models/repository_sync_url.py +90 -0
- crc-pulp_npm-client/models/repository_version_response.py +121 -0
- crc-pulp_npm-client/models/set_label.py +103 -0
- crc-pulp_npm-client/models/set_label_response.py +103 -0
- crc-pulp_npm-client/models/unset_label.py +96 -0
- crc-pulp_npm-client/models/unset_label_response.py +100 -0
- crc-pulp_npm-client/py.typed +0 -0
- crc-pulp_npm-client/rest.py +258 -0
- crc_pulp_npm_client-20250819.1.dist-info/METADATA +25 -0
- crc_pulp_npm_client-20250819.1.dist-info/RECORD +86 -0
- crc_pulp_npm_client-20250819.1.dist-info/WHEEL +5 -0
- crc_pulp_npm_client-20250819.1.dist-info/top_level.txt +2 -0
- services-pulp_npm-client/__init__.py +2 -0
- services-pulp_npm-client/api/__init__.py +9 -0
- services-pulp_npm-client/api/content_packages_api.py +1964 -0
- services-pulp_npm-client/api/distributions_npm_api.py +2934 -0
- services-pulp_npm-client/api/remotes_npm_api.py +2962 -0
- services-pulp_npm-client/api/repositories_npm_api.py +3604 -0
- services-pulp_npm-client/api/repositories_npm_versions_api.py +1670 -0
- services-pulp_npm-client/api_client.py +798 -0
- services-pulp_npm-client/api_response.py +21 -0
- services-pulp_npm-client/configuration.py +628 -0
- services-pulp_npm-client/exceptions.py +200 -0
- services-pulp_npm-client/models/__init__.py +44 -0
- services-pulp_npm-client/models/async_operation_response.py +88 -0
- services-pulp_npm-client/models/content_summary_response.py +92 -0
- services-pulp_npm-client/models/npm_npm_distribution.py +116 -0
- services-pulp_npm-client/models/npm_npm_distribution_response.py +140 -0
- services-pulp_npm-client/models/npm_npm_remote.py +205 -0
- services-pulp_npm-client/models/npm_npm_remote_response.py +199 -0
- services-pulp_npm-client/models/npm_npm_remote_response_hidden_fields_inner.py +90 -0
- services-pulp_npm-client/models/npm_npm_repository.py +112 -0
- services-pulp_npm-client/models/npm_npm_repository_response.py +137 -0
- services-pulp_npm-client/models/npm_package_response.py +113 -0
- services-pulp_npm-client/models/paginated_repository_version_response_list.py +112 -0
- services-pulp_npm-client/models/paginatednpm_npm_distribution_response_list.py +112 -0
- services-pulp_npm-client/models/paginatednpm_npm_remote_response_list.py +112 -0
- services-pulp_npm-client/models/paginatednpm_npm_repository_response_list.py +112 -0
- services-pulp_npm-client/models/paginatednpm_package_response_list.py +112 -0
- services-pulp_npm-client/models/patchednpm_npm_distribution.py +116 -0
- services-pulp_npm-client/models/patchednpm_npm_remote.py +205 -0
- services-pulp_npm-client/models/patchednpm_npm_repository.py +112 -0
- services-pulp_npm-client/models/policy_enum.py +39 -0
- services-pulp_npm-client/models/repair.py +88 -0
- services-pulp_npm-client/models/repository_add_remove_content.py +93 -0
- services-pulp_npm-client/models/repository_sync_url.py +90 -0
- services-pulp_npm-client/models/repository_version_response.py +121 -0
- services-pulp_npm-client/models/set_label.py +103 -0
- services-pulp_npm-client/models/set_label_response.py +103 -0
- services-pulp_npm-client/models/unset_label.py +96 -0
- services-pulp_npm-client/models/unset_label_response.py +100 -0
- services-pulp_npm-client/py.typed +0 -0
- services-pulp_npm-client/rest.py +258 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from crc-pulp_npm-client.api.content_packages_api import ContentPackagesApi
|
|
5
|
+
from crc-pulp_npm-client.api.distributions_npm_api import DistributionsNpmApi
|
|
6
|
+
from crc-pulp_npm-client.api.remotes_npm_api import RemotesNpmApi
|
|
7
|
+
from crc-pulp_npm-client.api.repositories_npm_api import RepositoriesNpmApi
|
|
8
|
+
from crc-pulp_npm-client.api.repositories_npm_versions_api import RepositoriesNpmVersionsApi
|
|
9
|
+
|