Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5525f81
Add full API
collimarco Oct 23, 2025
9c94946
Add tests
collimarco Oct 23, 2025
965e1b5
Remove setter and getter for projectId on client (to make it immutable)
collimarco Oct 23, 2025
30b4730
Refactor: pass the default project id to resources (instead of a func…
collimarco Oct 23, 2025
48a2ac2
Improve tests
collimarco Oct 23, 2025
a2cb93b
Fix and improve typescript definitions
collimarco Oct 27, 2025
29c4add
Update JSDoc to use only numbers for IDs (and not strings)
collimarco Oct 27, 2025
b068cc4
Remove perPage query param and keep only per_page for consistency
collimarco Oct 27, 2025
6a91330
Add signatureFor
collimarco Oct 27, 2025
10dbb0b
Add subscription.count
collimarco Oct 27, 2025
41d86fd
Add subscription.count to typescript definitions
collimarco Oct 28, 2025
c953a40
Add README for new version
collimarco Oct 28, 2025
d4d68c6
Add some sections to README
collimarco Oct 28, 2025
8ab72b6
Add quickstart section to README
collimarco Oct 28, 2025
fc21c93
Improve some code in README
collimarco Oct 28, 2025
048e149
Add types to exports in package.json
collimarco Oct 28, 2025
5b9c985
Refactor index.d.ts: split it in multiple files (in the types directory)
collimarco Oct 28, 2025
cda51ae
Rename some types
collimarco Oct 28, 2025
e4e3c9c
Define *CreateParams, *UpdateParams types more explicitly without inh…
collimarco Oct 28, 2025
2248eb7
Improve types to make them match the API perfectly
collimarco Oct 28, 2025
5ec22e5
Use a single file (index.d.ts) for typescript
collimarco Oct 28, 2025
84b0188
Add notification.send (alias for notification.create)
collimarco Oct 29, 2025
b429660
Add sentence to README
collimarco Oct 29, 2025
349f785
Remove cache: 'npm' from CI
collimarco Oct 29, 2025
3f9fbc5
Update node version in CI
collimarco Oct 29, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 23.x]
# include even-numbered releases (LTS)
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm test
Loading