Skip to content

Commit

Permalink
release: 0.7.0 (#134)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
stainless-app[bot] authored Jul 10, 2024
1 parent 2c80b09 commit 7acb6dc
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.0"
".": "0.7.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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": "@valtown/sdk",
"version": "0.6.0",
"version": "0.7.0",
"description": "The official TypeScript library for the Val Town API",
"author": "Val Town <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions src/resources/alias/username/val-name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
10 changes: 10 additions & 0 deletions src/resources/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.6.0'; // x-release-please-version
export const VERSION = '0.7.0'; // x-release-please-version

0 comments on commit 7acb6dc

Please sign in to comment.