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

Commit fb8dcc7

Browse files
chore: regen
1 parent 75a8404 commit fb8dcc7

File tree

16 files changed

+64
-45
lines changed

16 files changed

+64
-45
lines changed

.speakeasy/gen.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 2d20490e-9921-47d5-9711-d3c4b91c8cfa
33
management:
44
docChecksum: 76d8867e9c1fc8897fc8f35f456e5c46
55
docVersion: 1.0.0
6-
speakeasyVersion: 1.587.1
7-
generationVersion: 2.662.0
8-
releaseVersion: 0.15.7
9-
configChecksum: f7636fc181cf624bf84ca732e3f30694
6+
speakeasyVersion: 1.595.2
7+
generationVersion: 2.670.5
8+
releaseVersion: 0.15.8
9+
configChecksum: 606c5da2e375003210f91dca4bf0e2aa
1010
repoURL: https://github.com/s2-streamstore/s2-sdk-typescript.git
1111
installationURL: https://github.com/s2-streamstore/s2-sdk-typescript
1212
published: true
@@ -15,7 +15,7 @@ features:
1515
acceptHeaders: 2.81.2
1616
additionalDependencies: 0.1.0
1717
constsAndDefaults: 0.1.12
18-
core: 3.21.15
18+
core: 3.21.19
1919
defaultEnabledRetries: 0.1.0
2020
devContainers: 2.90.0
2121
enumUnions: 0.1.0
@@ -32,7 +32,7 @@ features:
3232
responseFormat: 0.2.3
3333
retries: 2.83.0
3434
sdkHooks: 0.3.0
35-
serverEvents: 0.1.6
35+
serverEvents: 0.1.7
3636
serverEventsSentinels: 0.1.0
3737
unions: 2.85.11
3838
generatedFiles:

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ generation:
2424
generateNewTests: false
2525
skipResponseBodyAssertions: false
2626
typescript:
27-
version: 0.15.7
27+
version: 0.15.8
2828
additionalDependencies:
2929
dependencies:
3030
uuid: ^9.0.1

.speakeasy/workflow.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.587.1
1+
speakeasyVersion: 1.595.2
22
sources:
33
S2 API:
44
sourceNamespace: s-2-api
@@ -14,7 +14,7 @@ targets:
1414
sourceRevisionDigest: sha256:1e3f9a236e5b03e8b366389aecef8db454f5ab6e8e80b790e144e843cefdf85f
1515
sourceBlobDigest: sha256:a88b5983bb9a8349bc854e15958c127df65ddd0178d52938020049aefd84040d
1616
codeSamplesNamespace: s-2-api-typescript-code-samples
17-
codeSamplesRevisionDigest: sha256:eb8fab9a8406d532c3e1249c40018b8268932bdcdce0a760b95928c6cf40b0a2
17+
codeSamplesRevisionDigest: sha256:42b3d065745e252275058740b8605abf7e01e5d40b3e2cdce73445f7b5d14473
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest

docs/sdks/accesstokens/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ List access tokens.
1717

1818
### Example Usage
1919

20+
<!-- UsageSnippet language="typescript" operationID="list_access_tokens" method="get" path="/access-tokens" -->
2021
```typescript
2122
import { S2 } from "@s2-dev/streamstore";
2223

@@ -86,6 +87,7 @@ Issue a new access token.
8687

8788
### Example Usage
8889

90+
<!-- UsageSnippet language="typescript" operationID="issue_access_token" method="post" path="/access-tokens" -->
8991
```typescript
9092
import { S2 } from "@s2-dev/streamstore";
9193

@@ -161,6 +163,7 @@ Revoke an access token.
161163

162164
### Example Usage
163165

166+
<!-- UsageSnippet language="typescript" operationID="revoke_access_token" method="delete" path="/access-tokens/{id}" -->
164167
```typescript
165168
import { S2 } from "@s2-dev/streamstore";
166169

docs/sdks/basins/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ List basins.
2020

2121
### Example Usage
2222

23+
<!-- UsageSnippet language="typescript" operationID="list_basins" method="get" path="/basins" -->
2324
```typescript
2425
import { S2 } from "@s2-dev/streamstore";
2526

@@ -93,6 +94,7 @@ Create a basin.
9394

9495
### Example Usage
9596

97+
<!-- UsageSnippet language="typescript" operationID="create_basin" method="post" path="/basins" -->
9698
```typescript
9799
import { S2 } from "@s2-dev/streamstore";
98100

@@ -166,6 +168,7 @@ Get basin configuration.
166168

167169
### Example Usage
168170

171+
<!-- UsageSnippet language="typescript" operationID="get_basin_config" method="get" path="/basins/{basin}" -->
169172
```typescript
170173
import { S2 } from "@s2-dev/streamstore";
171174

@@ -239,6 +242,7 @@ Create or reconfigure a basin.
239242

240243
### Example Usage
241244

245+
<!-- UsageSnippet language="typescript" operationID="create_or_reconfigure_basin" method="put" path="/basins/{basin}" -->
242246
```typescript
243247
import { S2 } from "@s2-dev/streamstore";
244248

@@ -312,6 +316,7 @@ Delete a basin.
312316

313317
### Example Usage
314318

319+
<!-- UsageSnippet language="typescript" operationID="delete_basin" method="delete" path="/basins/{basin}" -->
315320
```typescript
316321
import { S2 } from "@s2-dev/streamstore";
317322

@@ -385,6 +390,7 @@ Reconfigure a basin.
385390

386391
### Example Usage
387392

393+
<!-- UsageSnippet language="typescript" operationID="reconfigure_basin" method="patch" path="/basins/{basin}" -->
388394
```typescript
389395
import { S2 } from "@s2-dev/streamstore";
390396

docs/sdks/metrics/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Account-level metrics.
1717

1818
### Example Usage
1919

20+
<!-- UsageSnippet language="typescript" operationID="account_metrics" method="get" path="/metrics" -->
2021
```typescript
2122
import { S2 } from "@s2-dev/streamstore";
2223

@@ -90,6 +91,7 @@ Basin-level metrics.
9091

9192
### Example Usage
9293

94+
<!-- UsageSnippet language="typescript" operationID="basin_metrics" method="get" path="/metrics/{basin}" -->
9395
```typescript
9496
import { S2 } from "@s2-dev/streamstore";
9597

@@ -165,6 +167,7 @@ Stream-level metrics.
165167

166168
### Example Usage
167169

170+
<!-- UsageSnippet language="typescript" operationID="stream_metrics" method="get" path="/metrics/{basin}/{stream}" -->
168171
```typescript
169172
import { S2 } from "@s2-dev/streamstore";
170173

docs/sdks/records/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Read records.
1717

1818
### Example Usage
1919

20+
<!-- UsageSnippet language="typescript" operationID="read" method="get" path="/streams/{stream}/records" -->
2021
```typescript
2122
import { S2 } from "@s2-dev/streamstore";
2223

@@ -101,6 +102,7 @@ Append records.
101102

102103
### Example Usage
103104

105+
<!-- UsageSnippet language="typescript" operationID="append" method="post" path="/streams/{stream}/records" -->
104106
```typescript
105107
import { S2 } from "@s2-dev/streamstore";
106108

@@ -192,6 +194,7 @@ Check the tail.
192194

193195
### Example Usage
194196

197+
<!-- UsageSnippet language="typescript" operationID="check_tail" method="get" path="/streams/{stream}/records/tail" -->
195198
```typescript
196199
import { S2 } from "@s2-dev/streamstore";
197200

docs/sdks/streams/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ List streams.
2020

2121
### Example Usage
2222

23+
<!-- UsageSnippet language="typescript" operationID="list_streams" method="get" path="/streams" -->
2324
```typescript
2425
import { S2 } from "@s2-dev/streamstore";
2526

@@ -98,6 +99,7 @@ Create a stream.
9899

99100
### Example Usage
100101

102+
<!-- UsageSnippet language="typescript" operationID="create_stream" method="post" path="/streams" -->
101103
```typescript
102104
import { S2 } from "@s2-dev/streamstore";
103105

@@ -178,6 +180,7 @@ Get stream configuration.
178180

179181
### Example Usage
180182

183+
<!-- UsageSnippet language="typescript" operationID="get_stream_config" method="get" path="/streams/{stream}" -->
181184
```typescript
182185
import { S2 } from "@s2-dev/streamstore";
183186

@@ -254,6 +257,7 @@ Create or reconfigure a stream.
254257

255258
### Example Usage
256259

260+
<!-- UsageSnippet language="typescript" operationID="create_or_reconfigure_stream" method="put" path="/streams/{stream}" -->
257261
```typescript
258262
import { S2 } from "@s2-dev/streamstore";
259263

@@ -330,6 +334,7 @@ Delete a stream.
330334

331335
### Example Usage
332336

337+
<!-- UsageSnippet language="typescript" operationID="delete_stream" method="delete" path="/streams/{stream}" -->
333338
```typescript
334339
import { S2 } from "@s2-dev/streamstore";
335340

@@ -406,6 +411,7 @@ Reconfigure a stream.
406411

407412
### Example Usage
408413

414+
<!-- UsageSnippet language="typescript" operationID="reconfigure_stream" method="patch" path="/streams/{stream}" -->
409415
```typescript
410416
import { S2 } from "@s2-dev/streamstore";
411417

examples/package-lock.json

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{
44
"name": "@s2-dev/streamstore",
5-
"version": "0.15.7",
5+
"version": "0.15.8",
66
"exports": {
77
".": "./src/index.ts",
88
"./models/errors": "./src/models/errors/index.ts",

0 commit comments

Comments
 (0)