Skip to content

Commit 02c2717

Browse files
authored
Merge pull request #476 from codex-team/feat/new-diff
feat: new diff support
2 parents eb8690a + 854776b commit 02c2717

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hawk.api",
3-
"version": "1.1.18",
3+
"version": "1.1.19",
44
"main": "index.ts",
55
"license": "UNLICENSED",
66
"scripts": {

src/typeDefs/event.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ type RepetitionPayload {
247247
}
248248
249249
"""
250-
Event's repetitions. Make Event unique by repetition's payload
250+
Repetition of the event
251251
"""
252252
type Repetition {
253253
"""
@@ -263,7 +263,12 @@ type Repetition {
263263
"""
264264
Event's payload patch
265265
"""
266-
payload: RepetitionPayload!
266+
payload: RepetitionPayload
267+
268+
"""
269+
Delta of the event's payload, stringified JSON
270+
"""
271+
delta: String
267272
}
268273
269274
"""

0 commit comments

Comments
 (0)