@sebspark/gcp-iam 0.4.0 → 0.4.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/dist/index.js CHANGED
@@ -113,6 +113,7 @@ var getApiGatewayToken = async ({
113
113
  "signBlob(...) returned an empty response. Cannot sign JWT."
114
114
  );
115
115
  }
116
+ console.log("IAM KeyID", response.keyId);
116
117
  const signature = Buffer.from(response.signedBlob).toString("base64");
117
118
  const signedJWT = `${unsignedJWT}.${signature}`;
118
119
  apiGatewayJwtCache.put(key || apiURL, signedJWT, ttl);
package/dist/index.mjs CHANGED
@@ -87,6 +87,7 @@ var getApiGatewayToken = async ({
87
87
  "signBlob(...) returned an empty response. Cannot sign JWT."
88
88
  );
89
89
  }
90
+ console.log("IAM KeyID", response.keyId);
90
91
  const signature = Buffer.from(response.signedBlob).toString("base64");
91
92
  const signedJWT = `${unsignedJWT}.${signature}`;
92
93
  apiGatewayJwtCache.put(key || apiURL, signedJWT, ttl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sebspark/gcp-iam",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",