@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.
|
@@ -460,6 +460,7 @@ interface BatchResourceItemsParamsType {
|
|
|
460
460
|
sortField?: string;
|
|
461
461
|
sortType?: 1 | -1;
|
|
462
462
|
isLoadItemResourceDetailInfo?: 0 | 1;
|
|
463
|
+
isLoadLatestVersionInfo?: 0 | 1;
|
|
463
464
|
}
|
|
464
465
|
export declare function batchResourceItems({ ...params }: BatchResourceItemsParamsType): Promise<any>;
|
|
465
466
|
interface BatchResourceItems_Draft_ParamsType {
|
|
@@ -498,6 +499,11 @@ interface SetItemsTitleParamsType {
|
|
|
498
499
|
data: {
|
|
499
500
|
itemId: string;
|
|
500
501
|
itemTitle: string;
|
|
502
|
+
authExcludedItems: {
|
|
503
|
+
resourceId: string;
|
|
504
|
+
excludedType: 'contractId' | 'policyId';
|
|
505
|
+
excludedValue: string;
|
|
506
|
+
}[];
|
|
501
507
|
}[];
|
|
502
508
|
}
|
|
503
509
|
export declare function setItemsTitle({ resourceId, data }: SetItemsTitleParamsType): Promise<any>;
|