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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 16 additions & 1 deletion .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
speakeasyVersion: 1.440.1
speakeasyVersion: 1.446.1
sources:
accounting-source:
sourceNamespace: accounting-source
Expand Down Expand Up @@ -56,6 +56,14 @@ sources:
tags:
- latest
- speakeasy-sdk-regen-1731929356
platform-source:
sourceNamespace: platform-source
sourceRevisionDigest: sha256:43fa77abcae884c23afeea140d8e7fcbc14211c707ef801439ad9508b35b21d4
sourceBlobDigest: sha256:d80a27e44fffb9c61f16a99e7d25c294f39be1a5a761d51a87c76477f8589f54
tags:
- latest
- speakeasy-sdk-regen-1732624899
- 3.0.0
sync-for-commerce-source:
sourceNamespace: sync-for-commerce-source
sourceRevisionDigest: sha256:6a62a3d9d65254b83a8e6afa5ea2e9d287076520c057bf8a1b60e42ebbdc815e
Expand Down Expand Up @@ -120,6 +128,13 @@ targets:
sourceBlobDigest: sha256:0bb930c7190c9e61384e5af6224f76ea004ad9bc0788b264aaa35b9ebad5699f
codeSamplesNamespace: lending-source-code-samples
codeSamplesRevisionDigest: sha256:2a3bee0a978a51571d6cbec79cdcf1073f22d5d7afe86b41d7bfff4cf53e6be8
platform-library:
source: platform-source
sourceNamespace: platform-source
sourceRevisionDigest: sha256:43fa77abcae884c23afeea140d8e7fcbc14211c707ef801439ad9508b35b21d4
sourceBlobDigest: sha256:d80a27e44fffb9c61f16a99e7d25c294f39be1a5a761d51a87c76477f8589f54
codeSamplesNamespace: platform-source-code-samples
codeSamplesRevisionDigest: sha256:598d4e7d1cb1d3316e6d179038d87797bb54958b2e25315ce6235a50f4afb859
sync-for-commerce-library:
source: sync-for-commerce-source
sourceNamespace: sync-for-commerce-source
Expand Down
3 changes: 3 additions & 0 deletions platform/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.venv/
pyrightconfig.json
README-PYPI.md
venv/
src/*.egg-info/
__pycache__/
Expand Down
1,590 changes: 1,233 additions & 357 deletions platform/.speakeasy/gen.lock

Large diffs are not rendered by default.

20 changes: 12 additions & 8 deletions platform/.speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,25 @@ generation:
requestResponseComponentNamesFeb2024: false
auth:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
telemetryEnabled: true
python:
version: 3.5.0
version: 4.0.0
additionalDependencies:
dev: {}
main: {}
author: Codat
authors:
- Speakeasy
clientServerStatusCodesAsErrors: true
description: Manage the building blocks of Codat, including companies, connections,
and more.
defaultErrorName: SDKError
description: Manage the building blocks of Codat, including companies, connections, and more.
enumFormat: enum
fixFlags:
responseRequiredSep2024: false
flattenGlobalSecurity: false
flattenRequests: false
flatteningOrder: parameters-first
imports:
option: openapi
paths:
Expand All @@ -30,13 +38,9 @@ python:
webhooks: models/webhooks
inputModelSuffix: input
maxMethodParams: 0
methodArguments: infer-optional-args
outputModelSuffix: output
packageName: codat-platform
projectUrls: {}
responseFormat: flat
authors:
- Speakeasy
enumFormat: enum
flattenRequests: false
methodArguments: infer-optional-args
templateVersion: v2
6 changes: 6 additions & 0 deletions platform/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"python.testing.pytestArgs": ["tests", "-vv"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"pylint.args": ["--rcfile=pylintrc"]
}
26 changes: 26 additions & 0 deletions platform/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Contributing to This Repository

Thank you for your interest in contributing to this repository. Please note that this repository contains generated code. As such, we do not accept direct changes or pull requests. Instead, we encourage you to follow the guidelines below to report issues and suggest improvements.

## How to Report Issues

If you encounter any bugs or have suggestions for improvements, please open an issue on GitHub. When reporting an issue, please provide as much detail as possible to help us reproduce the problem. This includes:

- A clear and descriptive title
- Steps to reproduce the issue
- Expected and actual behavior
- Any relevant logs, screenshots, or error messages
- Information about your environment (e.g., operating system, software versions)
- For example can be collected using the `npx envinfo` command from your terminal if you have Node.js installed

## Issue Triage and Upstream Fixes

We will review and triage issues as quickly as possible. Our goal is to address bugs and incorporate improvements in the upstream source code. Fixes will be included in the next generation of the generated code.

## Contact

If you have any questions or need further assistance, please feel free to reach out by opening an issue.

Thank you for your understanding and cooperation!

The Maintainers
Loading