Skip to content

Commit

Permalink
Merge pull request #48 from dubinc/speakeasy-sdk-regen-1729642333
Browse files Browse the repository at this point in the history
chore: 🐝 Update SDK - Generate 0.9.14
  • Loading branch information
devkiran authored Oct 23, 2024
2 parents cad8def + d6d48ee commit 66e7b43
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 19 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: 1773e9c7-1931-4663-8ac8-4deaf8db76f5
management:
docChecksum: c88acc42c7fc51806ffd58748f95557d
docChecksum: 8285f8b5a9df348e04240ef390eeebe4
docVersion: 0.0.1
speakeasyVersion: 1.419.0
generationVersion: 2.438.3
releaseVersion: 0.9.13
configChecksum: 1d53de4c131447f444f77f57ab9b15a8
speakeasyVersion: 1.420.0
generationVersion: 2.438.15
releaseVersion: 0.9.14
configChecksum: 36a0521d238545be85177d594ea5e8c6
repoURL: https://github.com/dubinc/dub-go.git
installationURL: https://github.com/dubinc/dub-go
features:
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: true
go:
version: 0.9.13
version: 0.9.14
additionalDependencies: {}
allowUnknownFieldsInWeakUnions: false
clientServerStatusCodesAsErrors: true
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.419.0
speakeasyVersion: 1.420.0
sources:
dub:
sourceNamespace: dub
sourceRevisionDigest: sha256:68b6404595f3579e5c06f15d3a01040a2d73eb8a2e4c3e57779d03bcec2764eb
sourceBlobDigest: sha256:c8c59943e6e16582ce0badf32de11666baac2d0c7b531cb94d05afb8612a0c59
sourceRevisionDigest: sha256:8133b522b3808a617e13b4f5afcc759c706b7ac14351d8521f34f0689f99d2c7
sourceBlobDigest: sha256:b2ab84a04bc9e9a57b96d1914f91f96ff8fc03be93f72209819a06c2542dae5d
tags:
- latest
- main
targets:
my-first-target:
source: dub
sourceNamespace: dub
sourceRevisionDigest: sha256:68b6404595f3579e5c06f15d3a01040a2d73eb8a2e4c3e57779d03bcec2764eb
sourceBlobDigest: sha256:c8c59943e6e16582ce0badf32de11666baac2d0c7b531cb94d05afb8612a0c59
sourceRevisionDigest: sha256:8133b522b3808a617e13b4f5afcc759c706b7ac14351d8521f34f0689f99d2c7
sourceBlobDigest: sha256:b2ab84a04bc9e9a57b96d1914f91f96ff8fc03be93f72209819a06c2542dae5d
codeSamplesNamespace: code-samples-go-my-first-target
codeSamplesRevisionDigest: sha256:0748fc0d7a6bea08cc9a19d0aa9a536746a4510cefdb5212370a2e913e679c6e
codeSamplesRevisionDigest: sha256:5ce825d7d04e1fe5b1f1efe0b8fb31cc8d7515df9568c4f5fbfde66dfbf7e987
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 @@ -448,4 +448,14 @@ Based on:
### Generated
- [go v0.9.13] .
### Releases
- [Go v0.9.13] https://github.com/dubinc/dub-go/releases/tag/v0.9.13 - .
- [Go v0.9.13] https://github.com/dubinc/dub-go/releases/tag/v0.9.13 - .

## 2024-10-23 00:12:10
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.420.0 (2.438.15) https://github.com/speakeasy-api/speakeasy
### Generated
- [go v0.9.14] .
### Releases
- [Go v0.9.14] https://github.com/dubinc/dub-go/releases/tag/v0.9.14 - .
6 changes: 3 additions & 3 deletions dub.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ func New(opts ...SDKOption) *Dub {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.0.1",
SDKVersion: "0.9.13",
GenVersion: "2.438.3",
UserAgent: "speakeasy-sdk/go 0.9.13 2.438.3 0.0.1 github.com/dubinc/dub-go",
SDKVersion: "0.9.14",
GenVersion: "2.438.15",
UserAgent: "speakeasy-sdk/go 0.9.14 2.438.15 0.0.1 github.com/dubinc/dub-go",
Hooks: hooks.New(),
},
}
Expand Down
6 changes: 3 additions & 3 deletions models/components/linkschema.go
Original file line number Diff line number Diff line change
Expand Up @@ -2080,7 +2080,7 @@ type LinkSchema struct {
// The UTM content of the short link.
UtmContent *string `json:"utm_content"`
// The user ID of the creator of the short link.
UserID string `json:"userId"`
UserID *string `json:"userId"`
// The workspace ID of the short link.
WorkspaceID string `json:"workspaceId"`
// The number of clicks on the short link.
Expand Down Expand Up @@ -2345,9 +2345,9 @@ func (o *LinkSchema) GetUtmContent() *string {
return o.UtmContent
}

func (o *LinkSchema) GetUserID() string {
func (o *LinkSchema) GetUserID() *string {
if o == nil {
return ""
return nil
}
return o.UserID
}
Expand Down

0 comments on commit 66e7b43

Please sign in to comment.