Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
0758a12
imp(): improved project resolver with dailyEvents
e11sy Aug 8, 2025
d4bc87f
merging repetitions on api side
slaveeks Aug 9, 2025
99899a5
fix lint
slaveeks Aug 9, 2025
0d3f614
Bump version up to 1.1.31
github-actions[bot] Aug 9, 2025
c12d698
Merge branch 'master' into refactor-project-overview
e11sy Aug 9, 2025
5d2d445
Bump version up to 1.1.31
github-actions[bot] Aug 9, 2025
bdfbc1a
Merge branch 'master' of github.com:codex-team/hawk.api.nodejs into r…
slaveeks Aug 14, 2025
107567c
Merge branch 'repetitions' of github.com:codex-team/hawk.api.nodejs i…
slaveeks Aug 14, 2025
6f01048
Bump version up to 1.1.33
github-actions[bot] Aug 14, 2025
795acae
revert some types changes
slaveeks Aug 14, 2025
5f4d987
Merge branch 'repetitions' of github.com:codex-team/hawk.api.nodejs i…
slaveeks Aug 14, 2025
ce24a61
fix lint
slaveeks Aug 14, 2025
bcd7929
fix docs
slaveeks Aug 14, 2025
cb54d3a
fixes
slaveeks Aug 14, 2025
d009928
fix get repetitions by repetition
slaveeks Aug 16, 2025
d843f3e
chore(): type defs
e11sy Aug 16, 2025
ada2a24
review changes
slaveeks Aug 16, 2025
a507bb9
fixes
slaveeks Aug 16, 2025
ff67dc7
fixes
slaveeks Aug 16, 2025
fc94873
fixes test
slaveeks Aug 16, 2025
69d64e1
fix
slaveeks Aug 16, 2025
1d85ff6
Merge pull request #518 from codex-team/repetitions
slaveeks Aug 16, 2025
33692e3
chore(): update from master
e11sy Aug 19, 2025
33e2ed8
chore(): update from master
e11sy Aug 19, 2025
1ac14b3
imp(): type defs
e11sy Aug 19, 2025
cbe8876
Bump version up to 1.1.34
github-actions[bot] Aug 19, 2025
0aa318d
fix(): fix visitedBy issue
e11sy Aug 19, 2025
17c654a
chore(): clean up
e11sy Aug 19, 2025
788de82
chore(): clean up
e11sy Aug 19, 2025
e10a613
imp(): naming and descriptions
e11sy Aug 20, 2025
f3d87ad
imp(): pass original event id to getEventRepetitions
e11sy Aug 20, 2025
24017f4
chore(): lint fix
e11sy Aug 20, 2025
5800e2a
review cghanges
slaveeks Aug 20, 2025
68166d0
Merge branch 'refactor-project-overview' of github.com:codex-team/haw…
slaveeks Aug 20, 2025
1ad7524
test addons merhing
slaveeks Aug 20, 2025
245361f
fix test
slaveeks Aug 20, 2025
8e38bac
imp(): throw exceptions
e11sy Aug 22, 2025
d4786bd
imp(): get rid of event id in repetitionsPortion
e11sy Aug 23, 2025
e52d4d1
chore(): clean up
e11sy Aug 23, 2025
ffd9040
chore(): lint fix
e11sy Aug 23, 2025
4cd5782
imp(): daily events cursor types
e11sy Aug 25, 2025
d3d61a0
fix original event without repetition in project overview
slaveeks Aug 25, 2025
af05990
Merge branch 'refactor-project-overview' of github.com:codex-team/haw…
slaveeks Aug 25, 2025
db61825
Revert "fix original event without repetition in project overview"
slaveeks Aug 25, 2025
e478c93
unwnd
slaveeks Aug 25, 2025
a65dcd4
imp(): rename
e11sy Aug 26, 2025
9e2fa3e
imp(): remove redundant db calls
e11sy Aug 26, 2025
f88331d
Merge branch 'master' into refactor-project-overview
e11sy Aug 26, 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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hawk.api",
"version": "1.1.33",
"version": "1.1.34",
"main": "index.ts",
"license": "UNLICENSED",
"scripts": {
Expand Down
7 changes: 4 additions & 3 deletions src/models/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@
/**
* @typedef {Object} EventSchema
* @property {String} _id - event ID
* @property {String} catcherType - type of an event
* @property {Number} count - event repetitions count
* @property {String} groupHash - event's hash (catcherType + title + salt)
* @property {User[]} visitedBy - array of users who visited this event
* @property {Number} totalCount - event repetitions count
* @property {String} catcherType - type of an event
* @property {EventPayload} payload - event's payload
* @property {Number} timestamp - event's Unix timestamp
* @property {Number} usersAffected - number of users that were affected by the event
* @property {User[]} visitedBy - array of users who visited this event
*/

/**
Expand Down
Loading
Loading