@alicloud/aliding20230426 2.11.1 → 2.12.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 +156 -0
- package/dist/client.js +276 -18
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +319 -0
package/dist/client.d.ts
CHANGED
|
@@ -11832,6 +11832,101 @@ export declare class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
|
11832
11832
|
[key: string]: any;
|
|
11833
11833
|
});
|
|
11834
11834
|
}
|
|
11835
|
+
export declare class QueryReportDetailHeaders extends $tea.Model {
|
|
11836
|
+
commonHeaders?: {
|
|
11837
|
+
[key: string]: string;
|
|
11838
|
+
};
|
|
11839
|
+
accountContext?: QueryReportDetailHeadersAccountContext;
|
|
11840
|
+
static names(): {
|
|
11841
|
+
[key: string]: string;
|
|
11842
|
+
};
|
|
11843
|
+
static types(): {
|
|
11844
|
+
[key: string]: any;
|
|
11845
|
+
};
|
|
11846
|
+
constructor(map?: {
|
|
11847
|
+
[key: string]: any;
|
|
11848
|
+
});
|
|
11849
|
+
}
|
|
11850
|
+
export declare class QueryReportDetailShrinkHeaders extends $tea.Model {
|
|
11851
|
+
commonHeaders?: {
|
|
11852
|
+
[key: string]: string;
|
|
11853
|
+
};
|
|
11854
|
+
accountContextShrink?: string;
|
|
11855
|
+
static names(): {
|
|
11856
|
+
[key: string]: string;
|
|
11857
|
+
};
|
|
11858
|
+
static types(): {
|
|
11859
|
+
[key: string]: any;
|
|
11860
|
+
};
|
|
11861
|
+
constructor(map?: {
|
|
11862
|
+
[key: string]: any;
|
|
11863
|
+
});
|
|
11864
|
+
}
|
|
11865
|
+
export declare class QueryReportDetailRequest extends $tea.Model {
|
|
11866
|
+
reportId?: string;
|
|
11867
|
+
tenantContext?: QueryReportDetailRequestTenantContext;
|
|
11868
|
+
static names(): {
|
|
11869
|
+
[key: string]: string;
|
|
11870
|
+
};
|
|
11871
|
+
static types(): {
|
|
11872
|
+
[key: string]: any;
|
|
11873
|
+
};
|
|
11874
|
+
constructor(map?: {
|
|
11875
|
+
[key: string]: any;
|
|
11876
|
+
});
|
|
11877
|
+
}
|
|
11878
|
+
export declare class QueryReportDetailShrinkRequest extends $tea.Model {
|
|
11879
|
+
reportId?: string;
|
|
11880
|
+
tenantContextShrink?: string;
|
|
11881
|
+
static names(): {
|
|
11882
|
+
[key: string]: string;
|
|
11883
|
+
};
|
|
11884
|
+
static types(): {
|
|
11885
|
+
[key: string]: any;
|
|
11886
|
+
};
|
|
11887
|
+
constructor(map?: {
|
|
11888
|
+
[key: string]: any;
|
|
11889
|
+
});
|
|
11890
|
+
}
|
|
11891
|
+
export declare class QueryReportDetailResponseBody extends $tea.Model {
|
|
11892
|
+
content?: QueryReportDetailResponseBodyContent[];
|
|
11893
|
+
createTime?: number;
|
|
11894
|
+
creatorId?: string;
|
|
11895
|
+
creatorName?: string;
|
|
11896
|
+
deptName?: string;
|
|
11897
|
+
modifiedTime?: number;
|
|
11898
|
+
remark?: string;
|
|
11899
|
+
reportId?: string;
|
|
11900
|
+
requestId?: string;
|
|
11901
|
+
templateName?: string;
|
|
11902
|
+
vendorRequestId?: string;
|
|
11903
|
+
vendorType?: string;
|
|
11904
|
+
static names(): {
|
|
11905
|
+
[key: string]: string;
|
|
11906
|
+
};
|
|
11907
|
+
static types(): {
|
|
11908
|
+
[key: string]: any;
|
|
11909
|
+
};
|
|
11910
|
+
constructor(map?: {
|
|
11911
|
+
[key: string]: any;
|
|
11912
|
+
});
|
|
11913
|
+
}
|
|
11914
|
+
export declare class QueryReportDetailResponse extends $tea.Model {
|
|
11915
|
+
headers?: {
|
|
11916
|
+
[key: string]: string;
|
|
11917
|
+
};
|
|
11918
|
+
statusCode?: number;
|
|
11919
|
+
body?: QueryReportDetailResponseBody;
|
|
11920
|
+
static names(): {
|
|
11921
|
+
[key: string]: string;
|
|
11922
|
+
};
|
|
11923
|
+
static types(): {
|
|
11924
|
+
[key: string]: any;
|
|
11925
|
+
};
|
|
11926
|
+
constructor(map?: {
|
|
11927
|
+
[key: string]: any;
|
|
11928
|
+
});
|
|
11929
|
+
}
|
|
11835
11930
|
export declare class QueryScheduleConferenceHeaders extends $tea.Model {
|
|
11836
11931
|
commonHeaders?: {
|
|
11837
11932
|
[key: string]: string;
|
|
@@ -22808,6 +22903,46 @@ export declare class QueryOrgTodoTasksResponseBodyTodoCards extends $tea.Model {
|
|
|
22808
22903
|
[key: string]: any;
|
|
22809
22904
|
});
|
|
22810
22905
|
}
|
|
22906
|
+
export declare class QueryReportDetailHeadersAccountContext extends $tea.Model {
|
|
22907
|
+
accountId?: string;
|
|
22908
|
+
static names(): {
|
|
22909
|
+
[key: string]: string;
|
|
22910
|
+
};
|
|
22911
|
+
static types(): {
|
|
22912
|
+
[key: string]: any;
|
|
22913
|
+
};
|
|
22914
|
+
constructor(map?: {
|
|
22915
|
+
[key: string]: any;
|
|
22916
|
+
});
|
|
22917
|
+
}
|
|
22918
|
+
export declare class QueryReportDetailRequestTenantContext extends $tea.Model {
|
|
22919
|
+
tenantId?: string;
|
|
22920
|
+
static names(): {
|
|
22921
|
+
[key: string]: string;
|
|
22922
|
+
};
|
|
22923
|
+
static types(): {
|
|
22924
|
+
[key: string]: any;
|
|
22925
|
+
};
|
|
22926
|
+
constructor(map?: {
|
|
22927
|
+
[key: string]: any;
|
|
22928
|
+
});
|
|
22929
|
+
}
|
|
22930
|
+
export declare class QueryReportDetailResponseBodyContent extends $tea.Model {
|
|
22931
|
+
images?: string[];
|
|
22932
|
+
key?: string;
|
|
22933
|
+
sort?: string;
|
|
22934
|
+
type?: string;
|
|
22935
|
+
value?: string;
|
|
22936
|
+
static names(): {
|
|
22937
|
+
[key: string]: string;
|
|
22938
|
+
};
|
|
22939
|
+
static types(): {
|
|
22940
|
+
[key: string]: any;
|
|
22941
|
+
};
|
|
22942
|
+
constructor(map?: {
|
|
22943
|
+
[key: string]: any;
|
|
22944
|
+
});
|
|
22945
|
+
}
|
|
22811
22946
|
export declare class QueryScheduleConferenceHeadersAccountContext extends $tea.Model {
|
|
22812
22947
|
accountId?: string;
|
|
22813
22948
|
static names(): {
|
|
@@ -23956,11 +24091,16 @@ export declare class UpdateScheduleConfSettingsHeadersAccountContext extends $te
|
|
|
23956
24091
|
});
|
|
23957
24092
|
}
|
|
23958
24093
|
export declare class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSetting extends $tea.Model {
|
|
24094
|
+
cloudRecordOwnerUserId?: string;
|
|
23959
24095
|
enableChat?: number;
|
|
23960
24096
|
enableWebAnonymousJoin?: boolean;
|
|
23961
24097
|
joinBeforeHost?: number;
|
|
23962
24098
|
lockMediaStatusMicMute?: number;
|
|
23963
24099
|
lockNick?: number;
|
|
24100
|
+
minutesOwnerUserId?: string;
|
|
24101
|
+
pushAllMeetingRecords?: boolean;
|
|
24102
|
+
pushCloudRecordCard?: boolean;
|
|
24103
|
+
pushMinutesCard?: boolean;
|
|
23964
24104
|
waitingRoom?: number;
|
|
23965
24105
|
static names(): {
|
|
23966
24106
|
[key: string]: string;
|
|
@@ -26400,6 +26540,22 @@ export default class Client extends OpenApi {
|
|
|
26400
26540
|
* @return QueryOrgTodoTasksResponse
|
|
26401
26541
|
*/
|
|
26402
26542
|
queryOrgTodoTasks(request: QueryOrgTodoTasksRequest): Promise<QueryOrgTodoTasksResponse>;
|
|
26543
|
+
/**
|
|
26544
|
+
* @summary 获取日志详情
|
|
26545
|
+
*
|
|
26546
|
+
* @param tmpReq QueryReportDetailRequest
|
|
26547
|
+
* @param tmpHeader QueryReportDetailHeaders
|
|
26548
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
26549
|
+
* @return QueryReportDetailResponse
|
|
26550
|
+
*/
|
|
26551
|
+
queryReportDetailWithOptions(tmpReq: QueryReportDetailRequest, tmpHeader: QueryReportDetailHeaders, runtime: $Util.RuntimeOptions): Promise<QueryReportDetailResponse>;
|
|
26552
|
+
/**
|
|
26553
|
+
* @summary 获取日志详情
|
|
26554
|
+
*
|
|
26555
|
+
* @param request QueryReportDetailRequest
|
|
26556
|
+
* @return QueryReportDetailResponse
|
|
26557
|
+
*/
|
|
26558
|
+
queryReportDetail(request: QueryReportDetailRequest): Promise<QueryReportDetailResponse>;
|
|
26403
26559
|
/**
|
|
26404
26560
|
* @summary 查询预约会议
|
|
26405
26561
|
*
|