@freelog/tools-lib 0.1.167 → 0.1.168
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.
|
@@ -372,10 +372,6 @@ export declare function generateResourceNames({ resourceNames, }: GenerateResour
|
|
|
372
372
|
interface UpdateCollectionParamsType {
|
|
373
373
|
resourceId: string;
|
|
374
374
|
description?: string;
|
|
375
|
-
dependencies?: {
|
|
376
|
-
resourceId: string;
|
|
377
|
-
versionRange: string;
|
|
378
|
-
}[];
|
|
379
375
|
customPropertyDescriptors?: {
|
|
380
376
|
key: string;
|
|
381
377
|
defaultValue: string;
|
|
@@ -383,12 +379,6 @@ interface UpdateCollectionParamsType {
|
|
|
383
379
|
candidateItems?: string[];
|
|
384
380
|
remark?: string;
|
|
385
381
|
}[];
|
|
386
|
-
resolveResources?: {
|
|
387
|
-
resourceId: string;
|
|
388
|
-
contracts: {
|
|
389
|
-
policyId: string;
|
|
390
|
-
}[];
|
|
391
|
-
}[];
|
|
392
382
|
catalogueProperty?: {
|
|
393
383
|
collection_item_no_display?: 'collection_item_no_display_show' | 'collection_item_no_display_hide';
|
|
394
384
|
collection_item_image_display?: 'collection_item_image_display_show' | 'collection_item_image_display_hide';
|
|
@@ -400,6 +390,22 @@ interface UpdateCollectionParamsType {
|
|
|
400
390
|
key: string;
|
|
401
391
|
value: string;
|
|
402
392
|
}[];
|
|
393
|
+
dependencies?: {
|
|
394
|
+
resourceId: string;
|
|
395
|
+
versionRange: string;
|
|
396
|
+
}[];
|
|
397
|
+
baseUpcastResources?: {
|
|
398
|
+
resourceId: string;
|
|
399
|
+
}[];
|
|
400
|
+
batchSignContracts?: {
|
|
401
|
+
resourceId: string;
|
|
402
|
+
policyIds: string[];
|
|
403
|
+
}[];
|
|
404
|
+
authExcludedItems: {
|
|
405
|
+
resourceId: string;
|
|
406
|
+
excludedType: 'contractId' | 'policyId';
|
|
407
|
+
excludedValue: string;
|
|
408
|
+
}[];
|
|
403
409
|
}
|
|
404
410
|
export declare function updateCollection({ resourceId, ...params }: UpdateCollectionParamsType): Promise<any>;
|
|
405
411
|
interface deleteCollectionUnitResourcesParamsType {
|