Skip to content

Commit a27b746

Browse files
speakeasybotunclesp1d3r
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.379.0
1 parent 16ecb50 commit a27b746

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

.speakeasy/gen.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 11fa8266-8454-49fd-ba7b-d5f8744980cc
33
management:
4-
docChecksum: 35d5d7a1b46aadf9fcaaf0f0d2561a18
4+
docChecksum: 974203a2c181336c4989bb3a1c5be36f
55
docVersion: "1.3"
66
speakeasyVersion: 1.379.0
77
generationVersion: 2.404.3
8-
releaseVersion: 0.8.1
9-
configChecksum: 20f584c67f24cf983a62779606867a80
8+
releaseVersion: 0.8.2
9+
configChecksum: e738bb4dcf677638191e216256948272
1010
repoURL: https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go.git
1111
installationURL: https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go
1212
features:

.speakeasy/gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ generation:
1212
auth:
1313
oAuth2ClientCredentialsEnabled: false
1414
go:
15-
version: 0.8.1
15+
version: 0.8.2
1616
additionalDependencies: {}
1717
allowUnknownFieldsInWeakUnions: false
1818
clientServerStatusCodesAsErrors: true

.speakeasy/workflow.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ speakeasyVersion: 1.379.0
22
sources:
33
CipherSwarm_agent_api:
44
sourceNamespace: cipher-swarm-agent-api
5-
sourceRevisionDigest: sha256:43543cc5af086b502c070456947fa291cf282c3bd85926cc8f90aca65ee20b2f
6-
sourceBlobDigest: sha256:1be7b03b39fbca0ce7049af160aef58810586049b34fd44441056a793ac4b8b3
5+
sourceRevisionDigest: sha256:c52ea1fbdfdc6a521af13410fec0b23cb99425847949457d1395af5a47e23c65
6+
sourceBlobDigest: sha256:c71061092fca3a9231ac0eac0d045afc1b9ac27b9c656e6806d924395ef2ec9b
77
tags:
88
- latest
99
- main
1010
targets:
1111
golang-sdk:
1212
source: CipherSwarm_agent_api
1313
sourceNamespace: cipher-swarm-agent-api
14-
sourceRevisionDigest: sha256:43543cc5af086b502c070456947fa291cf282c3bd85926cc8f90aca65ee20b2f
15-
sourceBlobDigest: sha256:1be7b03b39fbca0ce7049af160aef58810586049b34fd44441056a793ac4b8b3
14+
sourceRevisionDigest: sha256:c52ea1fbdfdc6a521af13410fec0b23cb99425847949457d1395af5a47e23c65
15+
sourceBlobDigest: sha256:c71061092fca3a9231ac0eac0d045afc1b9ac27b9c656e6806d924395ef2ec9b
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -248,4 +248,14 @@ Based on:
248248
### Generated
249249
- [go v0.8.1] .
250250
### Releases
251-
- [Go v0.8.1] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.8.1 - .
251+
- [Go v0.8.1] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.8.1 - .
252+
253+
## 2024-08-26 05:36:15
254+
### Changes
255+
Based on:
256+
- OpenAPI Doc
257+
- Speakeasy CLI 1.379.0 (2.404.3) https://github.com/speakeasy-api/speakeasy
258+
### Generated
259+
- [go v0.8.2] .
260+
### Releases
261+
- [Go v0.8.2] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.8.2 - .

cipherswarmagentsdk.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ func New(opts ...SDKOption) *CipherSwarmAgentSDK {
197197
sdkConfiguration: sdkConfiguration{
198198
Language: "go",
199199
OpenAPIDocVersion: "1.3",
200-
SDKVersion: "0.8.1",
200+
SDKVersion: "0.8.2",
201201
GenVersion: "2.404.3",
202-
UserAgent: "speakeasy-sdk/go 0.8.1 2.404.3 1.3 github.com/unclesp1d3r/cipherswarm-agent-sdk-go",
202+
UserAgent: "speakeasy-sdk/go 0.8.2 2.404.3 1.3 github.com/unclesp1d3r/cipherswarm-agent-sdk-go",
203203
ServerDefaults: []map[string]string{
204204
{
205205
"defaultHost": "www.example.com",

docs/sdks/tasks/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ func main() {
269269

270270
| Error Object | Status Code | Content Type |
271271
| --------------------- | --------------------- | --------------------- |
272-
| sdkerrors.ErrorObject | 401,404,422 | application/json |
272+
| sdkerrors.ErrorObject | 401,422 | application/json |
273273
| sdkerrors.SDKError | 4xx-5xx | */* |
274274

275275

tasks.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,6 @@ func (s *Tasks) SendStatus(ctx context.Context, id int64, taskStatus components.
782782
case httpRes.StatusCode == 204:
783783
case httpRes.StatusCode == 401:
784784
fallthrough
785-
case httpRes.StatusCode == 404:
786-
fallthrough
787785
case httpRes.StatusCode == 422:
788786
switch {
789787
case utils.MatchContentType(httpRes.Header.Get("Content-Type"), `application/json`):
@@ -796,6 +794,8 @@ func (s *Tasks) SendStatus(ctx context.Context, id int64, taskStatus components.
796794
default:
797795
return nil, sdkerrors.NewSDKError(fmt.Sprintf("unknown content-type received: %s", httpRes.Header.Get("Content-Type")), httpRes.StatusCode, string(rawBody), httpRes)
798796
}
797+
case httpRes.StatusCode == 404:
798+
fallthrough
799799
case httpRes.StatusCode == 410:
800800
fallthrough
801801
case httpRes.StatusCode >= 400 && httpRes.StatusCode < 500:

0 commit comments

Comments
 (0)