Skip to content

Commit c5a6a46

Browse files
committed
SDK regeneration
1 parent cde9d50 commit c5a6a46

File tree

144 files changed

+10572
-1127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+10572
-1127
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ jobs:
4646
- name: Publish to npm
4747
run: |
4848
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
49-
npm publish --access public
49+
if [[ ${GITHUB_REF} == *alpha* ]]; then
50+
npm publish --access public --tag alpha
51+
elif [[ ${GITHUB_REF} == *beta* ]]; then
52+
npm publish --access public --tag beta
53+
else
54+
npm publish --access public
55+
fi
5056
env:
5157
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webflow-api",
3-
"version": "2.3.6",
3+
"version": "2.4.0",
44
"private": false,
55
"repository": "https://github.com/webflow/js-webflow-api",
66
"main": "./index.js",
@@ -13,16 +13,21 @@
1313
},
1414
"dependencies": {
1515
"url-join": "4.0.1",
16-
"form-data": "4.0.0",
16+
"form-data": "^4.0.0",
1717
"formdata-node": "^6.0.3",
1818
"node-fetch": "2.7.0",
1919
"qs": "6.11.2",
20+
"readable-stream": "^4.5.2",
2021
"js-base64": "3.7.2"
2122
},
2223
"devDependencies": {
2324
"@types/url-join": "4.0.1",
2425
"@types/qs": "6.9.8",
2526
"@types/node-fetch": "2.6.9",
27+
"@types/readable-stream": "^4.0.15",
28+
"fetch-mock-jest": "^1.5.1",
29+
"webpack": "^5.94.0",
30+
"ts-loader": "^9.3.1",
2631
"jest": "29.7.0",
2732
"@types/jest": "29.5.5",
2833
"ts-jest": "29.1.1",

0 commit comments

Comments
 (0)