@tapd/tapd-node-sdk 1.66.1-alpha.0 → 1.66.1-alpha.1
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 +51 -0
- package/package.json +2 -2
package/node-sdk/src/index.js
CHANGED
|
@@ -8647,6 +8647,57 @@ module.exports = class API extends SDK {
|
|
|
8647
8647
|
);
|
|
8648
8648
|
}
|
|
8649
8649
|
|
|
8650
|
+
/**
|
|
8651
|
+
* @description 用户待办需求
|
|
8652
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/user/get_user_todo_story.html
|
|
8653
|
+
* @scope user#r
|
|
8654
|
+
|
|
8655
|
+
* @params - {integer} workspace_id 项目ID
|
|
8656
|
+
*/
|
|
8657
|
+
getUserTodoStory(...args) {
|
|
8658
|
+
return this.oAuthRequest.apply(
|
|
8659
|
+
this, [
|
|
8660
|
+
'/user_oauth/get_user_todo_story',
|
|
8661
|
+
'GET',
|
|
8662
|
+
...args
|
|
8663
|
+
]
|
|
8664
|
+
);
|
|
8665
|
+
}
|
|
8666
|
+
|
|
8667
|
+
/**
|
|
8668
|
+
* @description 用户待办缺陷
|
|
8669
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/user/get_user_todo_bug.html
|
|
8670
|
+
* @scope user#r
|
|
8671
|
+
|
|
8672
|
+
* @params - {integer} workspace_id 项目ID
|
|
8673
|
+
*/
|
|
8674
|
+
getUserTodoBug(...args) {
|
|
8675
|
+
return this.oAuthRequest.apply(
|
|
8676
|
+
this, [
|
|
8677
|
+
'/user_oauth/get_user_todo_bug',
|
|
8678
|
+
'GET',
|
|
8679
|
+
...args
|
|
8680
|
+
]
|
|
8681
|
+
);
|
|
8682
|
+
}
|
|
8683
|
+
|
|
8684
|
+
/**
|
|
8685
|
+
* @description 用户待办任务
|
|
8686
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/user/get_user_todo_task.html
|
|
8687
|
+
* @scope user#r
|
|
8688
|
+
|
|
8689
|
+
* @params - {integer} workspace_id 项目ID
|
|
8690
|
+
*/
|
|
8691
|
+
getUserTodoTask(...args) {
|
|
8692
|
+
return this.oAuthRequest.apply(
|
|
8693
|
+
this, [
|
|
8694
|
+
'/user_oauth/get_user_todo_task',
|
|
8695
|
+
'GET',
|
|
8696
|
+
...args
|
|
8697
|
+
]
|
|
8698
|
+
);
|
|
8699
|
+
}
|
|
8700
|
+
|
|
8650
8701
|
|
|
8651
8702
|
}
|
|
8652
8703
|
module.exports.FILE = FILE;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tapd/tapd-node-sdk",
|
|
3
|
-
"version": "1.66.1-alpha.
|
|
3
|
+
"version": "1.66.1-alpha.1",
|
|
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": "af4f176a6656f2c693f1c4756d6bf61b00c4a9b7"
|
|
48
48
|
}
|