@tapd/tapd-node-sdk 1.58.0 → 1.58.1-alpha.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/node-sdk/src/index.js +32 -0
- package/package.json +2 -2
package/node-sdk/src/index.js
CHANGED
|
@@ -8577,6 +8577,38 @@ module.exports = class API extends SDK {
|
|
|
8577
8577
|
);
|
|
8578
8578
|
}
|
|
8579
8579
|
|
|
8580
|
+
/**
|
|
8581
|
+
* @description 创建需求关联关系
|
|
8582
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/story/add_story_link_relations.html
|
|
8583
|
+
* @scope story#w
|
|
8584
|
+
|
|
8585
|
+
*/
|
|
8586
|
+
addStoryLinkRelations(...args) {
|
|
8587
|
+
return this.oAuthRequest.apply(
|
|
8588
|
+
this, [
|
|
8589
|
+
'/stories/add_story_link_relations',
|
|
8590
|
+
'POST',
|
|
8591
|
+
...args
|
|
8592
|
+
]
|
|
8593
|
+
);
|
|
8594
|
+
}
|
|
8595
|
+
|
|
8596
|
+
/**
|
|
8597
|
+
* @description 解除需求关联关系
|
|
8598
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/story/remove_story_link_relation.html
|
|
8599
|
+
* @scope story#w
|
|
8600
|
+
|
|
8601
|
+
*/
|
|
8602
|
+
removeStoryLinkRelation(...args) {
|
|
8603
|
+
return this.oAuthRequest.apply(
|
|
8604
|
+
this, [
|
|
8605
|
+
'/stories/remove_story_link_relation',
|
|
8606
|
+
'POST',
|
|
8607
|
+
...args
|
|
8608
|
+
]
|
|
8609
|
+
);
|
|
8610
|
+
}
|
|
8611
|
+
|
|
8580
8612
|
|
|
8581
8613
|
}
|
|
8582
8614
|
module.exports.FILE = FILE;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tapd/tapd-node-sdk",
|
|
3
|
-
"version": "1.58.0",
|
|
3
|
+
"version": "1.58.1-alpha.0",
|
|
4
4
|
"description": "node sdk for open tapd ",
|
|
5
5
|
"main": "node-sdk/src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"directories": {
|
|
45
45
|
"test": "test"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "145a77d775d14b4d9f654f13d5ff167c91fddd40"
|
|
48
48
|
}
|