@anthropic-ai/sdk
Advanced tools
Comparing version 0.12.2 to 0.12.3
# Changelog | ||
## 0.12.3 (2024-01-19) | ||
Full Changelog: [v0.12.2...v0.12.3](https://github.com/anthropics/anthropic-sdk-typescript/compare/v0.12.2...v0.12.3) | ||
### Bug Fixes | ||
* allow body type in RequestOptions to be null ([#259](https://github.com/anthropics/anthropic-sdk-typescript/issues/259)) ([2f98de1](https://github.com/anthropics/anthropic-sdk-typescript/commit/2f98de1a42568b1242ce313ba046febb1c6625b5)) | ||
## 0.12.2 (2024-01-18) | ||
@@ -4,0 +12,0 @@ |
@@ -185,3 +185,3 @@ | ||
query?: Req | undefined; | ||
body?: Req | undefined; | ||
body?: Req | null | undefined; | ||
headers?: Headers | undefined; | ||
@@ -188,0 +188,0 @@ maxRetries?: number; |
{ | ||
"name": "@anthropic-ai/sdk", | ||
"version": "0.12.2", | ||
"version": "0.12.3", | ||
"description": "The official TypeScript library for the Anthropic API", | ||
@@ -5,0 +5,0 @@ "author": "Anthropic <support@anthropic.com>", |
@@ -728,3 +728,3 @@ import { VERSION } from './version'; | ||
query?: Req | undefined; | ||
body?: Req | undefined; | ||
body?: Req | null | undefined; | ||
headers?: Headers | undefined; | ||
@@ -731,0 +731,0 @@ |
@@ -1,1 +0,1 @@ | ||
export const VERSION = '0.12.2'; // x-release-please-version | ||
export const VERSION = '0.12.3'; // x-release-please-version |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "0.12.2"; | ||
export declare const VERSION = "0.12.3"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.VERSION = void 0; | ||
exports.VERSION = '0.12.2'; // x-release-please-version | ||
exports.VERSION = '0.12.3'; // x-release-please-version | ||
//# sourceMappingURL=version.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
650806