Skip to content

chore: 🐝 Update SDK - Generate 0.12.0 #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 2, 2025
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.DS_Store
**/.speakeasy/temp/
**/.speakeasy/logs/
.DS_Store
/mcp-server
/bin
/.eslintcache
Expand Down
2,566 changes: 1,294 additions & 1,272 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@ generation:
maintainOpenAPIOrder: true
usageSnippets:
optionalPropertyRendering: withExample
sdkInitStyle: constructor
useClassNamesForArrayFields: true
fixes:
nameResolutionDec2023: true
nameResolutionFeb2025: false
parameterOrderingFeb2024: true
requestResponseComponentNamesFeb2024: true
securityFeb2025: false
sharedErrorComponentsApr2025: false
auth:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
typescript:
version: 0.11.0
version: 0.12.0
additionalDependencies:
dependencies:
json-canonicalize: ^1.0.6
Expand Down
16 changes: 8 additions & 8 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
speakeasyVersion: 1.510.0
speakeasyVersion: 1.554.1
sources:
AvaCloudSDK-OAS:
sourceNamespace: avacloud-sdk-oas
sourceRevisionDigest: sha256:2a3c293145d6bfa24d4ba4e8b2399fd6e3ba3b70c7d2f6736bf988b95655ccfc
sourceBlobDigest: sha256:77127799f3b29a3f646e4aff116d50cc8d6f3e0cef105d0b2a9adb0a659f1c21
sourceRevisionDigest: sha256:50aa86a26bcfc7b8e7639e889a6000d9d6ebf1337cd8a87a30039c17544d3bf0
sourceBlobDigest: sha256:46ea12e8708a5d254d41034432ee7b7f1985478cc9de3ddcfe6f6f3046f93b25
tags:
- latest
- speakeasy-sdk-regen-1740702183
- Beta
- speakeasy-sdk-regen-1741825433
- 1.0.0
AvalancheSDK-OAS:
sourceNamespace: avalanche-sdk-oas
sourceRevisionDigest: sha256:5a1e07e4561e10de09495e4808d129b671b42547b2864d1828b477aadfcb21ae
Expand All @@ -19,10 +19,10 @@ targets:
avacloud-sdk:
source: AvaCloudSDK-OAS
sourceNamespace: avacloud-sdk-oas
sourceRevisionDigest: sha256:2a3c293145d6bfa24d4ba4e8b2399fd6e3ba3b70c7d2f6736bf988b95655ccfc
sourceBlobDigest: sha256:77127799f3b29a3f646e4aff116d50cc8d6f3e0cef105d0b2a9adb0a659f1c21
sourceRevisionDigest: sha256:50aa86a26bcfc7b8e7639e889a6000d9d6ebf1337cd8a87a30039c17544d3bf0
sourceBlobDigest: sha256:46ea12e8708a5d254d41034432ee7b7f1985478cc9de3ddcfe6f6f3046f93b25
codeSamplesNamespace: avacloud-sdk-ts-code-samples
codeSamplesRevisionDigest: sha256:ed4729226eec57d8a06ade432165f88246cbb6ae6b4647bcea35f1fe519da2c7
codeSamplesRevisionDigest: sha256:62a1b63a7e614c17700f4a178f66a8fd1c6b5c929a445409e113a9c9fd530fae
avalanche-sdk:
source: AvalancheSDK-OAS
sourceNamespace: avalanche-sdk-oas
Expand Down
4 changes: 2 additions & 2 deletions FUNCTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ specific category of applications.

```typescript
import { AvaCloudSDKCore } from "@avalabs/avacloud-sdk/core.js";
import { metricsHealthCheckMetricsHealthCheck } from "@avalabs/avacloud-sdk/funcs/metricsHealthCheckMetricsHealthCheck.js";
import { metricsHealthCheck } from "@avalabs/avacloud-sdk/funcs/metricsHealthCheck.js";
import { SDKValidationError } from "@avalabs/avacloud-sdk/models/errors/sdkvalidationerror.js";

// Use `AvaCloudSDKCore` for best tree-shaking performance.
Expand All @@ -32,7 +32,7 @@ const avaCloudSDK = new AvaCloudSDKCore({
});

async function run() {
const res = await metricsHealthCheckMetricsHealthCheck(avaCloudSDK);
const res = await metricsHealthCheck(avaCloudSDK);

switch (true) {
case res.ok:
Expand Down
Loading