Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update go sdk generated code with strict decoder disabled #50

Merged
merged 1 commit into from
Feb 7, 2025
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Coinbase Go SDK Changelog

## [0.0.17] - 2025-02-06

### Added

- Update auto-generated client code to help relax decoding of server returned jsons to allow new fields to be added without breaking the SDK.

## [0.0.16] - 2025-02-05

### Added
Expand Down
17 changes: 16 additions & 1 deletion gen/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat

- API version: 0.0.1-alpha
- Package version: 1.0.0
- Generator version: 7.9.0
- Generator version: 7.11.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

## Installation
Expand Down Expand Up @@ -126,6 +126,12 @@ Class | Method | HTTP request | Description
*SmartContractsAPI* | [**ReadContract**](docs/SmartContractsAPI.md#readcontract) | **Post** /v1/networks/{network_id}/smart_contracts/{contract_address}/read | Read data from a smart contract
*SmartContractsAPI* | [**RegisterSmartContract**](docs/SmartContractsAPI.md#registersmartcontract) | **Post** /v1/networks/{network_id}/smart_contracts/{contract_address}/register | Register a smart contract
*SmartContractsAPI* | [**UpdateSmartContract**](docs/SmartContractsAPI.md#updatesmartcontract) | **Put** /v1/networks/{network_id}/smart_contracts/{contract_address} | Update a smart contract
*SmartWalletsAPI* | [**BroadcastUserOperation**](docs/SmartWalletsAPI.md#broadcastuseroperation) | **Post** /v1/smart_wallets/{smart_wallet_address}/user_operations/{user_operation_id}/broadcast | Broadcast a user operation
*SmartWalletsAPI* | [**CreateSmartWallet**](docs/SmartWalletsAPI.md#createsmartwallet) | **Post** /v1/smart_wallets | Create a new smart wallet
*SmartWalletsAPI* | [**CreateUserOperation**](docs/SmartWalletsAPI.md#createuseroperation) | **Post** /v1/smart_wallets/{smart_wallet_address}/networks/{network_id}/user_operations | Create a new user operation
*SmartWalletsAPI* | [**GetSmartWallet**](docs/SmartWalletsAPI.md#getsmartwallet) | **Get** /v1/smart_wallets/{smart_wallet_address} | Get smart wallet by address
*SmartWalletsAPI* | [**GetUserOperation**](docs/SmartWalletsAPI.md#getuseroperation) | **Get** /v1/smart_wallets/{smart_wallet_address}/user_operations/{user_operation_id} | Get user operation
*SmartWalletsAPI* | [**ListSmartWallets**](docs/SmartWalletsAPI.md#listsmartwallets) | **Get** /v1/smart_wallets | List smart wallets
*StakeAPI* | [**BuildStakingOperation**](docs/StakeAPI.md#buildstakingoperation) | **Post** /v1/stake/build | Build a new staking operation
*StakeAPI* | [**FetchHistoricalStakingBalances**](docs/StakeAPI.md#fetchhistoricalstakingbalances) | **Get** /v1/networks/{network_id}/addresses/{address_id}/stake/balances | Fetch historical staking balances
*StakeAPI* | [**FetchStakingRewards**](docs/StakeAPI.md#fetchstakingrewards) | **Post** /v1/stake/rewards/search | Fetch staking rewards
Expand Down Expand Up @@ -173,7 +179,9 @@ Class | Method | HTTP request | Description
- [BroadcastStakingOperationRequest](docs/BroadcastStakingOperationRequest.md)
- [BroadcastTradeRequest](docs/BroadcastTradeRequest.md)
- [BroadcastTransferRequest](docs/BroadcastTransferRequest.md)
- [BroadcastUserOperationRequest](docs/BroadcastUserOperationRequest.md)
- [BuildStakingOperationRequest](docs/BuildStakingOperationRequest.md)
- [Call](docs/Call.md)
- [CompileSmartContractRequest](docs/CompileSmartContractRequest.md)
- [CompiledSmartContract](docs/CompiledSmartContract.md)
- [ContractEvent](docs/ContractEvent.md)
Expand All @@ -188,9 +196,11 @@ Class | Method | HTTP request | Description
- [CreatePayloadSignatureRequest](docs/CreatePayloadSignatureRequest.md)
- [CreateServerSignerRequest](docs/CreateServerSignerRequest.md)
- [CreateSmartContractRequest](docs/CreateSmartContractRequest.md)
- [CreateSmartWalletRequest](docs/CreateSmartWalletRequest.md)
- [CreateStakingOperationRequest](docs/CreateStakingOperationRequest.md)
- [CreateTradeRequest](docs/CreateTradeRequest.md)
- [CreateTransferRequest](docs/CreateTransferRequest.md)
- [CreateUserOperationRequest](docs/CreateUserOperationRequest.md)
- [CreateWalletRequest](docs/CreateWalletRequest.md)
- [CreateWalletRequestWallet](docs/CreateWalletRequestWallet.md)
- [CreateWalletWebhookRequest](docs/CreateWalletWebhookRequest.md)
Expand Down Expand Up @@ -243,6 +253,8 @@ Class | Method | HTTP request | Description
- [SmartContractList](docs/SmartContractList.md)
- [SmartContractOptions](docs/SmartContractOptions.md)
- [SmartContractType](docs/SmartContractType.md)
- [SmartWallet](docs/SmartWallet.md)
- [SmartWalletList](docs/SmartWalletList.md)
- [SolidityValue](docs/SolidityValue.md)
- [SponsoredSend](docs/SponsoredSend.md)
- [StakingBalance](docs/StakingBalance.md)
Expand All @@ -259,12 +271,15 @@ Class | Method | HTTP request | Description
- [TradeList](docs/TradeList.md)
- [Transaction](docs/Transaction.md)
- [TransactionContent](docs/TransactionContent.md)
- [TransactionLog](docs/TransactionLog.md)
- [TransactionReceipt](docs/TransactionReceipt.md)
- [TransactionType](docs/TransactionType.md)
- [Transfer](docs/Transfer.md)
- [TransferList](docs/TransferList.md)
- [UpdateSmartContractRequest](docs/UpdateSmartContractRequest.md)
- [UpdateWebhookRequest](docs/UpdateWebhookRequest.md)
- [User](docs/User.md)
- [UserOperation](docs/UserOperation.md)
- [Validator](docs/Validator.md)
- [ValidatorDetails](docs/ValidatorDetails.md)
- [ValidatorList](docs/ValidatorList.md)
Expand Down
Loading