Skip to content
Closed

V6 #87

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e79c8fc
SDK regeneration
fern-api[bot] Feb 3, 2026
941c58a
SDK regeneration
fern-api[bot] Feb 4, 2026
7370dea
Add README for Brevo Node.js SDK
mourraille Feb 4, 2026
3ff88d3
SDK regeneration
fern-api[bot] Feb 4, 2026
5624e5f
Add README.md to .fernignore
mourraille Feb 4, 2026
ce148fa
Revise README for Brevo Node.js SDK
mourraille Feb 4, 2026
68e0cfa
Add banner image to README
mourraille Feb 9, 2026
3a2baa1
Add files via upload
mourraille Feb 9, 2026
ff4c106
Add files via upload
mourraille Feb 9, 2026
9774dc8
Change banner image format in README
mourraille Feb 9, 2026
45411a6
Add files via upload
mourraille Feb 9, 2026
af4c37d
Delete banner.jpg
mourraille Feb 9, 2026
27ad754
Add banner.png to .fernignore
mourraille Feb 9, 2026
fa69f67
SDK regeneration
fern-api[bot] Feb 11, 2026
33ccc03
SDK regeneration
fern-api[bot] Feb 11, 2026
f44f4ec
chore: remove package name and publishing configuration
fern-api[bot] Feb 11, 2026
8ccefdd
feat: add npm publish workflow and configure package metadata
fern-api[bot] Feb 11, 2026
40e83a7
SDK regeneration
fern-api[bot] Feb 11, 2026
569cbfc
SDK regeneration
fern-api[bot] Feb 11, 2026
f344504
Update README.md
mourraille Feb 11, 2026
5335096
fix: update delete tier operations to return void instead of string
fern-api[bot] Feb 18, 2026
97b88d4
Update installation command for Brevo package
mourraille Feb 19, 2026
0344145
SDK regeneration
fern-api[bot] Feb 20, 2026
15f6916
SDK regeneration
fern-api[bot] Feb 20, 2026
0aaaef0
SDK regeneration
fern-api[bot] Feb 20, 2026
24e14fa
test: update test fixtures and CLI version
fern-api[bot] Feb 23, 2026
e022b9a
chore: update CLI version and enhance test coverage
fern-api[bot] Feb 24, 2026
034debc
Change package imports to scoped version
mourraille Mar 8, 2026
2074806
SDK regeneration
fern-api[bot] Mar 12, 2026
aed1ee5
Merge pull request #81 from getbrevo/fern-bot/2026-03-12T13-35Z
mourraille Mar 12, 2026
ea3f37e
SDK regeneration
fern-api[bot] Mar 12, 2026
2e9c40f
SDK regeneration
fern-api[bot] Mar 25, 2026
39d5984
Merge pull request #82 from getbrevo/fern-bot/2026-03-25T09-06Z
mourraille Mar 25, 2026
ab39279
SDK regeneration
fern-api[bot] Apr 10, 2026
5826547
Merge pull request #84 from getbrevo/fern-bot/2026-04-10T14-13Z
mourraille Apr 10, 2026
21fdcd6
SDK regeneration
fern-api[bot] May 13, 2026
f3bed23
Merge pull request #86 from getbrevo/fern-bot/2026-05-13T15-43-56Z
mourraille May 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

22 changes: 0 additions & 22 deletions .eslintrc

This file was deleted.

23 changes: 23 additions & 0 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"cliVersion": "5.23.3",
"generatorName": "fernapi/fern-typescript-sdk",
"generatorVersion": "3.70.6",
"generatorConfig": {
"generateWireTests": true,
"namespaceExport": "Brevo",
"fetchSupport": "native",
"packageJson": {
"description": "Brevo SDK for Node.js with TypeScript support.",
"author": {
"name": "Brevo",
"url": "https://brevo.com",
"email": "[email protected]"
}
}
},
"originGitCommit": "626852ab9868892d33b75b16b34f5db02dcb70ca",
"originGitCommitIsDirty": true,
"invokedBy": "manual",
"requestedVersion": "6.0.0",
"sdkVersion": "6.0.0"
}
5 changes: 5 additions & 0 deletions .fern/verify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
set -euo pipefail
pnpm install
pnpm build
pnpm test
4 changes: 4 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Custom README
README.md
banner.png
changelog.md
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

90 changes: 90 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: ci

on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
compile:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v6

- name: Set up node
uses: actions/setup-node@v6

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Compile
run: pnpm build

test:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v6

- name: Set up node
uses: actions/setup-node@v6

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Test
run: pnpm test

publish:
needs: [ compile, test ]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
contents: read # Required for checkout
id-token: write # Required for OIDC
steps:
- name: Checkout repo
uses: actions/checkout@v6

- name: Set up node
uses: actions/setup-node@v6

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm build

- name: Publish to npm
run: |
publish() { # use latest npm to ensure OIDC support
npx -y npm@latest publish "$@"
}
if [[ ${GITHUB_REF} == *alpha* ]]; then
publish --access public --tag alpha
elif [[ ${GITHUB_REF} == *beta* ]]; then
publish --access public --tag beta
else
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
30 changes: 0 additions & 30 deletions .github/workflows/release.yml

This file was deleted.

5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
wwwroot/*.js
node_modules
typings
dist
.DS_Store
/dist
23 changes: 0 additions & 23 deletions .openapi-generator-ignore

This file was deleted.

Loading
Loading