@c-rex/interfaces 0.1.12 → 0.1.13
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/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -16,7 +16,7 @@ interface DefaultCrexObject extends idShortID {
|
|
|
16
16
|
class: ClassInterface;
|
|
17
17
|
labels: Labels[];
|
|
18
18
|
titles: Labels[];
|
|
19
|
-
versionOf:
|
|
19
|
+
versionOf: ClassInterface;
|
|
20
20
|
packages: idShortID[];
|
|
21
21
|
links: Link[];
|
|
22
22
|
renditions: DefaultCrexRenditions[];
|
|
@@ -147,6 +147,7 @@ interface ConfigInterface {
|
|
|
147
147
|
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
148
148
|
childNodes: DefaultCrexDirectories[];
|
|
149
149
|
parents: idShortID[];
|
|
150
|
+
ancestors: idShortID[][];
|
|
150
151
|
informationUnits: (idShortID & {
|
|
151
152
|
labels: Labels[];
|
|
152
153
|
})[];
|
|
@@ -178,6 +179,8 @@ interface informationUnitsResponseItem {
|
|
|
178
179
|
localeType: string;
|
|
179
180
|
link: string;
|
|
180
181
|
disabled: boolean;
|
|
182
|
+
multipleVersions: string[];
|
|
183
|
+
revision: string;
|
|
181
184
|
files: DocumentsType;
|
|
182
185
|
}
|
|
183
186
|
interface informationUnitsResponse {
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ interface DefaultCrexObject extends idShortID {
|
|
|
16
16
|
class: ClassInterface;
|
|
17
17
|
labels: Labels[];
|
|
18
18
|
titles: Labels[];
|
|
19
|
-
versionOf:
|
|
19
|
+
versionOf: ClassInterface;
|
|
20
20
|
packages: idShortID[];
|
|
21
21
|
links: Link[];
|
|
22
22
|
renditions: DefaultCrexRenditions[];
|
|
@@ -147,6 +147,7 @@ interface ConfigInterface {
|
|
|
147
147
|
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
148
148
|
childNodes: DefaultCrexDirectories[];
|
|
149
149
|
parents: idShortID[];
|
|
150
|
+
ancestors: idShortID[][];
|
|
150
151
|
informationUnits: (idShortID & {
|
|
151
152
|
labels: Labels[];
|
|
152
153
|
})[];
|
|
@@ -178,6 +179,8 @@ interface informationUnitsResponseItem {
|
|
|
178
179
|
localeType: string;
|
|
179
180
|
link: string;
|
|
180
181
|
disabled: boolean;
|
|
182
|
+
multipleVersions: string[];
|
|
183
|
+
revision: string;
|
|
181
184
|
files: DocumentsType;
|
|
182
185
|
}
|
|
183
186
|
interface informationUnitsResponse {
|