@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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@freelog/tools-lib",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.168",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -64,5 +64,7 @@
|
|
|
64
64
|
"moment": "^2.29.1",
|
|
65
65
|
"nprogress": "^0.2.0",
|
|
66
66
|
"react": "^18.2.0"
|
|
67
|
-
}
|
|
67
|
+
},
|
|
68
|
+
"npmClient": "pnpm",
|
|
69
|
+
"registry": "https://www.npmjs.com/package/@freelog/tools-lib"
|
|
68
70
|
}
|
|
@@ -862,10 +862,6 @@ interface UpdateCollectionParamsType {
|
|
|
862
862
|
resourceId: string;
|
|
863
863
|
description?: string;
|
|
864
864
|
// serializeStatus?: 0 | 1;
|
|
865
|
-
dependencies?: {
|
|
866
|
-
resourceId: string;
|
|
867
|
-
versionRange: string;
|
|
868
|
-
}[];
|
|
869
865
|
customPropertyDescriptors?: {
|
|
870
866
|
key: string;
|
|
871
867
|
defaultValue: string;
|
|
@@ -873,12 +869,12 @@ interface UpdateCollectionParamsType {
|
|
|
873
869
|
candidateItems?: string[];
|
|
874
870
|
remark?: string;
|
|
875
871
|
}[];
|
|
876
|
-
resolveResources?: {
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
}[];
|
|
872
|
+
// resolveResources?: {
|
|
873
|
+
// resourceId: string;
|
|
874
|
+
// contracts: {
|
|
875
|
+
// policyId: string;
|
|
876
|
+
// }[];
|
|
877
|
+
// }[];
|
|
882
878
|
// optionalResolveResources?: {
|
|
883
879
|
// resourceId: string;
|
|
884
880
|
// contracts: {
|
|
@@ -906,6 +902,27 @@ interface UpdateCollectionParamsType {
|
|
|
906
902
|
key: string;
|
|
907
903
|
value: string;
|
|
908
904
|
}[];
|
|
905
|
+
|
|
906
|
+
// dependencies?: {
|
|
907
|
+
// resourceId: string;
|
|
908
|
+
// versionRange: string;
|
|
909
|
+
// }[];
|
|
910
|
+
dependencies?: {
|
|
911
|
+
resourceId: string;
|
|
912
|
+
versionRange: string;
|
|
913
|
+
}[];
|
|
914
|
+
baseUpcastResources?: {
|
|
915
|
+
resourceId: string;
|
|
916
|
+
}[];
|
|
917
|
+
batchSignContracts?: {
|
|
918
|
+
resourceId: string;
|
|
919
|
+
policyIds: string[];
|
|
920
|
+
}[];
|
|
921
|
+
authExcludedItems: {
|
|
922
|
+
resourceId: string;
|
|
923
|
+
excludedType: 'contractId' | 'policyId';
|
|
924
|
+
excludedValue: string;
|
|
925
|
+
}[];
|
|
909
926
|
}
|
|
910
927
|
|
|
911
928
|
export function updateCollection({
|