@freelog/tools-lib 0.1.169 → 0.1.171

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.169",
3
+ "version": "0.1.171",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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({
@@ -1183,7 +1184,12 @@ interface SetItemsTitleParamsType {
1183
1184
  resourceId: string;
1184
1185
  data: {
1185
1186
  itemId: string;
1186
- itemTitle: string;
1187
+ itemTitle?: string;
1188
+ authExcludedItems?: {
1189
+ resourceId: string;
1190
+ excludedType: 'contractId' | 'policyId';
1191
+ excludedValue: string;
1192
+ }[];
1187
1193
  }[];
1188
1194
  }
1189
1195