Skip to content
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

chore: 🐝 Update SDK - Generate 1.1.0 #10

Merged
merged 1 commit into from
Dec 5, 2024
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.0.1
speakeasyVersion: 1.445.2
generationVersion: 2.461.4
releaseVersion: 1.0.0-canary.10
configChecksum: 688676bb26c1c9cd889e692f8d92a6cc
releaseVersion: 1.1.0
configChecksum: d9d849fc66fb8a1e0c64d6d636db14c7
repoURL: https://github.com/vercel/sdk.git
installationURL: https://github.com/vercel/sdk
published: true
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
typescript:
version: 1.0.0-canary.10
version: 1.1.0
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.445.2
sources:
vercel-OAS:
sourceNamespace: vercel-oas
sourceRevisionDigest: sha256:26995a742c7cae6c7ffe91c27f09fc3ddde4a34f9846917b2cf7fc2bb2be9b5a
sourceRevisionDigest: sha256:3c1e85cab336c0235a040fd11e8ab4d2b9c08476bf8d72a7e3a015be87feca9a
sourceBlobDigest: sha256:46f762ba4155cb91aa2073e556643914a6812716da541f1f35581e3a0647e4bf
tags:
- latest
- speakeasy-sdk-regen-1733417978
- speakeasy-sdk-regen-1733427270
- 0.0.1
targets:
vercel:
source: vercel-OAS
sourceNamespace: vercel-oas
sourceRevisionDigest: sha256:26995a742c7cae6c7ffe91c27f09fc3ddde4a34f9846917b2cf7fc2bb2be9b5a
sourceRevisionDigest: sha256:3c1e85cab336c0235a040fd11e8ab4d2b9c08476bf8d72a7e3a015be87feca9a
sourceBlobDigest: sha256:46f762ba4155cb91aa2073e556643914a6812716da541f1f35581e3a0647e4bf
codeSamplesNamespace: vercel-oas-typescript-code-samples
codeSamplesRevisionDigest: sha256:5d9d968b302777407d72df0e620297774babd2750ea781a1799c6ddbed8db3d7
codeSamplesRevisionDigest: sha256:0d896b6ff46b215e21e7920c6467936bb0280fa8c8887376d1411cfbc9fb8253
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,14 @@ Based on:
### Generated
- [typescript v1.0.0-canary.10] .
### Releases
- [NPM v1.0.0-canary.10] https://www.npmjs.com/package/@vercel/sdk/v/1.0.0-canary.10 - .
- [NPM v1.0.0-canary.10] https://www.npmjs.com/package/@vercel/sdk/v/1.0.0-canary.10 - .

## 2024-12-05 19:48:36
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.445.2 (2.461.4) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v1.1.0] .
### Releases
- [NPM v1.1.0] https://www.npmjs.com/package/@vercel/sdk/v/1.1.0 - .
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": "@vercel/sdk",
"version": "1.0.0-canary.10",
"version": "1.1.0",
"exports": {
".": "./src/index.ts",
"./models/errors": "./src/models/errors/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vercel/sdk",
"version": "1.0.0-canary.10",
"version": "1.1.0",
"author": "Speakeasy",
"type": "module",
"main": "./esm/index.js",
Expand Down
5 changes: 2 additions & 3 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
export const SDK_METADATA = {
language: "typescript",
openapiDocVersion: "0.0.1",
sdkVersion: "1.0.0-canary.10",
sdkVersion: "1.1.0",
genVersion: "2.461.4",
userAgent:
"speakeasy-sdk/typescript 1.0.0-canary.10 2.461.4 0.0.1 @vercel/sdk",
userAgent: "speakeasy-sdk/typescript 1.1.0 2.461.4 0.0.1 @vercel/sdk",
} as const;