Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit 57ff85f

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.481.1
1 parent 8dbf964 commit 57ff85f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2622
-554
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
.speakeasy/reports
12
# .gitignore

.speakeasy/gen.lock

Lines changed: 188 additions & 132 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ generation:
1313
oAuth2ClientCredentialsEnabled: true
1414
oAuth2PasswordEnabled: false
1515
go:
16-
version: 0.11.0
16+
version: 0.12.0
1717
additionalDependencies: {}
1818
allowUnknownFieldsInWeakUnions: false
1919
clientServerStatusCodesAsErrors: true

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.453.4
1+
speakeasyVersion: 1.481.1
22
sources:
33
openapi.json:
44
sourceNamespace: openapi-json
5-
sourceRevisionDigest: sha256:805c458054c8cb789ff7b9496895307342a6e9a3cd48183010664f8dc91edf2d
6-
sourceBlobDigest: sha256:7c411023d91510110ee6a90feac26e69e43d0c631fc7644606b9d4aa293dc629
5+
sourceRevisionDigest: sha256:4178e9da06ec543aefb7c30ed1950f75bb58d07a258c3af060c361017cea7d5c
6+
sourceBlobDigest: sha256:80c886c09d00fa411bdbabd47b78ae9f876f36f600ae342c9a7c300e79c15d98
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1731025759
9+
- speakeasy-sdk-regen-1736900992
1010
- 1.0.0
1111
targets:
1212
go:
1313
source: openapi.json
1414
sourceNamespace: openapi-json
15-
sourceRevisionDigest: sha256:805c458054c8cb789ff7b9496895307342a6e9a3cd48183010664f8dc91edf2d
16-
sourceBlobDigest: sha256:7c411023d91510110ee6a90feac26e69e43d0c631fc7644606b9d4aa293dc629
15+
sourceRevisionDigest: sha256:4178e9da06ec543aefb7c30ed1950f75bb58d07a258c3af060c361017cea7d5c
16+
sourceBlobDigest: sha256:80c886c09d00fa411bdbabd47b78ae9f876f36f600ae342c9a7c300e79c15d98
1717
codeSamplesNamespace: openapi-json-go-code-samples
18-
codeSamplesRevisionDigest: sha256:d87463f60ba7dcd50c93a255a7f50017204d67df2881cb3bbe41b1bb5f2ab7a9
18+
codeSamplesRevisionDigest: sha256:f629299411e3cfd98aafaaf5c6e0e5fa8d23ed4546d7c7d1128e6f9e59be7353
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ import (
5555
)
5656

5757
func main() {
58+
ctx := context.Background()
59+
5860
s := unkeygo.New(
5961
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
6062
)
6163

62-
ctx := context.Background()
6364
res, err := s.Liveness.V1Liveness(ctx)
6465
if err != nil {
6566
log.Fatal(err)
@@ -78,6 +79,10 @@ func main() {
7879
<details open>
7980
<summary>Available methods</summary>
8081

82+
### [Analytics](docs/sdks/analytics/README.md)
83+
84+
* [GetVerifications](docs/sdks/analytics/README.md#getverifications)
85+
8186
### [Apis](docs/sdks/apis/README.md)
8287

8388
* [GetAPI](docs/sdks/apis/README.md#getapi)
@@ -133,7 +138,7 @@ func main() {
133138

134139
### [Ratelimit](docs/sdks/ratelimit/README.md)
135140

136-
* [RatelimitSetOverride](docs/sdks/ratelimit/README.md#ratelimitsetoverride)
141+
* [SetOverride](docs/sdks/ratelimit/README.md#setoverride)
137142
* [ListOverrides](docs/sdks/ratelimit/README.md#listoverrides)
138143
* [GetOverride](docs/sdks/ratelimit/README.md#getoverride)
139144

@@ -180,11 +185,12 @@ import (
180185
)
181186

182187
func main() {
188+
ctx := context.Background()
189+
183190
s := unkeygo.New(
184191
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
185192
)
186193

187-
ctx := context.Background()
188194
res, err := s.Liveness.V1Liveness(ctx)
189195
if err != nil {
190196

@@ -257,12 +263,13 @@ import (
257263
)
258264

259265
func main() {
266+
ctx := context.Background()
267+
260268
s := unkeygo.New(
261269
unkeygo.WithServerURL("https://api.unkey.dev"),
262270
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
263271
)
264272

265-
ctx := context.Background()
266273
res, err := s.Liveness.V1Liveness(ctx)
267274
if err != nil {
268275
log.Fatal(err)
@@ -326,11 +333,12 @@ import (
326333
)
327334

328335
func main() {
336+
ctx := context.Background()
337+
329338
s := unkeygo.New(
330339
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
331340
)
332341

333-
ctx := context.Background()
334342
res, err := s.Liveness.V1Liveness(ctx)
335343
if err != nil {
336344
log.Fatal(err)
@@ -361,11 +369,12 @@ import (
361369
)
362370

363371
func main() {
372+
ctx := context.Background()
373+
364374
s := unkeygo.New(
365375
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
366376
)
367377

368-
ctx := context.Background()
369378
res, err := s.Liveness.V1Liveness(ctx, operations.WithRetries(
370379
retry.Config{
371380
Strategy: "backoff",
@@ -399,6 +408,8 @@ import (
399408
)
400409

401410
func main() {
411+
ctx := context.Background()
412+
402413
s := unkeygo.New(
403414
unkeygo.WithRetryConfig(
404415
retry.Config{
@@ -414,7 +425,6 @@ func main() {
414425
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
415426
)
416427

417-
ctx := context.Background()
418428
res, err := s.Liveness.V1Liveness(ctx)
419429
if err != nil {
420430
log.Fatal(err)
@@ -446,14 +456,13 @@ import (
446456
)
447457

448458
func main() {
459+
ctx := context.Background()
460+
449461
s := unkeygo.New(
450462
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
451463
)
452464

453-
ctx := context.Background()
454-
res, err := s.Identities.ListIdentities(ctx, operations.ListIdentitiesRequest{
455-
Limit: unkeygo.Int64(100),
456-
})
465+
res, err := s.Identities.ListIdentities(ctx, operations.ListIdentitiesRequest{})
457466
if err != nil {
458467
log.Fatal(err)
459468
}

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,4 +278,14 @@ Based on:
278278
### Generated
279279
- [go v0.11.0] .
280280
### Releases
281-
- [Go v0.11.0] https://github.com/unkeyed/unkey-go/releases/tag/v0.11.0 - .
281+
- [Go v0.11.0] https://github.com/unkeyed/unkey-go/releases/tag/v0.11.0 - .
282+
283+
## 2025-02-02 00:31:52
284+
### Changes
285+
Based on:
286+
- OpenAPI Doc
287+
- Speakeasy CLI 1.481.1 (2.500.5) https://github.com/speakeasy-api/speakeasy
288+
### Generated
289+
- [go v0.12.0] .
290+
### Releases
291+
- [Go v0.12.0] https://github.com/unkeyed/unkey-go/releases/tag/v0.12.0 - .

USAGE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ import (
99
)
1010

1111
func main() {
12+
ctx := context.Background()
13+
1214
s := unkeygo.New(
1315
unkeygo.WithSecurity("UNKEY_ROOT_KEY"),
1416
)
1517

16-
ctx := context.Background()
1718
res, err := s.Liveness.V1Liveness(ctx)
1819
if err != nil {
1920
log.Fatal(err)

0 commit comments

Comments
 (0)