Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"cliVersion": "0.113.1",
"cliVersion": "3.35.0",
"generatorName": "fernapi/fern-typescript-sdk",
"generatorVersion": "3.28.6"
"generatorVersion": "3.28.11",
"generatorConfig": {
"noSerdeLayer": false
}
}
1 change: 1 addition & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# Specify files that shouldn't be modified by Fern
changelog.md
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ import { FernAutopilotTestApiClient } from "";
const client = new FernAutopilotTestApiClient({ environment: "YOUR_BASE_URL" });
await client.imdb.createMovie({
title: "title",
rating: 1.1
rating: 1.1,
moreMetadata: 1,
rank: 1
});
```

Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 2.0.1 - 2026-01-29
* SDK regeneration
* Unable to analyze changes with AI, incrementing PATCH version.

14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "",
"version": "2.0.0",
"version": "2.0.1",
"private": false,
"repository": "github:fern-demo/autopilot-typescript-sdk",
"type": "commonjs",
Expand All @@ -20,6 +20,18 @@
},
"default": "./dist/cjs/index.js"
},
"./serialization": {
"types": "./dist/cjs/serialization/index.d.ts",
"import": {
"types": "./dist/esm/serialization/index.d.mts",
"default": "./dist/esm/serialization/index.mjs"
},
"require": {
"types": "./dist/cjs/serialization/index.d.ts",
"default": "./dist/cjs/serialization/index.js"
},
"default": "./dist/cjs/serialization/index.js"
},
"./package.json": "./package.json"
},
"files": [
Expand Down
Loading