tencentcloud-sdk-nodejs 4.0.940 → 4.0.942

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.
Files changed (72) hide show
  1. package/CHANGELOG.md +383 -0
  2. package/SERVICE_CHANGELOG.md +611 -38
  3. package/package.json +1 -1
  4. package/products.md +15 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/as/v20180419/as_models.ts +8 -0
  7. package/src/services/asr/v20190614/asr_client.ts +71 -57
  8. package/src/services/asr/v20190614/asr_models.ts +967 -895
  9. package/src/services/cfg/v20210820/cfg_models.ts +4 -0
  10. package/src/services/cwp/v20180228/cwp_client.ts +5 -3
  11. package/src/services/cwp/v20180228/cwp_models.ts +131 -48
  12. package/src/services/dlc/v20210125/dlc_models.ts +4 -0
  13. package/src/services/dsgc/v20190723/dsgc_models.ts +1 -1
  14. package/src/services/ims/v20201229/ims_client.ts +1 -1
  15. package/src/services/ims/v20201229/ims_models.ts +3 -3
  16. package/src/services/index.ts +1 -0
  17. package/src/services/lke/v20231130/lke_client.ts +576 -478
  18. package/src/services/lke/v20231130/lke_models.ts +516 -98
  19. package/src/services/mps/v20190612/mps_models.ts +8 -3
  20. package/src/services/mqtt/index.ts +5 -0
  21. package/src/services/mqtt/v20240516/index.ts +6 -0
  22. package/src/services/mqtt/v20240516/mqtt_client.ts +275 -0
  23. package/src/services/mqtt/v20240516/mqtt_models.ts +1112 -0
  24. package/src/services/tcss/v20201101/tcss_client.ts +4 -2
  25. package/src/services/tke/v20180525/tke_client.ts +40 -16
  26. package/src/services/tke/v20180525/tke_models.ts +154 -70
  27. package/src/services/vdb/v20230616/vdb_models.ts +5 -0
  28. package/src/services/vod/v20180717/vod_client.ts +2 -1
  29. package/src/services/vod/v20180717/vod_models.ts +34 -1
  30. package/src/services/vpc/v20170312/vpc_models.ts +17 -1
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/as/v20180419/as_models.d.ts +8 -0
  34. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +5 -1
  35. package/tencentcloud/services/asr/v20190614/asr_client.js +6 -0
  36. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +998 -930
  37. package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +4 -0
  38. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +1 -1
  39. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +128 -47
  40. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +4 -0
  41. package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +1 -1
  42. package/tencentcloud/services/ims/v20201229/ims_client.d.ts +1 -1
  43. package/tencentcloud/services/ims/v20201229/ims_client.js +1 -1
  44. package/tencentcloud/services/ims/v20201229/ims_models.d.ts +3 -3
  45. package/tencentcloud/services/index.d.ts +1 -0
  46. package/tencentcloud/services/index.js +2 -0
  47. package/tencentcloud/services/lke/v20231130/lke_client.d.ts +195 -163
  48. package/tencentcloud/services/lke/v20231130/lke_client.js +288 -240
  49. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +497 -97
  50. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +7 -2
  51. package/tencentcloud/services/mqtt/index.d.ts +6 -0
  52. package/tencentcloud/services/mqtt/index.js +7 -0
  53. package/tencentcloud/services/mqtt/v20240516/index.d.ts +6 -0
  54. package/tencentcloud/services/mqtt/v20240516/index.js +9 -0
  55. package/tencentcloud/services/mqtt/v20240516/mqtt_client.d.ts +95 -0
  56. package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +154 -0
  57. package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +1051 -0
  58. package/tencentcloud/services/mqtt/v20240516/mqtt_models.js +18 -0
  59. package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +3 -1
  60. package/tencentcloud/services/tcss/v20201101/tcss_client.js +3 -1
  61. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +13 -5
  62. package/tencentcloud/services/tke/v20180525/tke_client.js +18 -6
  63. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +150 -70
  64. package/tencentcloud/services/vdb/v20230616/vdb_models.d.ts +5 -0
  65. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
  66. package/tencentcloud/services/vod/v20180717/vod_client.js +1 -1
  67. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +33 -1
  68. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +17 -1
  69. package/test/asr.v20190614.test.js +10 -0
  70. package/test/lke.v20231130.test.js +238 -158
  71. package/test/mqtt.v20240516.test.js +211 -0
  72. package/test/tke.v20180525.test.js +24 -4
@@ -18,9 +18,9 @@ const client = new tencentcloud.lke.v20231130.Client({
18
18
  })
19
19
  describe("lke.v20231130.test.js", function () {
20
20
 
21
- it("lke.v20231130.ListDoc", async function () {
21
+ it("lke.v20231130.ListUnsatisfiedReply", async function () {
22
22
  try {
23
- const data = await client.ListDoc({})
23
+ const data = await client.ListUnsatisfiedReply({})
24
24
  expect(data).to.be.ok
25
25
  } catch(error) {
26
26
  expect(error.requestId).to.be.ok
@@ -28,9 +28,9 @@ it("lke.v20231130.ListDoc", async function () {
28
28
  }
29
29
  })
30
30
 
31
- it("lke.v20231130.ListUnsatisfiedReply", async function () {
31
+ it("lke.v20231130.DeleteAttributeLabel", async function () {
32
32
  try {
33
- const data = await client.ListUnsatisfiedReply({})
33
+ const data = await client.DeleteAttributeLabel({})
34
34
  expect(data).to.be.ok
35
35
  } catch(error) {
36
36
  expect(error.requestId).to.be.ok
@@ -38,9 +38,9 @@ it("lke.v20231130.ListUnsatisfiedReply", async function () {
38
38
  }
39
39
  })
40
40
 
41
- it("lke.v20231130.DeleteAttributeLabel", async function () {
41
+ it("lke.v20231130.DescribeKnowledgeUsagePieGraph", async function () {
42
42
  try {
43
- const data = await client.DeleteAttributeLabel({})
43
+ const data = await client.DescribeKnowledgeUsagePieGraph({})
44
44
  expect(data).to.be.ok
45
45
  } catch(error) {
46
46
  expect(error.requestId).to.be.ok
@@ -48,9 +48,9 @@ it("lke.v20231130.DeleteAttributeLabel", async function () {
48
48
  }
49
49
  })
50
50
 
51
- it("lke.v20231130.SaveDoc", async function () {
51
+ it("lke.v20231130.ModifyQAAttrRange", async function () {
52
52
  try {
53
- const data = await client.SaveDoc({})
53
+ const data = await client.ModifyQAAttrRange({})
54
54
  expect(data).to.be.ok
55
55
  } catch(error) {
56
56
  expect(error.requestId).to.be.ok
@@ -58,9 +58,9 @@ it("lke.v20231130.SaveDoc", async function () {
58
58
  }
59
59
  })
60
60
 
61
- it("lke.v20231130.CreateRejectedQuestion", async function () {
61
+ it("lke.v20231130.GetReconstructDocumentResult", async function () {
62
62
  try {
63
- const data = await client.CreateRejectedQuestion({})
63
+ const data = await client.GetReconstructDocumentResult({})
64
64
  expect(data).to.be.ok
65
65
  } catch(error) {
66
66
  expect(error.requestId).to.be.ok
@@ -68,9 +68,9 @@ it("lke.v20231130.CreateRejectedQuestion", async function () {
68
68
  }
69
69
  })
70
70
 
71
- it("lke.v20231130.ModifyQA", async function () {
71
+ it("lke.v20231130.ListSelectDoc", async function () {
72
72
  try {
73
- const data = await client.ModifyQA({})
73
+ const data = await client.ListSelectDoc({})
74
74
  expect(data).to.be.ok
75
75
  } catch(error) {
76
76
  expect(error.requestId).to.be.ok
@@ -78,9 +78,9 @@ it("lke.v20231130.ModifyQA", async function () {
78
78
  }
79
79
  })
80
80
 
81
- it("lke.v20231130.CheckAttributeLabelExist", async function () {
81
+ it("lke.v20231130.ModifyDocAttrRange", async function () {
82
82
  try {
83
- const data = await client.CheckAttributeLabelExist({})
83
+ const data = await client.ModifyDocAttrRange({})
84
84
  expect(data).to.be.ok
85
85
  } catch(error) {
86
86
  expect(error.requestId).to.be.ok
@@ -88,9 +88,9 @@ it("lke.v20231130.CheckAttributeLabelExist", async function () {
88
88
  }
89
89
  })
90
90
 
91
- it("lke.v20231130.ModifyQAAttrRange", async function () {
91
+ it("lke.v20231130.CreateRelease", async function () {
92
92
  try {
93
- const data = await client.ModifyQAAttrRange({})
93
+ const data = await client.CreateRelease({})
94
94
  expect(data).to.be.ok
95
95
  } catch(error) {
96
96
  expect(error.requestId).to.be.ok
@@ -98,9 +98,9 @@ it("lke.v20231130.ModifyQAAttrRange", async function () {
98
98
  }
99
99
  })
100
100
 
101
- it("lke.v20231130.DescribeDoc", async function () {
101
+ it("lke.v20231130.DeleteQA", async function () {
102
102
  try {
103
- const data = await client.DescribeDoc({})
103
+ const data = await client.DeleteQA({})
104
104
  expect(data).to.be.ok
105
105
  } catch(error) {
106
106
  expect(error.requestId).to.be.ok
@@ -108,9 +108,9 @@ it("lke.v20231130.DescribeDoc", async function () {
108
108
  }
109
109
  })
110
110
 
111
- it("lke.v20231130.GetDocPreview", async function () {
111
+ it("lke.v20231130.CreateAttributeLabel", async function () {
112
112
  try {
113
- const data = await client.GetDocPreview({})
113
+ const data = await client.CreateAttributeLabel({})
114
114
  expect(data).to.be.ok
115
115
  } catch(error) {
116
116
  expect(error.requestId).to.be.ok
@@ -118,9 +118,9 @@ it("lke.v20231130.GetDocPreview", async function () {
118
118
  }
119
119
  })
120
120
 
121
- it("lke.v20231130.DeleteRejectedQuestion", async function () {
121
+ it("lke.v20231130.RetryDocAudit", async function () {
122
122
  try {
123
- const data = await client.DeleteRejectedQuestion({})
123
+ const data = await client.RetryDocAudit({})
124
124
  expect(data).to.be.ok
125
125
  } catch(error) {
126
126
  expect(error.requestId).to.be.ok
@@ -128,9 +128,9 @@ it("lke.v20231130.DeleteRejectedQuestion", async function () {
128
128
  }
129
129
  })
130
130
 
131
- it("lke.v20231130.GetReconstructDocumentResult", async function () {
131
+ it("lke.v20231130.ConvertDocument", async function () {
132
132
  try {
133
- const data = await client.GetReconstructDocumentResult({})
133
+ const data = await client.ConvertDocument({})
134
134
  expect(data).to.be.ok
135
135
  } catch(error) {
136
136
  expect(error.requestId).to.be.ok
@@ -138,9 +138,9 @@ it("lke.v20231130.GetReconstructDocumentResult", async function () {
138
138
  }
139
139
  })
140
140
 
141
- it("lke.v20231130.ListSelectDoc", async function () {
141
+ it("lke.v20231130.DescribeAttributeLabel", async function () {
142
142
  try {
143
- const data = await client.ListSelectDoc({})
143
+ const data = await client.DescribeAttributeLabel({})
144
144
  expect(data).to.be.ok
145
145
  } catch(error) {
146
146
  expect(error.requestId).to.be.ok
@@ -148,9 +148,9 @@ it("lke.v20231130.ListSelectDoc", async function () {
148
148
  }
149
149
  })
150
150
 
151
- it("lke.v20231130.QueryRewrite", async function () {
151
+ it("lke.v20231130.ListRejectedQuestionPreview", async function () {
152
152
  try {
153
- const data = await client.QueryRewrite({})
153
+ const data = await client.ListRejectedQuestionPreview({})
154
154
  expect(data).to.be.ok
155
155
  } catch(error) {
156
156
  expect(error.requestId).to.be.ok
@@ -158,9 +158,9 @@ it("lke.v20231130.QueryRewrite", async function () {
158
158
  }
159
159
  })
160
160
 
161
- it("lke.v20231130.DescribeUnsatisfiedReplyContext", async function () {
161
+ it("lke.v20231130.RetryDocParse", async function () {
162
162
  try {
163
- const data = await client.DescribeUnsatisfiedReplyContext({})
163
+ const data = await client.RetryDocParse({})
164
164
  expect(data).to.be.ok
165
165
  } catch(error) {
166
166
  expect(error.requestId).to.be.ok
@@ -168,9 +168,9 @@ it("lke.v20231130.DescribeUnsatisfiedReplyContext", async function () {
168
168
  }
169
169
  })
170
170
 
171
- it("lke.v20231130.ModifyDocAttrRange", async function () {
171
+ it("lke.v20231130.CreateQA", async function () {
172
172
  try {
173
- const data = await client.ModifyDocAttrRange({})
173
+ const data = await client.CreateQA({})
174
174
  expect(data).to.be.ok
175
175
  } catch(error) {
176
176
  expect(error.requestId).to.be.ok
@@ -178,9 +178,9 @@ it("lke.v20231130.ModifyDocAttrRange", async function () {
178
178
  }
179
179
  })
180
180
 
181
- it("lke.v20231130.DescribeStorageCredential", async function () {
181
+ it("lke.v20231130.DescribeTokenUsageGraph", async function () {
182
182
  try {
183
- const data = await client.DescribeStorageCredential({})
183
+ const data = await client.DescribeTokenUsageGraph({})
184
184
  expect(data).to.be.ok
185
185
  } catch(error) {
186
186
  expect(error.requestId).to.be.ok
@@ -188,9 +188,9 @@ it("lke.v20231130.DescribeStorageCredential", async function () {
188
188
  }
189
189
  })
190
190
 
191
- it("lke.v20231130.CreateRelease", async function () {
191
+ it("lke.v20231130.GenerateQA", async function () {
192
192
  try {
193
- const data = await client.CreateRelease({})
193
+ const data = await client.GenerateQA({})
194
194
  expect(data).to.be.ok
195
195
  } catch(error) {
196
196
  expect(error.requestId).to.be.ok
@@ -198,9 +198,9 @@ it("lke.v20231130.CreateRelease", async function () {
198
198
  }
199
199
  })
200
200
 
201
- it("lke.v20231130.GetEmbedding", async function () {
201
+ it("lke.v20231130.DescribeApp", async function () {
202
202
  try {
203
- const data = await client.GetEmbedding({})
203
+ const data = await client.DescribeApp({})
204
204
  expect(data).to.be.ok
205
205
  } catch(error) {
206
206
  expect(error.requestId).to.be.ok
@@ -208,9 +208,9 @@ it("lke.v20231130.GetEmbedding", async function () {
208
208
  }
209
209
  })
210
210
 
211
- it("lke.v20231130.RetryDocAudit", async function () {
211
+ it("lke.v20231130.GetWsToken", async function () {
212
212
  try {
213
- const data = await client.RetryDocAudit({})
213
+ const data = await client.GetWsToken({})
214
214
  expect(data).to.be.ok
215
215
  } catch(error) {
216
216
  expect(error.requestId).to.be.ok
@@ -218,9 +218,9 @@ it("lke.v20231130.RetryDocAudit", async function () {
218
218
  }
219
219
  })
220
220
 
221
- it("lke.v20231130.GetAppSecret", async function () {
221
+ it("lke.v20231130.ListAttributeLabel", async function () {
222
222
  try {
223
- const data = await client.GetAppSecret({})
223
+ const data = await client.ListAttributeLabel({})
224
224
  expect(data).to.be.ok
225
225
  } catch(error) {
226
226
  expect(error.requestId).to.be.ok
@@ -228,9 +228,9 @@ it("lke.v20231130.GetAppSecret", async function () {
228
228
  }
229
229
  })
230
230
 
231
- it("lke.v20231130.ModifyAttributeLabel", async function () {
231
+ it("lke.v20231130.ListReleaseConfigPreview", async function () {
232
232
  try {
233
- const data = await client.ModifyAttributeLabel({})
233
+ const data = await client.ListReleaseConfigPreview({})
234
234
  expect(data).to.be.ok
235
235
  } catch(error) {
236
236
  expect(error.requestId).to.be.ok
@@ -238,9 +238,9 @@ it("lke.v20231130.ModifyAttributeLabel", async function () {
238
238
  }
239
239
  })
240
240
 
241
- it("lke.v20231130.ListRelease", async function () {
241
+ it("lke.v20231130.DescribeSearchStatsGraph", async function () {
242
242
  try {
243
- const data = await client.ListRelease({})
243
+ const data = await client.DescribeSearchStatsGraph({})
244
244
  expect(data).to.be.ok
245
245
  } catch(error) {
246
246
  expect(error.requestId).to.be.ok
@@ -248,9 +248,9 @@ it("lke.v20231130.ListRelease", async function () {
248
248
  }
249
249
  })
250
250
 
251
- it("lke.v20231130.RateMsgRecord", async function () {
251
+ it("lke.v20231130.QueryParseDocResult", async function () {
252
252
  try {
253
- const data = await client.RateMsgRecord({})
253
+ const data = await client.QueryParseDocResult({})
254
254
  expect(data).to.be.ok
255
255
  } catch(error) {
256
256
  expect(error.requestId).to.be.ok
@@ -258,9 +258,9 @@ it("lke.v20231130.RateMsgRecord", async function () {
258
258
  }
259
259
  })
260
260
 
261
- it("lke.v20231130.GetAnswerTypeDataCount", async function () {
261
+ it("lke.v20231130.VerifyQA", async function () {
262
262
  try {
263
- const data = await client.GetAnswerTypeDataCount({})
263
+ const data = await client.VerifyQA({})
264
264
  expect(data).to.be.ok
265
265
  } catch(error) {
266
266
  expect(error.requestId).to.be.ok
@@ -268,9 +268,9 @@ it("lke.v20231130.GetAnswerTypeDataCount", async function () {
268
268
  }
269
269
  })
270
270
 
271
- it("lke.v20231130.GetLikeDataCount", async function () {
271
+ it("lke.v20231130.CheckAttributeLabelExist", async function () {
272
272
  try {
273
- const data = await client.GetLikeDataCount({})
273
+ const data = await client.CheckAttributeLabelExist({})
274
274
  expect(data).to.be.ok
275
275
  } catch(error) {
276
276
  expect(error.requestId).to.be.ok
@@ -278,9 +278,9 @@ it("lke.v20231130.GetLikeDataCount", async function () {
278
278
  }
279
279
  })
280
280
 
281
- it("lke.v20231130.DeleteQA", async function () {
281
+ it("lke.v20231130.DescribeDoc", async function () {
282
282
  try {
283
- const data = await client.DeleteQA({})
283
+ const data = await client.DescribeDoc({})
284
284
  expect(data).to.be.ok
285
285
  } catch(error) {
286
286
  expect(error.requestId).to.be.ok
@@ -288,9 +288,9 @@ it("lke.v20231130.DeleteQA", async function () {
288
288
  }
289
289
  })
290
290
 
291
- it("lke.v20231130.DescribeRobotBizIDByAppKey", async function () {
291
+ it("lke.v20231130.DescribeStorageCredential", async function () {
292
292
  try {
293
- const data = await client.DescribeRobotBizIDByAppKey({})
293
+ const data = await client.DescribeStorageCredential({})
294
294
  expect(data).to.be.ok
295
295
  } catch(error) {
296
296
  expect(error.requestId).to.be.ok
@@ -298,9 +298,9 @@ it("lke.v20231130.DescribeRobotBizIDByAppKey", async function () {
298
298
  }
299
299
  })
300
300
 
301
- it("lke.v20231130.ListReleaseQAPreview", async function () {
301
+ it("lke.v20231130.RateMsgRecord", async function () {
302
302
  try {
303
- const data = await client.ListReleaseQAPreview({})
303
+ const data = await client.RateMsgRecord({})
304
304
  expect(data).to.be.ok
305
305
  } catch(error) {
306
306
  expect(error.requestId).to.be.ok
@@ -308,9 +308,9 @@ it("lke.v20231130.ListReleaseQAPreview", async function () {
308
308
  }
309
309
  })
310
310
 
311
- it("lke.v20231130.ExportQAList", async function () {
311
+ it("lke.v20231130.ListReleaseQAPreview", async function () {
312
312
  try {
313
- const data = await client.ExportQAList({})
313
+ const data = await client.ListReleaseQAPreview({})
314
314
  expect(data).to.be.ok
315
315
  } catch(error) {
316
316
  expect(error.requestId).to.be.ok
@@ -338,9 +338,9 @@ it("lke.v20231130.DeleteApp", async function () {
338
338
  }
339
339
  })
340
340
 
341
- it("lke.v20231130.ModifyApp", async function () {
341
+ it("lke.v20231130.CheckAttributeLabelRefer", async function () {
342
342
  try {
343
- const data = await client.ModifyApp({})
343
+ const data = await client.CheckAttributeLabelRefer({})
344
344
  expect(data).to.be.ok
345
345
  } catch(error) {
346
346
  expect(error.requestId).to.be.ok
@@ -348,9 +348,9 @@ it("lke.v20231130.ModifyApp", async function () {
348
348
  }
349
349
  })
350
350
 
351
- it("lke.v20231130.StopDocParse", async function () {
351
+ it("lke.v20231130.DescribeCorp", async function () {
352
352
  try {
353
- const data = await client.StopDocParse({})
353
+ const data = await client.DescribeCorp({})
354
354
  expect(data).to.be.ok
355
355
  } catch(error) {
356
356
  expect(error.requestId).to.be.ok
@@ -358,9 +358,9 @@ it("lke.v20231130.StopDocParse", async function () {
358
358
  }
359
359
  })
360
360
 
361
- it("lke.v20231130.ModifyRejectedQuestion", async function () {
361
+ it("lke.v20231130.DescribeUnsatisfiedReplyContext", async function () {
362
362
  try {
363
- const data = await client.ModifyRejectedQuestion({})
363
+ const data = await client.DescribeUnsatisfiedReplyContext({})
364
364
  expect(data).to.be.ok
365
365
  } catch(error) {
366
366
  expect(error.requestId).to.be.ok
@@ -368,9 +368,9 @@ it("lke.v20231130.ModifyRejectedQuestion", async function () {
368
368
  }
369
369
  })
370
370
 
371
- it("lke.v20231130.CheckAttributeLabelRefer", async function () {
371
+ it("lke.v20231130.ListApp", async function () {
372
372
  try {
373
- const data = await client.CheckAttributeLabelRefer({})
373
+ const data = await client.ListApp({})
374
374
  expect(data).to.be.ok
375
375
  } catch(error) {
376
376
  expect(error.requestId).to.be.ok
@@ -378,9 +378,9 @@ it("lke.v20231130.CheckAttributeLabelRefer", async function () {
378
378
  }
379
379
  })
380
380
 
381
- it("lke.v20231130.DescribeCorp", async function () {
381
+ it("lke.v20231130.DescribeTokenUsage", async function () {
382
382
  try {
383
- const data = await client.DescribeCorp({})
383
+ const data = await client.DescribeTokenUsage({})
384
384
  expect(data).to.be.ok
385
385
  } catch(error) {
386
386
  expect(error.requestId).to.be.ok
@@ -388,9 +388,9 @@ it("lke.v20231130.DescribeCorp", async function () {
388
388
  }
389
389
  })
390
390
 
391
- it("lke.v20231130.CreateAttributeLabel", async function () {
391
+ it("lke.v20231130.ListQACate", async function () {
392
392
  try {
393
- const data = await client.CreateAttributeLabel({})
393
+ const data = await client.ListQACate({})
394
394
  expect(data).to.be.ok
395
395
  } catch(error) {
396
396
  expect(error.requestId).to.be.ok
@@ -398,9 +398,9 @@ it("lke.v20231130.CreateAttributeLabel", async function () {
398
398
  }
399
399
  })
400
400
 
401
- it("lke.v20231130.CreateReconstructDocumentFlow", async function () {
401
+ it("lke.v20231130.ListAppCategory", async function () {
402
402
  try {
403
- const data = await client.CreateReconstructDocumentFlow({})
403
+ const data = await client.ListAppCategory({})
404
404
  expect(data).to.be.ok
405
405
  } catch(error) {
406
406
  expect(error.requestId).to.be.ok
@@ -408,9 +408,9 @@ it("lke.v20231130.CreateReconstructDocumentFlow", async function () {
408
408
  }
409
409
  })
410
410
 
411
- it("lke.v20231130.UploadAttributeLabel", async function () {
411
+ it("lke.v20231130.DescribeQA", async function () {
412
412
  try {
413
- const data = await client.UploadAttributeLabel({})
413
+ const data = await client.DescribeQA({})
414
414
  expect(data).to.be.ok
415
415
  } catch(error) {
416
416
  expect(error.requestId).to.be.ok
@@ -418,9 +418,9 @@ it("lke.v20231130.UploadAttributeLabel", async function () {
418
418
  }
419
419
  })
420
420
 
421
- it("lke.v20231130.ListApp", async function () {
421
+ it("lke.v20231130.CreateApp", async function () {
422
422
  try {
423
- const data = await client.ListApp({})
423
+ const data = await client.CreateApp({})
424
424
  expect(data).to.be.ok
425
425
  } catch(error) {
426
426
  expect(error.requestId).to.be.ok
@@ -428,9 +428,9 @@ it("lke.v20231130.ListApp", async function () {
428
428
  }
429
429
  })
430
430
 
431
- it("lke.v20231130.GenerateQA", async function () {
431
+ it("lke.v20231130.ModifyDoc", async function () {
432
432
  try {
433
- const data = await client.GenerateQA({})
433
+ const data = await client.ModifyDoc({})
434
434
  expect(data).to.be.ok
435
435
  } catch(error) {
436
436
  expect(error.requestId).to.be.ok
@@ -438,9 +438,9 @@ it("lke.v20231130.GenerateQA", async function () {
438
438
  }
439
439
  })
440
440
 
441
- it("lke.v20231130.ListReleaseDocPreview", async function () {
441
+ it("lke.v20231130.CreateQACate", async function () {
442
442
  try {
443
- const data = await client.ListReleaseDocPreview({})
443
+ const data = await client.CreateQACate({})
444
444
  expect(data).to.be.ok
445
445
  } catch(error) {
446
446
  expect(error.requestId).to.be.ok
@@ -448,9 +448,9 @@ it("lke.v20231130.ListReleaseDocPreview", async function () {
448
448
  }
449
449
  })
450
450
 
451
- it("lke.v20231130.ListQA", async function () {
451
+ it("lke.v20231130.ExportAttributeLabel", async function () {
452
452
  try {
453
- const data = await client.ListQA({})
453
+ const data = await client.ExportAttributeLabel({})
454
454
  expect(data).to.be.ok
455
455
  } catch(error) {
456
456
  expect(error.requestId).to.be.ok
@@ -458,9 +458,9 @@ it("lke.v20231130.ListQA", async function () {
458
458
  }
459
459
  })
460
460
 
461
- it("lke.v20231130.CreateCorp", async function () {
461
+ it("lke.v20231130.DescribeRefer", async function () {
462
462
  try {
463
- const data = await client.CreateCorp({})
463
+ const data = await client.DescribeRefer({})
464
464
  expect(data).to.be.ok
465
465
  } catch(error) {
466
466
  expect(error.requestId).to.be.ok
@@ -468,9 +468,9 @@ it("lke.v20231130.CreateCorp", async function () {
468
468
  }
469
469
  })
470
470
 
471
- it("lke.v20231130.DescribeAttributeLabel", async function () {
471
+ it("lke.v20231130.DescribeKnowledgeUsage", async function () {
472
472
  try {
473
- const data = await client.DescribeAttributeLabel({})
473
+ const data = await client.DescribeKnowledgeUsage({})
474
474
  expect(data).to.be.ok
475
475
  } catch(error) {
476
476
  expect(error.requestId).to.be.ok
@@ -478,9 +478,9 @@ it("lke.v20231130.DescribeAttributeLabel", async function () {
478
478
  }
479
479
  })
480
480
 
481
- it("lke.v20231130.DescribeRelease", async function () {
481
+ it("lke.v20231130.ListDoc", async function () {
482
482
  try {
483
- const data = await client.DescribeRelease({})
483
+ const data = await client.ListDoc({})
484
484
  expect(data).to.be.ok
485
485
  } catch(error) {
486
486
  expect(error.requestId).to.be.ok
@@ -488,9 +488,9 @@ it("lke.v20231130.DescribeRelease", async function () {
488
488
  }
489
489
  })
490
490
 
491
- it("lke.v20231130.DescribeQA", async function () {
491
+ it("lke.v20231130.ListQA", async function () {
492
492
  try {
493
- const data = await client.DescribeQA({})
493
+ const data = await client.ListQA({})
494
494
  expect(data).to.be.ok
495
495
  } catch(error) {
496
496
  expect(error.requestId).to.be.ok
@@ -498,9 +498,9 @@ it("lke.v20231130.DescribeQA", async function () {
498
498
  }
499
499
  })
500
500
 
501
- it("lke.v20231130.RetryDocParse", async function () {
501
+ it("lke.v20231130.GetLikeDataCount", async function () {
502
502
  try {
503
- const data = await client.RetryDocParse({})
503
+ const data = await client.GetLikeDataCount({})
504
504
  expect(data).to.be.ok
505
505
  } catch(error) {
506
506
  expect(error.requestId).to.be.ok
@@ -508,9 +508,9 @@ it("lke.v20231130.RetryDocParse", async function () {
508
508
  }
509
509
  })
510
510
 
511
- it("lke.v20231130.DescribeReleaseInfo", async function () {
511
+ it("lke.v20231130.DescribeRobotBizIDByAppKey", async function () {
512
512
  try {
513
- const data = await client.DescribeReleaseInfo({})
513
+ const data = await client.DescribeRobotBizIDByAppKey({})
514
514
  expect(data).to.be.ok
515
515
  } catch(error) {
516
516
  expect(error.requestId).to.be.ok
@@ -518,9 +518,9 @@ it("lke.v20231130.DescribeReleaseInfo", async function () {
518
518
  }
519
519
  })
520
520
 
521
- it("lke.v20231130.CreateQA", async function () {
521
+ it("lke.v20231130.ExportQAList", async function () {
522
522
  try {
523
- const data = await client.CreateQA({})
523
+ const data = await client.ExportQAList({})
524
524
  expect(data).to.be.ok
525
525
  } catch(error) {
526
526
  expect(error.requestId).to.be.ok
@@ -528,9 +528,9 @@ it("lke.v20231130.CreateQA", async function () {
528
528
  }
529
529
  })
530
530
 
531
- it("lke.v20231130.QueryParseDocResult", async function () {
531
+ it("lke.v20231130.IgnoreUnsatisfiedReply", async function () {
532
532
  try {
533
- const data = await client.QueryParseDocResult({})
533
+ const data = await client.IgnoreUnsatisfiedReply({})
534
534
  expect(data).to.be.ok
535
535
  } catch(error) {
536
536
  expect(error.requestId).to.be.ok
@@ -538,9 +538,9 @@ it("lke.v20231130.QueryParseDocResult", async function () {
538
538
  }
539
539
  })
540
540
 
541
- it("lke.v20231130.ListAttributeLabel", async function () {
541
+ it("lke.v20231130.CreateReconstructDocumentFlow", async function () {
542
542
  try {
543
- const data = await client.ListAttributeLabel({})
543
+ const data = await client.CreateReconstructDocumentFlow({})
544
544
  expect(data).to.be.ok
545
545
  } catch(error) {
546
546
  expect(error.requestId).to.be.ok
@@ -548,9 +548,9 @@ it("lke.v20231130.ListAttributeLabel", async function () {
548
548
  }
549
549
  })
550
550
 
551
- it("lke.v20231130.ListQACate", async function () {
551
+ it("lke.v20231130.UploadAttributeLabel", async function () {
552
552
  try {
553
- const data = await client.ListQACate({})
553
+ const data = await client.UploadAttributeLabel({})
554
554
  expect(data).to.be.ok
555
555
  } catch(error) {
556
556
  expect(error.requestId).to.be.ok
@@ -558,9 +558,9 @@ it("lke.v20231130.ListQACate", async function () {
558
558
  }
559
559
  })
560
560
 
561
- it("lke.v20231130.GetAppKnowledgeCount", async function () {
561
+ it("lke.v20231130.GetDocPreview", async function () {
562
562
  try {
563
- const data = await client.GetAppKnowledgeCount({})
563
+ const data = await client.GetDocPreview({})
564
564
  expect(data).to.be.ok
565
565
  } catch(error) {
566
566
  expect(error.requestId).to.be.ok
@@ -568,9 +568,9 @@ it("lke.v20231130.GetAppKnowledgeCount", async function () {
568
568
  }
569
569
  })
570
570
 
571
- it("lke.v20231130.ConvertDocument", async function () {
571
+ it("lke.v20231130.DescribeConcurrencyUsage", async function () {
572
572
  try {
573
- const data = await client.ConvertDocument({})
573
+ const data = await client.DescribeConcurrencyUsage({})
574
574
  expect(data).to.be.ok
575
575
  } catch(error) {
576
576
  expect(error.requestId).to.be.ok
@@ -578,9 +578,9 @@ it("lke.v20231130.ConvertDocument", async function () {
578
578
  }
579
579
  })
580
580
 
581
- it("lke.v20231130.ListAppCategory", async function () {
581
+ it("lke.v20231130.ModifyRejectedQuestion", async function () {
582
582
  try {
583
- const data = await client.ListAppCategory({})
583
+ const data = await client.ModifyRejectedQuestion({})
584
584
  expect(data).to.be.ok
585
585
  } catch(error) {
586
586
  expect(error.requestId).to.be.ok
@@ -588,9 +588,9 @@ it("lke.v20231130.ListAppCategory", async function () {
588
588
  }
589
589
  })
590
590
 
591
- it("lke.v20231130.DescribeApp", async function () {
591
+ it("lke.v20231130.ParseDoc", async function () {
592
592
  try {
593
- const data = await client.DescribeApp({})
593
+ const data = await client.ParseDoc({})
594
594
  expect(data).to.be.ok
595
595
  } catch(error) {
596
596
  expect(error.requestId).to.be.ok
@@ -598,9 +598,9 @@ it("lke.v20231130.DescribeApp", async function () {
598
598
  }
599
599
  })
600
600
 
601
- it("lke.v20231130.CreateApp", async function () {
601
+ it("lke.v20231130.IsTransferIntent", async function () {
602
602
  try {
603
- const data = await client.CreateApp({})
603
+ const data = await client.IsTransferIntent({})
604
604
  expect(data).to.be.ok
605
605
  } catch(error) {
606
606
  expect(error.requestId).to.be.ok
@@ -608,9 +608,9 @@ it("lke.v20231130.CreateApp", async function () {
608
608
  }
609
609
  })
610
610
 
611
- it("lke.v20231130.IsTransferIntent", async function () {
611
+ it("lke.v20231130.DescribeReleaseInfo", async function () {
612
612
  try {
613
- const data = await client.IsTransferIntent({})
613
+ const data = await client.DescribeReleaseInfo({})
614
614
  expect(data).to.be.ok
615
615
  } catch(error) {
616
616
  expect(error.requestId).to.be.ok
@@ -618,9 +618,9 @@ it("lke.v20231130.IsTransferIntent", async function () {
618
618
  }
619
619
  })
620
620
 
621
- it("lke.v20231130.ListRejectedQuestionPreview", async function () {
621
+ it("lke.v20231130.ListRelease", async function () {
622
622
  try {
623
- const data = await client.ListRejectedQuestionPreview({})
623
+ const data = await client.ListRelease({})
624
624
  expect(data).to.be.ok
625
625
  } catch(error) {
626
626
  expect(error.requestId).to.be.ok
@@ -628,9 +628,9 @@ it("lke.v20231130.ListRejectedQuestionPreview", async function () {
628
628
  }
629
629
  })
630
630
 
631
- it("lke.v20231130.GetMsgRecord", async function () {
631
+ it("lke.v20231130.ListModel", async function () {
632
632
  try {
633
- const data = await client.GetMsgRecord({})
633
+ const data = await client.ListModel({})
634
634
  expect(data).to.be.ok
635
635
  } catch(error) {
636
636
  expect(error.requestId).to.be.ok
@@ -638,9 +638,9 @@ it("lke.v20231130.GetMsgRecord", async function () {
638
638
  }
639
639
  })
640
640
 
641
- it("lke.v20231130.ModifyDoc", async function () {
641
+ it("lke.v20231130.ListRejectedQuestion", async function () {
642
642
  try {
643
- const data = await client.ModifyDoc({})
643
+ const data = await client.ListRejectedQuestion({})
644
644
  expect(data).to.be.ok
645
645
  } catch(error) {
646
646
  expect(error.requestId).to.be.ok
@@ -648,9 +648,9 @@ it("lke.v20231130.ModifyDoc", async function () {
648
648
  }
649
649
  })
650
650
 
651
- it("lke.v20231130.ParseDoc", async function () {
651
+ it("lke.v20231130.DeleteQACate", async function () {
652
652
  try {
653
- const data = await client.ParseDoc({})
653
+ const data = await client.DeleteQACate({})
654
654
  expect(data).to.be.ok
655
655
  } catch(error) {
656
656
  expect(error.requestId).to.be.ok
@@ -658,9 +658,39 @@ it("lke.v20231130.ParseDoc", async function () {
658
658
  }
659
659
  })
660
660
 
661
- it("lke.v20231130.GetWsToken", async function () {
661
+ it("lke.v20231130.ExportUnsatisfiedReply", async function () {
662
662
  try {
663
- const data = await client.GetWsToken({})
663
+ const data = await client.ExportUnsatisfiedReply({})
664
+ expect(data).to.be.ok
665
+ } catch(error) {
666
+ expect(error.requestId).to.be.ok
667
+ expect(error.code).to.be.ok
668
+ }
669
+ })
670
+
671
+ it("lke.v20231130.RetryRelease", async function () {
672
+ try {
673
+ const data = await client.RetryRelease({})
674
+ expect(data).to.be.ok
675
+ } catch(error) {
676
+ expect(error.requestId).to.be.ok
677
+ expect(error.code).to.be.ok
678
+ }
679
+ })
680
+
681
+ it("lke.v20231130.ModifyQA", async function () {
682
+ try {
683
+ const data = await client.ModifyQA({})
684
+ expect(data).to.be.ok
685
+ } catch(error) {
686
+ expect(error.requestId).to.be.ok
687
+ expect(error.code).to.be.ok
688
+ }
689
+ })
690
+
691
+ it("lke.v20231130.SaveDoc", async function () {
692
+ try {
693
+ const data = await client.SaveDoc({})
664
694
  expect(data).to.be.ok
665
695
  } catch(error) {
666
696
  expect(error.requestId).to.be.ok
@@ -678,9 +708,9 @@ it("lke.v20231130.DeleteDoc", async function () {
678
708
  }
679
709
  })
680
710
 
681
- it("lke.v20231130.ListModel", async function () {
711
+ it("lke.v20231130.DeleteRejectedQuestion", async function () {
682
712
  try {
683
- const data = await client.ListModel({})
713
+ const data = await client.DeleteRejectedQuestion({})
684
714
  expect(data).to.be.ok
685
715
  } catch(error) {
686
716
  expect(error.requestId).to.be.ok
@@ -688,9 +718,9 @@ it("lke.v20231130.ListModel", async function () {
688
718
  }
689
719
  })
690
720
 
691
- it("lke.v20231130.VerifyQA", async function () {
721
+ it("lke.v20231130.QueryRewrite", async function () {
692
722
  try {
693
- const data = await client.VerifyQA({})
723
+ const data = await client.QueryRewrite({})
694
724
  expect(data).to.be.ok
695
725
  } catch(error) {
696
726
  expect(error.requestId).to.be.ok
@@ -698,9 +728,9 @@ it("lke.v20231130.VerifyQA", async function () {
698
728
  }
699
729
  })
700
730
 
701
- it("lke.v20231130.GroupQA", async function () {
731
+ it("lke.v20231130.ModifyApp", async function () {
702
732
  try {
703
- const data = await client.GroupQA({})
733
+ const data = await client.ModifyApp({})
704
734
  expect(data).to.be.ok
705
735
  } catch(error) {
706
736
  expect(error.requestId).to.be.ok
@@ -708,9 +738,9 @@ it("lke.v20231130.GroupQA", async function () {
708
738
  }
709
739
  })
710
740
 
711
- it("lke.v20231130.DescribeSegments", async function () {
741
+ it("lke.v20231130.GetEmbedding", async function () {
712
742
  try {
713
- const data = await client.DescribeSegments({})
743
+ const data = await client.GetEmbedding({})
714
744
  expect(data).to.be.ok
715
745
  } catch(error) {
716
746
  expect(error.requestId).to.be.ok
@@ -718,9 +748,9 @@ it("lke.v20231130.DescribeSegments", async function () {
718
748
  }
719
749
  })
720
750
 
721
- it("lke.v20231130.ListRejectedQuestion", async function () {
751
+ it("lke.v20231130.GetAppSecret", async function () {
722
752
  try {
723
- const data = await client.ListRejectedQuestion({})
753
+ const data = await client.GetAppSecret({})
724
754
  expect(data).to.be.ok
725
755
  } catch(error) {
726
756
  expect(error.requestId).to.be.ok
@@ -728,9 +758,9 @@ it("lke.v20231130.ListRejectedQuestion", async function () {
728
758
  }
729
759
  })
730
760
 
731
- it("lke.v20231130.ListReleaseConfigPreview", async function () {
761
+ it("lke.v20231130.ModifyAttributeLabel", async function () {
732
762
  try {
733
- const data = await client.ListReleaseConfigPreview({})
763
+ const data = await client.ModifyAttributeLabel({})
734
764
  expect(data).to.be.ok
735
765
  } catch(error) {
736
766
  expect(error.requestId).to.be.ok
@@ -738,9 +768,9 @@ it("lke.v20231130.ListReleaseConfigPreview", async function () {
738
768
  }
739
769
  })
740
770
 
741
- it("lke.v20231130.GetTaskStatus", async function () {
771
+ it("lke.v20231130.GetAnswerTypeDataCount", async function () {
742
772
  try {
743
- const data = await client.GetTaskStatus({})
773
+ const data = await client.GetAnswerTypeDataCount({})
744
774
  expect(data).to.be.ok
745
775
  } catch(error) {
746
776
  expect(error.requestId).to.be.ok
@@ -748,9 +778,9 @@ it("lke.v20231130.GetTaskStatus", async function () {
748
778
  }
749
779
  })
750
780
 
751
- it("lke.v20231130.DeleteQACate", async function () {
781
+ it("lke.v20231130.ListReleaseDocPreview", async function () {
752
782
  try {
753
- const data = await client.DeleteQACate({})
783
+ const data = await client.ListReleaseDocPreview({})
754
784
  expect(data).to.be.ok
755
785
  } catch(error) {
756
786
  expect(error.requestId).to.be.ok
@@ -758,9 +788,9 @@ it("lke.v20231130.DeleteQACate", async function () {
758
788
  }
759
789
  })
760
790
 
761
- it("lke.v20231130.CreateQACate", async function () {
791
+ it("lke.v20231130.DescribeRelease", async function () {
762
792
  try {
763
- const data = await client.CreateQACate({})
793
+ const data = await client.DescribeRelease({})
764
794
  expect(data).to.be.ok
765
795
  } catch(error) {
766
796
  expect(error.requestId).to.be.ok
@@ -768,9 +798,9 @@ it("lke.v20231130.CreateQACate", async function () {
768
798
  }
769
799
  })
770
800
 
771
- it("lke.v20231130.ExportUnsatisfiedReply", async function () {
801
+ it("lke.v20231130.CreateCorp", async function () {
772
802
  try {
773
- const data = await client.ExportUnsatisfiedReply({})
803
+ const data = await client.CreateCorp({})
774
804
  expect(data).to.be.ok
775
805
  } catch(error) {
776
806
  expect(error.requestId).to.be.ok
@@ -778,9 +808,9 @@ it("lke.v20231130.ExportUnsatisfiedReply", async function () {
778
808
  }
779
809
  })
780
810
 
781
- it("lke.v20231130.ReconstructDocument", async function () {
811
+ it("lke.v20231130.GetAppKnowledgeCount", async function () {
782
812
  try {
783
- const data = await client.ReconstructDocument({})
813
+ const data = await client.GetAppKnowledgeCount({})
784
814
  expect(data).to.be.ok
785
815
  } catch(error) {
786
816
  expect(error.requestId).to.be.ok
@@ -788,9 +818,9 @@ it("lke.v20231130.ReconstructDocument", async function () {
788
818
  }
789
819
  })
790
820
 
791
- it("lke.v20231130.ResetSession", async function () {
821
+ it("lke.v20231130.DescribeConcurrencyUsageGraph", async function () {
792
822
  try {
793
- const data = await client.ResetSession({})
823
+ const data = await client.DescribeConcurrencyUsageGraph({})
794
824
  expect(data).to.be.ok
795
825
  } catch(error) {
796
826
  expect(error.requestId).to.be.ok
@@ -798,9 +828,9 @@ it("lke.v20231130.ResetSession", async function () {
798
828
  }
799
829
  })
800
830
 
801
- it("lke.v20231130.ExportAttributeLabel", async function () {
831
+ it("lke.v20231130.GetMsgRecord", async function () {
802
832
  try {
803
- const data = await client.ExportAttributeLabel({})
833
+ const data = await client.GetMsgRecord({})
804
834
  expect(data).to.be.ok
805
835
  } catch(error) {
806
836
  expect(error.requestId).to.be.ok
@@ -808,9 +838,9 @@ it("lke.v20231130.ExportAttributeLabel", async function () {
808
838
  }
809
839
  })
810
840
 
811
- it("lke.v20231130.RetryRelease", async function () {
841
+ it("lke.v20231130.CreateRejectedQuestion", async function () {
812
842
  try {
813
- const data = await client.RetryRelease({})
843
+ const data = await client.CreateRejectedQuestion({})
814
844
  expect(data).to.be.ok
815
845
  } catch(error) {
816
846
  expect(error.requestId).to.be.ok
@@ -818,9 +848,9 @@ it("lke.v20231130.RetryRelease", async function () {
818
848
  }
819
849
  })
820
850
 
821
- it("lke.v20231130.DescribeRefer", async function () {
851
+ it("lke.v20231130.DescribeCallStatsGraph", async function () {
822
852
  try {
823
- const data = await client.DescribeRefer({})
853
+ const data = await client.DescribeCallStatsGraph({})
824
854
  expect(data).to.be.ok
825
855
  } catch(error) {
826
856
  expect(error.requestId).to.be.ok
@@ -828,9 +858,59 @@ it("lke.v20231130.DescribeRefer", async function () {
828
858
  }
829
859
  })
830
860
 
831
- it("lke.v20231130.IgnoreUnsatisfiedReply", async function () {
861
+ it("lke.v20231130.GroupQA", async function () {
832
862
  try {
833
- const data = await client.IgnoreUnsatisfiedReply({})
863
+ const data = await client.GroupQA({})
864
+ expect(data).to.be.ok
865
+ } catch(error) {
866
+ expect(error.requestId).to.be.ok
867
+ expect(error.code).to.be.ok
868
+ }
869
+ })
870
+
871
+ it("lke.v20231130.DescribeSegments", async function () {
872
+ try {
873
+ const data = await client.DescribeSegments({})
874
+ expect(data).to.be.ok
875
+ } catch(error) {
876
+ expect(error.requestId).to.be.ok
877
+ expect(error.code).to.be.ok
878
+ }
879
+ })
880
+
881
+ it("lke.v20231130.GetTaskStatus", async function () {
882
+ try {
883
+ const data = await client.GetTaskStatus({})
884
+ expect(data).to.be.ok
885
+ } catch(error) {
886
+ expect(error.requestId).to.be.ok
887
+ expect(error.code).to.be.ok
888
+ }
889
+ })
890
+
891
+ it("lke.v20231130.ReconstructDocument", async function () {
892
+ try {
893
+ const data = await client.ReconstructDocument({})
894
+ expect(data).to.be.ok
895
+ } catch(error) {
896
+ expect(error.requestId).to.be.ok
897
+ expect(error.code).to.be.ok
898
+ }
899
+ })
900
+
901
+ it("lke.v20231130.StopDocParse", async function () {
902
+ try {
903
+ const data = await client.StopDocParse({})
904
+ expect(data).to.be.ok
905
+ } catch(error) {
906
+ expect(error.requestId).to.be.ok
907
+ expect(error.code).to.be.ok
908
+ }
909
+ })
910
+
911
+ it("lke.v20231130.ResetSession", async function () {
912
+ try {
913
+ const data = await client.ResetSession({})
834
914
  expect(data).to.be.ok
835
915
  } catch(error) {
836
916
  expect(error.requestId).to.be.ok