-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Start update * Run npm run generate:server:latest * Bump project version to 1.1.1
- Loading branch information
1 parent
8458055
commit b1faefd
Showing
9 changed files
with
19 additions
and
12 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,3 @@ node_modules/ | |
.env | ||
dist.yaml | ||
openapi.yaml | ||
openapitools.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json", | ||
"spaces": 2, | ||
"generator-cli": { | ||
"version": "5.1.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.0.1 | ||
5.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,15 +56,15 @@ default Optional<NativeWebRequest> getRequest() { | |
default ResponseEntity<Tool> getTool() { | ||
Tool tool = new Tool() | ||
.name("date-annotator-example-java") | ||
.version("1.1.0") | ||
.version("1.1.1") | ||
.license(License.APACHE_2_0) | ||
.repository("github:nlpsandbox/date-annotator-example-java") | ||
.description("Example implementation of the NLP Sandbox Date Annotator") | ||
.author("The NLP Sandbox Team") | ||
.authorEmail("[email protected]") | ||
.author("NLP Sandbox Team") | ||
.authorEmail("[email protected]") | ||
.url(URI.create("https://github.com/nlpsandbox/date-annotator-example-java")) | ||
.type("nlpsandbox:date-annotator") | ||
.apiVersion("1.1.0"); | ||
.apiVersion("1.1.1"); | ||
return new ResponseEntity<Tool>(tool, HttpStatus.OK); | ||
} | ||
|
||
|