-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add fix operation (#257) * Add FIX operation to run a fix operation (available default fixTypes: UNDEL and DELET) for a record in the datastore * Add aut prod webhooks (#243, #247) ; Dependency update (#250) * Update aut-names prod webhook from main (#243) * Add aut production from main webhooks (#247) * Bump the development-dependencies group with 2 updates (#249) Bumps the development-dependencies group with 2 updates: [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) and [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env). * Bump the production-dependencies group with 2 updates (#248) Bumps the production-dependencies group with 2 updates: [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) and [@natlibfi/melinda-commons](https://github.com/natlibfi/melinda-commons-js). * 3.1.0-alpha.4
- Loading branch information
Showing
16 changed files
with
548 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
TZ=Europe/Helsinki | ||
#OPERATION='CREATE' | ||
#OPERATION='UPDATE' | ||
OPERATION='FIX' | ||
RECORD_LOAD_URL=http://localhost:8090/fix | ||
RECORD_LOAD_LIBRARY=fin01 | ||
POLL_WAIT_TIME=1000 | ||
LOG_LEVEL=debug | ||
RECORD_LOAD_API_KEY=foobar | ||
#DEBUG="@natlibfi/*" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
TZ=Europe/Helsinki | ||
#OPERATION='CREATE' | ||
OPERATION='UPDATE' | ||
RECORD_LOAD_URL=http://localhost:8090 | ||
RECORD_LOAD_FIX_URL=http://localhost:8090/fix | ||
RECORD_LOAD_API_KEY=foobar | ||
RECORD_LOAD_LIBRARY=fin01 | ||
POLL_WAIT_TIME=1000 | ||
LOG_LEVEL=debug | ||
#DEBUG="@natlibfi/*" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,5 +25,8 @@ node_modules/ | |
|
||
# dotenv environment variables file | ||
.env | ||
.env.fix | ||
.env.create | ||
.env.update | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
"url": "[email protected]:NatLibFi/melinda-rest-api-importer.git" | ||
}, | ||
"license": "MIT", | ||
"version": "3.0.21", | ||
"version": "3.1.0-alpha.5", | ||
"main": "./dist/index.js", | ||
"engines": { | ||
"node": ">=18" | ||
|
@@ -35,7 +35,7 @@ | |
"@natlibfi/marc-record-serializers": "^10.1.2", | ||
"@natlibfi/melinda-backend-commons": "^2.3.1", | ||
"@natlibfi/melinda-commons": "^13.0.17", | ||
"@natlibfi/melinda-rest-api-commons": "^4.1.11", | ||
"@natlibfi/melinda-rest-api-commons": "^4.2.0", | ||
"http-status": "^1.7.4", | ||
"moment": "^2.30.1", | ||
"node-fetch": "^2.7.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.