@tapd/tapd-node-sdk 1.32.0-beta.4 → 1.32.0-beta.5
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 +1 -1
- package/src/index.js +32 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -7435,6 +7435,38 @@ module.exports = class API extends SDK {
|
|
|
7435
7435
|
);
|
|
7436
7436
|
}
|
|
7437
7437
|
|
|
7438
|
+
/**
|
|
7439
|
+
* @description 项目集关联项目
|
|
7440
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/program/program_relate_workspace.html
|
|
7441
|
+
* @scope program#w
|
|
7442
|
+
|
|
7443
|
+
*/
|
|
7444
|
+
programRelateWorkspace(...args) {
|
|
7445
|
+
return this.oAuthRequest.apply(
|
|
7446
|
+
this, [
|
|
7447
|
+
'/program/program_relate_workspace',
|
|
7448
|
+
'POST',
|
|
7449
|
+
...args
|
|
7450
|
+
]
|
|
7451
|
+
);
|
|
7452
|
+
}
|
|
7453
|
+
|
|
7454
|
+
/**
|
|
7455
|
+
* @description 项目集批量关联/取消关联业务对象
|
|
7456
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/program/program_bind_entities.html
|
|
7457
|
+
* @scope program#w
|
|
7458
|
+
|
|
7459
|
+
*/
|
|
7460
|
+
programBindEntities(...args) {
|
|
7461
|
+
return this.oAuthRequest.apply(
|
|
7462
|
+
this, [
|
|
7463
|
+
'/program/program_bind_entities',
|
|
7464
|
+
'POST',
|
|
7465
|
+
...args
|
|
7466
|
+
]
|
|
7467
|
+
);
|
|
7468
|
+
}
|
|
7469
|
+
|
|
7438
7470
|
|
|
7439
7471
|
}
|
|
7440
7472
|
module.exports.FILE = FILE;
|