@taskcluster/client 97.0.1 → 97.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.
- package/package.json +2 -2
- package/src/apis.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taskcluster/client",
|
|
3
|
-
"version": "97.0
|
|
3
|
+
"version": "97.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",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"nock": "^13.5.5"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "24.
|
|
26
|
+
"node": "24.14.0"
|
|
27
27
|
},
|
|
28
28
|
"type": "module",
|
|
29
29
|
"files": [
|
package/src/apis.js
CHANGED
|
@@ -1352,7 +1352,7 @@ export default {
|
|
|
1352
1352
|
"hookId"
|
|
1353
1353
|
],
|
|
1354
1354
|
"category": "Hooks",
|
|
1355
|
-
"description": "This endpoint will trigger the creation of a task from a hook definition.\n\nThe HTTP payload must match the hooks `triggerSchema`. If it does, it is\nprovided as the `payload` property of the JSON-e context used to render the\ntask template.",
|
|
1355
|
+
"description": "This endpoint will trigger the creation of a task from a hook definition.\n\nThe HTTP payload must match the hooks `triggerSchema`. If it does, it is\nprovided as the `payload` property of the JSON-e context used to render the\ntask template.\n\nOptionally, a `taskId` can be provided in the payload which the hook task\nwill use. It must be unique and follow the slugid format.",
|
|
1356
1356
|
"input": "v1/trigger-hook.json#",
|
|
1357
1357
|
"method": "post",
|
|
1358
1358
|
"name": "triggerHook",
|
|
@@ -1408,7 +1408,7 @@ export default {
|
|
|
1408
1408
|
"token"
|
|
1409
1409
|
],
|
|
1410
1410
|
"category": "Hooks",
|
|
1411
|
-
"description": "This endpoint triggers a defined hook with a valid token.\n\nThe HTTP payload must match the hooks `triggerSchema`. If it does, it is\nprovided as the `payload` property of the JSON-e context used to render the\ntask template.",
|
|
1411
|
+
"description": "This endpoint triggers a defined hook with a valid token.\n\nThe HTTP payload must match the hooks `triggerSchema`. If it does, it is\nprovided as the `payload` property of the JSON-e context used to render the\ntask template.\n\nOptionally, a `taskId` can be provided in the payload which the hook task\nwill use. It must be unique and follow the slugid format.",
|
|
1412
1412
|
"input": "v1/trigger-hook.json#",
|
|
1413
1413
|
"method": "post",
|
|
1414
1414
|
"name": "triggerHookWithToken",
|