@alicloud/aliding20230426 2.11.1 → 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 +696 -3
- package/dist/client.js +1170 -32
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1621 -220
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;
|
|
@@ -11805,7 +12077,102 @@ export declare class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
|
|
|
11805
12077
|
export declare class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
11806
12078
|
nextToken?: string;
|
|
11807
12079
|
requestId?: string;
|
|
11808
|
-
todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
|
|
12080
|
+
todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
|
|
12081
|
+
static names(): {
|
|
12082
|
+
[key: string]: string;
|
|
12083
|
+
};
|
|
12084
|
+
static types(): {
|
|
12085
|
+
[key: string]: any;
|
|
12086
|
+
};
|
|
12087
|
+
constructor(map?: {
|
|
12088
|
+
[key: string]: any;
|
|
12089
|
+
});
|
|
12090
|
+
}
|
|
12091
|
+
export declare class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
12092
|
+
headers?: {
|
|
12093
|
+
[key: string]: string;
|
|
12094
|
+
};
|
|
12095
|
+
statusCode?: number;
|
|
12096
|
+
body?: QueryOrgTodoTasksResponseBody;
|
|
12097
|
+
static names(): {
|
|
12098
|
+
[key: string]: string;
|
|
12099
|
+
};
|
|
12100
|
+
static types(): {
|
|
12101
|
+
[key: string]: any;
|
|
12102
|
+
};
|
|
12103
|
+
constructor(map?: {
|
|
12104
|
+
[key: string]: any;
|
|
12105
|
+
});
|
|
12106
|
+
}
|
|
12107
|
+
export declare class QueryReportDetailHeaders extends $tea.Model {
|
|
12108
|
+
commonHeaders?: {
|
|
12109
|
+
[key: string]: string;
|
|
12110
|
+
};
|
|
12111
|
+
accountContext?: QueryReportDetailHeadersAccountContext;
|
|
12112
|
+
static names(): {
|
|
12113
|
+
[key: string]: string;
|
|
12114
|
+
};
|
|
12115
|
+
static types(): {
|
|
12116
|
+
[key: string]: any;
|
|
12117
|
+
};
|
|
12118
|
+
constructor(map?: {
|
|
12119
|
+
[key: string]: any;
|
|
12120
|
+
});
|
|
12121
|
+
}
|
|
12122
|
+
export declare class QueryReportDetailShrinkHeaders extends $tea.Model {
|
|
12123
|
+
commonHeaders?: {
|
|
12124
|
+
[key: string]: string;
|
|
12125
|
+
};
|
|
12126
|
+
accountContextShrink?: string;
|
|
12127
|
+
static names(): {
|
|
12128
|
+
[key: string]: string;
|
|
12129
|
+
};
|
|
12130
|
+
static types(): {
|
|
12131
|
+
[key: string]: any;
|
|
12132
|
+
};
|
|
12133
|
+
constructor(map?: {
|
|
12134
|
+
[key: string]: any;
|
|
12135
|
+
});
|
|
12136
|
+
}
|
|
12137
|
+
export declare class QueryReportDetailRequest extends $tea.Model {
|
|
12138
|
+
reportId?: string;
|
|
12139
|
+
tenantContext?: QueryReportDetailRequestTenantContext;
|
|
12140
|
+
static names(): {
|
|
12141
|
+
[key: string]: string;
|
|
12142
|
+
};
|
|
12143
|
+
static types(): {
|
|
12144
|
+
[key: string]: any;
|
|
12145
|
+
};
|
|
12146
|
+
constructor(map?: {
|
|
12147
|
+
[key: string]: any;
|
|
12148
|
+
});
|
|
12149
|
+
}
|
|
12150
|
+
export declare class QueryReportDetailShrinkRequest extends $tea.Model {
|
|
12151
|
+
reportId?: string;
|
|
12152
|
+
tenantContextShrink?: string;
|
|
12153
|
+
static names(): {
|
|
12154
|
+
[key: string]: string;
|
|
12155
|
+
};
|
|
12156
|
+
static types(): {
|
|
12157
|
+
[key: string]: any;
|
|
12158
|
+
};
|
|
12159
|
+
constructor(map?: {
|
|
12160
|
+
[key: string]: any;
|
|
12161
|
+
});
|
|
12162
|
+
}
|
|
12163
|
+
export declare class QueryReportDetailResponseBody extends $tea.Model {
|
|
12164
|
+
content?: QueryReportDetailResponseBodyContent[];
|
|
12165
|
+
createTime?: number;
|
|
12166
|
+
creatorId?: string;
|
|
12167
|
+
creatorName?: string;
|
|
12168
|
+
deptName?: string;
|
|
12169
|
+
modifiedTime?: number;
|
|
12170
|
+
remark?: string;
|
|
12171
|
+
reportId?: string;
|
|
12172
|
+
requestId?: string;
|
|
12173
|
+
templateName?: string;
|
|
12174
|
+
vendorRequestId?: string;
|
|
12175
|
+
vendorType?: string;
|
|
11809
12176
|
static names(): {
|
|
11810
12177
|
[key: string]: string;
|
|
11811
12178
|
};
|
|
@@ -11816,12 +12183,12 @@ export declare class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
|
11816
12183
|
[key: string]: any;
|
|
11817
12184
|
});
|
|
11818
12185
|
}
|
|
11819
|
-
export declare class
|
|
12186
|
+
export declare class QueryReportDetailResponse extends $tea.Model {
|
|
11820
12187
|
headers?: {
|
|
11821
12188
|
[key: string]: string;
|
|
11822
12189
|
};
|
|
11823
12190
|
statusCode?: number;
|
|
11824
|
-
body?:
|
|
12191
|
+
body?: QueryReportDetailResponseBody;
|
|
11825
12192
|
static names(): {
|
|
11826
12193
|
[key: string]: string;
|
|
11827
12194
|
};
|
|
@@ -16610,6 +16977,30 @@ export declare class ClearDataRequestTenantContext extends $tea.Model {
|
|
|
16610
16977
|
[key: string]: any;
|
|
16611
16978
|
});
|
|
16612
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
|
+
}
|
|
16613
17004
|
export declare class CommentListReportHeadersAccountContext extends $tea.Model {
|
|
16614
17005
|
accountId?: string;
|
|
16615
17006
|
static names(): {
|
|
@@ -22709,6 +23100,199 @@ export declare class QueryMeetingRoomListResponseBodyResult extends $tea.Model {
|
|
|
22709
23100
|
[key: string]: any;
|
|
22710
23101
|
});
|
|
22711
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
|
+
}
|
|
22712
23296
|
export declare class QueryOrgHonorsHeadersAccountContext extends $tea.Model {
|
|
22713
23297
|
accountId?: string;
|
|
22714
23298
|
static names(): {
|
|
@@ -22808,6 +23392,46 @@ export declare class QueryOrgTodoTasksResponseBodyTodoCards extends $tea.Model {
|
|
|
22808
23392
|
[key: string]: any;
|
|
22809
23393
|
});
|
|
22810
23394
|
}
|
|
23395
|
+
export declare class QueryReportDetailHeadersAccountContext extends $tea.Model {
|
|
23396
|
+
accountId?: string;
|
|
23397
|
+
static names(): {
|
|
23398
|
+
[key: string]: string;
|
|
23399
|
+
};
|
|
23400
|
+
static types(): {
|
|
23401
|
+
[key: string]: any;
|
|
23402
|
+
};
|
|
23403
|
+
constructor(map?: {
|
|
23404
|
+
[key: string]: any;
|
|
23405
|
+
});
|
|
23406
|
+
}
|
|
23407
|
+
export declare class QueryReportDetailRequestTenantContext extends $tea.Model {
|
|
23408
|
+
tenantId?: string;
|
|
23409
|
+
static names(): {
|
|
23410
|
+
[key: string]: string;
|
|
23411
|
+
};
|
|
23412
|
+
static types(): {
|
|
23413
|
+
[key: string]: any;
|
|
23414
|
+
};
|
|
23415
|
+
constructor(map?: {
|
|
23416
|
+
[key: string]: any;
|
|
23417
|
+
});
|
|
23418
|
+
}
|
|
23419
|
+
export declare class QueryReportDetailResponseBodyContent extends $tea.Model {
|
|
23420
|
+
images?: string[];
|
|
23421
|
+
key?: string;
|
|
23422
|
+
sort?: string;
|
|
23423
|
+
type?: string;
|
|
23424
|
+
value?: string;
|
|
23425
|
+
static names(): {
|
|
23426
|
+
[key: string]: string;
|
|
23427
|
+
};
|
|
23428
|
+
static types(): {
|
|
23429
|
+
[key: string]: any;
|
|
23430
|
+
};
|
|
23431
|
+
constructor(map?: {
|
|
23432
|
+
[key: string]: any;
|
|
23433
|
+
});
|
|
23434
|
+
}
|
|
22811
23435
|
export declare class QueryScheduleConferenceHeadersAccountContext extends $tea.Model {
|
|
22812
23436
|
accountId?: string;
|
|
22813
23437
|
static names(): {
|
|
@@ -23956,11 +24580,16 @@ export declare class UpdateScheduleConfSettingsHeadersAccountContext extends $te
|
|
|
23956
24580
|
});
|
|
23957
24581
|
}
|
|
23958
24582
|
export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSetting extends $tea.Model {
|
|
24583
|
+
cloudRecordOwnerUserId?: string;
|
|
23959
24584
|
enableChat?: number;
|
|
23960
24585
|
enableWebAnonymousJoin?: boolean;
|
|
23961
24586
|
joinBeforeHost?: number;
|
|
23962
24587
|
lockMediaStatusMicMute?: number;
|
|
23963
24588
|
lockNick?: number;
|
|
24589
|
+
minutesOwnerUserId?: string;
|
|
24590
|
+
pushAllMeetingRecords?: boolean;
|
|
24591
|
+
pushCloudRecordCard?: boolean;
|
|
24592
|
+
pushMinutesCard?: boolean;
|
|
23964
24593
|
waitingRoom?: number;
|
|
23965
24594
|
static names(): {
|
|
23966
24595
|
[key: string]: string;
|
|
@@ -24532,6 +25161,22 @@ export default class Client extends OpenApi {
|
|
|
24532
25161
|
* @return ClearDataResponse
|
|
24533
25162
|
*/
|
|
24534
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>;
|
|
24535
25180
|
/**
|
|
24536
25181
|
* @summary 获取日志评论列表
|
|
24537
25182
|
*
|
|
@@ -26368,6 +27013,38 @@ export default class Client extends OpenApi {
|
|
|
26368
27013
|
* @return QueryMeetingRoomListResponse
|
|
26369
27014
|
*/
|
|
26370
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>;
|
|
26371
27048
|
/**
|
|
26372
27049
|
* @summary 查询企业荣誉
|
|
26373
27050
|
*
|
|
@@ -26400,6 +27077,22 @@ export default class Client extends OpenApi {
|
|
|
26400
27077
|
* @return QueryOrgTodoTasksResponse
|
|
26401
27078
|
*/
|
|
26402
27079
|
queryOrgTodoTasks(request: QueryOrgTodoTasksRequest): Promise<QueryOrgTodoTasksResponse>;
|
|
27080
|
+
/**
|
|
27081
|
+
* @summary 获取日志详情
|
|
27082
|
+
*
|
|
27083
|
+
* @param tmpReq QueryReportDetailRequest
|
|
27084
|
+
* @param tmpHeader QueryReportDetailHeaders
|
|
27085
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27086
|
+
* @return QueryReportDetailResponse
|
|
27087
|
+
*/
|
|
27088
|
+
queryReportDetailWithOptions(tmpReq: QueryReportDetailRequest, tmpHeader: QueryReportDetailHeaders, runtime: $Util.RuntimeOptions): Promise<QueryReportDetailResponse>;
|
|
27089
|
+
/**
|
|
27090
|
+
* @summary 获取日志详情
|
|
27091
|
+
*
|
|
27092
|
+
* @param request QueryReportDetailRequest
|
|
27093
|
+
* @return QueryReportDetailResponse
|
|
27094
|
+
*/
|
|
27095
|
+
queryReportDetail(request: QueryReportDetailRequest): Promise<QueryReportDetailResponse>;
|
|
26403
27096
|
/**
|
|
26404
27097
|
* @summary 查询预约会议
|
|
26405
27098
|
*
|