@freelog/tools-lib 0.1.170 → 0.1.172

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.170",
3
+ "version": "0.1.172",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1184,8 +1184,8 @@ interface SetItemsTitleParamsType {
1184
1184
  resourceId: string;
1185
1185
  data: {
1186
1186
  itemId: string;
1187
- itemTitle: string;
1188
- authExcludedItems: {
1187
+ itemTitle?: string;
1188
+ authExcludedItems?: {
1189
1189
  resourceId: string;
1190
1190
  excludedType: 'contractId' | 'policyId';
1191
1191
  excludedValue: string;
@@ -1333,6 +1333,15 @@ interface AddResourceItems_Draft_ParamsType {
1333
1333
  // policyId: string;
1334
1334
  // }[];
1335
1335
  // }[];
1336
+ authExcludedItems?: {
1337
+ resourceId: string;
1338
+ excludedType: 'contractId' | 'policyId';
1339
+ excludedValue: string;
1340
+ }[];
1341
+ batchSignContracts?: {
1342
+ resourceId: string;
1343
+ policyIds: string[];
1344
+ }[];
1336
1345
  }[];
1337
1346
  isPublish?: 1 | 0;
1338
1347
  }