@taskcluster/client 108.0.0 → 108.1.0

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/apis.js +29 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taskcluster/client",
3
- "version": "108.0.0",
3
+ "version": "108.1.0",
4
4
  "author": "Jonas Finnemann Jensen <jopsen@gmail.com>",
5
5
  "description": "Client for interfacing taskcluster components",
6
6
  "license": "MPL-2.0",
package/src/apis.js CHANGED
@@ -1096,6 +1096,35 @@ export default {
1096
1096
  "title": "GitHub push Event",
1097
1097
  "type": "topic-exchange"
1098
1098
  },
1099
+ {
1100
+ "description": "When a GitHub push event changes a repository's `.taskcluster.yml` it will\nbe broadcast on this exchange with the designated `organization` and\n`repository` in the routing-key.\n\nThe payload names the repository and the ref that was pushed to, and\nnothing more. The file itself does not travel with the message, so a\nconsumer reading it cannot be steered by the pushed commits.\n\nDetection is best effort. A force push that drops a commit reports no\nchanged files to GitHub, so reverting the file that way sends no message.",
1101
+ "exchange": "taskcluster-yml-update",
1102
+ "name": "taskclusterYmlUpdate",
1103
+ "routingKey": [
1104
+ {
1105
+ "constant": "primary",
1106
+ "multipleWords": false,
1107
+ "name": "routingKeyKind",
1108
+ "required": true,
1109
+ "summary": "Identifier for the routing-key kind. This is always `\"primary\"` for the formalized routing key."
1110
+ },
1111
+ {
1112
+ "multipleWords": false,
1113
+ "name": "organization",
1114
+ "required": true,
1115
+ "summary": "The GitHub `organization` which had an event. All periods have been replaced by % - such that foo.bar becomes foo%bar - and all other special characters aside from - and _ have been stripped."
1116
+ },
1117
+ {
1118
+ "multipleWords": false,
1119
+ "name": "repository",
1120
+ "required": true,
1121
+ "summary": "The GitHub `repository` which had an event.All periods have been replaced by % - such that foo.bar becomes foo%bar - and all other special characters aside from - and _ have been stripped."
1122
+ }
1123
+ ],
1124
+ "schema": "v1/taskcluster-yml-update-message.json#",
1125
+ "title": "Taskcluster Yml Update Event",
1126
+ "type": "topic-exchange"
1127
+ },
1099
1128
  {
1100
1129
  "description": "When a GitHub release event is posted it will be broadcast on this\nexchange with the designated `organization` and `repository`\nin the routing-key along with event specific metadata in the payload.",
1101
1130
  "exchange": "release",