-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Sideko-Inc/v0.6
v0.6
- Loading branch information
Showing
18 changed files
with
2,761 additions
and
2,602 deletions.
There are no files selected for viewing
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,4 +1,5 @@ | ||
.vscode/ | ||
.venv/ | ||
target/ | ||
.sideko | ||
.sideko | ||
.DS_STORE/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -74,7 +74,7 @@ The API key is read from (in order of priority): | |
| Java | 🚧 | | ||
|
||
```bash | ||
sideko sdk generate (your Swagger/OpenAPI spec) python | ||
sideko sdk try (your Swagger/OpenAPI spec) python | ||
``` | ||
|
||
- The OpenAPI source can be a path to a local `.json` or `.yaml` file, a URL, or the raw spec as a string. | ||
|
@@ -84,8 +84,17 @@ _Run `sideko --help` to list all options._ | |
|
||
## Enterprise features | ||
|
||
The following features are only available if you have an enterprise account with Sidkeo. Reach us at [email protected] to talk about upgrading. | ||
|
||
### SDK Management | ||
Use the sdk subcommand to learn how to generate and maintain SDKs | ||
``` | ||
sideko sdk | ||
``` | ||
|
||
|
||
### API Specification Management | ||
Use the api subcommand to learn how to manage your API specifications and create mock servers | ||
Use the api subcommand to learn how to manage API specifications and create mock servers | ||
``` | ||
sideko api | ||
``` | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "sideko" | ||
version = "0.5.5" | ||
version = "0.6.0" | ||
edition = "2021" | ||
authors = [ | ||
"Elias Posen <[email protected]>", | ||
|
@@ -39,3 +39,5 @@ tokio = { version = "1.35.1", features = ["time"] } | |
url = "2.4.1" | ||
uuid = "1.8.0" | ||
prettytable = "0.10.0" | ||
semver = "1.0.23" | ||
heck = "0.5.0" |
Oops, something went wrong.