gcf-common-lib 0.32.62 → 0.32.63

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +2 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gcf-common-lib",
3
3
  "description": "",
4
- "version": "0.32.62",
4
+ "version": "0.32.63",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "branches": [
package/src/index.ts CHANGED
@@ -168,6 +168,8 @@ export class GcfCommon {
168
168
  metadataOrAttribute = this.getRequestMessage(payload.request)?.attributes;
169
169
  }
170
170
 
171
+ console.log('metadataOrAttribute:', metadataOrAttribute);
172
+
171
173
  return metadataOrAttribute ?? {};
172
174
  }
173
175