Skip to content

Commit 04034d6

Browse files
chore: speakeasy sdk regeneration - Generate Organization SDK (#28)
* ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.15.0 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.17.0 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.18.7 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.18.9 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.19.2 --------- Co-authored-by: speakeasybot <[email protected]>
1 parent 9de8190 commit 04034d6

File tree

6 files changed

+41
-9
lines changed

6 files changed

+41
-9
lines changed

organization/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## SDK Installation
55

66
```bash
7-
pip install epilot-organization
7+
pip install git+https://github.com/epilot-dev/sdk-python.git#subdirectory=organization
88
```
99
<!-- End SDK Installation -->
1010

organization/RELEASES.md

+31-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,34 @@
44
### Changes
55
Based on:
66
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
7-
- Speakeasy CLI 1.14.2 (2.13.0) https://github.com/speakeasy-api/speakeasy
7+
- Speakeasy CLI 1.14.2 (2.13.0) https://github.com/speakeasy-api/speakeasy
8+
9+
## 2023-03-23 00:30:20
10+
### Changes
11+
Based on:
12+
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
13+
- Speakeasy CLI 1.15.0 (2.13.1) https://github.com/speakeasy-api/speakeasy
14+
15+
## 2023-03-24 00:28:42
16+
### Changes
17+
Based on:
18+
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
19+
- Speakeasy CLI 1.17.0 (2.15.0) https://github.com/speakeasy-api/speakeasy
20+
21+
## 2023-03-25 00:28:03
22+
### Changes
23+
Based on:
24+
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
25+
- Speakeasy CLI 1.18.7 (2.16.1) https://github.com/speakeasy-api/speakeasy
26+
27+
## 2023-03-28 00:30:09
28+
### Changes
29+
Based on:
30+
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
31+
- Speakeasy CLI 1.18.9 (2.16.4) https://github.com/speakeasy-api/speakeasy
32+
33+
## 2023-03-29 00:34:03
34+
### Changes
35+
Based on:
36+
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
37+
- Speakeasy CLI 1.19.2 (2.16.5) https://github.com/speakeasy-api/speakeasy

organization/gen.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ configVersion: 1.0.0
22
management:
33
docChecksum: ff6632bc60e3c04c39f8eb7374536204
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.14.2
6-
generationVersion: 2.13.0
5+
speakeasyVersion: 1.19.2
6+
generationVersion: 2.16.5
77
generation:
88
telemetryEnabled: false
99
sdkClassName: epilot
1010
sdkFlattening: true
11+
singleTagPerOp: false
1112
python:
12-
version: 1.0.0
13+
version: 1.2.2
1314
author: epilot
1415
description: Python Client SDK for Epilot
1516
packageName: epilot-organization

organization/pylintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,8 @@ disable=raw-checker-failed,
438438
duplicate-code,
439439
trailing-newlines,
440440
too-many-public-methods,
441-
too-many-locals
441+
too-many-locals,
442+
too-many-lines
442443

443444
# Enable the message, report, category or checker with the given id(s). You can
444445
# either give multiple identifier separated by comma (,) or put this option

organization/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="epilot-organization",
13-
version="1.0.0",
13+
version="1.2.2",
1414
author="epilot",
1515
description="Python Client SDK for Epilot",
1616
long_description=long_description,

organization/src/epilot/sdk.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class Epilot:
2222
_security_client: requests_http.Session
2323
_server_url: str = SERVERS[0]
2424
_language: str = "python"
25-
_sdk_version: str = "1.0.0"
26-
_gen_version: str = "2.13.0"
25+
_sdk_version: str = "1.2.2"
26+
_gen_version: str = "2.16.5"
2727

2828
def __init__(self,
2929
security: shared.Security = None,

0 commit comments

Comments
 (0)