Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 0.1.0
speakeasyVersion: 1.546.1
generationVersion: 2.604.2
releaseVersion: 0.2.0
configChecksum: 28a55161b5a19f814b88cf036115c4c3
releaseVersion: 0.2.1
configChecksum: f7620bedecfe0806bd0d6319356aa63f
repoURL: https://github.com/iris-networks/iris-sdk.git
installationURL: https://github.com/iris-networks/iris-sdk
features:
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: true
typescript:
version: 0.2.0
version: 0.2.1
additionalDependencies:
dependencies: {}
devDependencies: {}
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ speakeasyVersion: 1.546.1
sources:
Zenobia Intelligent Automation Platform API:
sourceNamespace: zenobia-intelligent-automation-platform-api
sourceRevisionDigest: sha256:a716ef645e12e8678451838b852796074878d658a25f745645679b39abdc45a8
sourceRevisionDigest: sha256:a15d5da61636ad8a483d17cd642ec2f118a0dfe06cf0fffc513162d3cbc5867e
sourceBlobDigest: sha256:0c8d7bd4c35bf5b9ffa4817986135614df2bde763eaece2e154c49865c8ef6c5
tags:
- latest
- speakeasy-sdk-regen-1747494410
- speakeasy-sdk-regen-1747505453
- 0.1.0
targets:
iris-sdk:
source: Zenobia Intelligent Automation Platform API
sourceNamespace: zenobia-intelligent-automation-platform-api
sourceRevisionDigest: sha256:a716ef645e12e8678451838b852796074878d658a25f745645679b39abdc45a8
sourceRevisionDigest: sha256:a15d5da61636ad8a483d17cd642ec2f118a0dfe06cf0fffc513162d3cbc5867e
sourceBlobDigest: sha256:0c8d7bd4c35bf5b9ffa4817986135614df2bde763eaece2e154c49865c8ef6c5
codeSamplesNamespace: zenobia-intelligent-automation-platform-api-typescript-code-samples
codeSamplesRevisionDigest: sha256:745785aacd3078db943a908cc5dfac663552848be782b4e1486a0008e3d8c671
codeSamplesRevisionDigest: sha256:9ce126259d3c32437284a0100c9f9c3a8bdfcd54a630d6642b752ccaa7f356ba
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,12 @@ Based on:
- OpenAPI Doc
- Speakeasy CLI 1.546.1 (2.604.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.2.0] .
- [typescript v0.2.0] .

## 2025-05-17 18:10:38
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.546.1 (2.604.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.2.1] .
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
"name": "iris-sdk",
"version": "0.2.0",
"version": "0.2.1",
"exports": {
".": "./src/index.ts",
"./models/errors": "./src/models/errors/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iris-sdk",
"version": "0.2.0",
"version": "0.2.1",
"author": "Speakeasy",
"bin": {
"mcp": "bin/mcp-server.js"
Expand Down
4 changes: 2 additions & 2 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
export const SDK_METADATA = {
language: "typescript",
openapiDocVersion: "0.1.0",
sdkVersion: "0.2.0",
sdkVersion: "0.2.1",
genVersion: "2.604.2",
userAgent: "speakeasy-sdk/typescript 0.2.0 2.604.2 0.1.0 iris-sdk",
userAgent: "speakeasy-sdk/typescript 0.2.1 2.604.2 0.1.0 iris-sdk",
} as const;
2 changes: 1 addition & 1 deletion src/mcp-server/mcp-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const routes = buildRouteMap({
export const app = buildApplication(routes, {
name: "mcp",
versionInfo: {
currentVersion: "0.2.0",
currentVersion: "0.2.1",
},
});

Expand Down
2 changes: 1 addition & 1 deletion src/mcp-server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function createMCPServer(deps: {
}) {
const server = new McpServer({
name: "IrisSDK",
version: "0.2.0",
version: "0.2.1",
});

const client = new IrisSDKCore({
Expand Down