@tapd/tapd-node-sdk 1.53.1 → 1.54.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.
@@ -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.1",
3
+ "version": "1.54.0",
4
4
  "description": "node sdk for open tapd ",
5
5
  "main": "node-sdk/src/index.js",
6
6
  "scripts": {
@@ -44,8 +44,5 @@
44
44
  "directories": {
45
45
  "test": "test"
46
46
  },
47
- "gitHead": "230d7532952a9001df63278928feb162a99c3c6e",
48
- "publishConfig": {
49
- "tag": "latest"
50
- }
47
+ "gitHead": "9f1b40c1debe95fbd98fedd6367bc36f49d27b72"
51
48
  }