jentic-openapi-transformer-redocly 1.0.0a16__tar.gz → 1.0.0a18__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.
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/PKG-INFO +4 -4
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/README.md +1 -1
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/pyproject.toml +3 -3
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/src/jentic/apitools/openapi/transformer/bundler/backends/redocly/__init__.py +2 -2
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/LICENSE +0 -0
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/NOTICE +0 -0
- {jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/src/jentic/apitools/openapi/transformer/bundler/backends/redocly/py.typed +0 -0
{jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/PKG-INFO
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jentic-openapi-transformer-redocly
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0a18
|
|
4
4
|
Summary: Jentic OpenAPI Redocly Transformer Backend
|
|
5
5
|
Author: Jentic
|
|
6
6
|
Author-email: Jentic <hello@jentic.com>
|
|
7
7
|
License-Expression: Apache-2.0
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
License-File: NOTICE
|
|
10
|
-
Requires-Dist: jentic-openapi-common~=1.0.
|
|
11
|
-
Requires-Dist: jentic-openapi-transformer~=1.0.
|
|
10
|
+
Requires-Dist: jentic-openapi-common~=1.0.0a18
|
|
11
|
+
Requires-Dist: jentic-openapi-transformer~=1.0.0a18
|
|
12
12
|
Requires-Python: >=3.11
|
|
13
13
|
Project-URL: Homepage, https://github.com/jentic/jentic-openapi-tools
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
@@ -138,7 +138,7 @@ uv run --package jentic-openapi-transformer-redocly pytest packages/jentic-opena
|
|
|
138
138
|
class RedoclyBundlerBackend(BaseBundlerBackend):
|
|
139
139
|
def __init__(
|
|
140
140
|
self,
|
|
141
|
-
redocly_path: str = "npx --yes @redocly/cli
|
|
141
|
+
redocly_path: str = "npx --yes @redocly/cli@2.11.1",
|
|
142
142
|
timeout: float = 600.0,
|
|
143
143
|
allowed_base_dir: str | Path | None = None,
|
|
144
144
|
) -> None
|
|
@@ -123,7 +123,7 @@ uv run --package jentic-openapi-transformer-redocly pytest packages/jentic-opena
|
|
|
123
123
|
class RedoclyBundlerBackend(BaseBundlerBackend):
|
|
124
124
|
def __init__(
|
|
125
125
|
self,
|
|
126
|
-
redocly_path: str = "npx --yes @redocly/cli
|
|
126
|
+
redocly_path: str = "npx --yes @redocly/cli@2.11.1",
|
|
127
127
|
timeout: float = 600.0,
|
|
128
128
|
allowed_base_dir: str | Path | None = None,
|
|
129
129
|
) -> None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "jentic-openapi-transformer-redocly"
|
|
3
|
-
version = "1.0.0-alpha.
|
|
3
|
+
version = "1.0.0-alpha.18"
|
|
4
4
|
description = "Jentic OpenAPI Redocly Transformer Backend"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
|
|
@@ -8,8 +8,8 @@ license = "Apache-2.0"
|
|
|
8
8
|
license-files = ["LICENSE", "NOTICE"]
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"jentic-openapi-common~=1.0.0-alpha.
|
|
12
|
-
"jentic-openapi-transformer~=1.0.0-alpha.
|
|
11
|
+
"jentic-openapi-common~=1.0.0-alpha.18",
|
|
12
|
+
"jentic-openapi-transformer~=1.0.0-alpha.18"
|
|
13
13
|
]
|
|
14
14
|
|
|
15
15
|
[project.urls]
|
|
@@ -17,7 +17,7 @@ __all__ = ["RedoclyBundlerBackend"]
|
|
|
17
17
|
class RedoclyBundlerBackend(BaseBundlerBackend):
|
|
18
18
|
def __init__(
|
|
19
19
|
self,
|
|
20
|
-
redocly_path: str = "npx --yes @redocly/cli
|
|
20
|
+
redocly_path: str = "npx --yes @redocly/cli@2.11.1",
|
|
21
21
|
timeout: float = 600.0,
|
|
22
22
|
allowed_base_dir: str | Path | None = None,
|
|
23
23
|
):
|
|
@@ -25,7 +25,7 @@ class RedoclyBundlerBackend(BaseBundlerBackend):
|
|
|
25
25
|
Initialize the RedoclyBundler.
|
|
26
26
|
|
|
27
27
|
Args:
|
|
28
|
-
redocly_path: Path to the redocly CLI executable (default: "npx --yes @redocly/cli
|
|
28
|
+
redocly_path: Path to the redocly CLI executable (default: "npx --yes @redocly/cli@2.11.1").
|
|
29
29
|
Uses shell-safe parsing to handle quoted arguments properly.
|
|
30
30
|
timeout: Maximum time in seconds to wait for Redocly CLI execution (default: 600.0)
|
|
31
31
|
allowed_base_dir: Optional base directory for path security validation.
|
{jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/LICENSE
RENAMED
|
File without changes
|
{jentic_openapi_transformer_redocly-1.0.0a16 → jentic_openapi_transformer_redocly-1.0.0a18}/NOTICE
RENAMED
|
File without changes
|