@satorijs/adapter-dingtalk 2.0.0 → 2.0.2
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/lib/api/alitrip.d.ts +12 -12
- package/lib/api/attendance.d.ts +3 -3
- package/lib/api/badge.d.ts +8 -8
- package/lib/api/blackboard.d.ts +1 -1
- package/lib/api/calendar.d.ts +28 -28
- package/lib/api/card.d.ts +6 -6
- package/lib/api/conference.d.ts +23 -23
- package/lib/api/connector.d.ts +3 -3
- package/lib/api/contact.d.ts +2 -2
- package/lib/api/convFile.d.ts +4 -4
- package/lib/api/crm.d.ts +28 -28
- package/lib/api/customerService.d.ts +4 -4
- package/lib/api/datacenter.d.ts +26 -26
- package/lib/api/devicemng.d.ts +5 -5
- package/lib/api/diot.d.ts +1 -1
- package/lib/api/doc.d.ts +8 -8
- package/lib/api/drive.d.ts +4 -4
- package/lib/api/edu.d.ts +5 -5
- package/lib/api/esign.d.ts +2 -2
- package/lib/api/exclusive.d.ts +14 -14
- package/lib/api/h3yun.d.ts +20 -20
- package/lib/api/hrm.d.ts +9 -9
- package/lib/api/im.d.ts +37 -37
- package/lib/api/industry.d.ts +5 -5
- package/lib/api/jzcrm.d.ts +13 -13
- package/lib/api/link.d.ts +4 -4
- package/lib/api/live.d.ts +6 -6
- package/lib/api/microApp.d.ts +12 -12
- package/lib/api/oapi.d.ts +257 -257
- package/lib/api/oauth2.d.ts +7 -7
- package/lib/api/pedia.d.ts +6 -6
- package/lib/api/project.d.ts +50 -50
- package/lib/api/resident.d.ts +6 -6
- package/lib/api/robot.d.ts +14 -14
- package/lib/api/rooms.d.ts +12 -12
- package/lib/api/serviceGroup.d.ts +8 -8
- package/lib/api/storage.d.ts +51 -51
- package/lib/api/swform.d.ts +3 -3
- package/lib/api/todo.d.ts +5 -5
- package/lib/api/wiki.d.ts +6 -6
- package/lib/api/workbench.d.ts +3 -3
- package/lib/api/yida.d.ts +60 -60
- package/lib/bot.d.ts +5 -6
- package/lib/http.d.ts +2 -3
- package/lib/index.js +164 -165
- package/lib/index.js.map +2 -2
- package/lib/message.d.ts +2 -2
- package/lib/utils.d.ts +2 -2
- package/lib/ws.d.ts +3 -3
- package/package.json +7 -4
package/lib/api/microApp.d.ts
CHANGED
|
@@ -177,62 +177,62 @@ declare module '../internal' {
|
|
|
177
177
|
interface Internal {
|
|
178
178
|
/**
|
|
179
179
|
* 回滚企业内部小程序版本
|
|
180
|
-
* @see https://
|
|
180
|
+
* @see https://open.dingtalk.com/document/app/rollback-of-enterprise-internal-applet-version
|
|
181
181
|
*/
|
|
182
182
|
rollbackInnerAppVersion(agentId: number, params: RollbackInnerAppVersionParams): Promise<RollbackInnerAppVersionResponse>;
|
|
183
183
|
/**
|
|
184
184
|
* 发布企业内部小程序版本
|
|
185
|
-
* @see https://
|
|
185
|
+
* @see https://open.dingtalk.com/document/orgapp/release-internal-applet-version
|
|
186
186
|
*/
|
|
187
187
|
publishInnerAppVersion(agentId: number, params: PublishInnerAppVersionParams): Promise<PublishInnerAppVersionResponse>;
|
|
188
188
|
/**
|
|
189
189
|
* 获取企业内部小程序历史版本列表
|
|
190
|
-
* @see https://
|
|
190
|
+
* @see https://open.dingtalk.com/document/orgapp/obtain-the-list-of-historical-versions-of-enterprise-internal-applets
|
|
191
191
|
*/
|
|
192
192
|
pageInnerAppHistoryVersion(agentId: number, query: PageInnerAppHistoryVersionQuery): Promise<PageInnerAppHistoryVersionResponse>;
|
|
193
193
|
/**
|
|
194
194
|
* 获取企业内部小程序的版本列表
|
|
195
|
-
* @see https://
|
|
195
|
+
* @see https://open.dingtalk.com/document/orgapp/get-the-version-list-of-the-enterprise-internal-applet
|
|
196
196
|
*/
|
|
197
197
|
listInnerAppVersion(agentId: number): Promise<ListInnerAppVersionResponse>;
|
|
198
198
|
/**
|
|
199
199
|
* 获取企业所有内部应用列表
|
|
200
|
-
* @see https://
|
|
200
|
+
* @see https://open.dingtalk.com/document/orgapp/get-a-list-of-all-applications-inside-the-enterprise
|
|
201
201
|
*/
|
|
202
202
|
listAllInnerApps(): Promise<ListAllInnerAppsResponse>;
|
|
203
203
|
/**
|
|
204
204
|
* 获取企业内部应用微应用的可使用范围
|
|
205
|
-
* @see https://
|
|
205
|
+
* @see https://open.dingtalk.com/document/orgapp/obtains-the-application-visible-range
|
|
206
206
|
*/
|
|
207
207
|
getMicroAppScope(agentId: number): Promise<GetMicroAppScopeResponse>;
|
|
208
208
|
/**
|
|
209
209
|
* 更新企业内部应用微应用的可使用范围
|
|
210
|
-
* @see https://
|
|
210
|
+
* @see https://open.dingtalk.com/document/orgapp/update-the-visible-range-of-micro-applications
|
|
211
211
|
*/
|
|
212
212
|
setMicroAppScope(agentId: number, params: SetMicroAppScopeParams): Promise<SetMicroAppScopeResponse>;
|
|
213
213
|
/**
|
|
214
214
|
* 获取用户可见的企业应用列表
|
|
215
|
-
* @see https://
|
|
215
|
+
* @see https://open.dingtalk.com/document/orgapp/obtains-the-list-of-enterprise-applications-visible-to-a-user
|
|
216
216
|
*/
|
|
217
217
|
listUserVilebleApp(userId: string): Promise<ListUserVilebleAppResponse>;
|
|
218
218
|
/**
|
|
219
219
|
* 获取企业所有应用列表
|
|
220
|
-
* @see https://
|
|
220
|
+
* @see https://open.dingtalk.com/document/orgapp/obtains-a-list-of-all-enterprise-applications
|
|
221
221
|
*/
|
|
222
222
|
listAllApp(): Promise<ListAllAppResponse>;
|
|
223
223
|
/**
|
|
224
224
|
* 删除企业内部应用
|
|
225
|
-
* @see https://
|
|
225
|
+
* @see https://open.dingtalk.com/document/app/delete-an-internal-h5-application
|
|
226
226
|
*/
|
|
227
227
|
deleteInnerApp(agentId: number, query: DeleteInnerAppQuery): Promise<DeleteInnerAppResponse>;
|
|
228
228
|
/**
|
|
229
229
|
* 更新企业内部应用
|
|
230
|
-
* @see https://
|
|
230
|
+
* @see https://open.dingtalk.com/document/app/update-internal-h5-applications
|
|
231
231
|
*/
|
|
232
232
|
updateInnerApp(agentId: number, params: UpdateInnerAppParams): Promise<UpdateInnerAppResponse>;
|
|
233
233
|
/**
|
|
234
234
|
* 创建企业内部应用
|
|
235
|
-
* @see https://
|
|
235
|
+
* @see https://open.dingtalk.com/document/app/create-an-h5-application-for-your-enterprise
|
|
236
236
|
*/
|
|
237
237
|
createInnerApp(params: CreateInnerAppParams): Promise<CreateInnerAppResponse>;
|
|
238
238
|
}
|