@defra-fish/connectors-lib 1.64.0-rc.2 → 1.64.0-rc.4

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.
Files changed (2) hide show
  1. package/package.json +13 -13
  2. package/src/aws.js +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defra-fish/connectors-lib",
3
- "version": "1.64.0-rc.2",
3
+ "version": "1.64.0-rc.4",
4
4
  "description": "Shared connectors",
5
5
  "type": "module",
6
6
  "engines": {
@@ -34,17 +34,17 @@
34
34
  "test": "echo \"Error: run tests from root\" && exit 1"
35
35
  },
36
36
  "dependencies": {
37
- "@airbrake/node": "^2.1.7",
38
- "@aws-sdk/client-dynamodb": "^3.0.0",
39
- "@aws-sdk/client-s3": "^3.0.0",
40
- "@aws-sdk/client-secrets-manager": "^3.0.0",
41
- "@aws-sdk/client-sqs": "^3.0.0",
42
- "@aws-sdk/lib-dynamodb": "^3.0.0",
43
- "debug": "^4.3.3",
44
- "http-status-codes": "^2.3.0",
45
- "ioredis": "^4.28.5",
46
- "node-fetch": "^2.7.0",
47
- "redlock": "^4.2.0"
37
+ "@airbrake/node": "2.1.7",
38
+ "@aws-sdk/client-dynamodb": "3.777.0",
39
+ "@aws-sdk/client-s3": "3.779.0",
40
+ "@aws-sdk/client-secrets-manager": "3.777.0",
41
+ "@aws-sdk/client-sqs": "3.777.0",
42
+ "@aws-sdk/lib-dynamodb": "3.778.0",
43
+ "debug": "4.3.3",
44
+ "http-status-codes": "2.3.0",
45
+ "ioredis": "4.28.5",
46
+ "node-fetch": "2.7.0",
47
+ "redlock": "4.2.0"
48
48
  },
49
- "gitHead": "b901cb67affda78c747af57f88753b8039bd2172"
49
+ "gitHead": "76c74f746d5ab23a1f8043f7e1445eeb60bb5a8e"
50
50
  }
package/src/aws.js CHANGED
@@ -2,7 +2,7 @@ import Config from './config.js'
2
2
  import { createDocumentClient } from './documentclient-decorator.js'
3
3
  import { DynamoDB } from '@aws-sdk/client-dynamodb'
4
4
  import { SQS } from '@aws-sdk/client-sqs'
5
- import { S3Client, ListObjectsV2Command } from '@aws-sdk/client-s3'
5
+ import { S3Client, ListObjectsV2Command, GetObjectCommand } from '@aws-sdk/client-s3'
6
6
  import { SecretsManager } from '@aws-sdk/client-secrets-manager'
7
7
 
8
8
  export default function () {
@@ -40,6 +40,7 @@ export default function () {
40
40
  endpoint: Config.aws.secretsManager.endpoint
41
41
  })
42
42
  }),
43
- ListObjectsV2Command
43
+ ListObjectsV2Command,
44
+ GetObjectCommand
44
45
  }
45
46
  }