@uniformdev/project-map 19.37.0 → 19.37.1-alpha.4

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 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.37.0",
3
+ "version": "19.37.1-alpha.4+d2fd8a8f3",
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.37.0",
36
- "@uniformdev/context": "19.37.0"
35
+ "@uniformdev/canvas": "19.37.1-alpha.4+d2fd8a8f3",
36
+ "@uniformdev/context": "19.37.1-alpha.4+d2fd8a8f3"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "2f595c3eb8113fc602b6abb0bfa7a4c5fcfc2659"
41
+ "gitHead": "d2fd8a8f3cd9348ecdd87bdd821e1ab89a7b8054"
42
42
  }