@satorijs/adapter-dingtalk 1.0.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.
Files changed (53) hide show
  1. package/lib/api/alitrip.d.ts +396 -0
  2. package/lib/api/attendance.d.ts +62 -0
  3. package/lib/api/badge.d.ts +232 -0
  4. package/lib/api/blackboard.d.ts +16 -0
  5. package/lib/api/calendar.d.ts +620 -0
  6. package/lib/api/card.d.ts +184 -0
  7. package/lib/api/conference.d.ts +403 -0
  8. package/lib/api/connector.d.ts +78 -0
  9. package/lib/api/contact.d.ts +39 -0
  10. package/lib/api/convFile.d.ts +134 -0
  11. package/lib/api/crm.d.ts +661 -0
  12. package/lib/api/customerService.d.ts +127 -0
  13. package/lib/api/datacenter.d.ts +505 -0
  14. package/lib/api/devicemng.d.ts +160 -0
  15. package/lib/api/diot.d.ts +12 -0
  16. package/lib/api/doc.d.ts +140 -0
  17. package/lib/api/drive.d.ts +87 -0
  18. package/lib/api/edu.d.ts +22 -0
  19. package/lib/api/esign.d.ts +33 -0
  20. package/lib/api/exclusive.d.ts +303 -0
  21. package/lib/api/h3yun.d.ts +437 -0
  22. package/lib/api/hrm.d.ts +214 -0
  23. package/lib/api/im.d.ts +772 -0
  24. package/lib/api/industry.d.ts +117 -0
  25. package/lib/api/jzcrm.d.ts +254 -0
  26. package/lib/api/link.d.ts +72 -0
  27. package/lib/api/live.d.ts +131 -0
  28. package/lib/api/microApp.d.ts +239 -0
  29. package/lib/api/oapi.d.ts +3361 -0
  30. package/lib/api/oauth2.d.ts +114 -0
  31. package/lib/api/pedia.d.ts +185 -0
  32. package/lib/api/project.d.ts +1118 -0
  33. package/lib/api/resident.d.ts +106 -0
  34. package/lib/api/robot.d.ts +255 -0
  35. package/lib/api/rooms.d.ts +255 -0
  36. package/lib/api/serviceGroup.d.ts +175 -0
  37. package/lib/api/storage.d.ts +1240 -0
  38. package/lib/api/swform.d.ts +70 -0
  39. package/lib/api/todo.d.ts +168 -0
  40. package/lib/api/wiki.d.ts +194 -0
  41. package/lib/api/workbench.d.ts +45 -0
  42. package/lib/api/yida.d.ts +1837 -0
  43. package/lib/bot.d.ts +30 -0
  44. package/lib/http.d.ts +7 -0
  45. package/lib/index.d.ts +7 -0
  46. package/lib/index.js +1814 -0
  47. package/lib/index.js.map +7 -0
  48. package/lib/internal.d.ts +7 -0
  49. package/lib/message.d.ts +17 -0
  50. package/lib/types/index.d.ts +133 -0
  51. package/lib/utils.d.ts +4 -0
  52. package/lib/ws.d.ts +12 -0
  53. package/package.json +31 -0
@@ -0,0 +1,117 @@
1
+ export interface CampusGetCampusQuery {
2
+ /** 园区项目的部门ID。 */
3
+ campusDeptId: number;
4
+ }
5
+ export interface CampusGetCampusResponse {
6
+ campusName?: string;
7
+ campusCorpId?: string;
8
+ campusDeptId?: number;
9
+ belongProjectGroupId?: string;
10
+ telephone?: string;
11
+ description?: string;
12
+ area?: unknown;
13
+ country?: string;
14
+ provId?: number;
15
+ cityId?: number;
16
+ countyId?: number;
17
+ address?: string;
18
+ location?: string;
19
+ capacity?: string;
20
+ orderStartTime?: number;
21
+ orderEndTime?: number;
22
+ orderInfo?: string;
23
+ extend?: string;
24
+ }
25
+ export interface CampusGetCampusGroupQuery {
26
+ /** 项目组ID。 */
27
+ groupId: number;
28
+ }
29
+ export interface CampusGetCampusGroupResponse {
30
+ projectGroupName?: string;
31
+ extend?: string;
32
+ }
33
+ export interface CampusCreateCampusParams {
34
+ /** 园区项目的名称。 */
35
+ campusName: string;
36
+ /** 归属的项目组ID。 */
37
+ belongProjectGroupId?: number;
38
+ /** 联系电话。 */
39
+ telephone?: string;
40
+ /** 园区项目的描述。 */
41
+ description?: string;
42
+ /** 园区项目面积。 */
43
+ area?: unknown;
44
+ /** 园区所在国家。 */
45
+ country?: string;
46
+ /** 园区所在省行政编码。 */
47
+ provId?: number;
48
+ /** 园区所在市行政编码。 */
49
+ cityId?: number;
50
+ /** 园区所在区/县行政编码。 */
51
+ countyId?: number;
52
+ /** 园区所在详细地址信息。 */
53
+ address?: string;
54
+ /** 园区容量。 */
55
+ capacity?: number;
56
+ /** 项目订购开始时间戳,单位毫秒。 */
57
+ orderStartTime?: number;
58
+ /** 项目订购结束时间戳,单位毫秒。 */
59
+ orderEndTime?: number;
60
+ /** 订单信息。 */
61
+ orderInfo?: string;
62
+ /** 扩展字段。 */
63
+ extend?: string;
64
+ /** 创建人的unionId。 */
65
+ creatorUnionId: string;
66
+ /** 经纬度,格式为:经度,维度。 */
67
+ location?: string;
68
+ }
69
+ export interface CampusCreateCampusResponse {
70
+ campusCorpId?: string;
71
+ campusDeptId?: string;
72
+ }
73
+ export interface CampusCreateCampusGroupParams {
74
+ /** 项目组名称。 */
75
+ name: string;
76
+ /** 扩展信息。 */
77
+ extend?: string;
78
+ }
79
+ export interface CampusCreateCampusGroupResponse {
80
+ groupId?: number;
81
+ }
82
+ export interface CampusDeleteCampusGroupQuery {
83
+ /** 项目组ID。 */
84
+ campusProjectGroupId: number;
85
+ }
86
+ export interface CampusDeleteCampusGroupResponse {
87
+ success?: unknown;
88
+ }
89
+ declare module '../internal' {
90
+ interface Internal {
91
+ /**
92
+ * 查询园区项目详情
93
+ * @see https://developers.dingtalk.com/document/isvapp/query-a-project-in-a-specified-campus
94
+ */
95
+ campusGetCampus(query: CampusGetCampusQuery): Promise<CampusGetCampusResponse>;
96
+ /**
97
+ * 查询项目组信息
98
+ * @see https://developers.dingtalk.com/document/isvapp/query-a-project-group-in-the-specified-park
99
+ */
100
+ campusGetCampusGroup(query: CampusGetCampusGroupQuery): Promise<CampusGetCampusGroupResponse>;
101
+ /**
102
+ * 创建园区项目
103
+ * @see https://developers.dingtalk.com/document/isvapp/create-a-campus-project
104
+ */
105
+ campusCreateCampus(params: CampusCreateCampusParams): Promise<CampusCreateCampusResponse>;
106
+ /**
107
+ * 创建项目组
108
+ * @see https://developers.dingtalk.com/document/isvapp/create-a-project-group
109
+ */
110
+ campusCreateCampusGroup(params: CampusCreateCampusGroupParams): Promise<CampusCreateCampusGroupResponse>;
111
+ /**
112
+ * 删除项目组
113
+ * @see https://developers.dingtalk.com/document/isvapp/delete-a-project-group
114
+ */
115
+ campusDeleteCampusGroup(query: CampusDeleteCampusGroupQuery): Promise<CampusDeleteCampusGroupResponse>;
116
+ }
117
+ }
@@ -0,0 +1,254 @@
1
+ export interface EditContactParams {
2
+ /** 数据类型,固定值**197**。 */
3
+ datatype: number;
4
+ /** 时间戳。 */
5
+ stamp: number;
6
+ /** 数据ID。 */
7
+ msgid?: number;
8
+ /** 编辑数据。 */
9
+ data?: unknown;
10
+ }
11
+ export interface EditContactResponse {
12
+ time: string;
13
+ msgid: number;
14
+ }
15
+ export interface EditCustomerPoolParams {
16
+ /** 数据类型,固定值**238**。 */
17
+ datatype: number;
18
+ /** 时间戳。 */
19
+ stamp: number;
20
+ /** 数据ID。 */
21
+ msgid?: number;
22
+ /** 编辑数据。 */
23
+ data?: unknown;
24
+ }
25
+ export interface EditCustomerPoolResponse {
26
+ time: string;
27
+ msgid: number;
28
+ }
29
+ export interface EditExchangeParams {
30
+ /** 数据类型,固定值**228**。 */
31
+ datatype: number;
32
+ /** 时间戳。 */
33
+ stamp: number;
34
+ /** 数据ID。 */
35
+ msgid?: number;
36
+ /** 编辑数据。 */
37
+ data?: unknown;
38
+ }
39
+ export interface EditExchangeResponse {
40
+ time: string;
41
+ msgid: number;
42
+ }
43
+ export interface EditGoodsParams {
44
+ /** 数据类型,固定值**154**。 */
45
+ datatype: number;
46
+ /** 时间戳。 */
47
+ stamp: number;
48
+ /** 数据ID。 */
49
+ msgid?: number;
50
+ /** 编辑数据。 */
51
+ data?: unknown;
52
+ }
53
+ export interface EditGoodsResponse {
54
+ time: string;
55
+ msgid: number;
56
+ }
57
+ export interface EditOutstockParams {
58
+ /** 数据类型,固定值**191**。 */
59
+ datatype: number;
60
+ /** 时间戳。 */
61
+ stamp: number;
62
+ /** 数据ID。 */
63
+ msgid?: number;
64
+ /** 编辑数据。 */
65
+ data?: unknown;
66
+ }
67
+ export interface EditOutstockResponse {
68
+ time: string;
69
+ msgid: number;
70
+ }
71
+ export interface EditIntostockParams {
72
+ /** 数据类型,固定值**189**。 */
73
+ datatype: number;
74
+ /** 时间戳。 */
75
+ stamp: number;
76
+ /** 数据ID。 */
77
+ msgid?: number;
78
+ /** 编辑数据。 */
79
+ data?: unknown;
80
+ }
81
+ export interface EditIntostockResponse {
82
+ time: string;
83
+ msgid: number;
84
+ }
85
+ export interface EditProductionParams {
86
+ /** 数据类型,固定值**156**。 */
87
+ datatype: number;
88
+ /** 时间戳。 */
89
+ stamp: number;
90
+ /** 数据ID。 */
91
+ msgid?: number;
92
+ /** 编辑数据。 */
93
+ data?: unknown;
94
+ }
95
+ export interface EditProductionResponse {
96
+ time: string;
97
+ msgid: number;
98
+ }
99
+ export interface EditPurchaseParams {
100
+ /** 数据类型,固定值**153**。 */
101
+ datatype: number;
102
+ /** 时间戳。 */
103
+ stamp: number;
104
+ /** 数据ID。 */
105
+ msgid?: number;
106
+ /** 编辑数据。 */
107
+ data?: unknown;
108
+ }
109
+ export interface EditPurchaseResponse {
110
+ time: string;
111
+ msgid: number;
112
+ }
113
+ export interface EditOrderParams {
114
+ /** 数据类型,固定填写**150**。 */
115
+ datatype: number;
116
+ /** 时间戳。 */
117
+ stamp: number;
118
+ /** 数据ID。 */
119
+ msgid?: number;
120
+ /** 编辑数据。 */
121
+ data?: unknown;
122
+ }
123
+ export interface EditOrderResponse {
124
+ time: string;
125
+ msgid: number;
126
+ }
127
+ export interface EditInvoiceParams {
128
+ /** 数据类型,固定值**169**。 */
129
+ datatype: number;
130
+ /** 时间戳。 */
131
+ stamp: number;
132
+ /** 数据ID。 */
133
+ msgid?: number;
134
+ /** 编辑数据。 */
135
+ data?: unknown;
136
+ }
137
+ export interface EditInvoiceResponse {
138
+ time: string;
139
+ msgid: number;
140
+ }
141
+ export interface EditCustomerParams {
142
+ /** 数据类型,固定值**148**。 */
143
+ datatype: number;
144
+ /** 时间戳,单位:秒。 */
145
+ stamp: number;
146
+ /** 数据ID。 */
147
+ msgid?: number;
148
+ /** 编辑数据。 */
149
+ data?: unknown;
150
+ }
151
+ export interface EditCustomerResponse {
152
+ time: string;
153
+ msgid: number;
154
+ }
155
+ export interface GetDataViewQuery {
156
+ /** 数据类型。 */
157
+ datatype: string;
158
+ /** 数据ID。 */
159
+ msgid: number;
160
+ }
161
+ export interface GetDataViewResponse {
162
+ data: {
163
+ detail: number;
164
+ };
165
+ dataname: unknown;
166
+ time: string;
167
+ }
168
+ export interface GetDataListQuery {
169
+ /** 数据类型。 */
170
+ datatype: string;
171
+ /** 页码。 */
172
+ page: number;
173
+ /** 分页条数。 */
174
+ pagesize: number;
175
+ }
176
+ export interface GetDataListResponse {
177
+ data: {
178
+ detail: number;
179
+ }[];
180
+ dataname: unknown;
181
+ page: number;
182
+ pageSize: number;
183
+ totalCount: number;
184
+ time: string;
185
+ }
186
+ declare module '../internal' {
187
+ interface Internal {
188
+ /**
189
+ * 联系人
190
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-contacts
191
+ */
192
+ editContact(params: EditContactParams): Promise<EditContactResponse>;
193
+ /**
194
+ * 客户公共池
195
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-customer-public-pools
196
+ */
197
+ editCustomerPool(params: EditCustomerPoolParams): Promise<EditCustomerPoolResponse>;
198
+ /**
199
+ * 编辑销售换货单数据
200
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-a-sales-order
201
+ */
202
+ editExchange(params: EditExchangeParams): Promise<EditExchangeResponse>;
203
+ /**
204
+ * 编辑产品数据
205
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-product-information
206
+ */
207
+ editGoods(params: EditGoodsParams): Promise<EditGoodsResponse>;
208
+ /**
209
+ * 编辑出库单信息
210
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-an-issue-ticket
211
+ */
212
+ editOutstock(params: EditOutstockParams): Promise<EditOutstockResponse>;
213
+ /**
214
+ * 编辑入库单数据
215
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-a-shipment-record
216
+ */
217
+ editIntostock(params: EditIntostockParams): Promise<EditIntostockResponse>;
218
+ /**
219
+ * 生产单
220
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-a-production-order
221
+ */
222
+ editProduction(params: EditProductionParams): Promise<EditProductionResponse>;
223
+ /**
224
+ * 采购单
225
+ * @see https://developers.dingtalk.com/document/isvapp/edit-purchase-order
226
+ */
227
+ editPurchase(params: EditPurchaseParams): Promise<EditPurchaseResponse>;
228
+ /**
229
+ * 合同订单
230
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-contract-orders
231
+ */
232
+ editOrder(params: EditOrderParams): Promise<EditOrderResponse>;
233
+ /**
234
+ * 发货单
235
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-invoices
236
+ */
237
+ editInvoice(params: EditInvoiceParams): Promise<EditInvoiceResponse>;
238
+ /**
239
+ * 客户资料
240
+ * @see https://developers.dingtalk.com/document/isvapp/add-or-edit-customer-profile
241
+ */
242
+ editCustomer(params: EditCustomerParams): Promise<EditCustomerResponse>;
243
+ /**
244
+ * 获取数据详情
245
+ * @see https://developers.dingtalk.com/document/isvapp/queries-data-details
246
+ */
247
+ getDataView(query: GetDataViewQuery): Promise<GetDataViewResponse>;
248
+ /**
249
+ * 获取数据列表
250
+ * @see https://developers.dingtalk.com/document/isvapp/obtain-the-data-list
251
+ */
252
+ getDataList(query: GetDataListQuery): Promise<GetDataListResponse>;
253
+ }
254
+ }
@@ -0,0 +1,72 @@
1
+ export interface GetUserFollowStatusQuery {
2
+ /** 待查询的服务窗关注者userId。 */
3
+ userId?: string;
4
+ /** 待查询的服务窗关注者unionId。 */
5
+ unionId?: string;
6
+ /** 服务窗帐号ID,可通过[服务窗帐号信息查询](https://open.dingtalk.com/document/orgapp/queries-the-list-of-services-under-an-enterprise)接口,获取返回参数`accountId`字段值。 */
7
+ accountId?: string;
8
+ }
9
+ export interface GetUserFollowStatusResponse {
10
+ result: {
11
+ status?: string;
12
+ };
13
+ }
14
+ export interface ListAccountResponse {
15
+ result?: {
16
+ accountId?: string;
17
+ accountName?: string;
18
+ }[];
19
+ }
20
+ export interface ListFollowerQuery {
21
+ /** 分页游标。 */
22
+ nextToken?: string;
23
+ /** 每页最大条目数,最大值100。 */
24
+ maxResults?: number;
25
+ /** 服务窗帐号ID,可调用[获取企业下服务窗列表](https://open.dingtalk.com/document/orgapp-server/queries-the-list-of-services-under-an-enterprise)接口获取accountId参数值。 */
26
+ accountId?: string;
27
+ }
28
+ export interface ListFollowerResponse {
29
+ requestId?: string;
30
+ result: {
31
+ nextToken?: string;
32
+ userList?: number;
33
+ };
34
+ }
35
+ export interface GetFollowerInfoQuery {
36
+ /** 关注服务窗用户的userId,可调用[批量获取关注服务窗用户信息](https://open.dingtalk.com/document/orgapp-server/obtains-the-follower-information-from-the-service-window)获得userId参数值。 */
37
+ userId?: string;
38
+ /** 关注服务窗用户的unionId,可通过[查询用户详情](https://open.dingtalk.com/document/orgapp-server/query-user-details)接口获取unionId参数值。 */
39
+ unionId?: string;
40
+ /** 服务窗帐号ID,可调用[获取企业下服务窗列表](https://open.dingtalk.com/document/orgapp-server/queries-the-list-of-services-under-an-enterprise)接口获取accountId参数值。 */
41
+ accountId?: string;
42
+ }
43
+ export interface GetFollowerInfoResponse {
44
+ requestId?: string;
45
+ result: {
46
+ user?: number;
47
+ };
48
+ }
49
+ declare module '../internal' {
50
+ interface Internal {
51
+ /**
52
+ * 获取用户关注状态
53
+ * @see https://developers.dingtalk.com/document/orgapp/obtain-the-attention-status-of-the-user-service-window
54
+ */
55
+ getUserFollowStatus(query: GetUserFollowStatusQuery): Promise<GetUserFollowStatusResponse>;
56
+ /**
57
+ * 获取企业下服务窗帐号列表
58
+ * @see https://developers.dingtalk.com/document/orgapp/queries-the-list-of-services-under-an-enterprise
59
+ */
60
+ listAccount(): Promise<ListAccountResponse>;
61
+ /**
62
+ * 批量获取关注服务窗用户信息
63
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-the-follower-information-from-the-service-window
64
+ */
65
+ listFollower(query: ListFollowerQuery): Promise<ListFollowerResponse>;
66
+ /**
67
+ * 获取服务窗关注人信息
68
+ * @see https://developers.dingtalk.com/document/orgapp/queries-the-follower-information-of-the-service-window
69
+ */
70
+ getFollowerInfo(query: GetFollowerInfoQuery): Promise<GetFollowerInfoResponse>;
71
+ }
72
+ }
@@ -0,0 +1,131 @@
1
+ export interface DeleteLiveQuery {
2
+ /** 直播ID。 */
3
+ liveId: string;
4
+ /** 用户unionId。 */
5
+ unionId: string;
6
+ }
7
+ export interface DeleteLiveResponse {
8
+ result?: {
9
+ success?: number;
10
+ };
11
+ }
12
+ export interface QueryLiveWatchUserListQuery {
13
+ /** 直播ID。 */
14
+ liveId: string;
15
+ /** 用户unionId。 */
16
+ unionId: string;
17
+ /** 分页起始位置,从0开始。 */
18
+ pageNumber?: number;
19
+ /** 分页大小。 */
20
+ pageSize: number;
21
+ }
22
+ export interface QueryLiveWatchUserListResponse {
23
+ result?: {
24
+ orgUsesList?: number;
25
+ outOrgUserList?: number;
26
+ };
27
+ }
28
+ export interface QueryLiveWatchDetailQuery {
29
+ /** 直播ID。 */
30
+ liveId: string;
31
+ /** 用户unionId。 */
32
+ unionId: string;
33
+ }
34
+ export interface QueryLiveWatchDetailResponse {
35
+ result?: {
36
+ pv?: number;
37
+ uv?: number;
38
+ liveUv?: number;
39
+ playbackUv?: number;
40
+ totalWatchTime?: number;
41
+ avgWatchTime?: number;
42
+ praiseCount?: number;
43
+ msgCount?: number;
44
+ };
45
+ }
46
+ export interface UpdateLiveParams {
47
+ /** 直播ID。 */
48
+ liveId: string;
49
+ /** 主播的unionId。 */
50
+ unionId: string;
51
+ /** 直播标题。 */
52
+ title?: string;
53
+ /** 直播简介。 */
54
+ introduction?: string;
55
+ /** 直播的封面地址。 */
56
+ coverUrl?: string;
57
+ /** 直播的预计开播时间戳,单位毫秒。 */
58
+ preStartTime?: number;
59
+ /** 直播的预计结束时间戳,单位毫秒。 */
60
+ preEndTime?: number;
61
+ }
62
+ export interface UpdateLiveResponse {
63
+ result?: {
64
+ success?: number;
65
+ };
66
+ }
67
+ export interface CreateLiveParams {
68
+ /** 发起直播的主播unionId。 */
69
+ unionId: string;
70
+ /** 直播标题。 */
71
+ title: string;
72
+ /** 直播简介。 */
73
+ introduction?: string;
74
+ /** 预计开播时间戳,单位毫秒。 */
75
+ preStartTime: number;
76
+ /** 直播的封面地址。 */
77
+ coverUrl?: string;
78
+ /** 预计结束时间戳,单位毫秒。 */
79
+ preEndTime: number;
80
+ publicType?: number;
81
+ }
82
+ export interface CreateLiveResponse {
83
+ result?: {
84
+ liveId?: string;
85
+ };
86
+ }
87
+ export interface QueryLiveInfoQuery {
88
+ /** 直播ID。 */
89
+ liveId: string;
90
+ /** 操作者的unionId。 */
91
+ unionId: string;
92
+ }
93
+ export interface QueryLiveInfoResponse {
94
+ result?: {
95
+ liveInfo?: number;
96
+ };
97
+ }
98
+ declare module '../internal' {
99
+ interface Internal {
100
+ /**
101
+ * 删除直播
102
+ * @see https://developers.dingtalk.com/document/isvapp/delete-live-streaming
103
+ */
104
+ deleteLive(query: DeleteLiveQuery): Promise<DeleteLiveResponse>;
105
+ /**
106
+ * 查询直播观看人员信息
107
+ * @see https://developers.dingtalk.com/document/isvapp/queries-the-viewing-information-of-viewers
108
+ */
109
+ queryLiveWatchUserList(query: QueryLiveWatchUserListQuery): Promise<QueryLiveWatchUserListResponse>;
110
+ /**
111
+ * 获取直播的观看数据
112
+ * @see https://developers.dingtalk.com/document/orgapp/queries-the-playback-data-of-a-live-stream
113
+ */
114
+ queryLiveWatchDetail(query: QueryLiveWatchDetailQuery): Promise<QueryLiveWatchDetailResponse>;
115
+ /**
116
+ * 修改直播属性信息
117
+ * @see https://developers.dingtalk.com/document/isvapp/modify-live-streaming
118
+ */
119
+ updateLive(params: UpdateLiveParams): Promise<UpdateLiveResponse>;
120
+ /**
121
+ * 创建直播
122
+ * @see https://developers.dingtalk.com/document/isvapp/create-live-streaming
123
+ */
124
+ createLive(params: CreateLiveParams): Promise<CreateLiveResponse>;
125
+ /**
126
+ * 查询直播详情
127
+ * @see https://developers.dingtalk.com/document/isvapp/queries-the-live-streaming-information
128
+ */
129
+ queryLiveInfo(query: QueryLiveInfoQuery): Promise<QueryLiveInfoResponse>;
130
+ }
131
+ }