@openstax/ts-utils 1.23.0 → 1.24.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,14 +1,15 @@
1
1
  {
2
2
  "name": "@openstax/ts-utils",
3
- "version": "1.23.0",
3
+ "version": "1.24.1",
4
4
  "bin": {
5
5
  "ts-utils": "./script/bin-entry.bash"
6
6
  },
7
7
  "dependencies": {
8
8
  "@aws-sdk/client-dynamodb": "^3.171.0",
9
- "@aws-sdk/client-s3": "^3.171.0",
9
+ "@aws-sdk/client-s3": "^3.744.0",
10
10
  "@aws-sdk/client-ssm": "^3.171.0",
11
11
  "@aws-sdk/client-sts": "^3.171.0",
12
+ "@aws-sdk/s3-request-presigner": "^3.744.0",
12
13
  "aws-sdk": "^2.1145.0",
13
14
  "cookie": "^0.5.0",
14
15
  "date-fns": "^2.29.2",
@@ -22,23 +23,30 @@
22
23
  "uuid": "^9.0.0"
23
24
  },
24
25
  "devDependencies": {
26
+ "@opensearch-project/opensearch": "^1.2.0",
25
27
  "@types/cookie": "^0.5.0",
28
+ "@types/cors": "^2.8.13",
26
29
  "@types/deep-equal": "^1.0.1",
30
+ "@types/express": "^4.17.13",
27
31
  "@types/jest": "^29.1.1",
28
32
  "@types/jsonwebtoken": "^9.0.1",
29
33
  "@types/lodash": "^4.14.200",
30
34
  "@types/ms": "^0.7.34",
35
+ "@types/multer": "^1.4.7",
31
36
  "@types/node": "^17.0.35",
32
37
  "@types/node-fetch": "^2.6.11",
33
38
  "@types/node-jose": "^1.1.12",
34
39
  "@types/uuid": "^8.3.4",
35
40
  "@typescript-eslint/eslint-plugin": "^5.13.0",
36
41
  "@typescript-eslint/parser": "^5.13.0",
42
+ "cors": "^2.8.5",
37
43
  "cspell": "^5.18.5",
38
44
  "eslint": "^8.10.0",
39
45
  "eslint-plugin-import": "^2.25.4",
40
46
  "eslint-plugin-jest": "^26.1.1",
47
+ "express": "^4.17.3",
41
48
  "jest": "^29.1.1",
49
+ "multer": "^1.4.5-lts.1",
42
50
  "node-fetch": "^2.7.0",
43
51
  "npm-run-all": "^4.1.5",
44
52
  "postgres": "^3.4.5",
@@ -175,20 +183,10 @@
175
183
  "import": "./dist/esm/services/apiGateway/index.js",
176
184
  "require": "./dist/cjs/services/apiGateway/index.js"
177
185
  },
178
- "./services/fileserver": {
179
- "browser": "./dist/cjs/services/fileserver/index.js",
180
- "import": "./dist/esm/services/fileserver/index.js",
181
- "require": "./dist/cjs/services/fileserver/index.js"
182
- },
183
- "./services/fileserver/localFileServer": {
184
- "browser": "./dist/cjs/services/fileserver/localFileServer/index.js",
185
- "import": "./dist/esm/services/fileserver/localFileServer/index.js",
186
- "require": "./dist/cjs/services/fileserver/localFileServer/index.js"
187
- },
188
- "./services/fileserver/s3FileServer": {
189
- "browser": "./dist/cjs/services/fileserver/s3FileServer/index.js",
190
- "import": "./dist/esm/services/fileserver/s3FileServer/index.js",
191
- "require": "./dist/cjs/services/fileserver/s3FileServer/index.js"
186
+ "./services/fileServer": {
187
+ "browser": "./dist/cjs/services/fileServer/index.js",
188
+ "import": "./dist/esm/services/fileServer/index.js",
189
+ "require": "./dist/cjs/services/fileServer/index.js"
192
190
  },
193
191
  "./services/postgresConnection": {
194
192
  "browser": "./dist/cjs/services/postgresConnection/index.js",
@@ -203,6 +201,10 @@
203
201
  "license": "MIT",
204
202
  "main": "index.js",
205
203
  "peerDependencies": {
204
+ "@opensearch-project/opensearch": "^1.2.0",
205
+ "cors": "^2.8.5",
206
+ "express": "^4.17.3",
207
+ "multer": "^1.4.5-lts.1",
206
208
  "postgres": "^3.4.5",
207
209
  "zod": "^3.23.8"
208
210
  },