@alicloud/aliding20230426 2.12.0 → 2.13.0

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/dist/client.d.ts CHANGED
@@ -1453,6 +1453,94 @@ export declare class ClearDataResponse extends $tea.Model {
1453
1453
  [key: string]: any;
1454
1454
  });
1455
1455
  }
1456
+ export declare class CloseVideoConferenceHeaders extends $tea.Model {
1457
+ commonHeaders?: {
1458
+ [key: string]: string;
1459
+ };
1460
+ accountContext?: CloseVideoConferenceHeadersAccountContext;
1461
+ static names(): {
1462
+ [key: string]: string;
1463
+ };
1464
+ static types(): {
1465
+ [key: string]: any;
1466
+ };
1467
+ constructor(map?: {
1468
+ [key: string]: any;
1469
+ });
1470
+ }
1471
+ export declare class CloseVideoConferenceShrinkHeaders extends $tea.Model {
1472
+ commonHeaders?: {
1473
+ [key: string]: string;
1474
+ };
1475
+ accountContextShrink?: string;
1476
+ static names(): {
1477
+ [key: string]: string;
1478
+ };
1479
+ static types(): {
1480
+ [key: string]: any;
1481
+ };
1482
+ constructor(map?: {
1483
+ [key: string]: any;
1484
+ });
1485
+ }
1486
+ export declare class CloseVideoConferenceRequest extends $tea.Model {
1487
+ tenantContext?: CloseVideoConferenceRequestTenantContext;
1488
+ conferenceId?: string;
1489
+ static names(): {
1490
+ [key: string]: string;
1491
+ };
1492
+ static types(): {
1493
+ [key: string]: any;
1494
+ };
1495
+ constructor(map?: {
1496
+ [key: string]: any;
1497
+ });
1498
+ }
1499
+ export declare class CloseVideoConferenceShrinkRequest extends $tea.Model {
1500
+ tenantContextShrink?: string;
1501
+ conferenceId?: string;
1502
+ static names(): {
1503
+ [key: string]: string;
1504
+ };
1505
+ static types(): {
1506
+ [key: string]: any;
1507
+ };
1508
+ constructor(map?: {
1509
+ [key: string]: any;
1510
+ });
1511
+ }
1512
+ export declare class CloseVideoConferenceResponseBody extends $tea.Model {
1513
+ cause?: string;
1514
+ code?: number;
1515
+ requestId?: string;
1516
+ vendorRequestId?: string;
1517
+ vendorType?: string;
1518
+ static names(): {
1519
+ [key: string]: string;
1520
+ };
1521
+ static types(): {
1522
+ [key: string]: any;
1523
+ };
1524
+ constructor(map?: {
1525
+ [key: string]: any;
1526
+ });
1527
+ }
1528
+ export declare class CloseVideoConferenceResponse extends $tea.Model {
1529
+ headers?: {
1530
+ [key: string]: string;
1531
+ };
1532
+ statusCode?: number;
1533
+ body?: CloseVideoConferenceResponseBody;
1534
+ static names(): {
1535
+ [key: string]: string;
1536
+ };
1537
+ static types(): {
1538
+ [key: string]: any;
1539
+ };
1540
+ constructor(map?: {
1541
+ [key: string]: any;
1542
+ });
1543
+ }
1456
1544
  export declare class CommentListReportHeaders extends $tea.Model {
1457
1545
  commonHeaders?: {
1458
1546
  [key: string]: string;
@@ -11654,6 +11742,190 @@ export declare class QueryMeetingRoomListResponse extends $tea.Model {
11654
11742
  [key: string]: any;
11655
11743
  });
11656
11744
  }
11745
+ export declare class QueryMinutesSummaryHeaders extends $tea.Model {
11746
+ commonHeaders?: {
11747
+ [key: string]: string;
11748
+ };
11749
+ accountContext?: QueryMinutesSummaryHeadersAccountContext;
11750
+ static names(): {
11751
+ [key: string]: string;
11752
+ };
11753
+ static types(): {
11754
+ [key: string]: any;
11755
+ };
11756
+ constructor(map?: {
11757
+ [key: string]: any;
11758
+ });
11759
+ }
11760
+ export declare class QueryMinutesSummaryShrinkHeaders extends $tea.Model {
11761
+ commonHeaders?: {
11762
+ [key: string]: string;
11763
+ };
11764
+ accountContextShrink?: string;
11765
+ static names(): {
11766
+ [key: string]: string;
11767
+ };
11768
+ static types(): {
11769
+ [key: string]: any;
11770
+ };
11771
+ constructor(map?: {
11772
+ [key: string]: any;
11773
+ });
11774
+ }
11775
+ export declare class QueryMinutesSummaryRequest extends $tea.Model {
11776
+ tenantContext?: QueryMinutesSummaryRequestTenantContext;
11777
+ conferenceId?: string;
11778
+ summaryTypeList?: string[];
11779
+ static names(): {
11780
+ [key: string]: string;
11781
+ };
11782
+ static types(): {
11783
+ [key: string]: any;
11784
+ };
11785
+ constructor(map?: {
11786
+ [key: string]: any;
11787
+ });
11788
+ }
11789
+ export declare class QueryMinutesSummaryShrinkRequest extends $tea.Model {
11790
+ tenantContextShrink?: string;
11791
+ conferenceId?: string;
11792
+ summaryTypeListShrink?: string;
11793
+ static names(): {
11794
+ [key: string]: string;
11795
+ };
11796
+ static types(): {
11797
+ [key: string]: any;
11798
+ };
11799
+ constructor(map?: {
11800
+ [key: string]: any;
11801
+ });
11802
+ }
11803
+ export declare class QueryMinutesSummaryResponseBody extends $tea.Model {
11804
+ requestId?: string;
11805
+ summary?: QueryMinutesSummaryResponseBodySummary;
11806
+ vendorRequestId?: string;
11807
+ vendorType?: string;
11808
+ static names(): {
11809
+ [key: string]: string;
11810
+ };
11811
+ static types(): {
11812
+ [key: string]: any;
11813
+ };
11814
+ constructor(map?: {
11815
+ [key: string]: any;
11816
+ });
11817
+ }
11818
+ export declare class QueryMinutesSummaryResponse extends $tea.Model {
11819
+ headers?: {
11820
+ [key: string]: string;
11821
+ };
11822
+ statusCode?: number;
11823
+ body?: QueryMinutesSummaryResponseBody;
11824
+ static names(): {
11825
+ [key: string]: string;
11826
+ };
11827
+ static types(): {
11828
+ [key: string]: any;
11829
+ };
11830
+ constructor(map?: {
11831
+ [key: string]: any;
11832
+ });
11833
+ }
11834
+ export declare class QueryMinutesTextHeaders extends $tea.Model {
11835
+ commonHeaders?: {
11836
+ [key: string]: string;
11837
+ };
11838
+ accountContext?: QueryMinutesTextHeadersAccountContext;
11839
+ static names(): {
11840
+ [key: string]: string;
11841
+ };
11842
+ static types(): {
11843
+ [key: string]: any;
11844
+ };
11845
+ constructor(map?: {
11846
+ [key: string]: any;
11847
+ });
11848
+ }
11849
+ export declare class QueryMinutesTextShrinkHeaders extends $tea.Model {
11850
+ commonHeaders?: {
11851
+ [key: string]: string;
11852
+ };
11853
+ accountContextShrink?: string;
11854
+ static names(): {
11855
+ [key: string]: string;
11856
+ };
11857
+ static types(): {
11858
+ [key: string]: any;
11859
+ };
11860
+ constructor(map?: {
11861
+ [key: string]: any;
11862
+ });
11863
+ }
11864
+ export declare class QueryMinutesTextRequest extends $tea.Model {
11865
+ tenantContext?: QueryMinutesTextRequestTenantContext;
11866
+ conferenceId?: string;
11867
+ direction?: string;
11868
+ maxResults?: number;
11869
+ nextToken?: string;
11870
+ static names(): {
11871
+ [key: string]: string;
11872
+ };
11873
+ static types(): {
11874
+ [key: string]: any;
11875
+ };
11876
+ constructor(map?: {
11877
+ [key: string]: any;
11878
+ });
11879
+ }
11880
+ export declare class QueryMinutesTextShrinkRequest extends $tea.Model {
11881
+ tenantContextShrink?: string;
11882
+ conferenceId?: string;
11883
+ direction?: string;
11884
+ maxResults?: number;
11885
+ nextToken?: string;
11886
+ static names(): {
11887
+ [key: string]: string;
11888
+ };
11889
+ static types(): {
11890
+ [key: string]: any;
11891
+ };
11892
+ constructor(map?: {
11893
+ [key: string]: any;
11894
+ });
11895
+ }
11896
+ export declare class QueryMinutesTextResponseBody extends $tea.Model {
11897
+ hasMore?: boolean;
11898
+ nextToken?: string;
11899
+ paragraphList?: QueryMinutesTextResponseBodyParagraphList[];
11900
+ requestId?: string;
11901
+ vendorRequestId?: string;
11902
+ vendorType?: string;
11903
+ static names(): {
11904
+ [key: string]: string;
11905
+ };
11906
+ static types(): {
11907
+ [key: string]: any;
11908
+ };
11909
+ constructor(map?: {
11910
+ [key: string]: any;
11911
+ });
11912
+ }
11913
+ export declare class QueryMinutesTextResponse extends $tea.Model {
11914
+ headers?: {
11915
+ [key: string]: string;
11916
+ };
11917
+ statusCode?: number;
11918
+ body?: QueryMinutesTextResponseBody;
11919
+ static names(): {
11920
+ [key: string]: string;
11921
+ };
11922
+ static types(): {
11923
+ [key: string]: any;
11924
+ };
11925
+ constructor(map?: {
11926
+ [key: string]: any;
11927
+ });
11928
+ }
11657
11929
  export declare class QueryOrgHonorsHeaders extends $tea.Model {
11658
11930
  commonHeaders?: {
11659
11931
  [key: string]: string;
@@ -16705,6 +16977,30 @@ export declare class ClearDataRequestTenantContext extends $tea.Model {
16705
16977
  [key: string]: any;
16706
16978
  });
16707
16979
  }
16980
+ export declare class CloseVideoConferenceHeadersAccountContext extends $tea.Model {
16981
+ accountId?: string;
16982
+ static names(): {
16983
+ [key: string]: string;
16984
+ };
16985
+ static types(): {
16986
+ [key: string]: any;
16987
+ };
16988
+ constructor(map?: {
16989
+ [key: string]: any;
16990
+ });
16991
+ }
16992
+ export declare class CloseVideoConferenceRequestTenantContext extends $tea.Model {
16993
+ tenantId?: string;
16994
+ static names(): {
16995
+ [key: string]: string;
16996
+ };
16997
+ static types(): {
16998
+ [key: string]: any;
16999
+ };
17000
+ constructor(map?: {
17001
+ [key: string]: any;
17002
+ });
17003
+ }
16708
17004
  export declare class CommentListReportHeadersAccountContext extends $tea.Model {
16709
17005
  accountId?: string;
16710
17006
  static names(): {
@@ -22804,6 +23100,199 @@ export declare class QueryMeetingRoomListResponseBodyResult extends $tea.Model {
22804
23100
  [key: string]: any;
22805
23101
  });
22806
23102
  }
23103
+ export declare class QueryMinutesSummaryHeadersAccountContext extends $tea.Model {
23104
+ accountId?: string;
23105
+ static names(): {
23106
+ [key: string]: string;
23107
+ };
23108
+ static types(): {
23109
+ [key: string]: any;
23110
+ };
23111
+ constructor(map?: {
23112
+ [key: string]: any;
23113
+ });
23114
+ }
23115
+ export declare class QueryMinutesSummaryRequestTenantContext extends $tea.Model {
23116
+ tenantId?: string;
23117
+ static names(): {
23118
+ [key: string]: string;
23119
+ };
23120
+ static types(): {
23121
+ [key: string]: any;
23122
+ };
23123
+ constructor(map?: {
23124
+ [key: string]: any;
23125
+ });
23126
+ }
23127
+ export declare class QueryMinutesSummaryResponseBodySummaryActions extends $tea.Model {
23128
+ end?: number;
23129
+ id?: number;
23130
+ sentenceId?: number;
23131
+ start?: number;
23132
+ text?: string;
23133
+ static names(): {
23134
+ [key: string]: string;
23135
+ };
23136
+ static types(): {
23137
+ [key: string]: any;
23138
+ };
23139
+ constructor(map?: {
23140
+ [key: string]: any;
23141
+ });
23142
+ }
23143
+ export declare class QueryMinutesSummaryResponseBodySummaryAutoChapters extends $tea.Model {
23144
+ end?: number;
23145
+ headline?: string;
23146
+ id?: number;
23147
+ start?: number;
23148
+ summary?: string;
23149
+ static names(): {
23150
+ [key: string]: string;
23151
+ };
23152
+ static types(): {
23153
+ [key: string]: any;
23154
+ };
23155
+ constructor(map?: {
23156
+ [key: string]: any;
23157
+ });
23158
+ }
23159
+ export declare class QueryMinutesSummaryResponseBodySummaryConversationalSummary extends $tea.Model {
23160
+ speakerId?: string;
23161
+ speakerName?: string;
23162
+ summary?: string;
23163
+ static names(): {
23164
+ [key: string]: string;
23165
+ };
23166
+ static types(): {
23167
+ [key: string]: any;
23168
+ };
23169
+ constructor(map?: {
23170
+ [key: string]: any;
23171
+ });
23172
+ }
23173
+ export declare class QueryMinutesSummaryResponseBodySummaryKeySentences extends $tea.Model {
23174
+ end?: number;
23175
+ id?: number;
23176
+ sentenceId?: number;
23177
+ start?: number;
23178
+ text?: string;
23179
+ static names(): {
23180
+ [key: string]: string;
23181
+ };
23182
+ static types(): {
23183
+ [key: string]: any;
23184
+ };
23185
+ constructor(map?: {
23186
+ [key: string]: any;
23187
+ });
23188
+ }
23189
+ export declare class QueryMinutesSummaryResponseBodySummaryQuestionsAnsweringSummary extends $tea.Model {
23190
+ answer?: string;
23191
+ question?: string;
23192
+ sentenceIdsOfAnswer?: number[];
23193
+ sentenceIdsOfQuestion?: number[];
23194
+ static names(): {
23195
+ [key: string]: string;
23196
+ };
23197
+ static types(): {
23198
+ [key: string]: any;
23199
+ };
23200
+ constructor(map?: {
23201
+ [key: string]: any;
23202
+ });
23203
+ }
23204
+ export declare class QueryMinutesSummaryResponseBodySummary extends $tea.Model {
23205
+ actions?: QueryMinutesSummaryResponseBodySummaryActions;
23206
+ autoChapters?: QueryMinutesSummaryResponseBodySummaryAutoChapters[];
23207
+ conversationalSummary?: QueryMinutesSummaryResponseBodySummaryConversationalSummary[];
23208
+ keySentences?: QueryMinutesSummaryResponseBodySummaryKeySentences;
23209
+ keywords?: string[];
23210
+ paragraphSummary?: string;
23211
+ questionsAnsweringSummary?: QueryMinutesSummaryResponseBodySummaryQuestionsAnsweringSummary[];
23212
+ static names(): {
23213
+ [key: string]: string;
23214
+ };
23215
+ static types(): {
23216
+ [key: string]: any;
23217
+ };
23218
+ constructor(map?: {
23219
+ [key: string]: any;
23220
+ });
23221
+ }
23222
+ export declare class QueryMinutesTextHeadersAccountContext extends $tea.Model {
23223
+ accountId?: string;
23224
+ static names(): {
23225
+ [key: string]: string;
23226
+ };
23227
+ static types(): {
23228
+ [key: string]: any;
23229
+ };
23230
+ constructor(map?: {
23231
+ [key: string]: any;
23232
+ });
23233
+ }
23234
+ export declare class QueryMinutesTextRequestTenantContext extends $tea.Model {
23235
+ tenantId?: string;
23236
+ static names(): {
23237
+ [key: string]: string;
23238
+ };
23239
+ static types(): {
23240
+ [key: string]: any;
23241
+ };
23242
+ constructor(map?: {
23243
+ [key: string]: any;
23244
+ });
23245
+ }
23246
+ export declare class QueryMinutesTextResponseBodyParagraphListSentenceListWordList extends $tea.Model {
23247
+ endTime?: number;
23248
+ startTime?: number;
23249
+ word?: string;
23250
+ wordId?: string;
23251
+ static names(): {
23252
+ [key: string]: string;
23253
+ };
23254
+ static types(): {
23255
+ [key: string]: any;
23256
+ };
23257
+ constructor(map?: {
23258
+ [key: string]: any;
23259
+ });
23260
+ }
23261
+ export declare class QueryMinutesTextResponseBodyParagraphListSentenceList extends $tea.Model {
23262
+ endTime?: number;
23263
+ sentence?: string;
23264
+ startTime?: number;
23265
+ userId?: string;
23266
+ wordList?: QueryMinutesTextResponseBodyParagraphListSentenceListWordList[];
23267
+ static names(): {
23268
+ [key: string]: string;
23269
+ };
23270
+ static types(): {
23271
+ [key: string]: any;
23272
+ };
23273
+ constructor(map?: {
23274
+ [key: string]: any;
23275
+ });
23276
+ }
23277
+ export declare class QueryMinutesTextResponseBodyParagraphList extends $tea.Model {
23278
+ endTime?: number;
23279
+ nickName?: string;
23280
+ paragraph?: string;
23281
+ paragraphId?: number;
23282
+ recordId?: number;
23283
+ sentenceList?: QueryMinutesTextResponseBodyParagraphListSentenceList[];
23284
+ startTime?: number;
23285
+ userId?: string;
23286
+ static names(): {
23287
+ [key: string]: string;
23288
+ };
23289
+ static types(): {
23290
+ [key: string]: any;
23291
+ };
23292
+ constructor(map?: {
23293
+ [key: string]: any;
23294
+ });
23295
+ }
22807
23296
  export declare class QueryOrgHonorsHeadersAccountContext extends $tea.Model {
22808
23297
  accountId?: string;
22809
23298
  static names(): {
@@ -24672,6 +25161,22 @@ export default class Client extends OpenApi {
24672
25161
  * @return ClearDataResponse
24673
25162
  */
24674
25163
  clearData(request: ClearDataRequest): Promise<ClearDataResponse>;
25164
+ /**
25165
+ * @summary 关闭视频会议
25166
+ *
25167
+ * @param tmpReq CloseVideoConferenceRequest
25168
+ * @param tmpHeader CloseVideoConferenceHeaders
25169
+ * @param runtime runtime options for this request RuntimeOptions
25170
+ * @return CloseVideoConferenceResponse
25171
+ */
25172
+ closeVideoConferenceWithOptions(tmpReq: CloseVideoConferenceRequest, tmpHeader: CloseVideoConferenceHeaders, runtime: $Util.RuntimeOptions): Promise<CloseVideoConferenceResponse>;
25173
+ /**
25174
+ * @summary 关闭视频会议
25175
+ *
25176
+ * @param request CloseVideoConferenceRequest
25177
+ * @return CloseVideoConferenceResponse
25178
+ */
25179
+ closeVideoConference(request: CloseVideoConferenceRequest): Promise<CloseVideoConferenceResponse>;
24675
25180
  /**
24676
25181
  * @summary 获取日志评论列表
24677
25182
  *
@@ -26508,6 +27013,38 @@ export default class Client extends OpenApi {
26508
27013
  * @return QueryMeetingRoomListResponse
26509
27014
  */
26510
27015
  queryMeetingRoomList(request: QueryMeetingRoomListRequest): Promise<QueryMeetingRoomListResponse>;
27016
+ /**
27017
+ * @summary 查询会议闪记智能纪要
27018
+ *
27019
+ * @param tmpReq QueryMinutesSummaryRequest
27020
+ * @param tmpHeader QueryMinutesSummaryHeaders
27021
+ * @param runtime runtime options for this request RuntimeOptions
27022
+ * @return QueryMinutesSummaryResponse
27023
+ */
27024
+ queryMinutesSummaryWithOptions(tmpReq: QueryMinutesSummaryRequest, tmpHeader: QueryMinutesSummaryHeaders, runtime: $Util.RuntimeOptions): Promise<QueryMinutesSummaryResponse>;
27025
+ /**
27026
+ * @summary 查询会议闪记智能纪要
27027
+ *
27028
+ * @param request QueryMinutesSummaryRequest
27029
+ * @return QueryMinutesSummaryResponse
27030
+ */
27031
+ queryMinutesSummary(request: QueryMinutesSummaryRequest): Promise<QueryMinutesSummaryResponse>;
27032
+ /**
27033
+ * @summary 查询会议闪记的文本信息
27034
+ *
27035
+ * @param tmpReq QueryMinutesTextRequest
27036
+ * @param tmpHeader QueryMinutesTextHeaders
27037
+ * @param runtime runtime options for this request RuntimeOptions
27038
+ * @return QueryMinutesTextResponse
27039
+ */
27040
+ queryMinutesTextWithOptions(tmpReq: QueryMinutesTextRequest, tmpHeader: QueryMinutesTextHeaders, runtime: $Util.RuntimeOptions): Promise<QueryMinutesTextResponse>;
27041
+ /**
27042
+ * @summary 查询会议闪记的文本信息
27043
+ *
27044
+ * @param request QueryMinutesTextRequest
27045
+ * @return QueryMinutesTextResponse
27046
+ */
27047
+ queryMinutesText(request: QueryMinutesTextRequest): Promise<QueryMinutesTextResponse>;
26511
27048
  /**
26512
27049
  * @summary 查询企业荣誉
26513
27050
  *