Skip to content

Commit 5fe15bd

Browse files
authored
Merge pull request #513 from val-town/release-please--branches--main--changes--next--components--sdk
release: 0.32.0
2 parents 6f80c84 + 87b8dd8 commit 5fe15bd

File tree

18 files changed

+219
-31
lines changed

18 files changed

+219
-31
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.31.0"
2+
".": "0.32.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
configured_endpoints: 35
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/val-town%2Fval-town-96c5c8e7372c1cfedb047e16fe48ce6cbf1a5c1ce242931b9347306942cc765c.yml
1+
configured_endpoints: 37
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/val-town%2Fval-town-d84dfa83575ab69d557d177944a1fa6146ad9fdd6fc555f6bb352a48f6a1daa0.yml

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.32.0 (2025-03-03)
4+
5+
Full Changelog: [v0.31.0...v0.32.0](https://github.com/val-town/sdk/compare/v0.31.0...v0.32.0)
6+
7+
### Features
8+
9+
* **api:** api update ([#514](https://github.com/val-town/sdk/issues/514)) ([6c7c72e](https://github.com/val-town/sdk/commit/6c7c72e497dc8aa97a063d184e13fe231fbe5f37))
10+
11+
12+
### Documentation
13+
14+
* update URLs from stainlessapi.com to stainless.com ([#512](https://github.com/val-town/sdk/issues/512)) ([11d8163](https://github.com/val-town/sdk/commit/11d8163ca8152102368f97e6c6d13fca98ca44b7))
15+
316
## 0.31.0 (2025-02-25)
417

518
Full Changelog: [v0.30.0...v0.31.0](https://github.com/val-town/sdk/compare/v0.30.0...v0.31.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This library provides convenient access to the Val Town REST API from server-sid
66

77
The REST API documentation can be found on [docs.val.town](https://docs.val.town). The full API of this library can be found in [api.md](api.md).
88

9-
It is generated with [Stainless](https://www.stainlessapi.com/).
9+
It is generated with [Stainless](https://www.stainless.com/).
1010

1111
## Installation
1212

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## Reporting Security Issues
44

5-
This SDK is generated by [Stainless Software Inc](http://stainlessapi.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.
5+
This SDK is generated by [Stainless Software Inc](http://stainless.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.
66

7-
To report a security issue, please contact the Stainless team at security@stainlessapi.com.
7+
To report a security issue, please contact the Stainless team at security@stainless.com.
88

99
## Responsible Disclosure
1010

api.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,23 +170,27 @@ Methods:
170170

171171
Types:
172172

173+
- <code><a href="./src/resources/projects/projects.ts">ProjectCreateResponse</a></code>
173174
- <code><a href="./src/resources/projects/projects.ts">ProjectRetrieveResponse</a></code>
174175
- <code><a href="./src/resources/projects/projects.ts">ProjectListResponse</a></code>
175176

176177
Methods:
177178

179+
- <code title="post /v1/projects">client.projects.<a href="./src/resources/projects/projects.ts">create</a>({ ...params }) -> ProjectCreateResponse</code>
178180
- <code title="get /v1/projects/{project_id}">client.projects.<a href="./src/resources/projects/projects.ts">retrieve</a>(projectId) -> ProjectRetrieveResponse</code>
179181
- <code title="get /v1/projects">client.projects.<a href="./src/resources/projects/projects.ts">list</a>({ ...params }) -> ProjectListResponsesPageCursorURL</code>
180182

181183
## Branches
182184

183185
Types:
184186

187+
- <code><a href="./src/resources/projects/branches.ts">BranchCreateResponse</a></code>
185188
- <code><a href="./src/resources/projects/branches.ts">BranchRetrieveResponse</a></code>
186189
- <code><a href="./src/resources/projects/branches.ts">BranchListResponse</a></code>
187190

188191
Methods:
189192

193+
- <code title="post /v1/projects/{project_id}/branches">client.projects.branches.<a href="./src/resources/projects/branches.ts">create</a>(projectId, { ...params }) -> BranchCreateResponse</code>
190194
- <code title="get /v1/projects/{project_id}/branches/{branch_id}">client.projects.branches.<a href="./src/resources/projects/branches.ts">retrieve</a>(projectId, branchId) -> BranchRetrieveResponse</code>
191195
- <code title="get /v1/projects/{project_id}/branches">client.projects.branches.<a href="./src/resources/projects/branches.ts">list</a>(projectId, { ...params }) -> BranchListResponsesPageCursorURL</code>
192196

@@ -196,10 +200,9 @@ Types:
196200

197201
- <code><a href="./src/resources/projects/files.ts">FileRetrieveResponse</a></code>
198202
- <code><a href="./src/resources/projects/files.ts">FileListResponse</a></code>
199-
- <code><a href="./src/resources/projects/files.ts">FileContentResponse</a></code>
200203

201204
Methods:
202205

203206
- <code title="get /v1/projects/{project_id}/files/{path}">client.projects.files.<a href="./src/resources/projects/files.ts">retrieve</a>(projectId, path, { ...params }) -> FileRetrieveResponse</code>
204207
- <code title="get /v1/projects/{project_id}/files">client.projects.files.<a href="./src/resources/projects/files.ts">list</a>(projectId, { ...params }) -> FileListResponsesPageCursorURL</code>
205-
- <code title="get /v1/projects/{project_id}/files/{path}/content">client.projects.files.<a href="./src/resources/projects/files.ts">content</a>(projectId, path, { ...params }) -> unknown</code>
208+
- <code title="get /v1/projects/{project_id}/files/{path}/content">client.projects.files.<a href="./src/resources/projects/files.ts">content</a>(projectId, path, { ...params }) -> Response</code>

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@valtown/sdk",
3-
"version": "0.31.0",
3+
"version": "0.32.0",
44
"exports": "./index.ts",
55
"publish": {
66
"exclude": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@valtown/sdk",
3-
"version": "0.31.0",
3+
"version": "0.32.0",
44
"description": "The official TypeScript library for the Val Town API",
55
"author": "Val Town <support@val.town>",
66
"types": "dist/index.d.ts",

src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import { Sqlite, SqliteBatchParams, SqliteBatchResponse, SqliteExecuteParams } f
1313
import { Alias } from './resources/alias/alias';
1414
import { Me } from './resources/me/me';
1515
import {
16+
ProjectCreateParams,
17+
ProjectCreateResponse,
1618
ProjectListParams,
1719
ProjectListResponse,
1820
ProjectListResponsesPageCursorURL,
@@ -272,9 +274,11 @@ export declare namespace ValTown {
272274

273275
export {
274276
Projects as Projects,
277+
type ProjectCreateResponse as ProjectCreateResponse,
275278
type ProjectRetrieveResponse as ProjectRetrieveResponse,
276279
type ProjectListResponse as ProjectListResponse,
277280
ProjectListResponsesPageCursorURL as ProjectListResponsesPageCursorURL,
281+
type ProjectCreateParams as ProjectCreateParams,
278282
type ProjectListParams as ProjectListParams,
279283
};
280284

src/resources/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ export { Me } from './me/me';
88
export {
99
ProjectListResponsesPageCursorURL,
1010
Projects,
11+
type ProjectCreateResponse,
1112
type ProjectRetrieveResponse,
1213
type ProjectListResponse,
14+
type ProjectCreateParams,
1315
type ProjectListParams,
1416
} from './projects/projects';
1517
export { Search } from './search/search';

0 commit comments

Comments
 (0)