@tapd/tapd-node-sdk 1.62.0 → 1.63.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.
@@ -8610,6 +8610,24 @@ module.exports = class API extends SDK {
8610
8610
  );
8611
8611
  }
8612
8612
 
8613
+ /**
8614
+ * @description 获取需求通过视图配置id
8615
+ * @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/story/get_stories_by_view_conf_id.html
8616
+ * @scope story#r
8617
+
8618
+ * @params - {integer} view_conf_id 视图ID
8619
+ * @params - {integer} workspace_id 项目ID
8620
+ */
8621
+ getStoriesByViewConfId(...args) {
8622
+ return this.oAuthRequest.apply(
8623
+ this, [
8624
+ '/stories/get_stories_by_view_conf_id',
8625
+ 'GET',
8626
+ ...args
8627
+ ]
8628
+ );
8629
+ }
8630
+
8613
8631
 
8614
8632
  }
8615
8633
  module.exports.FILE = FILE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapd/tapd-node-sdk",
3
- "version": "1.62.0",
3
+ "version": "1.63.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": "fcc6608902904ba09589631920d200891728d8b1"
47
+ "gitHead": "d4353aa348e5d5cca6ea3b6d181f850599f34aba"
48
48
  }