@remit/backend 0.0.49 → 0.0.50

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/.env.test CHANGED
@@ -1,7 +1,4 @@
1
1
  SERVER_PORT=5433
2
- DYNAMODB_PORT=5434
3
- DYNAMODB_TABLE_NAME=remit-local
4
- DYNAMODB_PAGINATION_SALT=test-salt
5
2
  SQS_QUEUE_URL=http://localhost:9324/queue/remit-local
6
3
  NODE_ENV=development
7
4
  LOG_LEVEL=debug
@@ -327,8 +327,7 @@ app.listen(Number(port), "0.0.0.0", () => {
327
327
  {
328
328
  port: Number(port),
329
329
  url: `http://localhost:${port}`,
330
- dynamodbPort: env.DYNAMODB_PORT,
331
- dynamodbTable: env.DYNAMODB_TABLE_NAME,
330
+ dataBackend: process.env.DATA_BACKEND,
332
331
  nodeEnv: env.NODE_ENV,
333
332
  ...(isSelfHostBackend
334
333
  ? {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/backend",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "description": "Remit Mail Inspector API backend",
5
5
  "license": "MIT",
6
6
  "author": "",