@freelog/tools-lib 0.1.168 → 0.1.169

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.
@@ -48,11 +48,10 @@ export interface CreateBatchParamsType {
48
48
  baseUpcastResources?: {
49
49
  resourceId: string;
50
50
  }[];
51
- resolveResources: {
51
+ batchSignContracts?: {
52
52
  resourceId: string;
53
- contracts: {
54
- policyId: string;
55
- }[];
53
+ policyIds: string[];
54
+ subjectType: string;
56
55
  }[];
57
56
  inputAttrs?: {
58
57
  key: string;
@@ -176,7 +175,7 @@ interface CreateVersionParamsType {
176
175
  }[];
177
176
  authExcludedItems: {
178
177
  resourceId: string;
179
- excludedType: 'contract' | 'policy';
178
+ excludedType: 'contractId' | 'policyId';
180
179
  excludedValue: string;
181
180
  }[];
182
181
  }
@@ -1279,8 +1279,7 @@ function objectDetails$1(params) {
1279
1279
  function deleteObjects(params) {
1280
1280
  return FUtil.Request({
1281
1281
  method: 'DELETE',
1282
- url: "/v2/storages/buckets/" + params.bucketName + "/objects/" + params.objectIds,
1283
- data: params
1282
+ url: "/v2/storages/buckets/" + params.bucketName + "/objects/" + params.objectIds
1284
1283
  });
1285
1284
  }
1286
1285
  function bucketIsExist(_ref4) {