tencentcloud-sdk-nodejs-dbbrain 4.1.4 → 4.1.6
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/README.md
CHANGED
|
@@ -44,11 +44,19 @@ npm install tencentcloud-sdk-nodejs-vpc --save
|
|
|
44
44
|
|
|
45
45
|
### 安装全产品 SDK
|
|
46
46
|
|
|
47
|
+
如果项目依赖的云产品较多,可以引入全产品 SDK。
|
|
48
|
+
|
|
47
49
|
```
|
|
48
50
|
npm install tencentcloud-sdk-nodejs --save
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
全产品 SDK
|
|
53
|
+
全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
|
|
54
|
+
|
|
55
|
+
如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
npm install tencentcloud-sdk-slim-nodejs --save
|
|
59
|
+
```
|
|
52
60
|
|
|
53
61
|
## 通过源码包安装
|
|
54
62
|
|
package/package.json
CHANGED
|
@@ -2493,12 +2493,10 @@ export interface MongoDBIndex {
|
|
|
2493
2493
|
Score?: number;
|
|
2494
2494
|
/**
|
|
2495
2495
|
* 推荐索引列表。
|
|
2496
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2497
2496
|
*/
|
|
2498
2497
|
IndexesToBuild?: Array<IndexesToBuild>;
|
|
2499
2498
|
/**
|
|
2500
2499
|
* 无效索引列表。
|
|
2501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2502
2500
|
*/
|
|
2503
2501
|
IndexesToDrop?: Array<IndexesToDrop>;
|
|
2504
2502
|
}
|
|
@@ -2995,12 +2993,10 @@ export interface DescribeTopSpaceTablesRequest {
|
|
|
2995
2993
|
export interface ReceiveUin {
|
|
2996
2994
|
/**
|
|
2997
2995
|
* 用户名
|
|
2998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2999
2996
|
*/
|
|
3000
2997
|
UinName?: string;
|
|
3001
2998
|
/**
|
|
3002
2999
|
* 用户id
|
|
3003
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3004
3000
|
*/
|
|
3005
3001
|
Uin?: string;
|
|
3006
3002
|
}
|