Skip to content

Commit d102cef

Browse files
committed
fix: Fix server URLs
1 parent 4817ca4 commit d102cef

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ number is used only for corrections to the OpenAPI specification, for example:
1010
typos, schema fixes, or adding examples.
1111

1212

13-
### [3.0.0] - 2025-04-17
13+
### [3.0.1] - 2025-04-24
14+
### Fixed
15+
* Fixed new server URLs to avoid double slash in paths
16+
17+
18+
### [3.0.0] - 2025-04-24
1419
### Added
1520
* Add new endpoints `/v3/glossaries` which enables management of new, editable and multilingual glossaries
1621
* This required renaming some existing components in the spec, hence the major version upgrade. All

openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
},
1717
"servers": [
1818
{
19-
"url": "https://api.deepl.com/",
19+
"url": "https://api.deepl.com",
2020
"description": "DeepL API Pro"
2121
},
2222
{
23-
"url": "https://api-free.deepl.com/",
23+
"url": "https://api-free.deepl.com",
2424
"description": "DeepL API Free"
2525
}
2626
],

openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ externalDocs:
1212
description: DeepL Pro - Plans and pricing
1313
url: https://www.deepl.com/pro#developer
1414
servers:
15-
- url: https://api.deepl.com/
15+
- url: https://api.deepl.com
1616
description: DeepL API Pro
17-
- url: https://api-free.deepl.com/
17+
- url: https://api-free.deepl.com
1818
description: DeepL API Free
1919
tags:
2020
- name: TranslateText

openapi_gitbook.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ externalDocs:
1414
description: DeepL Pro - Plans and pricing
1515
url: https://www.deepl.com/pro#developer
1616
servers:
17-
- url: https://api.deepl.com/
17+
- url: https://api.deepl.com
1818
description: DeepL API Pro
19-
- url: https://api-free.deepl.com/
19+
- url: https://api-free.deepl.com
2020
description: DeepL API Free
2121
tags:
2222
- name: TranslateText

0 commit comments

Comments
 (0)