idea-aws 3.16.5 → 3.16.6

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.5",
3
+ "version": "3.16.6",
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",