Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.481.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Feb 1, 2025
1 parent 7f3063f commit 8138e04
Show file tree
Hide file tree
Showing 65 changed files with 32,560 additions and 30,852 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.speakeasy/reports
# .gitignore
321 changes: 164 additions & 157 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
speakeasyVersion: 1.441.1
speakeasyVersion: 1.481.1
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:6c079401c838cca6a0f30f0fa3503effd8101563b076eda0d3e8410921627122
sourceBlobDigest: sha256:32629e12788197e47087a513dddd7268e312e34ebcdf92b037a278687f751892
sourceRevisionDigest: sha256:d5aeac9f948a94ac575e8ae14d88d05e6b154c54354b3adcbd5d46fa2cf4c48e
sourceBlobDigest: sha256:047973b43eabd7a5497fd5b5915c0bdc002a6670bd88b057e54effa7577a5849
tags:
- latest
- speakeasy-sdk-regen-1732202887
- speakeasy-sdk-regen-1737418429
- v2.1.2
targets:
formance-sdk-go:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:6c079401c838cca6a0f30f0fa3503effd8101563b076eda0d3e8410921627122
sourceBlobDigest: sha256:32629e12788197e47087a513dddd7268e312e34ebcdf92b037a278687f751892
codeSamplesNamespace: my-source-code-samples
codeSamplesRevisionDigest: sha256:674bfe2b1efd8f6a3b877d7a6fd19a0ac18bdcd435fe5df6401e2789be4c1d7a
sourceRevisionDigest: sha256:d5aeac9f948a94ac575e8ae14d88d05e6b154c54354b3adcbd5d46fa2cf4c48e
sourceBlobDigest: sha256:047973b43eabd7a5497fd5b5915c0bdc002a6670bd88b057e54effa7577a5849
codeSamplesNamespace: my-source-go-code-samples
codeSamplesRevisionDigest: sha256:422562934bfa07166f9de1ad14839a817d4124be948cbb700f8532a61272222e
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand All @@ -30,5 +31,5 @@ workflow:
source: my-source
codeSamples:
registry:
location: registry.speakeasyapi.dev/formance/formance/my-source-code-samples
location: registry.speakeasyapi.dev/formance/formance/my-source-go-code-samples
blocking: false
2 changes: 1 addition & 1 deletion .speakeasy/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ targets:
source: my-source
codeSamples:
registry:
location: registry.speakeasyapi.dev/formance/formance/my-source-code-samples
location: registry.speakeasyapi.dev/formance/formance/my-source-go-code-samples
blocking: false
384 changes: 189 additions & 195 deletions README.md

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,14 @@ Based on:
### Generated
- [go v3.2.0] .
### Releases
- [Go v3.2.0] https://github.com/formancehq/formance-sdk-go/releases/tag/v3.2.0 - .
- [Go v3.2.0] https://github.com/formancehq/formance-sdk-go/releases/tag/v3.2.0 - .

## 2025-02-01 00:14:57
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.481.1 (2.500.5) https://github.com/speakeasy-api/speakeasy
### Generated
- [go v3.3.0] .
### Releases
- [Go v3.3.0] https://github.com/formancehq/formance-sdk-go/releases/tag/v3.3.0 - .
7 changes: 4 additions & 3 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ import (
)

func main() {
ctx := context.Background()

s := formancesdkgo.New(
formancesdkgo.WithSecurity(shared.Security{
ClientID: formancesdkgo.String("<YOUR_CLIENT_ID_HERE>"),
ClientSecret: formancesdkgo.String("<YOUR_CLIENT_SECRET_HERE>"),
}),
)

ctx := context.Background()
res, err := s.GetVersions(ctx)
res, err := s.GetOIDCWellKnowns(ctx)
if err != nil {
log.Fatal(err)
}
if res.GetVersionsResponse != nil {
if res != nil {
// handle response
}
}
Expand Down
Loading

0 comments on commit 8138e04

Please sign in to comment.