tencentcloud-sdk-nodejs 4.0.281 → 4.0.282
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/CHANGELOG.md +97 -0
- package/SERVICE_CHANGELOG.md +131 -42
- package/package.json +1 -1
- package/products.md +6 -6
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ame/v20190916/ame_client.ts +108 -64
- package/src/services/ame/v20190916/ame_models.ts +1107 -871
- package/src/services/cam/v20190116/cam_models.ts +6 -0
- package/src/services/cme/v20191029/cme_client.ts +17 -7
- package/src/services/cme/v20191029/cme_models.ts +415 -139
- package/src/services/partners/v20180321/partners_models.ts +4 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ame/v20190916/ame_client.d.ts +20 -5
- package/tencentcloud/services/ame/v20190916/ame_client.js +27 -6
- package/tencentcloud/services/ame/v20190916/ame_models.d.ts +948 -748
- package/tencentcloud/services/cam/v20190116/cam_models.d.ts +5 -0
- package/tencentcloud/services/cme/v20191029/cme_client.d.ts +1 -1
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +359 -123
- package/tencentcloud/services/partners/v20180321/partners_models.d.ts +4 -4
- package/test/ame.v20190916.test.js +34 -4
|
@@ -574,11 +574,11 @@ export interface DescribeAgentClientsResponse {
|
|
|
574
574
|
*/
|
|
575
575
|
export interface AgentDealNewElem {
|
|
576
576
|
/**
|
|
577
|
-
* 订单自增 ID
|
|
577
|
+
* 订单自增 ID【请勿依赖该字段作为唯一标识】
|
|
578
578
|
*/
|
|
579
579
|
DealId: string;
|
|
580
580
|
/**
|
|
581
|
-
*
|
|
581
|
+
* 订单号【订单唯一键】
|
|
582
582
|
*/
|
|
583
583
|
DealName: string;
|
|
584
584
|
/**
|
|
@@ -1228,11 +1228,11 @@ export interface AgentPayDealsResponse {
|
|
|
1228
1228
|
*/
|
|
1229
1229
|
export interface AgentDealElem {
|
|
1230
1230
|
/**
|
|
1231
|
-
* 订单自增 ID
|
|
1231
|
+
* 订单自增 ID【请勿依赖该字段作为唯一标识】
|
|
1232
1232
|
*/
|
|
1233
1233
|
DealId: string;
|
|
1234
1234
|
/**
|
|
1235
|
-
*
|
|
1235
|
+
* 订单号【订单唯一键】
|
|
1236
1236
|
*/
|
|
1237
1237
|
DealName: string;
|
|
1238
1238
|
/**
|
|
@@ -68,9 +68,9 @@ it("ame.v20190916.DescribeCloudMusicPurchased", async function () {
|
|
|
68
68
|
}
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
-
it("ame.v20190916.
|
|
71
|
+
it("ame.v20190916.DescribePkgOfflineMusic", async function () {
|
|
72
72
|
try {
|
|
73
|
-
const data = await client.
|
|
73
|
+
const data = await client.DescribePkgOfflineMusic({})
|
|
74
74
|
expect(data).to.be.ok
|
|
75
75
|
} catch(error) {
|
|
76
76
|
expect(error.requestId).to.be.ok
|
|
@@ -78,9 +78,9 @@ it("ame.v20190916.ReportData", async function () {
|
|
|
78
78
|
}
|
|
79
79
|
})
|
|
80
80
|
|
|
81
|
-
it("ame.v20190916.
|
|
81
|
+
it("ame.v20190916.DescribeKTVSingerMusics", async function () {
|
|
82
82
|
try {
|
|
83
|
-
const data = await client.
|
|
83
|
+
const data = await client.DescribeKTVSingerMusics({})
|
|
84
84
|
expect(data).to.be.ok
|
|
85
85
|
} catch(error) {
|
|
86
86
|
expect(error.requestId).to.be.ok
|
|
@@ -168,6 +168,26 @@ it("ame.v20190916.DescribeKTVPlaylistDetail", async function () {
|
|
|
168
168
|
}
|
|
169
169
|
})
|
|
170
170
|
|
|
171
|
+
it("ame.v20190916.ReportData", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.ReportData({})
|
|
174
|
+
expect(data).to.be.ok
|
|
175
|
+
} catch(error) {
|
|
176
|
+
expect(error.requestId).to.be.ok
|
|
177
|
+
expect(error.code).to.be.ok
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
|
|
181
|
+
it("ame.v20190916.DescribeKTVSingerCategories", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.DescribeKTVSingerCategories({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
171
191
|
it("ame.v20190916.DescribeStations", async function () {
|
|
172
192
|
try {
|
|
173
193
|
const data = await client.DescribeStations({})
|
|
@@ -208,6 +228,16 @@ it("ame.v20190916.DescribeMusicSaleStatus", async function () {
|
|
|
208
228
|
}
|
|
209
229
|
})
|
|
210
230
|
|
|
231
|
+
it("ame.v20190916.DescribeKTVSingers", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.DescribeKTVSingers({})
|
|
234
|
+
expect(data).to.be.ok
|
|
235
|
+
} catch(error) {
|
|
236
|
+
expect(error.requestId).to.be.ok
|
|
237
|
+
expect(error.code).to.be.ok
|
|
238
|
+
}
|
|
239
|
+
})
|
|
240
|
+
|
|
211
241
|
it("ame.v20190916.DestroyKTVRobot", async function () {
|
|
212
242
|
try {
|
|
213
243
|
const data = await client.DestroyKTVRobot({})
|