Skip to content

Commit c6cbf8f

Browse files
Merge pull request #15 from prompt-foundry/release-please--branches--main--changes--next--components--typescript-sdk
release: 1.2.0
2 parents 7e43a7c + 68e1b43 commit c6cbf8f

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.0"
2+
".": "1.2.0"
33
}

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 21
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-b8126e888081f9b8e261a52a8a95ec441666f752df583f08d14a212c27de37eb.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-265943fe7b3601e5408bb1937caf6d9de132f59dae77150042441ff4896d9a73.yml

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.2.0 (2024-06-13)
4+
5+
Full Changelog: [v1.1.0...v1.2.0](https://github.com/prompt-foundry/typescript-sdk/compare/v1.1.0...v1.2.0)
6+
7+
### Features
8+
9+
* **api:** OpenAPI spec update via Stainless API ([#14](https://github.com/prompt-foundry/typescript-sdk/issues/14)) ([bb1386c](https://github.com/prompt-foundry/typescript-sdk/commit/bb1386ca504d4f530df6d2d02f2fd88eeab9fc3d))
10+
311
## 1.1.0 (2024-06-13)
412

513
Full Changelog: [v1.0.0...v1.1.0](https://github.com/prompt-foundry/typescript-sdk/compare/v1.0.0...v1.1.0)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prompt-foundry/typescript-sdk",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "The official TypeScript library for the Prompt Foundry API",
55
"author": "Prompt Foundry <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/prompts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export namespace ModelParameters {
252252

253253
description?: string;
254254

255-
parameters?: unknown;
255+
parameters?: Record<string, unknown>;
256256
}
257257
}
258258
}

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.1.0'; // x-release-please-version
1+
export const VERSION = '1.2.0'; // x-release-please-version

0 commit comments

Comments
 (0)