ac-support-connector 1.0.2 → 1.0.4

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/index.js +2 -1
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ <a name="1.0.4"></a>
2
+
3
+ ## [1.0.4](https://github.com/admiralcloud/ac-support-connector/compare/v1.0.3..v1.0.4) (2024-10-17 15:55:30)
4
+
5
+
6
+ ### Bug Fix
7
+
8
+ * **Connector:** Package updates | MP | [a939e01c01664f815a5c0e340395c6d00c3dbf83](https://github.com/admiralcloud/ac-support-connector/commit/a939e01c01664f815a5c0e340395c6d00c3dbf83)
9
+ Package updates
10
+ Related issues: [/issues#undefined](https://github.com//issues/undefined)
11
+ <a name="1.0.3"></a>
12
+
13
+ ## [1.0.3](https://github.com/admiralcloud/ac-support-connector/compare/v1.0.2..v1.0.3) (2024-08-28 07:31:10)
14
+
15
+
16
+ ### Bug Fix
17
+
18
+ * **Connector:** Return result from SQS | MP | [0f2b03016c7257d5884186093f25c179907e3a1f](https://github.com/admiralcloud/ac-support-connector/commit/0f2b03016c7257d5884186093f25c179907e3a1f)
19
+ Return return from SQS to calling function/platform
20
+ Related issues: [undefined/undefined#master](undefined/browse/master)
1
21
  <a name="1.0.2"></a>
2
22
 
3
23
  ## [1.0.2](https://github.com/admiralcloud/ac-support-connector/compare/v1.0.1..v1.0.2) (2024-08-28 06:57:59)
package/index.js CHANGED
@@ -87,8 +87,9 @@ module.exports = {
87
87
  return messagePayload
88
88
  }
89
89
  try {
90
- await this.acsqs.sendSQSMessage({ name: this.sqsQueue, message: JSON.stringify(messagePayload), messageGroupId: (messageGroupId || this.serviceName) })
90
+ const response = await this.acsqs.sendSQSMessage({ name: this.sqsQueue, message: JSON.stringify(messagePayload), messageGroupId: (messageGroupId || this.serviceName) })
91
91
  if (this.debugMode) console.warn(response)
92
+ return response
92
93
  }
93
94
  catch(e) {
94
95
  console.error('%s | Subject %s | Failed %j', functionName, subject, e?.message)
package/package.json CHANGED
@@ -3,15 +3,15 @@
3
3
  "author": "Mark Poepping (https://www.admiralcloud.com)",
4
4
  "license": "MIT",
5
5
  "repository": "admiralcloud/ac-support-connector",
6
- "version": "1.0.2",
6
+ "version": "1.0.4",
7
7
  "dependencies": {
8
- "ac-sqs": "^2.0.4",
8
+ "ac-sqs": "^3.0.0",
9
9
  "node-cache": "^5.1.2"
10
10
  },
11
11
  "devDependencies": {
12
- "ac-semantic-release": "^0.4.2",
12
+ "ac-semantic-release": "^0.4.3",
13
13
  "chai": "^4.5.0",
14
- "eslint": "^9.9.1",
14
+ "eslint": "^9.12.0",
15
15
  "expect": "^29.7.0",
16
16
  "ioredis": "^5.4.1",
17
17
  "mocha": "^10.7.3"