Skip to content

Commit fe49f6f

Browse files
authored
Merge pull request #603 from codatio/speakeasy-sdk-regen-1729526461
chore: 🐝 Update SDK - Generate Sync for Payables version 1 library SYNC-FOR-PAYABLES-VERSION-1-LIBRARY 3.2.1
2 parents 9816f56 + dc68046 commit fe49f6f

File tree

552 files changed

+52534
-3985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

552 files changed

+52534
-3985
lines changed

.speakeasy/workflow.lock

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.403.2
1+
speakeasyVersion: 1.420.0
22
sources:
33
accounting-source:
44
sourceNamespace: accounting-source
@@ -63,6 +63,13 @@ sources:
6363
tags:
6464
- latest
6565
- main
66+
sync-for-payables-version-1-source:
67+
sourceNamespace: sync-for-payables-version-1-source
68+
sourceRevisionDigest: sha256:ab9717c986622b855c68e2ef2fb6e08f3a7ae563776e008d8bd9ab73ebe19508
69+
sourceBlobDigest: sha256:b5315c8afa06d894adc545f61272bd3e52b92d379f9b4d5928c6393c3e21dfa1
70+
tags:
71+
- latest
72+
- main
6673
targets:
6774
accounting-library:
6875
source: accounting-source
@@ -109,6 +116,11 @@ targets:
109116
sourceNamespace: sync-for-commerce-source
110117
sourceRevisionDigest: sha256:6a62a3d9d65254b83a8e6afa5ea2e9d287076520c057bf8a1b60e42ebbdc815e
111118
sourceBlobDigest: sha256:2e0d6f59d01a5896709430e1e05d725b88ca088e959502f216a39b23ccab77ec
119+
sync-for-payables-version-1-library:
120+
source: sync-for-payables-version-1-source
121+
sourceNamespace: sync-for-payables-version-1-source
122+
sourceRevisionDigest: sha256:ab9717c986622b855c68e2ef2fb6e08f3a7ae563776e008d8bd9ab73ebe19508
123+
sourceBlobDigest: sha256:b5315c8afa06d894adc545f61272bd3e52b92d379f9b4d5928c6393c3e21dfa1
112124
workflow:
113125
workflowVersion: 1.0.0
114126
speakeasyVersion: latest
@@ -180,6 +192,8 @@ workflow:
180192
sync-for-payables-version-1-source:
181193
inputs:
182194
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payables-v1.yaml
195+
registry:
196+
location: registry.speakeasyapi.dev/codat/codat/sync-for-payables-version-1-source
183197
sync-for-payroll-source:
184198
inputs:
185199
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payroll.yaml

.speakeasy/workflow.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ sources:
6868
sync-for-payables-version-1-source:
6969
inputs:
7070
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payables-v1.yaml
71+
registry:
72+
location: registry.speakeasyapi.dev/codat/codat/sync-for-payables-version-1-source
7173
sync-for-payroll-source:
7274
inputs:
7375
- location: https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Payroll.yaml

previous-versions/sync-for-payables-version-1/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.venv/
2+
pyrightconfig.json
3+
README-PYPI.md
14
venv/
25
src/*.egg-info/
36
__pycache__/

previous-versions/sync-for-payables-version-1/.speakeasy/gen.lock

Lines changed: 4794 additions & 123 deletions
Large diffs are not rendered by default.

previous-versions/sync-for-payables-version-1/.speakeasy/gen.yaml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,25 @@ generation:
77
nameResolutionDec2023: false
88
parameterOrderingFeb2024: false
99
requestResponseComponentNamesFeb2024: false
10-
telemetryEnabled: true
1110
auth:
1211
oAuth2ClientCredentialsEnabled: false
12+
telemetryEnabled: true
1313
python:
14-
version: 3.2.0
14+
version: 3.2.1
15+
additionalDependencies:
16+
dev: {}
17+
main: {}
1518
author: Codat
19+
authors:
20+
- Speakeasy
1621
clientServerStatusCodesAsErrors: true
1722
description: Push expenses to accounting software.
23+
enumFormat: enum
24+
fixFlags:
25+
responseRequiredSep2024: false
1826
flattenGlobalSecurity: false
27+
flattenRequests: false
28+
flatteningOrder: parameters-first
1929
imports:
2030
option: openapi
2131
paths:
@@ -26,15 +36,8 @@ python:
2636
webhooks: models/webhooks
2737
inputModelSuffix: input
2838
maxMethodParams: 0
39+
methodArguments: infer-optional-args
2940
outputModelSuffix: output
3041
packageName: codat-sync-for-payables-version-1
31-
additionalDependencies:
32-
dev: {}
33-
main: {}
34-
authors:
35-
- Speakeasy
36-
enumFormat: enum
37-
flattenRequests: false
38-
methodArguments: infer-optional-args
3942
responseFormat: flat
4043
templateVersion: v2
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"python.testing.pytestArgs": ["tests", "-vv"],
3+
"python.testing.unittestEnabled": false,
4+
"python.testing.pytestEnabled": true,
5+
"pylint.args": ["--rcfile=pylintrc"]
6+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Contributing to This Repository
2+
3+
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.
4+
5+
## How to Report Issues
6+
7+
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:
8+
9+
- A clear and descriptive title
10+
- Steps to reproduce the issue
11+
- Expected and actual behavior
12+
- Any relevant logs, screenshots, or error messages
13+
- Information about your environment (e.g., operating system, software versions)
14+
- For example can be collected using the `npx envinfo` command from your terminal if you have Node.js installed
15+
16+
## Issue Triage and Upstream Fixes
17+
18+
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.
19+
20+
## Contact
21+
22+
If you have any questions or need further assistance, please feel free to reach out by opening an issue.
23+
24+
Thank you for your understanding and cooperation!
25+
26+
The Maintainers

0 commit comments

Comments
 (0)