Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion organization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## SDK Installation

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

Expand Down
32 changes: 31 additions & 1 deletion organization/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,34 @@
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
- Speakeasy CLI 1.14.2 (2.13.0) https://github.com/speakeasy-api/speakeasy
- Speakeasy CLI 1.14.2 (2.13.0) https://github.com/speakeasy-api/speakeasy

## 2023-03-23 00:30:20
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
- Speakeasy CLI 1.15.0 (2.13.1) https://github.com/speakeasy-api/speakeasy

## 2023-03-24 00:28:42
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
- Speakeasy CLI 1.17.0 (2.15.0) https://github.com/speakeasy-api/speakeasy

## 2023-03-25 00:28:03
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
- Speakeasy CLI 1.18.7 (2.16.1) https://github.com/speakeasy-api/speakeasy

## 2023-03-28 00:30:09
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
- Speakeasy CLI 1.18.9 (2.16.4) https://github.com/speakeasy-api/speakeasy

## 2023-03-29 00:34:03
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/organization-v2.yaml
- Speakeasy CLI 1.19.2 (2.16.5) https://github.com/speakeasy-api/speakeasy
7 changes: 4 additions & 3 deletions organization/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ configVersion: 1.0.0
management:
docChecksum: ff6632bc60e3c04c39f8eb7374536204
docVersion: 1.0.0
speakeasyVersion: 1.14.2
generationVersion: 2.13.0
speakeasyVersion: 1.19.2
generationVersion: 2.16.5
generation:
telemetryEnabled: false
sdkClassName: epilot
sdkFlattening: true
singleTagPerOp: false
python:
version: 1.0.0
version: 1.2.2
author: epilot
description: Python Client SDK for Epilot
packageName: epilot-organization
3 changes: 2 additions & 1 deletion organization/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,8 @@ disable=raw-checker-failed,
duplicate-code,
trailing-newlines,
too-many-public-methods,
too-many-locals
too-many-locals,
too-many-lines

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
2 changes: 1 addition & 1 deletion organization/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="epilot-organization",
version="1.0.0",
version="1.2.2",
author="epilot",
description="Python Client SDK for Epilot",
long_description=long_description,
Expand Down
4 changes: 2 additions & 2 deletions organization/src/epilot/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class Epilot:
_security_client: requests_http.Session
_server_url: str = SERVERS[0]
_language: str = "python"
_sdk_version: str = "1.0.0"
_gen_version: str = "2.13.0"
_sdk_version: str = "1.2.2"
_gen_version: str = "2.16.5"

def __init__(self,
security: shared.Security = None,
Expand Down