tencentcloud-sdk-nodejs-intl-en 3.0.621 → 3.0.623
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
|
@@ -122,7 +122,7 @@ class ApplyConcurrentRequest extends AbstractModel {
|
|
|
122
122
|
this.UserId = null;
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
125
|
+
* Public IP of user’s application client, which is used for nearby scheduling.
|
|
126
126
|
* @type {string || null}
|
|
127
127
|
*/
|
|
128
128
|
this.UserIp = null;
|
|
@@ -139,6 +139,12 @@ class ApplyConcurrentRequest extends AbstractModel {
|
|
|
139
139
|
*/
|
|
140
140
|
this.ApplicationVersionId = null;
|
|
141
141
|
|
|
142
|
+
/**
|
|
143
|
+
* Application ID, which is used only by the multi-application project to specify applications. For a single-application project, this parameter is ignored, and the application bound to the project will be used.
|
|
144
|
+
* @type {string || null}
|
|
145
|
+
*/
|
|
146
|
+
this.ApplicationId = null;
|
|
147
|
+
|
|
142
148
|
}
|
|
143
149
|
|
|
144
150
|
/**
|
|
@@ -152,6 +158,7 @@ class ApplyConcurrentRequest extends AbstractModel {
|
|
|
152
158
|
this.UserIp = 'UserIp' in params ? params.UserIp : null;
|
|
153
159
|
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
154
160
|
this.ApplicationVersionId = 'ApplicationVersionId' in params ? params.ApplicationVersionId : null;
|
|
161
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
155
162
|
|
|
156
163
|
}
|
|
157
164
|
}
|
|
@@ -199,7 +206,7 @@ class CreateSessionRequest extends AbstractModel {
|
|
|
199
206
|
this.UserId = null;
|
|
200
207
|
|
|
201
208
|
/**
|
|
202
|
-
*
|
|
209
|
+
* Public IP of user’s application client, which is used for nearby scheduling.
|
|
203
210
|
* @type {string || null}
|
|
204
211
|
*/
|
|
205
212
|
this.UserIp = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.623";
|
|
2
2
|
module.exports = sdkVersion
|