Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4a84228
chore: config changes
tnramalho Oct 27, 2025
8690a6c
chore: fix package.json
tnramalho Oct 27, 2025
c93567e
chore: rename packages
tnramalho Oct 28, 2025
3ad0061
v1.0.0-alpha.0
tnramalho Oct 28, 2025
c4be706
chore: config
tnramalho Oct 28, 2025
fdd85f3
chore: improve npm package metadata and configuration
tnramalho Oct 28, 2025
decff19
v1.0.0-alpha.1
tnramalho Oct 28, 2025
a3c5ab8
chore: remove prepublish from packages
tnramalho Oct 29, 2025
5d0ff67
feat: add invitation feature
tnramalho Nov 19, 2025
5fe84d5
chore: linting
tnramalho Nov 20, 2025
dbe200b
chore: update usermetadata
tnramalho Nov 21, 2025
a039f3d
chore: linting
tnramalho Nov 24, 2025
544e4db
chore: codacy lint
tnramalho Nov 24, 2025
9e3fd8a
chore: fix tests
tnramalho Nov 24, 2025
47f6340
chore: lint
tnramalho Nov 24, 2025
5b114c6
chore: update versions
tnramalho Nov 26, 2025
059517b
chore: codacy update
tnramalho Nov 26, 2025
277d8c8
chore: update for test:ci
tnramalho Nov 26, 2025
c3690fd
chore: improve security on invitation flow
tnramalho Nov 27, 2025
0cdc785
chore: linting
tnramalho Nov 27, 2025
693d3aa
chore: update invitation acceptance validations
tnramalho Dec 3, 2025
9819104
chore: update yarn
tnramalho Dec 3, 2025
ddc2bc5
chore: update versions
tnramalho Dec 3, 2025
e7efc0f
chore: bump version to 1.0.0-alpha.2
tnramalho Dec 3, 2025
bd274ba
chore: update user Id on signup
tnramalho Dec 30, 2025
c0acb34
chore: add invitation to swagger
tnramalho Dec 30, 2025
9a70e1b
chore: add invitation code review
tnramalho Jan 13, 2026
6e224a8
chore: add tests for new flow on invitation
tnramalho Jan 16, 2026
c808e59
chore: add tsdoc
tnramalho Jan 16, 2026
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
3 changes: 2 additions & 1 deletion .claude/settings.local.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"Bash(timeout 10s npm run start:dev)",
"Bash(npm install:*)",
"Bash(yarn add:*)",
"Bash(yarn test:*)"
"Bash(yarn test:*)",
"Bash(node:*)"
],
"deny": []
}
Expand Down
6 changes: 4 additions & 2 deletions .codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ exclude_paths:
- '**/__mocks__/**'
- '**/__stubs__/**'
- '**/__fixtures__/**'
- '**/**.spec.js'
- '**/**.e2e-spec.js'
- '**/*.spec.js'
- '**/*.e2e-spec.js'
- '**/*.spec.ts'
- '**/*.e2e-spec.ts'
- '.devcontainer/**'
- '.github/**'
- '.husky/**'
Expand Down
13 changes: 13 additions & 0 deletions .semgrepignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Exclude test files
**/*.spec.ts
**/*.e2e-spec.ts
**/*.spec.js
**/*.e2e-spec.js
**/__fixtures__/**
**/__mocks__/**
**/__stubs__/**

# Exclude dependencies and build artifacts
**/node_modules/**
**/dist/**
**/coverage/**
50 changes: 50 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug NestJS",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"start:debug"
],
"cwd": "${workspaceFolder}/examples/sample-server-auth",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"restart": true,
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"**/node_modules/**"
],
"skipFiles": [
"<node_internals>/**"
],
"autoAttachChildProcesses": true
},
{
"type": "node",
"request": "launch",
"name": "Debug Jest Tests",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"--runInBand"
],
"runtimeArgs": [
"-r",
"tsconfig-paths/register",
"-r",
"ts-node/register"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": [
"<node_internals>/**"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"**/node_modules/**"
]
}
]
}
3 changes: 1 addition & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
BSD 3-Clause License

Copyright (c) 2020 Concepta Technologies, LLC
All rights reserved.
Copyright (c) 2025, Bitwild

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
102 changes: 75 additions & 27 deletions coverage/coverage-final.json

Large diffs are not rendered by default.

104 changes: 76 additions & 28 deletions coverage/coverage-summary.json

Large diffs are not rendered by default.

Loading