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: 4 additions & 3 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"cliVersion": "3.85.3",
"cliVersion": "4.22.0",
"generatorName": "fernapi/fern-typescript-sdk",
"generatorVersion": "3.48.2",
"generatorVersion": "3.53.11",
"generatorConfig": {
"generateWireTests": true,
"namespaceExport": "Brevo",
Expand All @@ -15,5 +15,6 @@
}
}
},
"sdkVersion": "4.0.3"
"originGitCommit": "306749c7d7549425dfc33ec33b6a91ea016d77c3",
"sdkVersion": "5.0.1"
}
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,13 @@ jobs:
elif [[ ${GITHUB_REF} == *beta* ]]; then
publish --access public --tag beta
else
publish --access public
PKG_NAME=$(node -p "require('./package.json').name")
PKG_VERSION=$(node -p "require('./package.json').version")
CURRENT_LATEST=$(npm view "${PKG_NAME}" dist-tags.latest 2>/dev/null || echo "0.0.0")
if npx -y semver "${PKG_VERSION}" -r "<${CURRENT_LATEST}" > /dev/null 2>&1; then
echo "Publishing ${PKG_VERSION} with --tag backport (current latest is ${CURRENT_LATEST})"
publish --access public --tag backport
else
publish --access public
fi
fi
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",
"root": true,
"vcs": {
"enabled": false
Expand Down
360 changes: 356 additions & 4 deletions package.json

Large diffs are not rendered by default.

447 changes: 214 additions & 233 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading
Loading