Skip to content

Commit a8935c4

Browse files
authored
chore: Try a user created PR (#30)
1 parent b4859f0 commit a8935c4

File tree

9 files changed

+15
-16
lines changed

9 files changed

+15
-16
lines changed

.speakeasy/gen.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ management:
55
docVersion: 1.0.0
66
speakeasyVersion: 1.540.0
77
generationVersion: 2.593.3
8-
releaseVersion: 0.18.12
9-
configChecksum: c5caa8959d5f9e76915ebf54a74093af
8+
releaseVersion: 0.18.13
9+
configChecksum: 4b0ccf81e018d76cfaec19dbc161b31f
1010
repoURL: https://github.com/gr4vy/gr4vy-typescript.git
1111
installationURL: https://github.com/gr4vy/gr4vy-typescript
1212
published: true

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ generation:
1515
oAuth2ClientCredentialsEnabled: false
1616
oAuth2PasswordEnabled: false
1717
typescript:
18-
version: 0.18.12
18+
version: 0.18.13
1919
additionalDependencies:
2020
dependencies:
2121
'@trust/keyto': ^1.0.1

.speakeasy/workflow.lock

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ speakeasyVersion: 1.540.0
22
sources:
33
openapi:
44
sourceNamespace: openapi
5-
sourceRevisionDigest: sha256:d117723e704b71d0702e81107452fb381acbcded820474ec85d625acc724af2d
5+
sourceRevisionDigest: sha256:8546813d866e4537be4cb9ef975adb58ca253bc7bed82723b32d29886575dfaa
66
sourceBlobDigest: sha256:738837f673740d6b7fd3e609df560984c9ec546f8e732d0d82a94b2afb17bb08
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1745703176
109
- 1.0.0
1110
targets:
1211
first-target:
@@ -17,10 +16,10 @@ targets:
1716
typescript:
1817
source: openapi
1918
sourceNamespace: openapi
20-
sourceRevisionDigest: sha256:d117723e704b71d0702e81107452fb381acbcded820474ec85d625acc724af2d
19+
sourceRevisionDigest: sha256:8546813d866e4537be4cb9ef975adb58ca253bc7bed82723b32d29886575dfaa
2120
sourceBlobDigest: sha256:738837f673740d6b7fd3e609df560984c9ec546f8e732d0d82a94b2afb17bb08
2221
codeSamplesNamespace: openapi-typescript-code-samples
23-
codeSamplesRevisionDigest: sha256:74a918f110a261f8b8e286b942c0fceb525e27589c259e7e54dbc13c5054b7a0
22+
codeSamplesRevisionDigest: sha256:3c67cea9ded9181bcb7a73a37827b7ee756f90bde28250ff0c7b24415380cc1b
2423
workflow:
2524
workflowVersion: 1.0.0
2625
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": "@gr4vy/sdk",
5-
"version": "0.18.12",
5+
"version": "0.18.13",
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": "@gr4vy/sdk",
3-
"version": "0.18.12",
3+
"version": "0.18.13",
44
"author": "Gr4vy",
55
"bin": {
66
"mcp": "bin/mcp-server.js"

src/lib/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const ServerSandbox = "sandbox";
1313
* Contains the list of servers available to the SDK
1414
*/
1515
export const ServerList = {
16-
[ServerProduction]: "https://api.example.gr4vy.app",
16+
[ServerProduction]: "https://api.{id}.gr4vy.app",
1717
[ServerSandbox]: "https://api.sandbox.{id}.gr4vy.app",
1818
} as const;
1919

@@ -73,7 +73,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
7373
export const SDK_METADATA = {
7474
language: "typescript",
7575
openapiDocVersion: "1.0.0",
76-
sdkVersion: "0.18.12",
76+
sdkVersion: "0.18.13",
7777
genVersion: "2.593.3",
78-
userAgent: "speakeasy-sdk/typescript 0.18.12 2.593.3 1.0.0 @gr4vy/sdk",
78+
userAgent: "speakeasy-sdk/typescript 0.18.13 2.593.3 1.0.0 @gr4vy/sdk",
7979
} 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.18.12",
22+
currentVersion: "0.18.13",
2323
},
2424
});
2525

src/mcp-server/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function createMCPServer(deps: {
8989
}) {
9090
const server = new McpServer({
9191
name: "Gr4vy",
92-
version: "0.18.12",
92+
version: "0.18.13",
9393
});
9494

9595
const client = new Gr4vyCore({

0 commit comments

Comments
 (0)