@alicloud/aliding20230426 2.10.0 → 2.11.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 +150 -0
- package/dist/client.js +270 -18
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +309 -0
package/dist/client.d.ts
CHANGED
|
@@ -11923,6 +11923,99 @@ export declare class QueryScheduleConferenceResponse extends $tea.Model {
|
|
|
11923
11923
|
[key: string]: any;
|
|
11924
11924
|
});
|
|
11925
11925
|
}
|
|
11926
|
+
export declare class QueryScheduleConferenceInfoHeaders extends $tea.Model {
|
|
11927
|
+
commonHeaders?: {
|
|
11928
|
+
[key: string]: string;
|
|
11929
|
+
};
|
|
11930
|
+
accountContext?: QueryScheduleConferenceInfoHeadersAccountContext;
|
|
11931
|
+
static names(): {
|
|
11932
|
+
[key: string]: string;
|
|
11933
|
+
};
|
|
11934
|
+
static types(): {
|
|
11935
|
+
[key: string]: any;
|
|
11936
|
+
};
|
|
11937
|
+
constructor(map?: {
|
|
11938
|
+
[key: string]: any;
|
|
11939
|
+
});
|
|
11940
|
+
}
|
|
11941
|
+
export declare class QueryScheduleConferenceInfoShrinkHeaders extends $tea.Model {
|
|
11942
|
+
commonHeaders?: {
|
|
11943
|
+
[key: string]: string;
|
|
11944
|
+
};
|
|
11945
|
+
accountContextShrink?: string;
|
|
11946
|
+
static names(): {
|
|
11947
|
+
[key: string]: string;
|
|
11948
|
+
};
|
|
11949
|
+
static types(): {
|
|
11950
|
+
[key: string]: any;
|
|
11951
|
+
};
|
|
11952
|
+
constructor(map?: {
|
|
11953
|
+
[key: string]: any;
|
|
11954
|
+
});
|
|
11955
|
+
}
|
|
11956
|
+
export declare class QueryScheduleConferenceInfoRequest extends $tea.Model {
|
|
11957
|
+
maxResults?: number;
|
|
11958
|
+
nextToken?: string;
|
|
11959
|
+
scheduleConferenceId?: string;
|
|
11960
|
+
tenantContext?: QueryScheduleConferenceInfoRequestTenantContext;
|
|
11961
|
+
static names(): {
|
|
11962
|
+
[key: string]: string;
|
|
11963
|
+
};
|
|
11964
|
+
static types(): {
|
|
11965
|
+
[key: string]: any;
|
|
11966
|
+
};
|
|
11967
|
+
constructor(map?: {
|
|
11968
|
+
[key: string]: any;
|
|
11969
|
+
});
|
|
11970
|
+
}
|
|
11971
|
+
export declare class QueryScheduleConferenceInfoShrinkRequest extends $tea.Model {
|
|
11972
|
+
maxResults?: number;
|
|
11973
|
+
nextToken?: string;
|
|
11974
|
+
scheduleConferenceId?: string;
|
|
11975
|
+
tenantContextShrink?: string;
|
|
11976
|
+
static names(): {
|
|
11977
|
+
[key: string]: string;
|
|
11978
|
+
};
|
|
11979
|
+
static types(): {
|
|
11980
|
+
[key: string]: any;
|
|
11981
|
+
};
|
|
11982
|
+
constructor(map?: {
|
|
11983
|
+
[key: string]: any;
|
|
11984
|
+
});
|
|
11985
|
+
}
|
|
11986
|
+
export declare class QueryScheduleConferenceInfoResponseBody extends $tea.Model {
|
|
11987
|
+
conferenceList?: QueryScheduleConferenceInfoResponseBodyConferenceList[];
|
|
11988
|
+
nextToken?: string;
|
|
11989
|
+
requestId?: string;
|
|
11990
|
+
totalCount?: number;
|
|
11991
|
+
vendorRequestId?: string;
|
|
11992
|
+
vendorType?: string;
|
|
11993
|
+
static names(): {
|
|
11994
|
+
[key: string]: string;
|
|
11995
|
+
};
|
|
11996
|
+
static types(): {
|
|
11997
|
+
[key: string]: any;
|
|
11998
|
+
};
|
|
11999
|
+
constructor(map?: {
|
|
12000
|
+
[key: string]: any;
|
|
12001
|
+
});
|
|
12002
|
+
}
|
|
12003
|
+
export declare class QueryScheduleConferenceInfoResponse extends $tea.Model {
|
|
12004
|
+
headers?: {
|
|
12005
|
+
[key: string]: string;
|
|
12006
|
+
};
|
|
12007
|
+
statusCode?: number;
|
|
12008
|
+
body?: QueryScheduleConferenceInfoResponseBody;
|
|
12009
|
+
static names(): {
|
|
12010
|
+
[key: string]: string;
|
|
12011
|
+
};
|
|
12012
|
+
static types(): {
|
|
12013
|
+
[key: string]: any;
|
|
12014
|
+
};
|
|
12015
|
+
constructor(map?: {
|
|
12016
|
+
[key: string]: any;
|
|
12017
|
+
});
|
|
12018
|
+
}
|
|
11926
12019
|
export declare class QueryUserHonorsHeaders extends $tea.Model {
|
|
11927
12020
|
commonHeaders?: {
|
|
11928
12021
|
[key: string]: string;
|
|
@@ -22737,6 +22830,47 @@ export declare class QueryScheduleConferenceRequestTenantContext extends $tea.Mo
|
|
|
22737
22830
|
[key: string]: any;
|
|
22738
22831
|
});
|
|
22739
22832
|
}
|
|
22833
|
+
export declare class QueryScheduleConferenceInfoHeadersAccountContext extends $tea.Model {
|
|
22834
|
+
accountId?: string;
|
|
22835
|
+
static names(): {
|
|
22836
|
+
[key: string]: string;
|
|
22837
|
+
};
|
|
22838
|
+
static types(): {
|
|
22839
|
+
[key: string]: any;
|
|
22840
|
+
};
|
|
22841
|
+
constructor(map?: {
|
|
22842
|
+
[key: string]: any;
|
|
22843
|
+
});
|
|
22844
|
+
}
|
|
22845
|
+
export declare class QueryScheduleConferenceInfoRequestTenantContext extends $tea.Model {
|
|
22846
|
+
tenantId?: string;
|
|
22847
|
+
static names(): {
|
|
22848
|
+
[key: string]: string;
|
|
22849
|
+
};
|
|
22850
|
+
static types(): {
|
|
22851
|
+
[key: string]: any;
|
|
22852
|
+
};
|
|
22853
|
+
constructor(map?: {
|
|
22854
|
+
[key: string]: any;
|
|
22855
|
+
});
|
|
22856
|
+
}
|
|
22857
|
+
export declare class QueryScheduleConferenceInfoResponseBodyConferenceList extends $tea.Model {
|
|
22858
|
+
conferenceId?: string;
|
|
22859
|
+
endTime?: number;
|
|
22860
|
+
roomCode?: string;
|
|
22861
|
+
startTime?: number;
|
|
22862
|
+
status?: number;
|
|
22863
|
+
title?: string;
|
|
22864
|
+
static names(): {
|
|
22865
|
+
[key: string]: string;
|
|
22866
|
+
};
|
|
22867
|
+
static types(): {
|
|
22868
|
+
[key: string]: any;
|
|
22869
|
+
};
|
|
22870
|
+
constructor(map?: {
|
|
22871
|
+
[key: string]: any;
|
|
22872
|
+
});
|
|
22873
|
+
}
|
|
22740
22874
|
export declare class QueryUserHonorsHeadersAccountContext extends $tea.Model {
|
|
22741
22875
|
accountId?: string;
|
|
22742
22876
|
static names(): {
|
|
@@ -26280,6 +26414,22 @@ export default class Client extends OpenApi {
|
|
|
26280
26414
|
* @return QueryScheduleConferenceResponse
|
|
26281
26415
|
*/
|
|
26282
26416
|
queryScheduleConference(request: QueryScheduleConferenceRequest): Promise<QueryScheduleConferenceResponse>;
|
|
26417
|
+
/**
|
|
26418
|
+
* @summary 查询预约会议历史会议信息
|
|
26419
|
+
*
|
|
26420
|
+
* @param tmpReq QueryScheduleConferenceInfoRequest
|
|
26421
|
+
* @param tmpHeader QueryScheduleConferenceInfoHeaders
|
|
26422
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
26423
|
+
* @return QueryScheduleConferenceInfoResponse
|
|
26424
|
+
*/
|
|
26425
|
+
queryScheduleConferenceInfoWithOptions(tmpReq: QueryScheduleConferenceInfoRequest, tmpHeader: QueryScheduleConferenceInfoHeaders, runtime: $Util.RuntimeOptions): Promise<QueryScheduleConferenceInfoResponse>;
|
|
26426
|
+
/**
|
|
26427
|
+
* @summary 查询预约会议历史会议信息
|
|
26428
|
+
*
|
|
26429
|
+
* @param request QueryScheduleConferenceInfoRequest
|
|
26430
|
+
* @return QueryScheduleConferenceInfoResponse
|
|
26431
|
+
*/
|
|
26432
|
+
queryScheduleConferenceInfo(request: QueryScheduleConferenceInfoRequest): Promise<QueryScheduleConferenceInfoResponse>;
|
|
26283
26433
|
/**
|
|
26284
26434
|
* @summary 查询员工勋章列表
|
|
26285
26435
|
*
|