openapi3-parser 1.1.15__tar.gz → 1.1.16__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.
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/PKG-INFO +1 -1
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/PKG-INFO +1 -1
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/__init__.py +1 -1
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/enumeration.py +7 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/tests/test_enumeration.py +7 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/license.txt +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/setup.cfg +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/setup.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/SOURCES.txt +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/dependency_links.txt +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/requires.txt +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/top_level.txt +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/__init__.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/common.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/content.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/external_doc.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/header.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/info.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/oauth_flow.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/operation.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/parameter.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/path.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/request.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/response.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/schema.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/schemas.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/security.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/server.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/tag.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/errors.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/loose_types.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/parser.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/py.typed +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/resolver.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/specification.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/tests/test_parser.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/tests/test_parser_options.py +0 -0
- {openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/tests/test_runner.py +0 -0
|
@@ -107,6 +107,13 @@ class ContentType(Enum):
|
|
|
107
107
|
HTML = 'text/html'
|
|
108
108
|
PDF = 'application/pdf'
|
|
109
109
|
PNG = 'image/png'
|
|
110
|
+
JPEG = 'image/jpeg'
|
|
111
|
+
GIF = 'image/gif'
|
|
112
|
+
SVG = 'image/svg+xml'
|
|
113
|
+
AVIF = 'image/avif'
|
|
114
|
+
BMP = 'image/bmp'
|
|
115
|
+
WEBP = 'image/webp'
|
|
116
|
+
Image = 'image/*'
|
|
110
117
|
BINARY = 'application/octet-stream'
|
|
111
118
|
|
|
112
119
|
|
|
@@ -149,6 +149,13 @@ media_type_provider = (
|
|
|
149
149
|
("text/html", ContentType.HTML),
|
|
150
150
|
("application/pdf", ContentType.PDF),
|
|
151
151
|
("image/png", ContentType.PNG),
|
|
152
|
+
("image/jpeg", ContentType.JPEG),
|
|
153
|
+
("image/gif", ContentType.GIF),
|
|
154
|
+
("image/svg+xml", ContentType.SVG),
|
|
155
|
+
("image/avif", ContentType.AVIF),
|
|
156
|
+
("image/bmp", ContentType.BMP),
|
|
157
|
+
("image/webp", ContentType.WEBP),
|
|
158
|
+
("image/*", ContentType.Image),
|
|
152
159
|
("application/octet-stream", ContentType.BINARY),
|
|
153
160
|
)
|
|
154
161
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi3_parser.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openapi3-parser-1.1.15 → openapi3-parser-1.1.16}/src/openapi_parser/builders/external_doc.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|