quidproquo-actionprocessor-awslambda 0.0.111 → 0.0.112

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.
@@ -97,6 +97,8 @@ const getEventBusSnsTopicArn = (eventBusName, qpqConfig, module, environment, ap
97
97
  const accountInfo = (0, quidproquo_config_aws_1.getAwsServiceAccountInfoByDeploymentInfo)(qpqConfig, module, environment, feature, application);
98
98
  const awsAccountId = accountInfo.awsAccountId;
99
99
  const region = accountInfo.awsRegion;
100
- return `arn:aws:sns:${region}:${awsAccountId}:${topicName}`;
100
+ const arn = `arn:aws:sns:${region}:${awsAccountId}:${topicName}`;
101
+ console.log('TopicARN: ', arn);
102
+ return arn;
101
103
  };
102
104
  exports.getEventBusSnsTopicArn = getEventBusSnsTopicArn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-actionprocessor-awslambda",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.js",