Skip to content

Commit e91bd6e

Browse files
authored
Merge pull request #487 from codex-team/master
Update prod
2 parents 3201ad9 + 02c2717 commit e91bd6e

File tree

9 files changed

+16
-11
lines changed

9 files changed

+16
-11
lines changed

.github/workflows/build-and-push-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Checkout repository
2020
uses: actions/checkout@v4

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request]
55
jobs:
66
# If pull request was merged then we should check for a package version update
77
check-version-update:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
steps:
1010
# Checkout to target branch
1111
- uses: actions/checkout@v2
@@ -33,7 +33,7 @@ jobs:
3333

3434
bump-version:
3535
needs: check-version-update
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-22.04
3737
steps:
3838
# Checkout to target branch
3939
- uses: actions/checkout@v2

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
tests:
88
name: Run integration tests
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/checkout@v2
1212

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request]
55
jobs:
66
lint:
77
name: ESlint
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
steps:
1010
- uses: actions/checkout@v2
1111
- name: Use Node.js

.github/workflows/pr-to-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
update-from-master:
1212
if: github.event.pull_request.merged == true
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- uses: actions/checkout@v2
1616

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build:
88
name: Run Jest tests
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Install modules

.github/workflows/update-monorepository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
REPOSITORY_MONO_PATH: api
88
jobs:
99
build:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Mono repository update
1313
uses: peter-evans/repository-dispatch@v1

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.17",
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)