@lark-project/js-sdk 2.0.1-alpha.14 → 2.0.1-alpha.15
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 +6 -6
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1143,13 +1143,13 @@ interface WorkItemFinderOptions {
|
|
|
1143
1143
|
/**
|
|
1144
1144
|
* 搜索条件标识
|
|
1145
1145
|
* 如为空则生成新 key,不为空则会覆写
|
|
1146
|
-
*
|
|
1146
|
+
* searchId 与 workObjectId | spaceId 不匹配则会异常
|
|
1147
1147
|
*/
|
|
1148
|
-
|
|
1148
|
+
searchId?: string;
|
|
1149
1149
|
/**
|
|
1150
|
-
* 默认 true,控制
|
|
1150
|
+
* 默认 true,控制 searchId 的筛选条件是否回填到筛选器
|
|
1151
1151
|
*/
|
|
1152
|
-
|
|
1152
|
+
backfill?: boolean;
|
|
1153
1153
|
}
|
|
1154
1154
|
/**
|
|
1155
1155
|
* @public
|
|
@@ -1170,12 +1170,12 @@ declare abstract class WorkItemFinder extends BaseModel {
|
|
|
1170
1170
|
* @param callback
|
|
1171
1171
|
* confirmed 点击了确认
|
|
1172
1172
|
* canceled 点击了取消
|
|
1173
|
-
*
|
|
1173
|
+
* searchId 当点击确认时,返回筛选条件标识 searchId
|
|
1174
1174
|
*/
|
|
1175
1175
|
abstract open(options: WorkItemFinderOptions, callback: (result: {
|
|
1176
1176
|
confirmed: boolean;
|
|
1177
1177
|
canceled: boolean;
|
|
1178
|
-
|
|
1178
|
+
searchId?: string;
|
|
1179
1179
|
}) => void): Promise<void>;
|
|
1180
1180
|
}
|
|
1181
1181
|
|