@tapd/tapd-node-sdk 1.53.0 → 1.53.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 +16 -0
- package/package.json +2 -2
package/node-sdk/src/index.js
CHANGED
|
@@ -8416,6 +8416,22 @@ module.exports = class API extends SDK {
|
|
|
8416
8416
|
);
|
|
8417
8417
|
}
|
|
8418
8418
|
|
|
8419
|
+
/**
|
|
8420
|
+
* @description 批量禁用用户
|
|
8421
|
+
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/user/batch_disable_user.html
|
|
8422
|
+
* @scope user#w
|
|
8423
|
+
|
|
8424
|
+
*/
|
|
8425
|
+
batchDisableUser(...args) {
|
|
8426
|
+
return this.oAuthRequest.apply(
|
|
8427
|
+
this, [
|
|
8428
|
+
'/users/batch_disable',
|
|
8429
|
+
'POST',
|
|
8430
|
+
...args
|
|
8431
|
+
]
|
|
8432
|
+
);
|
|
8433
|
+
}
|
|
8434
|
+
|
|
8419
8435
|
/**
|
|
8420
8436
|
* @description 批量新建用户
|
|
8421
8437
|
* @link o.tapd.tencent.com/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/user/batch_new_user.html
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tapd/tapd-node-sdk",
|
|
3
|
-
"version": "1.53.0",
|
|
3
|
+
"version": "1.53.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": "38796dd6b84e2ea5be69e7f2839e2c8af70fe813"
|
|
48
48
|
}
|