@alicloud/aliding20230426 2.13.0 → 2.14.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 +403 -0
- package/dist/client.js +685 -19
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +991 -187
package/dist/client.d.ts
CHANGED
|
@@ -11742,6 +11742,93 @@ export declare class QueryMeetingRoomListResponse extends $tea.Model {
|
|
|
11742
11742
|
[key: string]: any;
|
|
11743
11743
|
});
|
|
11744
11744
|
}
|
|
11745
|
+
export declare class QueryMinutesHeaders extends $tea.Model {
|
|
11746
|
+
commonHeaders?: {
|
|
11747
|
+
[key: string]: string;
|
|
11748
|
+
};
|
|
11749
|
+
accountContext?: QueryMinutesHeadersAccountContext;
|
|
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 QueryMinutesShrinkHeaders 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 QueryMinutesRequest extends $tea.Model {
|
|
11776
|
+
tenantContext?: QueryMinutesRequestTenantContext;
|
|
11777
|
+
conferenceId?: string;
|
|
11778
|
+
static names(): {
|
|
11779
|
+
[key: string]: string;
|
|
11780
|
+
};
|
|
11781
|
+
static types(): {
|
|
11782
|
+
[key: string]: any;
|
|
11783
|
+
};
|
|
11784
|
+
constructor(map?: {
|
|
11785
|
+
[key: string]: any;
|
|
11786
|
+
});
|
|
11787
|
+
}
|
|
11788
|
+
export declare class QueryMinutesShrinkRequest extends $tea.Model {
|
|
11789
|
+
tenantContextShrink?: string;
|
|
11790
|
+
conferenceId?: string;
|
|
11791
|
+
static names(): {
|
|
11792
|
+
[key: string]: string;
|
|
11793
|
+
};
|
|
11794
|
+
static types(): {
|
|
11795
|
+
[key: string]: any;
|
|
11796
|
+
};
|
|
11797
|
+
constructor(map?: {
|
|
11798
|
+
[key: string]: any;
|
|
11799
|
+
});
|
|
11800
|
+
}
|
|
11801
|
+
export declare class QueryMinutesResponseBody extends $tea.Model {
|
|
11802
|
+
audioList?: QueryMinutesResponseBodyAudioList[];
|
|
11803
|
+
requestId?: string;
|
|
11804
|
+
vendorRequestId?: string;
|
|
11805
|
+
vendorType?: string;
|
|
11806
|
+
static names(): {
|
|
11807
|
+
[key: string]: string;
|
|
11808
|
+
};
|
|
11809
|
+
static types(): {
|
|
11810
|
+
[key: string]: any;
|
|
11811
|
+
};
|
|
11812
|
+
constructor(map?: {
|
|
11813
|
+
[key: string]: any;
|
|
11814
|
+
});
|
|
11815
|
+
}
|
|
11816
|
+
export declare class QueryMinutesResponse extends $tea.Model {
|
|
11817
|
+
headers?: {
|
|
11818
|
+
[key: string]: string;
|
|
11819
|
+
};
|
|
11820
|
+
statusCode?: number;
|
|
11821
|
+
body?: QueryMinutesResponseBody;
|
|
11822
|
+
static names(): {
|
|
11823
|
+
[key: string]: string;
|
|
11824
|
+
};
|
|
11825
|
+
static types(): {
|
|
11826
|
+
[key: string]: any;
|
|
11827
|
+
};
|
|
11828
|
+
constructor(map?: {
|
|
11829
|
+
[key: string]: any;
|
|
11830
|
+
});
|
|
11831
|
+
}
|
|
11745
11832
|
export declare class QueryMinutesSummaryHeaders extends $tea.Model {
|
|
11746
11833
|
commonHeaders?: {
|
|
11747
11834
|
[key: string]: string;
|
|
@@ -14402,6 +14489,97 @@ export declare class StartInstanceResponse extends $tea.Model {
|
|
|
14402
14489
|
[key: string]: any;
|
|
14403
14490
|
});
|
|
14404
14491
|
}
|
|
14492
|
+
export declare class StartMinutesHeaders extends $tea.Model {
|
|
14493
|
+
commonHeaders?: {
|
|
14494
|
+
[key: string]: string;
|
|
14495
|
+
};
|
|
14496
|
+
accountContext?: StartMinutesHeadersAccountContext;
|
|
14497
|
+
static names(): {
|
|
14498
|
+
[key: string]: string;
|
|
14499
|
+
};
|
|
14500
|
+
static types(): {
|
|
14501
|
+
[key: string]: any;
|
|
14502
|
+
};
|
|
14503
|
+
constructor(map?: {
|
|
14504
|
+
[key: string]: any;
|
|
14505
|
+
});
|
|
14506
|
+
}
|
|
14507
|
+
export declare class StartMinutesShrinkHeaders extends $tea.Model {
|
|
14508
|
+
commonHeaders?: {
|
|
14509
|
+
[key: string]: string;
|
|
14510
|
+
};
|
|
14511
|
+
accountContextShrink?: string;
|
|
14512
|
+
static names(): {
|
|
14513
|
+
[key: string]: string;
|
|
14514
|
+
};
|
|
14515
|
+
static types(): {
|
|
14516
|
+
[key: string]: any;
|
|
14517
|
+
};
|
|
14518
|
+
constructor(map?: {
|
|
14519
|
+
[key: string]: any;
|
|
14520
|
+
});
|
|
14521
|
+
}
|
|
14522
|
+
export declare class StartMinutesRequest extends $tea.Model {
|
|
14523
|
+
tenantContext?: StartMinutesRequestTenantContext;
|
|
14524
|
+
conferenceId?: string;
|
|
14525
|
+
ownerUserId?: string;
|
|
14526
|
+
recordAudio?: boolean;
|
|
14527
|
+
static names(): {
|
|
14528
|
+
[key: string]: string;
|
|
14529
|
+
};
|
|
14530
|
+
static types(): {
|
|
14531
|
+
[key: string]: any;
|
|
14532
|
+
};
|
|
14533
|
+
constructor(map?: {
|
|
14534
|
+
[key: string]: any;
|
|
14535
|
+
});
|
|
14536
|
+
}
|
|
14537
|
+
export declare class StartMinutesShrinkRequest extends $tea.Model {
|
|
14538
|
+
tenantContextShrink?: string;
|
|
14539
|
+
conferenceId?: string;
|
|
14540
|
+
ownerUserId?: string;
|
|
14541
|
+
recordAudio?: boolean;
|
|
14542
|
+
static names(): {
|
|
14543
|
+
[key: string]: string;
|
|
14544
|
+
};
|
|
14545
|
+
static types(): {
|
|
14546
|
+
[key: string]: any;
|
|
14547
|
+
};
|
|
14548
|
+
constructor(map?: {
|
|
14549
|
+
[key: string]: any;
|
|
14550
|
+
});
|
|
14551
|
+
}
|
|
14552
|
+
export declare class StartMinutesResponseBody extends $tea.Model {
|
|
14553
|
+
code?: string;
|
|
14554
|
+
requestId?: string;
|
|
14555
|
+
vendorRequestId?: string;
|
|
14556
|
+
vendorType?: string;
|
|
14557
|
+
static names(): {
|
|
14558
|
+
[key: string]: string;
|
|
14559
|
+
};
|
|
14560
|
+
static types(): {
|
|
14561
|
+
[key: string]: any;
|
|
14562
|
+
};
|
|
14563
|
+
constructor(map?: {
|
|
14564
|
+
[key: string]: any;
|
|
14565
|
+
});
|
|
14566
|
+
}
|
|
14567
|
+
export declare class StartMinutesResponse extends $tea.Model {
|
|
14568
|
+
headers?: {
|
|
14569
|
+
[key: string]: string;
|
|
14570
|
+
};
|
|
14571
|
+
statusCode?: number;
|
|
14572
|
+
body?: StartMinutesResponseBody;
|
|
14573
|
+
static names(): {
|
|
14574
|
+
[key: string]: string;
|
|
14575
|
+
};
|
|
14576
|
+
static types(): {
|
|
14577
|
+
[key: string]: any;
|
|
14578
|
+
};
|
|
14579
|
+
constructor(map?: {
|
|
14580
|
+
[key: string]: any;
|
|
14581
|
+
});
|
|
14582
|
+
}
|
|
14405
14583
|
export declare class StatisticsListByTypeReportHeaders extends $tea.Model {
|
|
14406
14584
|
commonHeaders?: {
|
|
14407
14585
|
[key: string]: string;
|
|
@@ -14668,6 +14846,93 @@ export declare class StopCloudRecordResponse extends $tea.Model {
|
|
|
14668
14846
|
[key: string]: any;
|
|
14669
14847
|
});
|
|
14670
14848
|
}
|
|
14849
|
+
export declare class StopMinutesHeaders extends $tea.Model {
|
|
14850
|
+
commonHeaders?: {
|
|
14851
|
+
[key: string]: string;
|
|
14852
|
+
};
|
|
14853
|
+
accountContext?: StopMinutesHeadersAccountContext;
|
|
14854
|
+
static names(): {
|
|
14855
|
+
[key: string]: string;
|
|
14856
|
+
};
|
|
14857
|
+
static types(): {
|
|
14858
|
+
[key: string]: any;
|
|
14859
|
+
};
|
|
14860
|
+
constructor(map?: {
|
|
14861
|
+
[key: string]: any;
|
|
14862
|
+
});
|
|
14863
|
+
}
|
|
14864
|
+
export declare class StopMinutesShrinkHeaders extends $tea.Model {
|
|
14865
|
+
commonHeaders?: {
|
|
14866
|
+
[key: string]: string;
|
|
14867
|
+
};
|
|
14868
|
+
accountContextShrink?: string;
|
|
14869
|
+
static names(): {
|
|
14870
|
+
[key: string]: string;
|
|
14871
|
+
};
|
|
14872
|
+
static types(): {
|
|
14873
|
+
[key: string]: any;
|
|
14874
|
+
};
|
|
14875
|
+
constructor(map?: {
|
|
14876
|
+
[key: string]: any;
|
|
14877
|
+
});
|
|
14878
|
+
}
|
|
14879
|
+
export declare class StopMinutesRequest extends $tea.Model {
|
|
14880
|
+
tenantContext?: StopMinutesRequestTenantContext;
|
|
14881
|
+
conferenceId?: string;
|
|
14882
|
+
static names(): {
|
|
14883
|
+
[key: string]: string;
|
|
14884
|
+
};
|
|
14885
|
+
static types(): {
|
|
14886
|
+
[key: string]: any;
|
|
14887
|
+
};
|
|
14888
|
+
constructor(map?: {
|
|
14889
|
+
[key: string]: any;
|
|
14890
|
+
});
|
|
14891
|
+
}
|
|
14892
|
+
export declare class StopMinutesShrinkRequest extends $tea.Model {
|
|
14893
|
+
tenantContextShrink?: string;
|
|
14894
|
+
conferenceId?: string;
|
|
14895
|
+
static names(): {
|
|
14896
|
+
[key: string]: string;
|
|
14897
|
+
};
|
|
14898
|
+
static types(): {
|
|
14899
|
+
[key: string]: any;
|
|
14900
|
+
};
|
|
14901
|
+
constructor(map?: {
|
|
14902
|
+
[key: string]: any;
|
|
14903
|
+
});
|
|
14904
|
+
}
|
|
14905
|
+
export declare class StopMinutesResponseBody extends $tea.Model {
|
|
14906
|
+
code?: string;
|
|
14907
|
+
requestId?: string;
|
|
14908
|
+
vendorRequestId?: string;
|
|
14909
|
+
vendorType?: string;
|
|
14910
|
+
static names(): {
|
|
14911
|
+
[key: string]: string;
|
|
14912
|
+
};
|
|
14913
|
+
static types(): {
|
|
14914
|
+
[key: string]: any;
|
|
14915
|
+
};
|
|
14916
|
+
constructor(map?: {
|
|
14917
|
+
[key: string]: any;
|
|
14918
|
+
});
|
|
14919
|
+
}
|
|
14920
|
+
export declare class StopMinutesResponse extends $tea.Model {
|
|
14921
|
+
headers?: {
|
|
14922
|
+
[key: string]: string;
|
|
14923
|
+
};
|
|
14924
|
+
statusCode?: number;
|
|
14925
|
+
body?: StopMinutesResponseBody;
|
|
14926
|
+
static names(): {
|
|
14927
|
+
[key: string]: string;
|
|
14928
|
+
};
|
|
14929
|
+
static types(): {
|
|
14930
|
+
[key: string]: any;
|
|
14931
|
+
};
|
|
14932
|
+
constructor(map?: {
|
|
14933
|
+
[key: string]: any;
|
|
14934
|
+
});
|
|
14935
|
+
}
|
|
14671
14936
|
export declare class SubscribeCalendarHeaders extends $tea.Model {
|
|
14672
14937
|
commonHeaders?: {
|
|
14673
14938
|
[key: string]: string;
|
|
@@ -23100,6 +23365,48 @@ export declare class QueryMeetingRoomListResponseBodyResult extends $tea.Model {
|
|
|
23100
23365
|
[key: string]: any;
|
|
23101
23366
|
});
|
|
23102
23367
|
}
|
|
23368
|
+
export declare class QueryMinutesHeadersAccountContext extends $tea.Model {
|
|
23369
|
+
accountId?: string;
|
|
23370
|
+
static names(): {
|
|
23371
|
+
[key: string]: string;
|
|
23372
|
+
};
|
|
23373
|
+
static types(): {
|
|
23374
|
+
[key: string]: any;
|
|
23375
|
+
};
|
|
23376
|
+
constructor(map?: {
|
|
23377
|
+
[key: string]: any;
|
|
23378
|
+
});
|
|
23379
|
+
}
|
|
23380
|
+
export declare class QueryMinutesRequestTenantContext extends $tea.Model {
|
|
23381
|
+
tenantId?: string;
|
|
23382
|
+
static names(): {
|
|
23383
|
+
[key: string]: string;
|
|
23384
|
+
};
|
|
23385
|
+
static types(): {
|
|
23386
|
+
[key: string]: any;
|
|
23387
|
+
};
|
|
23388
|
+
constructor(map?: {
|
|
23389
|
+
[key: string]: any;
|
|
23390
|
+
});
|
|
23391
|
+
}
|
|
23392
|
+
export declare class QueryMinutesResponseBodyAudioList extends $tea.Model {
|
|
23393
|
+
duration?: number;
|
|
23394
|
+
endTime?: number;
|
|
23395
|
+
fileSize?: number;
|
|
23396
|
+
playUrl?: string;
|
|
23397
|
+
recordId?: string;
|
|
23398
|
+
startTime?: number;
|
|
23399
|
+
userId?: string;
|
|
23400
|
+
static names(): {
|
|
23401
|
+
[key: string]: string;
|
|
23402
|
+
};
|
|
23403
|
+
static types(): {
|
|
23404
|
+
[key: string]: any;
|
|
23405
|
+
};
|
|
23406
|
+
constructor(map?: {
|
|
23407
|
+
[key: string]: any;
|
|
23408
|
+
});
|
|
23409
|
+
}
|
|
23103
23410
|
export declare class QueryMinutesSummaryHeadersAccountContext extends $tea.Model {
|
|
23104
23411
|
accountId?: string;
|
|
23105
23412
|
static names(): {
|
|
@@ -24262,6 +24569,30 @@ export declare class StartInstanceHeadersAccountContext extends $tea.Model {
|
|
|
24262
24569
|
[key: string]: any;
|
|
24263
24570
|
});
|
|
24264
24571
|
}
|
|
24572
|
+
export declare class StartMinutesHeadersAccountContext extends $tea.Model {
|
|
24573
|
+
accountId?: string;
|
|
24574
|
+
static names(): {
|
|
24575
|
+
[key: string]: string;
|
|
24576
|
+
};
|
|
24577
|
+
static types(): {
|
|
24578
|
+
[key: string]: any;
|
|
24579
|
+
};
|
|
24580
|
+
constructor(map?: {
|
|
24581
|
+
[key: string]: any;
|
|
24582
|
+
});
|
|
24583
|
+
}
|
|
24584
|
+
export declare class StartMinutesRequestTenantContext extends $tea.Model {
|
|
24585
|
+
tenantId?: string;
|
|
24586
|
+
static names(): {
|
|
24587
|
+
[key: string]: string;
|
|
24588
|
+
};
|
|
24589
|
+
static types(): {
|
|
24590
|
+
[key: string]: any;
|
|
24591
|
+
};
|
|
24592
|
+
constructor(map?: {
|
|
24593
|
+
[key: string]: any;
|
|
24594
|
+
});
|
|
24595
|
+
}
|
|
24265
24596
|
export declare class StatisticsListByTypeReportHeadersAccountContext extends $tea.Model {
|
|
24266
24597
|
accountId?: string;
|
|
24267
24598
|
static names(): {
|
|
@@ -24334,6 +24665,30 @@ export declare class StopCloudRecordRequestTenantContext extends $tea.Model {
|
|
|
24334
24665
|
[key: string]: any;
|
|
24335
24666
|
});
|
|
24336
24667
|
}
|
|
24668
|
+
export declare class StopMinutesHeadersAccountContext extends $tea.Model {
|
|
24669
|
+
accountId?: string;
|
|
24670
|
+
static names(): {
|
|
24671
|
+
[key: string]: string;
|
|
24672
|
+
};
|
|
24673
|
+
static types(): {
|
|
24674
|
+
[key: string]: any;
|
|
24675
|
+
};
|
|
24676
|
+
constructor(map?: {
|
|
24677
|
+
[key: string]: any;
|
|
24678
|
+
});
|
|
24679
|
+
}
|
|
24680
|
+
export declare class StopMinutesRequestTenantContext extends $tea.Model {
|
|
24681
|
+
tenantId?: string;
|
|
24682
|
+
static names(): {
|
|
24683
|
+
[key: string]: string;
|
|
24684
|
+
};
|
|
24685
|
+
static types(): {
|
|
24686
|
+
[key: string]: any;
|
|
24687
|
+
};
|
|
24688
|
+
constructor(map?: {
|
|
24689
|
+
[key: string]: any;
|
|
24690
|
+
});
|
|
24691
|
+
}
|
|
24337
24692
|
export declare class SubscribeCalendarHeadersAccountContext extends $tea.Model {
|
|
24338
24693
|
accountId?: string;
|
|
24339
24694
|
static names(): {
|
|
@@ -27013,6 +27368,22 @@ export default class Client extends OpenApi {
|
|
|
27013
27368
|
* @return QueryMeetingRoomListResponse
|
|
27014
27369
|
*/
|
|
27015
27370
|
queryMeetingRoomList(request: QueryMeetingRoomListRequest): Promise<QueryMeetingRoomListResponse>;
|
|
27371
|
+
/**
|
|
27372
|
+
* @summary 查询闪记录音
|
|
27373
|
+
*
|
|
27374
|
+
* @param tmpReq QueryMinutesRequest
|
|
27375
|
+
* @param tmpHeader QueryMinutesHeaders
|
|
27376
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27377
|
+
* @return QueryMinutesResponse
|
|
27378
|
+
*/
|
|
27379
|
+
queryMinutesWithOptions(tmpReq: QueryMinutesRequest, tmpHeader: QueryMinutesHeaders, runtime: $Util.RuntimeOptions): Promise<QueryMinutesResponse>;
|
|
27380
|
+
/**
|
|
27381
|
+
* @summary 查询闪记录音
|
|
27382
|
+
*
|
|
27383
|
+
* @param request QueryMinutesRequest
|
|
27384
|
+
* @return QueryMinutesResponse
|
|
27385
|
+
*/
|
|
27386
|
+
queryMinutes(request: QueryMinutesRequest): Promise<QueryMinutesResponse>;
|
|
27016
27387
|
/**
|
|
27017
27388
|
* @summary 查询会议闪记智能纪要
|
|
27018
27389
|
*
|
|
@@ -27493,6 +27864,22 @@ export default class Client extends OpenApi {
|
|
|
27493
27864
|
* @return StartInstanceResponse
|
|
27494
27865
|
*/
|
|
27495
27866
|
startInstance(request: StartInstanceRequest): Promise<StartInstanceResponse>;
|
|
27867
|
+
/**
|
|
27868
|
+
* @summary 开启闪记
|
|
27869
|
+
*
|
|
27870
|
+
* @param tmpReq StartMinutesRequest
|
|
27871
|
+
* @param tmpHeader StartMinutesHeaders
|
|
27872
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27873
|
+
* @return StartMinutesResponse
|
|
27874
|
+
*/
|
|
27875
|
+
startMinutesWithOptions(tmpReq: StartMinutesRequest, tmpHeader: StartMinutesHeaders, runtime: $Util.RuntimeOptions): Promise<StartMinutesResponse>;
|
|
27876
|
+
/**
|
|
27877
|
+
* @summary 开启闪记
|
|
27878
|
+
*
|
|
27879
|
+
* @param request StartMinutesRequest
|
|
27880
|
+
* @return StartMinutesResponse
|
|
27881
|
+
*/
|
|
27882
|
+
startMinutes(request: StartMinutesRequest): Promise<StartMinutesResponse>;
|
|
27496
27883
|
/**
|
|
27497
27884
|
* @summary 获取日志相关人员列表
|
|
27498
27885
|
*
|
|
@@ -27541,6 +27928,22 @@ export default class Client extends OpenApi {
|
|
|
27541
27928
|
* @return StopCloudRecordResponse
|
|
27542
27929
|
*/
|
|
27543
27930
|
stopCloudRecord(request: StopCloudRecordRequest): Promise<StopCloudRecordResponse>;
|
|
27931
|
+
/**
|
|
27932
|
+
* @summary 暂停闪记
|
|
27933
|
+
*
|
|
27934
|
+
* @param tmpReq StopMinutesRequest
|
|
27935
|
+
* @param tmpHeader StopMinutesHeaders
|
|
27936
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27937
|
+
* @return StopMinutesResponse
|
|
27938
|
+
*/
|
|
27939
|
+
stopMinutesWithOptions(tmpReq: StopMinutesRequest, tmpHeader: StopMinutesHeaders, runtime: $Util.RuntimeOptions): Promise<StopMinutesResponse>;
|
|
27940
|
+
/**
|
|
27941
|
+
* @summary 暂停闪记
|
|
27942
|
+
*
|
|
27943
|
+
* @param request StopMinutesRequest
|
|
27944
|
+
* @return StopMinutesResponse
|
|
27945
|
+
*/
|
|
27946
|
+
stopMinutes(request: StopMinutesRequest): Promise<StopMinutesResponse>;
|
|
27544
27947
|
/**
|
|
27545
27948
|
* @summary 订阅公共日历
|
|
27546
27949
|
*
|