Releases: apideck-libraries/sdk-go
go - v0.27.5 - 2026-03-31 13:05:37
Generated by Speakeasy CLI
2026-03-31 13:05:37
Changes
Based on:
- OpenAPI Doc 10.24.12
- Speakeasy CLI 1.761.0 (2.879.1) https://github.com/speakeasy-api/speakeasy
Generated
- [go v0.27.5] .
Releases
- [Go v0.27.5] https://github.com/apideck-libraries/sdk-go/releases/tag/v0.27.5 - .
go - v0.27.4 - 2026-03-27 13:06:09
Generated by Speakeasy CLI
github.com/apideck-libraries/sdk-go 0.27.4
Go SDK Changes:
Apideck.Vault.Consumers.Create():response.Data.Connections[]ChangedApideck.Vault.Consumers.Get():response.Data.Connections[]ChangedApideck.Vault.Consumers.Update():response.Data.Connections[]ChangedApideck.Webhook.Webhooks.List():response.Data[].Events[]ChangedApideck.Webhook.Webhooks.Create():request.CreateWebhookRequest.Events[]Changedresponse.Data.Events[]Changed
Apideck.Webhook.Webhooks.Get():response.Data.Events[]ChangedApideck.Webhook.Webhooks.Update():request.UpdateWebhookRequest.Events[]Changedresponse.Data.Events[]Changed
Apideck.Webhook.Webhooks.Delete():response.Data.Events[]Changed
Generated with Speakeasy CLI 1.759.3
go - v0.27.3 - 2026-03-26 13:05:11
Generated by Speakeasy CLI
2026-03-26 13:05:11
Changes
Based on:
- OpenAPI Doc 10.24.9
- Speakeasy CLI 1.759.3 (2.869.25) https://github.com/speakeasy-api/speakeasy
Generated
- [go v0.27.3] .
Releases
- [Go v0.27.3] https://github.com/apideck-libraries/sdk-go/releases/tag/v0.27.3 - .
go - v0.27.2 - 2026-03-26 01:06:30
go SDK v0.27.3 Changelog
Release Date: March 2026
What's New
This is a maintenance release that regenerates the Go SDK against the latest Apideck OpenAPI specification (v10.24.9). No API surface changes are introduced — existing code will continue to work without modification. Updating is recommended to stay aligned with the latest API contract.
Summary of Changes
| Category | Description | Action Required |
|---|---|---|
| Spec update | Regenerated against OpenAPI spec v10.24.9 (previously v10.24.8) | None |
| Version bump | SDK version updated to v0.27.3 | Update dependency |
Detailed Changes by API
All APIs
OpenAPI Specification Update
What changed: The SDK has been regenerated from Apideck OpenAPI spec version 10.24.9. The previous release (v0.27.2) was generated from v10.24.8.
Impact: None — fully backward compatible. No request/response shapes, field names, or method signatures have changed.
Migration Checklist
- Update your
go.moddependency tov0.27.3 - Run
go mod tidyto sync the module graph - Run your test suite to confirm no regressions
go - v0.27.1 - 2026-03-23 09:33:15
Go SDK v0.27.1 Changelog
Release Date: March 2026
What's New
This release adds new fields for employee bank accounts and tax types on journal entry line items, giving you more granular control over accounting journal entries. It also includes a breaking change to the JournalEntryLineItem.Type field, which is now a pointer type to better represent optional values. If you set or compare the Type field on journal entry line items, you will need to update your code. Internal improvements to pagination and retry logic make the SDK more resilient to transient network errors.
Summary of Changes
| Category | Description | Action Required |
|---|---|---|
| Breaking | JournalEntryLineItem.Type changed from value to pointer (*JournalEntryLineItemType) |
Yes -- update struct initialization and comparisons |
| Breaking | JournalEntryLineItemInput.Type changed from value to pointer (*JournalEntryLineItemType) |
Yes -- update struct initialization and comparisons |
| New Feature | BankAccount field added to AccountingEmployee and AccountingEmployeeInput |
No -- optional field |
| New Feature | TaxType field added to JournalEntryLineItem and JournalEntryLineItemInput |
No -- optional field |
| New Feature | Employee field added to JournalEntryLineItem and JournalEntryLineItemInput |
No -- optional field |
| New Model | LinkedEmployee model added |
No |
| New Enum | TaxType enum added (Sales, Purchase) |
No |
| New Enum Value | Employee added to LinkedFinancialAccountAccountType |
No |
| Deprecation | JournalEntry.TaxType deprecated in favor of line-item level TaxType |
Migrate when convenient |
| Internal | Pagination refactored, retry logic improved with proper syscall error detection |
No |
Detailed Changes by API
Accounting API
JournalEntryLineItem.Type changed to pointer type
What changed: The Type field on JournalEntryLineItem and JournalEntryLineItemInput changed from a value type (JournalEntryLineItemType) to a pointer type (*JournalEntryLineItemType). The corresponding GetType() method now returns *JournalEntryLineItemType instead of JournalEntryLineItemType.
Impact: Any code that initializes or compares the Type field must be updated. This is a compile-time error, so your build will catch it immediately.
Before (v0.27.0):
import "github.com/apideck-libraries/sdk-go/models/components"
// Struct initialization
lineItem := components.JournalEntryLineItem{
Type: components.JournalEntryLineItemTypeDebit,
TotalAmount: sdkgo.Float64(1000.00),
}
// Comparison
if item.GetType() == components.JournalEntryLineItemTypeDebit {
// handle debit
}After (v0.27.1):
import "github.com/apideck-libraries/sdk-go/models/components"
// Option A: Use the .ToPointer() helper
lineItem := components.JournalEntryLineItem{
Type: components.JournalEntryLineItemTypeDebit.ToPointer(),
TotalAmount: sdkgo.Float64(1000.00),
}
// Option B: Use the address-of operator
debitType := components.JournalEntryLineItemTypeDebit
lineItem := components.JournalEntryLineItem{
Type: &debitType,
TotalAmount: sdkgo.Float64(1000.00),
}
// Comparison -- dereference the pointer (nil-check first if the field may be unset)
if item.GetType() != nil && *item.GetType() == components.JournalEntryLineItemTypeDebit {
// handle debit
}The same change applies to JournalEntryLineItemInput:
// Before
input := components.JournalEntryLineItemInput{
Type: components.JournalEntryLineItemTypeCredit,
}
// After
input := components.JournalEntryLineItemInput{
Type: components.JournalEntryLineItemTypeCredit.ToPointer(),
}New BankAccount field on AccountingEmployee
What changed: A new optional BankAccount field is available on AccountingEmployee and AccountingEmployeeInput, allowing you to read and write employee bank account details.
Impact: Non-breaking. The field is optional and defaults to nil.
employee := components.AccountingEmployeeInput{
FirstName: sdkgo.String("Jane"),
LastName: sdkgo.String("Doe"),
BankAccount: &components.BankAccount{
AccountNumber: sdkgo.String("1234567890"),
RoutingNumber: sdkgo.String("021000021"),
},
}New TaxType and Employee fields on JournalEntryLineItem
What changed: Two new optional fields are available on JournalEntryLineItem and JournalEntryLineItemInput:
TaxType-- a newTaxTypeenum with valuesSalesandPurchase, indicating the tax classification of the line item.Employee-- aLinkedEmployeereference, allowing you to associate an employee with a specific line item.
Impact: Non-breaking. Both fields are optional and default to nil. The top-level JournalEntry.TaxType field is now deprecated -- you should set TaxType at the line-item level instead.
lineItem := components.JournalEntryLineItem{
Type: components.JournalEntryLineItemTypeDebit.ToPointer(),
TotalAmount: sdkgo.Float64(500.00),
TaxType: components.TaxTypeSales.ToPointer(),
Employee: &components.LinkedEmployee{
ID: sdkgo.String("emp_12345"),
},
}New Employee value in LinkedFinancialAccountAccountType
What changed: The LinkedFinancialAccountAccountType enum now includes an Employee value.
Impact: Non-breaking. If you use exhaustive switch statements over this enum, add a case for the new value.
switch accountType {
case components.LinkedFinancialAccountAccountTypeBank:
// ...
case components.LinkedFinancialAccountAccountTypeEmployee:
// new -- handle employee accounts
default:
// ...
}JournalEntry.TaxType deprecated
What changed: The top-level TaxType field on JournalEntry is deprecated. Tax type should now be specified per line item using the new JournalEntryLineItem.TaxType field.
Impact: Existing code will continue to compile and work, but you should migrate to the line-item level field to ensure forward compatibility.
Internal Improvements
Pagination and retry logic
What changed: Pagination handling has been refactored for consistency across all list endpoints. The retry logic now correctly detects transient syscall errors (e.g., ECONNRESET, EPIPE) and retries them automatically.
Impact: No code changes required. You may notice improved reliability when making requests over unstable network connections.
Migration Checklist
- Search your codebase for
JournalEntryLineItemTypeusage -- update struct initialization to use.ToPointer()or& - Search for
GetType()calls onJournalEntryLineItem-- add nil checks and dereference the pointer - Search for
JournalEntryLineItemInputstruct literals -- updateTypefield the same way - Review any exhaustive switch statements on
LinkedFinancialAccountAccountType-- add a case forEmployee - If using
JournalEntry.TaxType, plan migration toJournalEntryLineItem.TaxType - Run
go build ./...to catch any remaining compile-time errors from the pointer change - Run your test suite to verify behavior is correct after migration
go - v0.27.0 - 2026-03-11 15:14:47
Generated by Speakeasy CLI
github.com/apideck-libraries/sdk-go 0.27.0
Go SDK Changes:
Apideck.Accounting.Expenses.List():request.RequestChanged (Breaking⚠️ )response.Data[].Status.Enum(voided)Added
Apideck.Accounting.Refunds.List(): AddedApideck.Accounting.Refunds.Create(): AddedApideck.Accounting.Refunds.Get(): AddedApideck.Accounting.Refunds.Update(): AddedApideck.Accounting.Refunds.Delete(): AddedApideck.Accounting.Companies.List(): AddedApideck.Ats.Jobs.Create(): AddedApideck.Ats.Jobs.Update(): AddedApideck.Ats.Jobs.Delete(): AddedApideck.Accounting.TaxRates.List():request.Request.CompanyIdAdded
Apideck.Accounting.TaxRates.Create():request.Request.CompanyIdAdded
Apideck.Accounting.TaxRates.Get():request.Request.CompanyIdAdded
Apideck.Accounting.TaxRates.Update():request.Request.CompanyIdAdded
Apideck.Accounting.TaxRates.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.Bills.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.Bills.Create():request.Request.Bill.TermsIdAdded
Apideck.Accounting.Bills.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.Bills.Update():request.Request.Bill.TermsIdAdded
Apideck.Accounting.Invoices.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.Invoices.Create():request.RequestChangedApideck.Accounting.Invoices.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.Invoices.Update():request.Request.Invoice.TermsIdAdded
Apideck.Accounting.LedgerAccounts.List():request.Request.CompanyIdAdded
Apideck.Accounting.LedgerAccounts.Create():request.Request.CompanyIdAdded
Apideck.Accounting.LedgerAccounts.Get():request.Request.CompanyIdAdded
Apideck.Accounting.LedgerAccounts.Update():request.Request.CompanyIdAdded
Apideck.Accounting.LedgerAccounts.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.InvoiceItems.List():request.Request.CompanyIdAdded
Apideck.Accounting.InvoiceItems.Create():request.Request.CompanyIdAdded
Apideck.Accounting.InvoiceItems.Get():request.Request.CompanyIdAdded
Apideck.Accounting.CreditNotes.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.CreditNotes.Create():request.RequestChangedApideck.Accounting.CreditNotes.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.CreditNotes.Update():request.Request.CreditNote.TermsIdAdded
Apideck.Accounting.Customers.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.Customers.Create():request.RequestChangedApideck.Accounting.Customers.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.Customers.Update():request.Request.Customer.TermsIdAdded
Apideck.Accounting.Suppliers.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.Suppliers.Create():request.RequestChangedApideck.Accounting.Suppliers.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.Suppliers.Update():request.RequestChangedApideck.Accounting.Suppliers.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.Payments.List():request.Request.CompanyIdAdded
Apideck.Accounting.Payments.Create():request.Request.CompanyIdAdded
Apideck.Accounting.Payments.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Payments.Update():request.Request.CompanyIdAdded
Apideck.Accounting.Payments.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.CompanyInfo.Get():request.Request.CompanyIdAdded
Apideck.Accounting.BalanceSheet.Get():request.Request.CompanyIdAdded
Apideck.Accounting.ProfitAndLoss.Get():request.Request.CompanyIdAdded
Apideck.Accounting.JournalEntries.List():request.Request.CompanyIdAdded
Apideck.Accounting.JournalEntries.Create():request.Request.CompanyIdAdded
Apideck.Accounting.JournalEntries.Get():request.Request.CompanyIdAdded
Apideck.Accounting.JournalEntries.Update():request.Request.CompanyIdAdded
Apideck.Accounting.JournalEntries.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.PurchaseOrders.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.PurchaseOrders.Create():request.RequestChangedApideck.Accounting.PurchaseOrders.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.PurchaseOrders.Update():request.RequestChangedApideck.Accounting.PurchaseOrders.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.Subsidiaries.List():request.Request.CompanyIdAdded
Apideck.Accounting.Subsidiaries.Create():request.Request.CompanyIdAdded
Apideck.Accounting.Subsidiaries.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Subsidiaries.Update():request.Request.CompanyIdAdded
Apideck.Accounting.Subsidiaries.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.Locations.List():request.Request.CompanyIdAdded
Apideck.Accounting.Locations.Create():request.Request.CompanyIdAdded
Apideck.Accounting.Locations.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Locations.Update():request.Request.CompanyIdAdded
Apideck.Accounting.Locations.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.Departments.List():request.Request.CompanyIdAdded
Apideck.Accounting.Departments.Create():request.Request.CompanyIdAdded
Apideck.Accounting.Departments.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Attachments.List():request.Request.CompanyIdAdded
Apideck.Accounting.Attachments.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Attachments.Download():request.Request.CompanyIdAdded
Apideck.Accounting.BankAccounts.List():request.Request.CompanyIdAdded
Apideck.Accounting.BankAccounts.Get():request.Request.CompanyIdAdded
Apideck.Accounting.TrackingCategories.List():request.Request.CompanyIdAdded
Apideck.Accounting.TrackingCategories.Create():request.Request.CompanyIdAdded
Apideck.Accounting.TrackingCategories.Get():request.Request.CompanyIdAdded
Apideck.Accounting.TrackingCategories.Update():request.Request.CompanyIdAdded
Apideck.Accounting.TrackingCategories.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.BillPayments.List():request.Request.CompanyIdAdded
Apideck.Accounting.BillPayments.Create():request.Request.CompanyIdAdded
Apideck.Accounting.BillPayments.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Expenses.Create():request.RequestChangedApideck.Accounting.Expenses.Get():request.Request.CompanyIdAddedresponse.Data.Status.Enum(voided)Added
Apideck.Accounting.Expenses.Update():request.Request.Expense.Status.Enum(voided)Added
Apideck.Accounting.AgedCreditors.Get():request.Request.CompanyIdAdded
Apideck.Accounting.AgedDebtors.Get():request.Request.CompanyIdAdded
Apideck.Accounting.BankFeedAccounts.List():request.Request.CompanyIdAdded
Apideck.Accounting.BankFeedAccounts.Get():request.Request.CompanyIdAdded
Apideck.Accounting.BankFeedStatements.List():request.Request.CompanyIdAdded
Apideck.Accounting.BankFeedStatements.Create():request.Request.CompanyIdAdded
Apideck.Accounting.BankFeedStatements.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Categories.List():request.Request.CompanyIdAdded
Apideck.Accounting.Categories.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Quotes.List():request.Request.CompanyIdAddedresponse.Data[].TermsIdAdded
Apideck.Accounting.Quotes.Create():request.RequestChangedApideck.Accounting.Quotes.Get():request.Request.CompanyIdAddedresponse.Data.TermsIdAdded
Apideck.Accounting.Quotes.Update():request.RequestChangedApideck.Accounting.Quotes.Delete():request.Request.CompanyIdAdded
Apideck.Accounting.Projects.List():request.Request.CompanyIdAdded
Apideck.Accounting.Projects.Create():request.Request.CompanyIdAdded
Apideck.Accounting.Projects.Get():request.Request.CompanyIdAdded
Apideck.Accounting.Projects.Update():request.Request.CompanyIdAdded
Apideck.Accounting.Projects.Delete():request.Request.CompanyId*...
go - v0.26.2 - 2026-02-26 11:03:04
Generated by Speakeasy CLI
github.com/apideck-libraries/sdk-go 0.26.2
Go SDK Changes:
Apideck.Accounting.Employees.List(): AddedApideck.Accounting.Employees.Create(): AddedApideck.Accounting.Employees.Get(): AddedApideck.Accounting.Employees.Update(): AddedApideck.Accounting.Employees.Delete(): AddedApideck.Accounting.ExpenseCategories.List(): AddedApideck.Accounting.ExpenseCategories.Create(): AddedApideck.Accounting.ExpenseCategories.Get(): AddedApideck.Accounting.ExpenseCategories.Update(): AddedApideck.Accounting.ExpenseCategories.Delete(): AddedApideck.Accounting.ExpenseReports.List(): AddedApideck.Accounting.ExpenseReports.Create(): AddedApideck.Accounting.ExpenseReports.Get(): AddedApideck.Accounting.ExpenseReports.Update(): AddedApideck.Accounting.ExpenseReports.Delete(): Added
Generated with Speakeasy CLI 1.730.1
go - v0.26.1 - 2026-02-16 10:16:26
Generated by Speakeasy CLI
github.com/apideck-libraries/sdk-go 0.26.1
Go SDK Changes:
Apideck.Proxy.Get(): AddedApideck.Proxy.Options(): AddedApideck.Proxy.Post(): AddedApideck.Proxy.Put(): AddedApideck.Proxy.Patch(): AddedApideck.Proxy.Delete(): AddedApideck.Accounting.InvoiceItems.List():request.Request.FilterChanged
Apideck.Crm.Companies.List():request.Request.FilterChanged
Apideck.Crm.Contacts.List():request.Request.FilterChanged
Apideck.Crm.Contacts.Get():request.Request.FilterChanged
Apideck.Ecommerce.Customers.List():request.Request.FilterChanged
Apideck.Hris.Employees.List():response.Data[].LeavingReason.Enum(retired)AddedApideck.Hris.Employees.Create():request.Request.Employee.LeavingReason.Enum(retired)Added
Apideck.Hris.Employees.Get():response.Data.LeavingReason.Enum(retired)AddedApideck.Hris.Employees.Update():request.Request.Employee.LeavingReason.Enum(retired)Added
Apideck.Hris.EmployeeSchedules.List():response.Data.Employee.LeavingReason.Enum(retired)Added
Generated with Speakeasy CLI 1.718.0
go - v0.26.0 - 2026-02-05 18:27:21
Generated by Speakeasy CLI
github.com/apideck-libraries/sdk-go 0.26.0
Go SDK Changes:
Apideck.Accounting.TaxRates.List():error.DownstreamErrorsAddedApideck.Accounting.TaxRates.Create():error.DownstreamErrorsAddedApideck.Accounting.TaxRates.Get():error.DownstreamErrorsAddedApideck.Accounting.TaxRates.Update():error.DownstreamErrorsAddedApideck.Accounting.TaxRates.Delete():error.DownstreamErrorsAddedApideck.Accounting.Bills.List():error.DownstreamErrorsAddedApideck.Accounting.Bills.Create():error.DownstreamErrorsAddedApideck.Accounting.Bills.Get():error.DownstreamErrorsAddedApideck.Accounting.Bills.Update():error.DownstreamErrorsAddedApideck.Accounting.Bills.Delete():error.DownstreamErrorsAddedApideck.Accounting.Invoices.List():error.DownstreamErrorsAddedApideck.Accounting.Invoices.Create():error.DownstreamErrorsAddedApideck.Accounting.Invoices.Get():error.DownstreamErrorsAddedApideck.Accounting.Invoices.Update():error.DownstreamErrorsAddedApideck.Accounting.Invoices.Delete():error.DownstreamErrorsAddedApideck.Accounting.LedgerAccounts.List():error.DownstreamErrorsAddedApideck.Accounting.LedgerAccounts.Create():error.DownstreamErrorsAddedApideck.Accounting.LedgerAccounts.Get():error.DownstreamErrorsAddedApideck.Accounting.LedgerAccounts.Update():error.DownstreamErrorsAddedApideck.Accounting.LedgerAccounts.Delete():error.DownstreamErrorsAddedApideck.Accounting.InvoiceItems.List():error.DownstreamErrorsAddedApideck.Accounting.InvoiceItems.Create():error.DownstreamErrorsAddedApideck.Accounting.InvoiceItems.Get():error.DownstreamErrorsAddedApideck.Accounting.InvoiceItems.Update():error.DownstreamErrorsAddedApideck.Accounting.InvoiceItems.Delete():error.DownstreamErrorsAddedApideck.Accounting.CreditNotes.List():error.DownstreamErrorsAddedApideck.Accounting.CreditNotes.Create():error.DownstreamErrorsAddedApideck.Accounting.CreditNotes.Get():error.DownstreamErrorsAddedApideck.Accounting.CreditNotes.Update():error.DownstreamErrorsAddedApideck.Accounting.CreditNotes.Delete():error.DownstreamErrorsAddedApideck.Accounting.Customers.List():error.DownstreamErrorsAddedApideck.Accounting.Customers.Create():error.DownstreamErrorsAddedApideck.Accounting.Customers.Get():error.DownstreamErrorsAddedApideck.Accounting.Customers.Update():error.DownstreamErrorsAddedApideck.Accounting.Customers.Delete():error.DownstreamErrorsAddedApideck.Accounting.Suppliers.List():error.DownstreamErrorsAddedApideck.Accounting.Suppliers.Create():error.DownstreamErrorsAddedApideck.Accounting.Suppliers.Get():error.DownstreamErrorsAddedApideck.Accounting.Suppliers.Update():error.DownstreamErrorsAddedApideck.Accounting.Suppliers.Delete():error.DownstreamErrorsAddedApideck.Accounting.Payments.List():error.DownstreamErrorsAddedApideck.Accounting.Payments.Create():error.DownstreamErrorsAddedApideck.Accounting.Payments.Get():error.DownstreamErrorsAddedApideck.Accounting.Payments.Update():error.DownstreamErrorsAddedApideck.Accounting.Payments.Delete():error.DownstreamErrorsAddedApideck.Accounting.CompanyInfo.Get():error.DownstreamErrorsAddedApideck.Accounting.BalanceSheet.Get():error.DownstreamErrorsAddedApideck.Accounting.ProfitAndLoss.Get():error.DownstreamErrorsAddedApideck.Accounting.JournalEntries.List():error.DownstreamErrorsAddedApideck.Accounting.JournalEntries.Create():error.DownstreamErrorsAddedApideck.Accounting.JournalEntries.Get():error.DownstreamErrorsAddedApideck.Accounting.JournalEntries.Update():error.DownstreamErrorsAddedApideck.Accounting.JournalEntries.Delete():error.DownstreamErrorsAddedApideck.Accounting.PurchaseOrders.List():error.DownstreamErrorsAddedApideck.Accounting.PurchaseOrders.Create():error.DownstreamErrorsAddedApideck.Accounting.PurchaseOrders.Get():error.DownstreamErrorsAddedApideck.Accounting.PurchaseOrders.Update():error.DownstreamErrorsAddedApideck.Accounting.PurchaseOrders.Delete():error.DownstreamErrorsAddedApideck.Accounting.Subsidiaries.List():error.DownstreamErrorsAddedApideck.Accounting.Subsidiaries.Create():error.DownstreamErrorsAddedApideck.Accounting.Subsidiaries.Get():error.DownstreamErrorsAddedApideck.Accounting.Subsidiaries.Update():error.DownstreamErrorsAddedApideck.Accounting.Subsidiaries.Delete():error.DownstreamErrorsAddedApideck.Accounting.Locations.List():error.DownstreamErrorsAddedApideck.Accounting.Locations.Create():error.DownstreamErrorsAddedApideck.Accounting.Locations.Get():error.DownstreamErrorsAddedApideck.Accounting.Locations.Update():error.DownstreamErrorsAddedApideck.Accounting.Locations.Delete():error.DownstreamErrorsAddedApideck.Accounting.Departments.List():error.DownstreamErrorsAddedApideck.Accounting.Departments.Create():error.DownstreamErrorsAddedApideck.Accounting.Departments.Get():error.DownstreamErrorsAddedApideck.Accounting.Departments.Update():error.DownstreamErrorsAddedApideck.Accounting.Departments.Delete():error.DownstreamErrorsAddedApideck.Accounting.Attachments.List():error.DownstreamErrorsAddedApideck.Accounting.Attachments.Upload():error.DownstreamErrorsAddedApideck.Accounting.Attachments.Get():error.DownstreamErrorsAddedApideck.Accounting.Attachments.Delete():error.DownstreamErrorsAddedApideck.Accounting.Attachments.Download():error.DownstreamErrorsAddedApideck.Accounting.BankAccounts.List():error.DownstreamErrorsAddedApideck.Accounting.BankAccounts.Create():error.DownstreamErrorsAddedApideck.Accounting.BankAccounts.Get():error.DownstreamErrorsAddedApideck.Accounting.BankAccounts.Update():error.DownstreamErrorsAddedApideck.Accounting.BankAccounts.Delete():error.DownstreamErrorsAddedApideck.Accounting.TrackingCategories.List():error.DownstreamErrorsAddedApideck.Accounting.TrackingCategories.Create():error.DownstreamErrorsAddedApideck.Accounting.TrackingCategories.Get():error.DownstreamErrorsAddedApideck.Accounting.TrackingCategories.Update():error.DownstreamErrorsAddedApideck.Accounting.TrackingCategories.Delete():error.DownstreamErrorsAddedApideck.Accounting.BillPayments.List():error.DownstreamErrorsAddedApideck.Accounting.BillPayments.Create():error.DownstreamErrorsAddedApideck.Accounting.BillPayments.Get():error.DownstreamErrorsAddedApideck.Accounting.BillPayments.Update():error.DownstreamErrorsAddedApideck.Accounting.BillPayments.Delete():error.DownstreamErrorsAddedApideck.Accounting.Expenses.List():error.DownstreamErrorsAddedApideck.Accounting.Expenses.Create():error.DownstreamErrorsAddedApideck.Accounting.Expenses.Get():error.DownstreamErrorsAddedApideck.Accounting.Expenses.Update():error.DownstreamErrorsAddedApideck.Accounting.Expenses.Delete():error.DownstreamErrorsAddedApideck.Accounting.AgedCreditors.Get():error.DownstreamErrorsAddedApideck.Accounting.AgedDebtors.Get():error.DownstreamErrorsAddedApideck.Accounting.BankFeedAccounts.List():error.DownstreamErrorsAddedApideck.Accounting.BankFeedAccounts.Create():error.DownstreamErrorsAddedApideck.Accounting.BankFeedAccounts.Get():error.DownstreamErrorsAddedApideck.Accounting.BankFeedAccounts.Update():error.DownstreamErrorsAddedApideck.Accounting.BankFeedAccounts.Delete():error.DownstreamErrorsAddedApideck.Accounting.BankFeedStatements.List():error.DownstreamErrorsAddedApideck.Accounting.BankFeedStatements.Create():error.DownstreamErrorsAddedApideck.Accounting.BankFeedStatements.Get():error.DownstreamErrorsAddedApideck.Accounting.BankFeedStatements.Update():error.DownstreamErrorsAddedApideck.Accounting.BankFeedStatements.Delete():error.DownstreamErrorsAddedApideck.Accounting.Categories.List():error.DownstreamErrorsAddedApideck.Accounting.Categories.Get():error.DownstreamErrorsAddedApideck.Accounting.Quotes.List():error.DownstreamErrorsAddedApideck.Accounting.Quotes.Create():error.DownstreamErrorsAddedApideck.Accounting.Quotes.Get():error.DownstreamErrorsAddedApideck.Accounting.Quotes.Update():error.DownstreamErrorsAddedApideck.Accounting.Quotes.Delete():error.DownstreamErrorsAddedApideck.Accounting.Projects.List():request.Request.FilterChangedresponse.Data[].CompletionDateAddederror.DownstreamErrorsAdded
Apideck.Accounting.Projects.Create():request.Request.Project.CompletionDateAddederror.DownstreamErrorsAdded
Apideck.Accounting.Projects.Get():response.Data.CompletionDateAddederror.DownstreamErrorsAdded
- `Apideck.Accounting.Projects.Upda...
go - v0.25.0 - 2026-01-20 14:17:32
Generated by Speakeasy CLI
github.com/apideck-libraries/sdk-go 0.25.0
Go SDK Changes:
Apideck.Accounting.BillPayments.List():request.Request.FilterChangedresponse.Data.[]Changed Breaking⚠️
Apideck.Accounting.Invoices.Create():request.Request.InvoiceChanged Breaking⚠️
Apideck.Accounting.TaxRates.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.TaxRates.Update():request.Request.TaxRate.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.Bills.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.Bills.Create():request.Request.BillChanged Breaking⚠️
Apideck.Accounting.Bills.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.Bills.Update():request.Request.BillChanged Breaking⚠️
Apideck.Accounting.Invoices.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.BillPayments.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.Invoices.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.Invoices.Update():request.Request.InvoiceChanged Breaking⚠️
Apideck.Accounting.LedgerAccounts.List():request.Request.FilterChangedresponse.Data.[].CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.LedgerAccounts.Create():request.Request.LedgerAccount.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.LedgerAccounts.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.LedgerAccounts.Update():request.Request.LedgerAccount.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.BillPayments.Create():request.Request.BillPaymentChanged Breaking⚠️
Apideck.Accounting.CreditNotes.Create():request.Request.CreditNoteChanged Breaking⚠️
Apideck.Accounting.CreditNotes.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.CreditNotes.Update():request.Request.CreditNoteChanged Breaking⚠️
Apideck.Accounting.Customers.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.Customers.Create():request.Request.Customer.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.Customers.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.Customers.Update():request.Request.Customer.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.Suppliers.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.Suppliers.Create():request.Request.Supplier.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.Suppliers.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.Suppliers.Update():request.Request.Supplier.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.Payments.List():request.Request.FilterChangedresponse.Data.[]Changed Breaking⚠️
Apideck.Accounting.Payments.Create():request.Request.PaymentChanged Breaking⚠️
Apideck.Accounting.Payments.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.Payments.Update():request.Request.PaymentChanged Breaking⚠️
Apideck.Accounting.CompanyInfo.Get():response.Data.DefaultSalesTax.CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.JournalEntries.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.JournalEntries.Create():request.Request.JournalEntryChanged Breaking⚠️
Apideck.Accounting.JournalEntries.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.JournalEntries.Update():request.Request.JournalEntryChanged Breaking⚠️
Apideck.Accounting.PurchaseOrders.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.PurchaseOrders.Create():request.Request.PurchaseOrderChanged Breaking⚠️
Apideck.Accounting.PurchaseOrders.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.PurchaseOrders.Update():request.Request.PurchaseOrderChanged Breaking⚠️
Apideck.Accounting.BankAccounts.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Hris.EmployeeSchedules.List():response.Data.Employee.CustomFields.[]Changed Breaking⚠️ Apideck.Hris.Employees.Update():request.Request.Employee.CustomFields.[]Changed Breaking⚠️
Apideck.Hris.Employees.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Hris.Employees.Create():request.Request.Employee.CustomFields.[]Changed Breaking⚠️
Apideck.Hris.Employees.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Crm.Activities.Update():request.Request.Activity.CustomFields.[]Changed Breaking⚠️
Apideck.Crm.Activities.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Crm.Activities.Create():request.Request.Activity.CustomFields.[]Changed Breaking⚠️
Apideck.Crm.Activities.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Crm.Leads.Update():request.Request.LeadChanged Breaking⚠️
Apideck.Crm.Leads.Get():response.DataChanged Breaking⚠️ Apideck.Crm.Leads.Create():request.Request.LeadChanged Breaking⚠️
Apideck.Accounting.TaxRates.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.BankAccounts.Create():request.Request.AccountingBankAccount.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.BankAccounts.Get():request.Request.FilterAddedresponse.Data.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.BankAccounts.Update():request.Request.AccountingBankAccount.CustomFields.[]Changed Breaking⚠️
Apideck.Crm.Leads.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.CreditNotes.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.TaxRates.Create():request.Request.TaxRate.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.BillPayments.Update():request.Request.BillPaymentChanged Breaking⚠️
Apideck.Accounting.Expenses.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.Expenses.Create():request.Request.ExpenseChanged Breaking⚠️
Apideck.Accounting.Expenses.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.Expenses.Update():request.Request.ExpenseChanged Breaking⚠️
Apideck.Accounting.BankFeedAccounts.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.BankFeedAccounts.Create():request.Request.BankFeedAccount.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.BankFeedAccounts.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Accounting.BankFeedAccounts.Update():request.Request.BankFeedAccount.CustomFields.[]Changed Breaking⚠️
Apideck.Accounting.Quotes.List():response.Data.[].LineItems.[]Changed Breaking⚠️ Apideck.Accounting.Quotes.Create():request.Request.Quote.LineItems.[]Changed Breaking⚠️
Apideck.Accounting.Quotes.Get():response.Data.LineItems.[]Changed Breaking⚠️ Apideck.Accounting.Quotes.Update():request.Request.Quote.LineItems.[]Changed Breaking⚠️
Apideck.Accounting.Projects.List():response.Data.[]Changed Breaking⚠️ Apideck.Accounting.Projects.Create():request.Request.ProjectChanged Breaking⚠️
Apideck.Accounting.Projects.Get():response.DataChanged Breaking⚠️ Apideck.Accounting.Projects.Update():request.Request.ProjectChanged Breaking⚠️
Apideck.Ats.Jobs.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Ats.Jobs.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Ats.Applicants.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Ats.Applicants.Create():request.Request.Applicant.CustomFields.[]Changed Breaking⚠️
Apideck.Ats.Applicants.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Ats.Applicants.Update():request.Request.Applicant.CustomFields.[]Changed Breaking⚠️
Apideck.Crm.Companies.List():response.Data.[].CustomFields.[]Changed Breaking⚠️ Apideck.Crm.Companies.Create():request.Request.Company1.CustomFields.[]Changed Breaking⚠️
Apideck.Crm.Companies.Get():response.Data.CustomFields.[]Changed Breaking⚠️ Apideck.Crm.Companies.Update():- `request.R...