idea-aws 3.16.5 → 3.16.7
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.
|
@@ -120,7 +120,8 @@ class ResourceController extends genericController_1.GenericController {
|
|
|
120
120
|
queryParams: this.queryParams,
|
|
121
121
|
body: this.body,
|
|
122
122
|
version: this.clientVersion,
|
|
123
|
-
platform: this.clientPlatform
|
|
123
|
+
platform: this.clientPlatform,
|
|
124
|
+
bundle: this.clientBundle
|
|
124
125
|
};
|
|
125
126
|
this.logger.info(`START: ${this.httpMethod} ${this.path}`, info);
|
|
126
127
|
}
|
|
@@ -342,6 +343,7 @@ class ResourceController extends genericController_1.GenericController {
|
|
|
342
343
|
this.metrics.addDimension('userId', this.principalId);
|
|
343
344
|
this.metrics.addDimension('clientVersion', this.clientVersion);
|
|
344
345
|
this.metrics.addDimension('clientPlatform', this.clientPlatform);
|
|
346
|
+
this.metrics.addDimension('clientBundle', this.clientBundle ?? '-');
|
|
345
347
|
this.metrics.addMetadata('resourceId', this.resourceId);
|
|
346
348
|
}
|
|
347
349
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "idea-aws",
|
|
3
|
-
"version": "3.16.
|
|
3
|
+
"version": "3.16.7",
|
|
4
4
|
"description": "AWS wrappers to use in IDEA's back-ends",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://iter-idea.github.io/IDEA-AWS",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@aws-lambda-powertools/metrics": "^1.
|
|
40
|
-
"idea-toolbox": "^6.
|
|
39
|
+
"@aws-lambda-powertools/metrics": "^1.12.1",
|
|
40
|
+
"idea-toolbox": "^6.7.3",
|
|
41
41
|
"nanoid": "^3.3.4",
|
|
42
|
-
"nodemailer": "^6.
|
|
42
|
+
"nodemailer": "^6.9.4",
|
|
43
43
|
"shortid": "^2.2.16",
|
|
44
44
|
"source-map-support": "^0.5.21",
|
|
45
|
-
"uuid": "^
|
|
45
|
+
"uuid": "^9.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@tsconfig/node16": "^1.0.3",
|