Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.331.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Jul 11, 2024
1 parent c4dafe1 commit db67f39
Show file tree
Hide file tree
Showing 36 changed files with 2,714 additions and 63 deletions.
49 changes: 25 additions & 24 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
lockVersion: 2.0.0
id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
management:
docChecksum: e4cb9ecada8b35163db080ecaaf60fe3
docChecksum: f5cf06d8d5f2ec68226ab161d7a73cba
docVersion: 0.4.0 .
speakeasyVersion: 1.330.0
generationVersion: 2.361.10
releaseVersion: 5.10.1
configChecksum: 1023da4f627eda0126581ce862792ecd
speakeasyVersion: 1.331.0
generationVersion: 2.365.0
releaseVersion: 6.0.0
configChecksum: f414126a58ac4fbab5782f1046b2f87c
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
published: true
features:
python:
acceptHeaders: 0.1.0
additionalDependencies: 0.1.0
core: 0.2.11
deprecations: 0.1.1
downloadStreams: 0.1.0
examples: 0.1.0
globalSecurity: 0.1.0
globalSecurityCallbacks: 0.1.0
globalServerURLs: 0.1.0
globals: 0.1.0
inputOutputModels: 0.1.0
multipartFileContentType: 0.1.0
nullables: 0.1.0
responseFormat: 0.1.0
retries: 0.1.0
sdkHooks: 0.1.0
serverIDs: 0.1.0
uploadStreams: 0.1.0
acceptHeaders: 3.0.0
additionalDependencies: 1.0.0
core: 5.0.0
defaultEnabledRetries: 0.2.0
deprecations: 3.0.0
downloadStreams: 1.0.0
examples: 3.0.0
globalSecurity: 3.0.0
globalSecurityCallbacks: 1.0.0
globalServerURLs: 3.0.0
globals: 3.0.0
inputOutputModels: 3.0.0
multipartFileContentType: 1.0.0
nullables: 1.0.0
responseFormat: 1.0.0
retries: 3.0.0
sdkHooks: 1.0.0
serverIDs: 3.0.0
uploadStreams: 1.0.0
generatedFiles:
- src/speakeasy_client_sdk_python/sdkconfiguration.py
- src/speakeasy_client_sdk_python/apis.py
Expand Down Expand Up @@ -404,12 +405,12 @@ generatedFiles:
- docs/models/shared/security.md
- docs/models/internal/globals.md
- docs/sdks/speakeasy/README.md
- docs/models/utils/retryconfig.md
- docs/sdks/apis/README.md
- docs/sdks/apiendpoints/README.md
- docs/sdks/metadata/README.md
- docs/sdks/schemas/README.md
- docs/sdks/artifacts/README.md
- docs/models/utils/retryconfig.md
- docs/sdks/auth/README.md
- docs/sdks/requests/README.md
- docs/sdks/github/README.md
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
python:
version: 5.10.1
version: 6.0.0
additionalDependencies:
dev: {}
main: {}
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
speakeasyVersion: 1.330.0
speakeasyVersion: 1.331.0
sources:
speakeasy-openapi:
sourceNamespace: speakeasy-openapi
sourceRevisionDigest: sha256:760700f4d1106de219dfa5156e81ea49934f36fe4de39d19dd269fd6e12ab4ce
sourceBlobDigest: sha256:44d88da2c0eae09379433eeaa92e72b7f04ecb329d175ac6463637250e6b82ab
sourceRevisionDigest: sha256:8787159661038cf5a3046fb75861745de4add6bbd3fbaf226608a20e66515391
sourceBlobDigest: sha256:ead0e21583007eb3befd64a8c9f9015fc5effc5500c22030c553e7a992a742b7
tags:
- latest
- main
targets:
speakeasy-client-sdk-python:
source: speakeasy-openapi
sourceNamespace: speakeasy-openapi
sourceRevisionDigest: sha256:760700f4d1106de219dfa5156e81ea49934f36fe4de39d19dd269fd6e12ab4ce
sourceBlobDigest: sha256:44d88da2c0eae09379433eeaa92e72b7f04ecb329d175ac6463637250e6b82ab
sourceRevisionDigest: sha256:8787159661038cf5a3046fb75861745de4add6bbd3fbaf226608a20e66515391
sourceBlobDigest: sha256:ead0e21583007eb3befd64a8c9f9015fc5effc5500c22030c553e7a992a742b7
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand Down
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,10 +472,13 @@ s = Speakeasy(
)


res = s.auth.get_workspace_access(request={},
res = s.apis.delete_api(request={
"api_id": "<value>",
"version_id": "<value>",
},
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))

if res.access_details is not None:
if res is not None:
# handle response
pass

Expand All @@ -496,9 +499,12 @@ s = Speakeasy(
)


res = s.auth.get_workspace_access(request={})
res = s.apis.delete_api(request={
"api_id": "<value>",
"version_id": "<value>",
})

if res.access_details is not None:
if res is not None:
# handle response
pass

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1726,4 +1726,14 @@ Based on:
### Generated
- [python v5.10.1] .
### Releases
- [PyPI v5.10.1] https://pypi.org/project/speakeasy-client-sdk-python/5.10.1 - .
- [PyPI v5.10.1] https://pypi.org/project/speakeasy-client-sdk-python/5.10.1 - .

## 2024-07-11 00:12:28
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.331.0 (2.365.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v6.0.0] .
### Releases
- [PyPI v6.0.0] https://pypi.org/project/speakeasy-client-sdk-python/6.0.0 - .
13 changes: 7 additions & 6 deletions docs/models/shared/githubconfiguremintlifyreporequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ A request to configure a GitHub repository for mintlify

## Fields

| Field | Type | Required | Description |
| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
| `input` | *str* | :heavy_check_mark: | The input OpenAPI document |
| `org` | *str* | :heavy_check_mark: | The GitHub organization name |
| `overlays` | List[*str*] | :heavy_check_mark: | The overlays to apply |
| `repo` | *str* | :heavy_check_mark: | The GitHub repository name |
| Field | Type | Required | Description |
| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
| `input` | *str* | :heavy_check_mark: | The input OpenAPI document |
| `org` | *str* | :heavy_check_mark: | The GitHub organization name |
| `overlays` | List[*str*] | :heavy_check_mark: | The overlays to apply |
| `repo` | *str* | :heavy_check_mark: | The GitHub repository name |
| `subdirectory` | *Optional[str]* | :heavy_minus_sign: | The subdirectory (location of mint.json) |
Loading

0 comments on commit db67f39

Please sign in to comment.