@uniformdev/project-map 19.119.0 → 19.121.0
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/LICENSE.txt +1 -1
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +4 -4
package/LICENSE.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
©
|
|
1
|
+
© 2024 Uniform Systems, Inc. All Rights Reserved.
|
|
2
2
|
See details of Uniform Systems, Inc. Master Subscription Agreement here: https://uniform.dev/eula
|
package/dist/index.d.mts
CHANGED
|
@@ -179,6 +179,15 @@ interface paths {
|
|
|
179
179
|
projectMapId?: string;
|
|
180
180
|
/** The project id that contains the project map tree that this node belongs to */
|
|
181
181
|
projectId: string;
|
|
182
|
+
/**
|
|
183
|
+
* The ID of a release to fetch the composition data for.
|
|
184
|
+
*
|
|
185
|
+
* - When unspecified, composition data is fetched from base.
|
|
186
|
+
* - When specified, all content is returned as it would appear in the release if it was released now. This includes both content copied to the release and changed, as well as content that is not part of the release.
|
|
187
|
+
*
|
|
188
|
+
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will not be defined.
|
|
189
|
+
*/
|
|
190
|
+
releaseId?: string;
|
|
182
191
|
/** The id of the node to retrieve, cannot have both this parameter and Path */
|
|
183
192
|
id?: string;
|
|
184
193
|
/** The path of the root node to retrieve, cannot have both this parameter and Id */
|
package/dist/index.d.ts
CHANGED
|
@@ -179,6 +179,15 @@ interface paths {
|
|
|
179
179
|
projectMapId?: string;
|
|
180
180
|
/** The project id that contains the project map tree that this node belongs to */
|
|
181
181
|
projectId: string;
|
|
182
|
+
/**
|
|
183
|
+
* The ID of a release to fetch the composition data for.
|
|
184
|
+
*
|
|
185
|
+
* - When unspecified, composition data is fetched from base.
|
|
186
|
+
* - When specified, all content is returned as it would appear in the release if it was released now. This includes both content copied to the release and changed, as well as content that is not part of the release.
|
|
187
|
+
*
|
|
188
|
+
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will not be defined.
|
|
189
|
+
*/
|
|
190
|
+
releaseId?: string;
|
|
182
191
|
/** The id of the node to retrieve, cannot have both this parameter and Path */
|
|
183
192
|
id?: string;
|
|
184
193
|
/** The path of the root node to retrieve, cannot have both this parameter and Id */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/project-map",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.121.0",
|
|
4
4
|
"description": "Uniform Project Map",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"/dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/canvas": "19.
|
|
37
|
-
"@uniformdev/context": "19.
|
|
36
|
+
"@uniformdev/canvas": "19.121.0",
|
|
37
|
+
"@uniformdev/context": "19.121.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "4bab305415aa38c7d473a08c15bcd78fcb7d8d88"
|
|
43
43
|
}
|