prime-sdk 1.4.3 → 1.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prime-sdk",
3
- "version": "1.4.3",
3
+ "version": "1.5.1",
4
4
  "description": "swiss army knife",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,24 +22,24 @@
22
22
  "test:e2e": "jest --config ./test/jest-e2e.json"
23
23
  },
24
24
  "dependencies": {
25
- "@aws-sdk/client-kms": "^3.572.0",
25
+ "@aws-sdk/client-kms": "^3.606.0",
26
26
  "@aws-sdk/client-s3": "^3.572.0",
27
27
  "@aws-sdk/client-ses": "^3.572.0",
28
28
  "@aws-sdk/client-sns": "^3.572.0",
29
29
  "@aws-sdk/client-sqs": "^3.569.0",
30
30
  "@aws-sdk/s3-request-presigner": "^3.572.0",
31
- "@nestjs/common": "^10.0.0",
31
+ "@nestjs/common": "^10.4.15",
32
32
  "@nestjs/config": "^3.2.2",
33
- "@nestjs/core": "^10.0.0",
34
- "@nestjs/platform-express": "^10.4.7",
33
+ "@nestjs/core": "^10.4.15",
34
+ "@nestjs/platform-express": "^10.4.15",
35
35
  "ioredis": "^5.4.1",
36
36
  "reflect-metadata": "^0.2.0",
37
37
  "rxjs": "^7.8.1"
38
38
  },
39
39
  "devDependencies": {
40
- "@nestjs/cli": "^10.0.0",
41
- "@nestjs/schematics": "^10.0.0",
42
- "@nestjs/testing": "^10.0.0",
40
+ "@nestjs/cli": "^10.4.8",
41
+ "@nestjs/schematics": "^10.2.3",
42
+ "@nestjs/testing": "^10.4.15",
43
43
  "@types/express": "^4.17.17",
44
44
  "@types/jest": "^29.5.2",
45
45
  "@types/node": "^20.3.1",
@@ -46,6 +46,7 @@ export class S3 implements IStorage {
46
46
  Bucket: file.bucket,
47
47
  Key: file.key,
48
48
  ResponseContentType: file.responseContentType,
49
+ ResponseContentDisposition: file.responseContentDisposition,
49
50
  };
50
51
 
51
52
  const command = new GetObjectCommand(params);
@@ -11,6 +11,7 @@ export type GetFile = {
11
11
  bucket: string;
12
12
  key: string;
13
13
  responseContentType?: string;
14
+ responseContentDisposition?: string;
14
15
  };
15
16
 
16
17
  export type ListFiles = {