@freelog/tools-lib 0.1.169 → 0.1.170
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/package.json
CHANGED
|
@@ -1083,6 +1083,7 @@ interface BatchResourceItemsParamsType {
|
|
|
1083
1083
|
sortField?: string;
|
|
1084
1084
|
sortType?: 1 | -1;
|
|
1085
1085
|
isLoadItemResourceDetailInfo?: 0 | 1;
|
|
1086
|
+
isLoadLatestVersionInfo?: 0 | 1;
|
|
1086
1087
|
}
|
|
1087
1088
|
|
|
1088
1089
|
export function batchResourceItems({
|
|
@@ -1184,6 +1185,11 @@ interface SetItemsTitleParamsType {
|
|
|
1184
1185
|
data: {
|
|
1185
1186
|
itemId: string;
|
|
1186
1187
|
itemTitle: string;
|
|
1188
|
+
authExcludedItems: {
|
|
1189
|
+
resourceId: string;
|
|
1190
|
+
excludedType: 'contractId' | 'policyId';
|
|
1191
|
+
excludedValue: string;
|
|
1192
|
+
}[];
|
|
1187
1193
|
}[];
|
|
1188
1194
|
}
|
|
1189
1195
|
|