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

Commit 9f7f8d0

Browse files
fixes
1 parent f8b777e commit 9f7f8d0

File tree

12 files changed

+26
-25
lines changed

12 files changed

+26
-25
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 2d20490e-9921-47d5-9711-d3c4b91c8cfa
33
management:
44
docChecksum: 7c839b3c9b2925069b31d7192dfc6c2e
55
docVersion: 1.0.0
6-
speakeasyVersion: 1.513.6
7-
generationVersion: 2.545.7
8-
releaseVersion: 0.7.1
9-
configChecksum: d980fedbf4ceeb4e1e8d46a5bcb868ee
6+
speakeasyVersion: 1.514.0
7+
generationVersion: 2.546.0
8+
releaseVersion: 0.7.4
9+
configChecksum: 2e4c44873d1b680e5854c3cead32b6fa
1010
repoURL: https://github.com/s2-streamstore/s2-sdk-typescript.git
1111
installationURL: https://github.com/s2-streamstore/s2-sdk-typescript
1212
published: true

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2ClientCredentialsEnabled: true
1919
oAuth2PasswordEnabled: true
2020
typescript:
21-
version: 0.7.1
21+
version: 0.7.4
2222
additionalDependencies:
2323
dependencies:
2424
uuid: ^9.0.1

.speakeasy/workflow.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
speakeasyVersion: 1.513.6
1+
speakeasyVersion: 1.514.0
22
sources:
33
S2 API:
44
sourceNamespace: s-2-api
5-
sourceRevisionDigest: sha256:fd4f20fe4d2c3a9306f7c3ed5cade5e4237db4b2e3eb51508e8047af3d9a252b
5+
sourceRevisionDigest: sha256:933472b61b7282ae9a147a5ff9f7447e1db913229128292e2f92288472f43d81
66
sourceBlobDigest: sha256:cc4df25935d2e51786a891356ba89a60ef6b781e6f4ec209937763357ff98bb8
77
tags:
88
- latest
@@ -11,10 +11,10 @@ targets:
1111
streamstore:
1212
source: S2 API
1313
sourceNamespace: s-2-api
14-
sourceRevisionDigest: sha256:fd4f20fe4d2c3a9306f7c3ed5cade5e4237db4b2e3eb51508e8047af3d9a252b
14+
sourceRevisionDigest: sha256:933472b61b7282ae9a147a5ff9f7447e1db913229128292e2f92288472f43d81
1515
sourceBlobDigest: sha256:cc4df25935d2e51786a891356ba89a60ef6b781e6f4ec209937763357ff98bb8
1616
codeSamplesNamespace: s-2-api-typescript-code-samples
17-
codeSamplesRevisionDigest: sha256:2e5fdfcabe5fcea1dc9fb2c26f0efc76842267ced5870252deaf11d9c890a695
17+
codeSamplesRevisionDigest: sha256:fabfa0a508d6a256f94ec4fe5c36308a120b924ace6d3627fc112dfa86fdb4c6
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest

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.7.1",
5+
"version": "0.7.4",
66
"exports": {
77
".": "./src/index.ts",
88
"./models/errors": "./src/models/errors/index.ts",

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@s2-dev/streamstore",
3-
"version": "0.7.1",
3+
"version": "0.7.4",
44
"author": "Speakeasy",
55
"type": "module",
66
"bin": {

src/hooks/compression.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { RequestInput } from "../lib/http";
2-
import { BeforeCreateRequestContext, BeforeCreateRequestHook } from "./types";
1+
import { RequestInput } from "../lib/http.js";
2+
import { BeforeCreateRequestContext, BeforeCreateRequestHook } from "./types.js";
33

44
export class CompressionHook implements BeforeCreateRequestHook {
55
beforeCreateRequest(_hookCtx: BeforeCreateRequestContext, input: RequestInput): RequestInput {

src/index.extras.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class S2Account {
190190
);
191191
}
192192

193-
async createBasin(basin: string, request?: CreateBasinRequest, opConfig?: S2OperationConfig): Promise<BasinInfo | undefined> {
193+
async createBasin(basin: string, request?: CreateBasinRequest, opConfig?: S2OperationConfig): Promise<BasinInfo> {
194194
this.overrideConfig(opConfig);
195195
const _request: CreateBasinRequestInner = {
196196
basin,
@@ -218,7 +218,7 @@ class S2Account {
218218
return;
219219
}
220220

221-
async reconfigureBasin(basin: string, config: BasinConfig, opConfig?: S2OperationConfig): Promise<BasinConfig | undefined> {
221+
async reconfigureBasin(basin: string, config: BasinConfig, opConfig?: S2OperationConfig): Promise<BasinConfig> {
222222
this.overrideConfig(opConfig);
223223
const _request: ReconfigureBasinRequest = { basin, basinConfig: config };
224224
return retryWithExponentialBackoff(
@@ -289,7 +289,7 @@ class S2Basin {
289289
async getStreamConfig(
290290
stream: string,
291291
opConfig?: S2OperationConfig
292-
): Promise<StreamConfig | undefined> {
292+
): Promise<StreamConfig> {
293293
this.overrideConfig(opConfig);
294294
return retryWithExponentialBackoff(
295295
() => this._basin.getStreamConfig({ stream }, { serverURL: this.URL }),
@@ -299,7 +299,7 @@ class S2Basin {
299299
);
300300
}
301301

302-
async createStream(stream: string, request?: CreateStreamRequest, opConfig?: S2OperationConfig): Promise<StreamInfo | undefined> {
302+
async createStream(stream: string, request?: CreateStreamRequest, opConfig?: S2OperationConfig): Promise<StreamInfo> {
303303
this.overrideConfig(opConfig);
304304
const _request: CreateStreamRequestInner = {
305305
stream,
@@ -314,7 +314,7 @@ class S2Basin {
314314
);
315315
}
316316

317-
async deleteStream(stream: string, if_exists?: boolean, opConfig?: S2OperationConfig): Promise<void | undefined> {
317+
async deleteStream(stream: string, if_exists?: boolean, opConfig?: S2OperationConfig): Promise<void> {
318318
this.overrideConfig(opConfig);
319319
const response = await retryWithExponentialBackoff(
320320
() => basinDeleteStream(this._basin, { stream }, { serverURL: this.URL }),

src/lib/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
5454
export const SDK_METADATA = {
5555
language: "typescript",
5656
openapiDocVersion: "1.0.0",
57-
sdkVersion: "0.7.1",
58-
genVersion: "2.545.7",
59-
userAgent: "speakeasy-sdk/typescript 0.7.1 2.545.7 1.0.0 @s2-dev/streamstore",
57+
sdkVersion: "0.7.4",
58+
genVersion: "2.546.0",
59+
userAgent: "speakeasy-sdk/typescript 0.7.4 2.546.0 1.0.0 @s2-dev/streamstore",
6060
} as const;

src/mcp-server/mcp-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
1919
export const app = buildApplication(routes, {
2020
name: "mcp",
2121
versionInfo: {
22-
currentVersion: "0.7.1",
22+
currentVersion: "0.7.4",
2323
},
2424
});
2525

0 commit comments

Comments
 (0)