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
32 changes: 25 additions & 7 deletions platform/.speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
lockVersion: 2.0.0
id: ede4f28e-23c0-442d-89ba-baa76ae2da6e
management:
docChecksum: 1c413a5d3d57588774d54236c89a147e
docChecksum: 6b9afa35a1ca4d8a1834643e80dd9a19
docVersion: 3.0.0
speakeasyVersion: internal
generationVersion: 2.257.2
releaseVersion: 3.3.0
configChecksum: 784efc81af1d53ff20fe66e5949e3428
generationVersion: 2.277.0
releaseVersion: 3.4.0
configChecksum: 29197c333cff36b846fe087471e16d21
repoURL: https://github.com/codatio/client-sdk-python.git
repoSubDirectory: platform
installationURL: https://github.com/codatio/client-sdk-python.git#subdirectory=platform
published: true
features:
python:
constsAndDefaults: 0.1.2
core: 4.4.6
constsAndDefaults: 0.1.3
core: 4.5.0
deprecations: 2.81.1
examples: 2.81.3
globalSecurity: 2.83.2
globalSecurity: 2.83.4
globalServerURLs: 2.82.1
inputOutputModels: 2.83.1
nameOverrides: 2.81.1
retries: 2.82.1
webhooks: 1.0.0
generatedFiles:
- src/codatplatform/sdkconfiguration.py
- src/codatplatform/settings.py
Expand Down Expand Up @@ -83,8 +84,11 @@ generatedFiles:
- src/codatplatform/models/operations/configure_supplemental_data.py
- src/codatplatform/models/operations/get_supplemental_data_configuration.py
- src/codatplatform/models/operations/create_rule.py
- src/codatplatform/models/operations/create_webhook_consumer.py
- src/codatplatform/models/operations/delete_webhook_consumer.py
- src/codatplatform/models/operations/get_webhook.py
- src/codatplatform/models/operations/list_rules.py
- src/codatplatform/models/operations/list_webhook_consumers.py
- src/codatplatform/models/shared/apikeydetails.py
- src/codatplatform/models/shared/errorvalidation.py
- src/codatplatform/models/shared/errorvalidationitem.py
Expand Down Expand Up @@ -146,7 +150,10 @@ generatedFiles:
- src/codatplatform/models/shared/webhook.py
- src/codatplatform/models/shared/webhooknotifier.py
- src/codatplatform/models/shared/createrule.py
- src/codatplatform/models/shared/webhookconsumer.py
- src/codatplatform/models/shared/webhookconsumerprototype.py
- src/codatplatform/models/shared/webhooks.py
- src/codatplatform/models/shared/webhookconsumers.py
- src/codatplatform/models/shared/security.py
- src/codatplatform/models/shared/clientratelimitreachedwebhook.py
- src/codatplatform/models/shared/clientratelimitreachedwebhookdata.py
Expand Down Expand Up @@ -254,10 +261,14 @@ generatedFiles:
- docs/models/operations/getsupplementaldataconfigurationrequest.md
- docs/models/operations/getsupplementaldataconfigurationresponse.md
- docs/models/operations/createruleresponse.md
- docs/models/operations/createwebhookconsumerresponse.md
- docs/models/operations/deletewebhookconsumerrequest.md
- docs/models/operations/deletewebhookconsumerresponse.md
- docs/models/operations/getwebhookrequest.md
- docs/models/operations/getwebhookresponse.md
- docs/models/operations/listrulesrequest.md
- docs/models/operations/listrulesresponse.md
- docs/models/operations/listwebhookconsumersresponse.md
- docs/models/shared/apikeydetails.md
- docs/models/shared/errorvalidation.md
- docs/models/shared/errorvalidationitem.md
Expand Down Expand Up @@ -324,7 +335,10 @@ generatedFiles:
- docs/models/shared/webhook.md
- docs/models/shared/webhooknotifier.md
- docs/models/shared/createrule.md
- docs/models/shared/webhookconsumer.md
- docs/models/shared/webhookconsumerprototype.md
- docs/models/shared/webhooks.md
- docs/models/shared/webhookconsumers.md
- docs/models/shared/security.md
- docs/models/shared/clientratelimitreachedwebhook.md
- docs/models/shared/clientratelimitreachedwebhookdata.md
Expand Down Expand Up @@ -368,3 +382,7 @@ generatedFiles:
- docs/sdks/webhooks/README.md
- USAGE.md
- .gitattributes
- src/codatplatform/_hooks/registration.py
- src/codatplatform/_hooks/sdkhooks.py
- src/codatplatform/_hooks/types.py
- src/codatplatform/_hooks/__init__.py
23 changes: 13 additions & 10 deletions platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ from codatplatform.models import shared

s = codatplatform.CodatPlatform(
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand Down Expand Up @@ -111,9 +111,12 @@ if res.api_key_details is not None:

### [webhooks](docs/sdks/webhooks/README.md)

* [create](docs/sdks/webhooks/README.md#create) - Create webhook
* [get](docs/sdks/webhooks/README.md#get) - Get webhook
* [list](docs/sdks/webhooks/README.md#list) - List webhooks
* [~~create~~](docs/sdks/webhooks/README.md#create) - Create webhook :warning: **Deprecated**
* [create_consumer](docs/sdks/webhooks/README.md#create_consumer) - Create webhook consumer
* [delete_consumer](docs/sdks/webhooks/README.md#delete_consumer) - Delete webhook consumer
* [~~get~~](docs/sdks/webhooks/README.md#get) - Get webhook :warning: **Deprecated**
* [~~list~~](docs/sdks/webhooks/README.md#list) - List webhooks :warning: **Deprecated**
* [list_consumers](docs/sdks/webhooks/README.md#list_consumers) - List webhook consumers
<!-- End Available Resources and Operations [operations] -->


Expand All @@ -131,7 +134,7 @@ from codatplatform.utils import BackoffStrategy, RetryConfig

s = codatplatform.CodatPlatform(
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand All @@ -156,7 +159,7 @@ from codatplatform.utils import BackoffStrategy, RetryConfig
s = codatplatform.CodatPlatform(
retry_config=RetryConfig('backoff', BackoffStrategy(1, 50, 1.1, 100), False)
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand Down Expand Up @@ -190,7 +193,7 @@ from codatplatform.models import errors, shared

s = codatplatform.CodatPlatform(
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand Down Expand Up @@ -234,7 +237,7 @@ from codatplatform.models import shared
s = codatplatform.CodatPlatform(
server_idx=0,
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand All @@ -260,7 +263,7 @@ from codatplatform.models import shared
s = codatplatform.CodatPlatform(
server_url="https://api.codat.io",
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand Down Expand Up @@ -310,7 +313,7 @@ from codatplatform.models import shared

s = codatplatform.CodatPlatform(
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand Down
12 changes: 11 additions & 1 deletion platform/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,14 @@ Based on:
### Generated
- [python v3.3.0] platform
### Releases
- [PyPI v3.3.0] https://pypi.org/project/codat-platform/3.3.0 - platform
- [PyPI v3.3.0] https://pypi.org/project/codat-platform/3.3.0 - platform

## 2024-03-06 11:07:09
### Changes
Based on:
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Platform.yaml
- Speakeasy CLI 1.201.1 (2.277.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v3.4.0] platform
### Releases
- [PyPI v3.4.0] https://pypi.org/project/codat-platform/3.4.0 - platform
2 changes: 1 addition & 1 deletion platform/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ from codatplatform.models import shared

s = codatplatform.CodatPlatform(
security=shared.Security(
auth_header="<YOUR_API_KEY_HERE>",
auth_header="Basic BASE_64_ENCODED(API_KEY)",
),
)

Expand Down
12 changes: 6 additions & 6 deletions platform/docs/models/operations/addcompanytogroupresponse.md

Large diffs are not rendered by default.

Loading