@lark-project/js-sdk 2.1.1 → 2.1.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/dist/es/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -761,6 +761,7 @@ interface CustomFieldProps {
|
|
|
761
761
|
}
|
|
762
762
|
interface CustomFieldConfig {
|
|
763
763
|
key: string;
|
|
764
|
+
mappingKey: string;
|
|
764
765
|
type: FieldType.compoundField | SubFieldType;
|
|
765
766
|
name: string;
|
|
766
767
|
children?: CustomFieldConfig[];
|
|
@@ -889,6 +890,7 @@ type LiteAppPropField = {
|
|
|
889
890
|
};
|
|
890
891
|
type LiteAppPropView = {
|
|
891
892
|
viewId: string;
|
|
893
|
+
isMultiProject: boolean;
|
|
892
894
|
};
|
|
893
895
|
type LiteAppPropWorkItemListAfterFilter = LiteAppPropWorkItemInstance[];
|
|
894
896
|
type LiteAppPropWorkItemListAfterSort = LiteAppPropWorkItemInstance[];
|