@defra-fish/sales-api-service 1.72.0 → 1.73.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -14
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,20 +4,20 @@ The Rod Licensing Sales API is responsible for communication with Microsoft Dyna
|
|
|
4
4
|
|
|
5
5
|
# Environment variables
|
|
6
6
|
|
|
7
|
-
| name | description | required | default | valid
|
|
8
|
-
| ------------------------------------- | ---------------------------------------------------------------------------------- | :------: | --------- |
|
|
9
|
-
| NODE_ENV | Node environment | no | | development,
|
|
10
|
-
| PORT | Port number | no | 4000 |
|
|
11
|
-
| TRANSACTION_STAGING_TABLE | The DynamoDB table used for transaction staging | yes | |
|
|
12
|
-
| TRANSACTION_STAGING_TABLE_TTL | The time to live for records in the transaction staging table (in seconds) | no | 168 hours |
|
|
13
|
-
| TRANSACTION_STAGING_HISTORY_TABLE | The DynamoDB table used for transaction staging history | yes | |
|
|
14
|
-
| TRANSACTION_STAGING_HISTORY_TABLE_TTL | The time to live for records in the transaction staging history table (in seconds) | no | 90 days |
|
|
15
|
-
| PAYMENT_JOURNALS_TABLE | The DynamoDB table used for payment journals | yes | |
|
|
16
|
-
| PAYMENT_JOURNALS_TABLE_TTL | The time to live for records in the payment journals table (in seconds) | no | 168 hours |
|
|
17
|
-
| TRANSACTION_QUEUE_URL | The SQS queue URL used for processing transactions | yes | |
|
|
18
|
-
| HAPI_KEEP_ALIVE_TIMEOUT_MS | Configure the keep-alive timeout on the server listener | no | 1 minute |
|
|
19
|
-
| AIRBRAKE_HOST | URL of airbrake host | no | |
|
|
20
|
-
| AIRBRAKE_PROJECT_KEY | Project key for airbrake logging | no | |
|
|
7
|
+
| name | description | required | default | valid | notes |
|
|
8
|
+
| ------------------------------------- | ---------------------------------------------------------------------------------- | :------: | --------- | ---------------------- | ----- |
|
|
9
|
+
| NODE_ENV | Node environment | no | | development, fsh-{env} | |
|
|
10
|
+
| PORT | Port number | no | 4000 | | |
|
|
11
|
+
| TRANSACTION_STAGING_TABLE | The DynamoDB table used for transaction staging | yes | | | |
|
|
12
|
+
| TRANSACTION_STAGING_TABLE_TTL | The time to live for records in the transaction staging table (in seconds) | no | 168 hours | | |
|
|
13
|
+
| TRANSACTION_STAGING_HISTORY_TABLE | The DynamoDB table used for transaction staging history | yes | | | |
|
|
14
|
+
| TRANSACTION_STAGING_HISTORY_TABLE_TTL | The time to live for records in the transaction staging history table (in seconds) | no | 90 days | | |
|
|
15
|
+
| PAYMENT_JOURNALS_TABLE | The DynamoDB table used for payment journals | yes | | | |
|
|
16
|
+
| PAYMENT_JOURNALS_TABLE_TTL | The time to live for records in the payment journals table (in seconds) | no | 168 hours | | |
|
|
17
|
+
| TRANSACTION_QUEUE_URL | The SQS queue URL used for processing transactions | yes | | | |
|
|
18
|
+
| HAPI_KEEP_ALIVE_TIMEOUT_MS | Configure the keep-alive timeout on the server listener | no | 1 minute | | |
|
|
19
|
+
| AIRBRAKE_HOST | URL of airbrake host | no | | | |
|
|
20
|
+
| AIRBRAKE_PROJECT_KEY | Project key for airbrake logging | no | | | |
|
|
21
21
|
|
|
22
22
|
### See also:
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defra-fish/sales-api-service",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.73.0-rc.1",
|
|
4
4
|
"description": "Rod Licensing Sales API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@defra-fish/business-rules-lib": "1.
|
|
39
|
-
"@defra-fish/connectors-lib": "1.
|
|
40
|
-
"@defra-fish/dynamics-lib": "1.
|
|
38
|
+
"@defra-fish/business-rules-lib": "1.73.0-rc.1",
|
|
39
|
+
"@defra-fish/connectors-lib": "1.73.0-rc.1",
|
|
40
|
+
"@defra-fish/dynamics-lib": "1.73.0-rc.1",
|
|
41
41
|
"@hapi/boom": "9.1.2",
|
|
42
42
|
"@hapi/hapi": "20.1.3",
|
|
43
43
|
"@hapi/inert": "6.0.3",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"moment-timezone": "0.5.34",
|
|
53
53
|
"uuid": "8.3.2"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "24f80a049567b03ddf0916c4eefae02f963ae768"
|
|
56
56
|
}
|