@freelog/tools-lib 0.1.162 → 0.1.163
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/dist/tools-lib.cjs.development.js +155 -106
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +155 -106
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +35 -4
- package/package.json +1 -1
- package/src/service-API/resources.ts +771 -771
- package/src/utils/linkTo.ts +551 -479
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -36,12 +36,23 @@ export declare function resourceCreator({}?: ResourceCreatorParamsType): TReturn
|
|
|
36
36
|
interface ResourceCreatorParamsType {
|
|
37
37
|
}
|
|
38
38
|
export declare function resourceCreatorBatch({}?: ResourceCreatorParamsType): TReturnType;
|
|
39
|
+
interface CollectionCreatorParamsType {
|
|
40
|
+
}
|
|
41
|
+
export declare function collectionCreator({}?: CollectionCreatorParamsType): TReturnType;
|
|
39
42
|
interface MyResourcesParamsType {
|
|
40
43
|
}
|
|
41
44
|
export declare function myResources({}?: MyResourcesParamsType): TReturnType;
|
|
45
|
+
interface MyCollectionsParamsType {
|
|
46
|
+
}
|
|
47
|
+
export declare function myCollections({}?: MyCollectionsParamsType): TReturnType;
|
|
42
48
|
interface MyCollectsParamsType {
|
|
43
49
|
}
|
|
44
50
|
export declare function myCollects({}?: MyCollectsParamsType): TReturnType;
|
|
51
|
+
interface ResourceVersionInfoParamsType {
|
|
52
|
+
resourceID: string;
|
|
53
|
+
version?: string;
|
|
54
|
+
}
|
|
55
|
+
export declare function resourceVersionInfo({ resourceID, version }: ResourceVersionInfoParamsType): TReturnType;
|
|
45
56
|
interface ResourceInfoParamsType {
|
|
46
57
|
resourceID: string;
|
|
47
58
|
}
|
|
@@ -62,11 +73,26 @@ interface ResourceVersionCreatorParamsType {
|
|
|
62
73
|
resourceID: string;
|
|
63
74
|
}
|
|
64
75
|
export declare function resourceVersionCreator({ resourceID }: ResourceVersionCreatorParamsType): TReturnType;
|
|
65
|
-
interface
|
|
66
|
-
|
|
67
|
-
version?: string;
|
|
76
|
+
interface CollectionVersionInfoParamsType {
|
|
77
|
+
collectionID: string;
|
|
68
78
|
}
|
|
69
|
-
export declare function
|
|
79
|
+
export declare function collectionVersionInfo({ collectionID }: CollectionVersionInfoParamsType): TReturnType;
|
|
80
|
+
interface CollectionInfoParamsType {
|
|
81
|
+
collectionID: string;
|
|
82
|
+
}
|
|
83
|
+
export declare function collectionInfo({ collectionID }: CollectionInfoParamsType): TReturnType;
|
|
84
|
+
interface CollectionPolicyParamsType {
|
|
85
|
+
collectionID: string;
|
|
86
|
+
}
|
|
87
|
+
export declare function collectionPolicy({ collectionID }: CollectionPolicyParamsType): TReturnType;
|
|
88
|
+
interface CollectionContractParamsType {
|
|
89
|
+
collectionID: string;
|
|
90
|
+
}
|
|
91
|
+
export declare function collectionContract({ collectionID }: CollectionContractParamsType): TReturnType;
|
|
92
|
+
interface CollectionDependencyParamsType {
|
|
93
|
+
collectionID: string;
|
|
94
|
+
}
|
|
95
|
+
export declare function collectionDependency({ collectionID }: CollectionDependencyParamsType): TReturnType;
|
|
70
96
|
interface NodeCreatorParamsType {
|
|
71
97
|
}
|
|
72
98
|
export declare function nodeCreator({}?: NodeCreatorParamsType): TReturnType;
|
|
@@ -80,6 +106,11 @@ interface ExhibitManagementParamsType {
|
|
|
80
106
|
openAuthDrawer?: boolean;
|
|
81
107
|
}
|
|
82
108
|
export declare function exhibitManagement({ exhibitID, openAuthDrawer }: ExhibitManagementParamsType): TReturnType;
|
|
109
|
+
interface CollectionExhibitManagementParamsType {
|
|
110
|
+
exhibitID: string;
|
|
111
|
+
openAuthDrawer?: boolean;
|
|
112
|
+
}
|
|
113
|
+
export declare function collectionExhibitManagement({ exhibitID, openAuthDrawer }: CollectionExhibitManagementParamsType): TReturnType;
|
|
83
114
|
interface InformNodeManagementParamsType {
|
|
84
115
|
nodeID: number;
|
|
85
116
|
showPage?: 'exhibit' | 'theme' | 'mappingRule';
|