@lark-project/js-sdk 0.0.30 → 0.0.31
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/es/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/types/index.d.ts +14 -1
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -209,12 +209,25 @@ type BriefWorkItem = {
|
|
|
209
209
|
};
|
|
210
210
|
/**
|
|
211
211
|
* @public
|
|
212
|
-
*
|
|
212
|
+
* 工作项模板(仅含关键属性)
|
|
213
213
|
*/
|
|
214
214
|
interface BriefTemplate {
|
|
215
|
+
/**
|
|
216
|
+
* 工作项模板唯一标识
|
|
217
|
+
*/
|
|
215
218
|
id: number;
|
|
219
|
+
/**
|
|
220
|
+
* 工作项模板名称
|
|
221
|
+
*/
|
|
216
222
|
name: string;
|
|
223
|
+
/**
|
|
224
|
+
* 流程模式
|
|
225
|
+
*/
|
|
217
226
|
flowMode: FlowMode;
|
|
227
|
+
/**
|
|
228
|
+
* 模板已禁用
|
|
229
|
+
*/
|
|
230
|
+
disabled: boolean;
|
|
218
231
|
}
|
|
219
232
|
/**
|
|
220
233
|
* @public
|