@uniformdev/project-map 19.37.1 → 19.38.2
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 +18 -0
- package/dist/index.d.ts +18 -0
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -211,6 +211,8 @@ interface paths {
|
|
|
211
211
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
|
212
212
|
*/
|
|
213
213
|
withCompositionUIStatus?: boolean;
|
|
214
|
+
/** Include basic redirect information. */
|
|
215
|
+
withRedirectData?: boolean;
|
|
214
216
|
};
|
|
215
217
|
};
|
|
216
218
|
responses: {
|
|
@@ -362,7 +364,23 @@ interface components {
|
|
|
362
364
|
/** @description returns true if the node is a leaf node, meaning having no children, only included if requested with the expanded flag */
|
|
363
365
|
isLeaf?: boolean;
|
|
364
366
|
compositionData?: components["schemas"]["ProjectMapNodeCompositionData"];
|
|
367
|
+
sourceRedirects?: components["schemas"]["ProjectMapSourceRedirectData"];
|
|
368
|
+
targetRedirects?: components["schemas"]["ProjectMapTargetRedirectData"];
|
|
365
369
|
};
|
|
370
|
+
ProjectMapSourceRedirectData: {
|
|
371
|
+
/**
|
|
372
|
+
* Format: uuid
|
|
373
|
+
* @description The public UUID of the source redirect
|
|
374
|
+
*/
|
|
375
|
+
id?: string;
|
|
376
|
+
}[];
|
|
377
|
+
ProjectMapTargetRedirectData: {
|
|
378
|
+
/**
|
|
379
|
+
* Format: uuid
|
|
380
|
+
* @description The public UUID of the target redirect
|
|
381
|
+
*/
|
|
382
|
+
id?: string;
|
|
383
|
+
}[];
|
|
366
384
|
/** @description Basic information about a composition from the context of a project map node. */
|
|
367
385
|
ProjectMapNodeCompositionData: {
|
|
368
386
|
/** @description Type of the composition instance (public_id of its definition) */
|
package/dist/index.d.ts
CHANGED
|
@@ -211,6 +211,8 @@ interface paths {
|
|
|
211
211
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
|
212
212
|
*/
|
|
213
213
|
withCompositionUIStatus?: boolean;
|
|
214
|
+
/** Include basic redirect information. */
|
|
215
|
+
withRedirectData?: boolean;
|
|
214
216
|
};
|
|
215
217
|
};
|
|
216
218
|
responses: {
|
|
@@ -362,7 +364,23 @@ interface components {
|
|
|
362
364
|
/** @description returns true if the node is a leaf node, meaning having no children, only included if requested with the expanded flag */
|
|
363
365
|
isLeaf?: boolean;
|
|
364
366
|
compositionData?: components["schemas"]["ProjectMapNodeCompositionData"];
|
|
367
|
+
sourceRedirects?: components["schemas"]["ProjectMapSourceRedirectData"];
|
|
368
|
+
targetRedirects?: components["schemas"]["ProjectMapTargetRedirectData"];
|
|
365
369
|
};
|
|
370
|
+
ProjectMapSourceRedirectData: {
|
|
371
|
+
/**
|
|
372
|
+
* Format: uuid
|
|
373
|
+
* @description The public UUID of the source redirect
|
|
374
|
+
*/
|
|
375
|
+
id?: string;
|
|
376
|
+
}[];
|
|
377
|
+
ProjectMapTargetRedirectData: {
|
|
378
|
+
/**
|
|
379
|
+
* Format: uuid
|
|
380
|
+
* @description The public UUID of the target redirect
|
|
381
|
+
*/
|
|
382
|
+
id?: string;
|
|
383
|
+
}[];
|
|
366
384
|
/** @description Basic information about a composition from the context of a project map node. */
|
|
367
385
|
ProjectMapNodeCompositionData: {
|
|
368
386
|
/** @description Type of the composition instance (public_id of its definition) */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/project-map",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.38.2",
|
|
4
4
|
"description": "Uniform Project Map",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"/dist"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@uniformdev/canvas": "19.
|
|
36
|
-
"@uniformdev/context": "19.
|
|
35
|
+
"@uniformdev/canvas": "19.38.2",
|
|
36
|
+
"@uniformdev/context": "19.38.2"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "b97fd17fd44e0f5bd3806e942b516cb2bd218096"
|
|
42
42
|
}
|