Skip to content

Commit 8f7f265

Browse files
authored
Merge pull request #167 from webflow/fern-bot/09-16-2024-0143PM
🌿 Fern Regeneration -- September 16, 2024
2 parents cde9d50 + 0f3e715 commit 8f7f265

File tree

148 files changed

+10813
-1039
lines changed

Some content is hidden

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

148 files changed

+10813
-1039
lines changed

.fernignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
README.md
44

55
# Oauth Helpers
6+
src/api/types/OAuthScope.ts
67
src/index.ts
78
src/oauth.ts
89
src/wrapper

.github/workflows/ci.yml

+7-1
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

+7-2
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)