Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.434.4
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Nov 7, 2024
1 parent 8e5a07c commit 6f4bd30
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 2858c6d9-f946-4185-ae68-3b8e708830fb
management:
docChecksum: f62c8a3acae2b0b2308c3147b20a4ef6
docChecksum: 9a034a66f4da4914406d1bf2b518d536
docVersion: 0.4.0
speakeasyVersion: 1.432.0
generationVersion: 2.451.0
releaseVersion: 3.15.3
configChecksum: 76285ceca5bdcdfa0ee48c234bce5c8c
speakeasyVersion: 1.434.4
generationVersion: 2.452.0
releaseVersion: 3.15.4
configChecksum: 2060b46f81918dacf0b5639e6765241f
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-go.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-go
Expand Down
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
speakeasyVersion: 1.432.0
speakeasyVersion: 1.434.4
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:7fe18d1ea8b63bb932dd2aeeb0a62ea853c135fcb90e8227c10d34756d9a13c3
sourceBlobDigest: sha256:a93984e94f8b39fdbcd40bfec3ed3b798f54cdf021c5b5ebcdb009bf99619b31
sourceRevisionDigest: sha256:5a12daf376d1b565e52675a7c0a76682f50ef0f7edd9eebe8561212a2d5021a0
sourceBlobDigest: sha256:533ea4da1e09493fe33ec0fc551679757fb9b281b691c27be14f52a7bee35bd2
tags:
- latest
- main
targets:
speakeasy-client-sdk-go:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:7fe18d1ea8b63bb932dd2aeeb0a62ea853c135fcb90e8227c10d34756d9a13c3
sourceBlobDigest: sha256:a93984e94f8b39fdbcd40bfec3ed3b798f54cdf021c5b5ebcdb009bf99619b31
sourceRevisionDigest: sha256:5a12daf376d1b565e52675a7c0a76682f50ef0f7edd9eebe8561212a2d5021a0
sourceBlobDigest: sha256:533ea4da1e09493fe33ec0fc551679757fb9b281b691c27be14f52a7bee35bd2
codeSamplesNamespace: code-samples-go-speakeasy-client-sdk-go
codeSamplesRevisionDigest: sha256:707a3b9c1bc3d2bdf55624d5664c3c4f24d67d5a7b4c490c5fcd9ea4ae0413c8
codeSamplesRevisionDigest: sha256:b6f09badb19df93b63b7328c158c7f1cdfb1763b10e00d3d79cbb4abebea307d
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1366,4 +1366,14 @@ Based on:
### Generated
- [go v3.15.3] .
### Releases
- [Go v3.15.3] https://github.com/speakeasy-api/speakeasy-client-sdk-go/releases/tag/v3.15.3 - .
- [Go v3.15.3] https://github.com/speakeasy-api/speakeasy-client-sdk-go/releases/tag/v3.15.3 - .

## 2024-11-07 21:34:29
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.434.4 (2.452.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [go v3.15.4] .
### Releases
- [Go v3.15.4] https://github.com/speakeasy-api/speakeasy-client-sdk-go/releases/tag/v3.15.4 - .
1 change: 1 addition & 0 deletions docs/pkg/models/operations/linkgithubaccessrequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `GithubOidcToken` | **string* | :heavy_minus_sign: | N/A |
| `GithubOrg` | **string* | :heavy_minus_sign: | N/A |
| `InstallationID` | **string* | :heavy_minus_sign: | N/A |
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
go:
version: 3.15.3
version: 3.15.4
additionalDependencies: {}
allowUnknownFieldsInWeakUnions: false
clientServerStatusCodesAsErrors: true
Expand Down
8 changes: 8 additions & 0 deletions pkg/models/operations/linkgithubaccess.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (

type LinkGithubAccessRequest struct {
GithubOidcToken *string `queryParam:"style=form,explode=true,name=github_oidc_token"`
GithubOrg *string `queryParam:"style=form,explode=true,name=github_org"`
InstallationID *string `queryParam:"style=form,explode=true,name=installation_id"`
}

Expand All @@ -18,6 +19,13 @@ func (o *LinkGithubAccessRequest) GetGithubOidcToken() *string {
return o.GithubOidcToken
}

func (o *LinkGithubAccessRequest) GetGithubOrg() *string {
if o == nil {
return nil
}
return o.GithubOrg
}

func (o *LinkGithubAccessRequest) GetInstallationID() *string {
if o == nil {
return nil
Expand Down
6 changes: 3 additions & 3 deletions speakeasy.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ func New(opts ...SDKOption) *Speakeasy {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.4.0",
SDKVersion: "3.15.3",
GenVersion: "2.451.0",
UserAgent: "speakeasy-sdk/go 3.15.3 2.451.0 0.4.0 github.com/speakeasy-api/speakeasy-client-sdk-go",
SDKVersion: "3.15.4",
GenVersion: "2.452.0",
UserAgent: "speakeasy-sdk/go 3.15.4 2.452.0 0.4.0 github.com/speakeasy-api/speakeasy-client-sdk-go",
Globals: globals.Globals{},
Hooks: hooks.New(),
},
Expand Down

0 comments on commit 6f4bd30

Please # to comment.