Skip to content

Commit 03e7e59

Browse files
authored
Merge pull request #4 from sst/release-please--branches--main--changes--next
release: 0.1.0-alpha.4
2 parents 9c14898 + 02fa5b8 commit 03e7e59

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.3"
2+
".": "0.1.0-alpha.4"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 16
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/opencode%2Fopencode-129afed79c2ff0ae5f660a17af692c0f716b0d61ce62700f107c1d905346793e.yml
3-
openapi_spec_hash: 4bc73b4bfb67367575ac7b582b77d912
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/opencode%2Fopencode-42c787cc277f295f28cd81a67f7b746cb4d47c3cd4c8a3fb521b03407649ebdd.yml
3+
openapi_spec_hash: 8f514f7881cf54e0aa65a23366df1af0
44
config_hash: 61e8ad6b1bd35aec38a7b20a2570b967

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.1.0-alpha.4 (2025-06-27)
4+
5+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/sst/opencode-sdk-go/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([9609d1b](https://github.com/sst/opencode-sdk-go/commit/9609d1b1db7806d00cb846c9914cb4935cdedf52))
10+
311
## 0.1.0-alpha.3 (2025-06-27)
412

513
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/sst/opencode-sdk-go/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Or to pin the version:
2424
<!-- x-release-please-start-version -->
2525

2626
```sh
27-
go get -u 'github.com/sst/[email protected].3'
27+
go get -u 'github.com/sst/[email protected].4'
2828
```
2929

3030
<!-- x-release-please-end -->

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package internal
44

5-
const PackageVersion = "0.1.0-alpha.3" // x-release-please-version
5+
const PackageVersion = "0.1.0-alpha.4" // x-release-please-version

session.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,8 +1330,6 @@ type SessionChatParams struct {
13301330
ModelID param.Field[string] `json:"modelID,required"`
13311331
Parts param.Field[[]MessagePartUnionParam] `json:"parts,required"`
13321332
ProviderID param.Field[string] `json:"providerID,required"`
1333-
// Session ID
1334-
SessionID param.Field[string] `json:"sessionID,required"`
13351333
}
13361334

13371335
func (r SessionChatParams) MarshalJSON() (data []byte, err error) {

session_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ func TestSessionChat(t *testing.T) {
123123
Type: opencode.F(opencode.TextPartTypeText),
124124
}}),
125125
ProviderID: opencode.F("providerID"),
126-
SessionID: opencode.F("sessionID"),
127126
},
128127
)
129128
if err != nil {

0 commit comments

Comments
 (0)