Skip to content

Commit e58dc40

Browse files
committed
v2.0.0
1 parent f7335e5 commit e58dc40

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

MIGRATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ incrementally without breaking your existing codebase. To do this, you can
844844
install the new SDK with an alias:
845845

846846
```bash
847-
npm install @pipedream/sdk-v2@npm:@pipedream/sdk@^2.0.0-rc.16 --save
847+
npm install @pipedream/sdk-v2@npm:@pipedream/sdk@^2.0.0 --save
848848
```
849849

850850
Then, in your code, you can import the new SDK with the alias:

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/sdk",
3-
"version": "2.0.0-rc.16",
3+
"version": "2.0.0",
44
"private": false,
55
"repository": "github:PipedreamHQ/pipedream-sdk-typescript",
66
"type": "commonjs",
@@ -80,17 +80,17 @@
8080
"test:wire": "jest --selectProjects wire"
8181
},
8282
"devDependencies": {
83-
"webpack": "^5.97.1",
84-
"ts-loader": "^9.5.1",
85-
"jest": "^29.7.0",
8683
"@jest/globals": "^29.7.0",
8784
"@types/jest": "^29.5.14",
88-
"ts-jest": "^29.3.4",
85+
"@types/node": "^18.19.70",
86+
"jest": "^29.7.0",
8987
"jest-environment-jsdom": "^29.7.0",
9088
"msw": "^2.8.4",
91-
"@types/node": "^18.19.70",
9289
"prettier": "^3.4.2",
93-
"typescript": "~5.7.2"
90+
"ts-jest": "^29.3.4",
91+
"ts-loader": "^9.5.1",
92+
"typescript": "~5.7.2",
93+
"webpack": "^5.97.1"
9494
},
9595
"browser": {
9696
"fs": false,

src/Client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ export class PipedreamClient {
7474
"x-pd-environment": _options?.projectEnvironment,
7575
"X-Fern-Language": "JavaScript",
7676
"X-Fern-SDK-Name": "@pipedream/sdk",
77-
"X-Fern-SDK-Version": "2.0.0-rc.16",
78-
"User-Agent": "@pipedream/sdk/2.0.0-rc.16",
77+
"X-Fern-SDK-Version": "2.0.0",
78+
"User-Agent": "@pipedream/sdk/2.0.0",
7979
"X-Fern-Runtime": core.RUNTIME.type,
8080
"X-Fern-Runtime-Version": core.RUNTIME.version,
8181
},

0 commit comments

Comments
 (0)