ac-support-connector 1.0.6 → 1.0.7
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/CHANGELOG.md +9 -0
- package/README.md +3 -0
- package/index.js +10 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
|
|
2
|
+
## [1.0.7](https://github.com/admiralcloud/ac-support-connector/compare/v1.0.6..v1.0.7) (2025-03-30 14:32:39)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fix
|
|
6
|
+
|
|
7
|
+
* **Connector:** Allow parameter SUPPORT_CHECK_PROJECT for support check | MP | [a1def330f0cbe5ffbe91e2eb54b92fac5a273a13](https://github.com/admiralcloud/ac-support-connector/commit/a1def330f0cbe5ffbe91e2eb54b92fac5a273a13)
|
|
8
|
+
With SUPPORT_CHECK_PROJECT you can define the project for the support check
|
|
9
|
+
Related issues:
|
|
10
|
+
|
|
2
11
|
## [1.0.6](https://github.com/admiralcloud/ac-support-connector/compare/v1.0.5..v1.0.6) (2025-03-30 13:21:21)
|
|
3
12
|
|
|
4
13
|
|
package/README.md
CHANGED
package/index.js
CHANGED
|
@@ -48,9 +48,17 @@ module.exports = {
|
|
|
48
48
|
const ticket = {
|
|
49
49
|
platforms: [process.env.SUPPORT_CHECK],
|
|
50
50
|
subject: 'SupportConnector | SupportCheck | TestMessage',
|
|
51
|
-
text: `This is a random test message to show that support connector is working for this service | ${identifier}`,
|
|
52
51
|
reporter: 'DevOps',
|
|
53
|
-
|
|
52
|
+
message: [{
|
|
53
|
+
type: 'text',
|
|
54
|
+
content: `This is a random test message to show that support connector is working for this service | ${identifier}`
|
|
55
|
+
}]
|
|
56
|
+
}
|
|
57
|
+
if (process.env.SUPPORT_CHECK_PROJECT) {
|
|
58
|
+
ticket.message.push({
|
|
59
|
+
type: 'project',
|
|
60
|
+
content: process.env.SUPPORT_CHECK_PROJECT
|
|
61
|
+
})
|
|
54
62
|
}
|
|
55
63
|
await this.createMessage(ticket)
|
|
56
64
|
console.warn(`Test Message ${identifier} sent`)
|
package/package.json
CHANGED