tencentcloud-sdk-nodejs-organization 4.1.136 → 4.1.137
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
CHANGED
|
@@ -1338,6 +1338,10 @@ export interface UpdateUserRequest {
|
|
|
1338
1338
|
* 用户的电子邮箱。
|
|
1339
1339
|
*/
|
|
1340
1340
|
NewEmail?: string;
|
|
1341
|
+
/**
|
|
1342
|
+
* 是否需要重置密码
|
|
1343
|
+
*/
|
|
1344
|
+
NeedResetPassword?: boolean;
|
|
1341
1345
|
}
|
|
1342
1346
|
/**
|
|
1343
1347
|
* GetGroup请求参数结构体
|
|
@@ -3022,6 +3026,10 @@ export interface UserInfo {
|
|
|
3022
3026
|
* 用户密码
|
|
3023
3027
|
*/
|
|
3024
3028
|
Password?: string;
|
|
3029
|
+
/**
|
|
3030
|
+
* 下次登录是否需要重置密码, true: 需要重置密码, false:不需要重置密码
|
|
3031
|
+
*/
|
|
3032
|
+
NeedResetPassword?: boolean;
|
|
3025
3033
|
}
|
|
3026
3034
|
/**
|
|
3027
3035
|
* DeleteOrganizationMemberAuthIdentity返回参数结构体
|
|
@@ -4244,6 +4252,10 @@ export interface CreateUserRequest {
|
|
|
4244
4252
|
* 用户类型 Manual:手动创建,Synchronized:外部导入
|
|
4245
4253
|
*/
|
|
4246
4254
|
UserType?: string;
|
|
4255
|
+
/**
|
|
4256
|
+
* 是否需要重置密码: true: 需要重置 false: 不需要重置密码。 默认false
|
|
4257
|
+
*/
|
|
4258
|
+
NeedResetPassword?: boolean;
|
|
4247
4259
|
}
|
|
4248
4260
|
/**
|
|
4249
4261
|
* QuitOrganization返回参数结构体
|