Skip to content

chore: 🐝 Update SDK - Generate Sync for Payables library SYNC-FOR-PAYABLES-LIBRARY 9.0.1#647

Open
github-actions[bot] wants to merge 1 commit intomainfrom
speakeasy-sdk-regen-1774265778
Open

chore: 🐝 Update SDK - Generate Sync for Payables library SYNC-FOR-PAYABLES-LIBRARY 9.0.1#647
github-actions[bot] wants to merge 1 commit intomainfrom
speakeasy-sdk-regen-1774265778

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

SDK update

Versioning

Version Bump Type: [patch] - 🤖 (automated)

Python SDK Changes:

  • codat_sync_payables.suppliers.update(): Added

View full SDK changelog

OpenAPI Change Summary
├─┬Paths
│ ├──[+] path (1731:3)
│ ├─┬/companies/{companyId}/connections/{connectionId}/payables/suppliers
│ │ ├─┬GET
│ │ │ ├──[🔀] description (1556:20)
│ │ │ └─┬Responses
│ │ │   └─┬200
│ │ │     └─┬application/json
│ │ │       └─┬Suppliers
│ │ │         └──[🔀] value (1605:21)
│ │ └─┬POST
│ │   ├──[🔀] description (1658:20)
│ │   ├─┬Responses
│ │   │ └─┬201
│ │   │   └─┬application/json
│ │   │     └─┬Suppliers
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[🔀] value (1698:21)
│ │   │       ├──[+] value (1698:21)
│ │   │       └──[+] value (1698:21)
│ │   └─┬Requestbody
│ │     └─┬application/json
│ │       └─┬Suppliers
│ │         ├──[🔀] value (1674:19)
│ │         ├──[🔀] value (1674:19)
│ │         ├──[🔀] value (1674:19)
│ │         └──[🔀] value (1674:19)
│ └─┬/companies/{companyId}/connections/{connectionId}/payables/bankAccounts
│   └─┬POST
│     ├─┬Responses
│     │ └─┬201
│     │   └─┬application/json
│     │     └──[+] examples (1875:19)
│     └─┬Requestbody
│       └─┬application/json
│         └─┬Bank account example
│           ├──[🔀] value (1860:19)
│           ├──[🔀] value (1860:19)
│           ├──[🔀] value (1860:19)
│           ├──[-] value (1701:37)
│           ├──[-] value (1701:37)
│           └──[-] value (1701:37)
└─┬Components
  └─┬Address
    └─┬country
      └──[🔀] description (1974:24)
Document Element Total Changes Breaking Changes
paths 25 0
components 1 0

View full report

Linting Report 0 errors, 16 warnings, 6 hints

View full report

PYTHON CHANGELOG

constsAndDefaults: 1.0.7 - 2026-02-21

🐛 Bug Fixes

  • coerce type-mismatched default values instead of clearing them to prevent invalid generated code (commit by @danielkov)

core: 6.0.20 - 2026-03-20

🐛 Bug Fixes

  • rename model_serializer method to avoid name collision with field serializer for fields named model (commit by @subomi)

core: 6.0.19 - 2026-03-17

🐝 New Features

  • add compileCommands config option to allow overriding the compile pipeline, preventing OOM from pylint parallelism (commit by @vishalg0wda)

core: 6.0.18 - 2026-03-11

🐛 Bug Fixes

  • reserve datetime for pythonv2 fields (commit by @danielkov)

core: 6.0.17 - 2026-03-05

🐛 Bug Fixes

  • fix model serializer dropping aliased fields when model_dump() is called without by_alias=True by falling back to field name lookup

core: 6.0.16 - 2026-03-04

🐛 Bug Fixes

  • include global security in SDK Example Usage snippets and per-operation docs (commit by @mfbx9da4)

core: 6.0.15 - 2026-02-27

🐛 Bug Fixes

  • make serverURL optional when operations define their own servers (commit by @danielkov)

core: 6.0.14 - 2026-02-27

🐛 Bug Fixes

  • derive installation URL from repo URL for monorepo subdirectory support (commit by @bradcypert)

core: 6.0.12 - 2026-02-18

🐝 New Features

  • move large-model splitting from templates to Go bucketing layer to prevent compiler complexity limits (commit by @vishalg0wda)

core: 6.0.11 - 2026-02-18

🐛 Bug Fixes

  • TypedDict companion class naming now uses cascading PascalCase suffixes (TypedDictModel, TypedDictCompanion, TypedDictCompanionModel, TypedDict{n}) instead of underscore-prefixed _TypedDict when the default name collides with another schema type — this restores strict PascalCase pylint compliance without weakening lint rules (commit by @danielkov)

core: 6.0.10 - 2026-02-18

🐛 Bug Fixes

  • schemas with inline enum fields named 'tag' no longer get incorrectly renamed to 'TagT' — the generator now only disambiguates when pydantic's Tag import actually conflicts in the same file, falling back to namespace import (pydantic.Tag) instead of mangling the class name (commit by @danielkov)

core: 6.0.9 - 2026-02-18

🐛 Bug Fixes

  • fix getattr return type, sanitize Python builtin names, fix empty response bodies in unions, deduplicate OAuth2 scope enum members (commit by @danielkov)

core: 6.0.8 - 2026-02-17

🐝 New Features

  • allow repoUrl and repoSubDirectory to be configured via gen.yaml generation section (commit by @vishalg0wda)

core: 6.0.7 - 2026-02-16

🐛 Bug Fixes

  • retry all transient network errors (NetworkError, TimeoutException) instead of only ConnectError and TimeoutException (commit by @danielkov)

core: 6.0.6 - 2026-02-14

🐛 Bug Fixes

  • resolve namespace import collisions by using root package import strategy, gated behind fixFlags.conflictResistantModelImportsFeb2026 in gen.yaml (commit by @mfbx9da4)

♻️ Refactors

  • extract duplicated dynamic_import, __getattr__, and __dir__ helpers from __init__.py templates into a shared utils/dynamic_imports.py module, reducing code duplication across generated package init files

core: 6.0.5 - 2026-02-12

🐛 Bug Fixes

  • resolve missing pydantic field aliases when using from future import annotations (commit by @AshGodfrey)

core: 6.0.3 - 2026-02-05

🐛 Bug Fixes

  • add 'request' to reserved parameter keywords as it can shadow request information (commit by @ThomasRooney)

enumUnions: 0.1.1 - 2026-03-06

🐛 Bug Fixes

  • show literal values in enum docs when enumFormat is union (commit by @bflad)

examples: 3.0.3 - 2026-02-27

🐛 Bug Fixes

  • don't show global server URL in examples when operation has its own servers (commit by @tristanspeakeasy)

globalServerURLs: 3.2.1 - 2026-02-27

🐛 Bug Fixes

  • don't show global server URL in examples when operation has its own servers (commit by @tristanspeakeasy)

nameOverrides: 3.0.3 - 2026-02-19

🐝 New Features

  • add support for renaming object properties that reference a shared component (commit by @2ynn)

nameOverrides: 3.0.2 - 2026-02-19

🐛 Bug Fixes

  • set fixes.nameOverrideFeb2026 to true in gen.yaml to prevent x-speakesy-name-override from propagating through resolution or allOf merging (commit by @2ynn)

retries: 3.0.4 - 2026-02-17

🐛 Bug Fixes

  • retry all transient network errors, not just ConnectError and TimeoutException (commit by @danielkov)

Based on Speakeasy CLI 1.759.1

* `codat_sync_payables.suppliers.update()`: **Added**
@github-actions github-actions bot added the patch Patch version bump label Mar 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

patch Patch version bump

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant