plenna_utilities 1.0.10 → 1.0.11

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.
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.PlennaGoogleService = void 0;
7
7
  const docs_1 = __importDefault(require("@googleapis/docs"));
8
8
  const drive_1 = require("@googleapis/drive");
9
- const { getSecret } = require('./secrets');
9
+ const getSecret = (type) => type;
10
10
  class PlennaGoogleService {
11
11
  credentials;
12
12
  constructor(credentials) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plenna_utilities",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "plenna's utils for backend projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,8 @@
8
8
  "dist/"
9
9
  ],
10
10
  "scripts": {
11
- "build": "tsc"
11
+ "lint": "rm -rf dist && eslint .",
12
+ "build": "npm run lint && tsc"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git"
@@ -21,15 +22,19 @@
21
22
  "author": "@plenna",
22
23
  "license": "ISC",
23
24
  "devDependencies": {
24
- "@types/aws-lambda": "^8.10.138",
25
- "@types/node": "^20.14.2",
26
- "typescript": "^5.4.5"
25
+ "@eslint/js": "^9.5.0",
26
+ "@types/aws-lambda": "^8.10.140",
27
+ "@types/eslint__js": "^8.42.3",
28
+ "@types/node": "^20.14.5",
29
+ "eslint": "^8.57.0",
30
+ "typescript": "^5.4.5",
31
+ "typescript-eslint": "^7.13.1"
27
32
  },
28
33
  "dependencies": {
29
- "@aws-sdk/client-s3": "^3.596.0",
30
- "@aws-sdk/s3-request-presigner": "^3.596.0",
34
+ "@aws-sdk/client-s3": "^3.600.0",
35
+ "@aws-sdk/s3-request-presigner": "^3.600.0",
31
36
  "@googleapis/docs": "^3.0.2",
32
37
  "@googleapis/drive": "^8.10.0",
33
38
  "@googleapis/sheets": "^8.0.0"
34
39
  }
35
- }
40
+ }