From 7acb6dc9a5a2292a3ada94540bb5812622f2980c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 10:31:50 -0400 Subject: [PATCH] release: 0.7.0 (#134) * Add the `url` property of val objects * release: 0.7.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- .stats.yml | 2 +- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- src/resources/alias/username/val-name.ts | 5 +++++ src/resources/shared.ts | 10 ++++++++++ src/version.ts | 2 +- 7 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bcd052280..e7ca6139d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.7.0" } diff --git a/.stats.yml b/.stats.yml index 27ab6c6b2..191757362 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 30 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/val-town%2Fval-town-998fea1dfee778c70b9752f2e4e9b7a27e6623d2ebe94d052fd8c13fd9cde2cc.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/val-town%2Fval-town-f3e8d96b13780fb1f9786e0feb27b5d247c5ba1cf578f05cd1cedf27830c7a25.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 46f08b14c..517f11446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.7.0 (2024-07-10) + +Full Changelog: [v0.6.0...v0.7.0](https://github.com/val-town/sdk/compare/v0.6.0...v0.7.0) + +### Features + +* **api:** OpenAPI spec update via Stainless API ([#136](https://github.com/val-town/sdk/issues/136)) ([8cafe95](https://github.com/val-town/sdk/commit/8cafe95f4646e690b587e3c9e9d130d80c84829f)) +* **api:** OpenAPI spec update via Stainless API ([#137](https://github.com/val-town/sdk/issues/137)) ([008133b](https://github.com/val-town/sdk/commit/008133b9ec01c087848c09429937c50c1894f4b0)) +* **api:** OpenAPI spec update via Stainless API ([#138](https://github.com/val-town/sdk/issues/138)) ([81a651b](https://github.com/val-town/sdk/commit/81a651be593d0b70daf716ad4b08e59ed5a69fa6)) +* **api:** OpenAPI spec update via Stainless API ([#139](https://github.com/val-town/sdk/issues/139)) ([b11f5e6](https://github.com/val-town/sdk/commit/b11f5e66825f6cd46d6128b665be62568f889f00)) + ## 0.6.0 (2024-07-09) Full Changelog: [v0.5.0...v0.6.0](https://github.com/val-town/sdk/compare/v0.5.0...v0.6.0) diff --git a/package.json b/package.json index b5816b025..c70ba4293 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@valtown/sdk", - "version": "0.6.0", + "version": "0.7.0", "description": "The official TypeScript library for the Val Town API", "author": "Val Town ", "types": "dist/index.d.ts", diff --git a/src/resources/alias/username/val-name.ts b/src/resources/alias/username/val-name.ts index 7c9d6f2ab..672c2cc4e 100644 --- a/src/resources/alias/username/val-name.ts +++ b/src/resources/alias/username/val-name.ts @@ -66,6 +66,11 @@ export interface ValNameRetrieveResponse { */ type: 'interval' | 'http' | 'express' | 'email' | 'script' | 'rpc'; + /** + * The URL of this val on the Val Town website + */ + url: string; + /** * The version of this val, starting at zero */ diff --git a/src/resources/shared.ts b/src/resources/shared.ts index b2ee0f58e..40910500c 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -45,6 +45,11 @@ export interface BasicVal { */ type: 'interval' | 'http' | 'express' | 'email' | 'script' | 'rpc'; + /** + * The URL of this val on the Val Town website + */ + url: string; + /** * The version of this val, starting at zero */ @@ -111,6 +116,11 @@ export interface ExtendedVal { */ type: 'interval' | 'http' | 'express' | 'email' | 'script' | 'rpc'; + /** + * The URL of this val on the Val Town website + */ + url: string; + /** * The version of this val, starting at zero */ diff --git a/src/version.ts b/src/version.ts index 30c28175a..d9da9f72f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.6.0'; // x-release-please-version +export const VERSION = '0.7.0'; // x-release-please-version