Skip to content

Commit f65842f

Browse files
committed
Update version & ts-ignore
1 parent cfbfebf commit f65842f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
},
2525
"scripts": {
2626
"lint-fix": "eslint . --ext .ts",
27-
"bump": "lerna version --no-git-tag-version --no-push"
27+
"bump": "lerna version --no-git-tag-version --no-push",
28+
"build": "lerna run build",
29+
"test": "lerna run test"
2830
},
2931
"engines": {
3032
"node": ">=16.8.0",
3133
"npm": ">=8"
3234
}
33-
}
35+
}

packages/sdk-node/src/Clerk.ts

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export default class Clerk extends ClerkBackendAPI {
9090
'Content-Type': contentType,
9191
'User-Agent': userAgent,
9292
},
93+
// @ts-ignore
9394
...(body && { body: querystring.stringify(body) }),
9495
});
9596
};

packages/sdk-node/src/info.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
3-
export const LIB_VERSION="2.2.1";
3+
export const LIB_VERSION="2.6.0";
44
export const LIB_NAME="@clerk/clerk-sdk-node";

0 commit comments

Comments
 (0)