@uniformdev/project-map 18.12.1-alpha.0 → 18.12.1-alpha.18
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.ts +4 -4
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -173,7 +173,7 @@ interface paths {
|
|
|
173
173
|
parameters: {
|
|
174
174
|
query: {
|
|
175
175
|
/** The project map id that the desired nodes belong */
|
|
176
|
-
projectMapId
|
|
176
|
+
projectMapId?: string;
|
|
177
177
|
/** The project id that contains the project map tree that this node belongs to */
|
|
178
178
|
projectId: string;
|
|
179
179
|
/** The id of the node to retrieve, cannot have both this parameter and Path */
|
|
@@ -253,7 +253,7 @@ interface paths {
|
|
|
253
253
|
* Format: uuid
|
|
254
254
|
* @description The projectMap id that the changing or inserting nodes belong to
|
|
255
255
|
*/
|
|
256
|
-
projectMapId
|
|
256
|
+
projectMapId?: string;
|
|
257
257
|
};
|
|
258
258
|
};
|
|
259
259
|
};
|
|
@@ -283,7 +283,7 @@ interface paths {
|
|
|
283
283
|
* Format: uuid
|
|
284
284
|
* @description Project map id that the node to delete belongs to
|
|
285
285
|
*/
|
|
286
|
-
projectMapId
|
|
286
|
+
projectMapId?: string;
|
|
287
287
|
/**
|
|
288
288
|
* Format: uuid
|
|
289
289
|
* @description Project id that the project map belongs to
|
|
@@ -301,7 +301,7 @@ interface paths {
|
|
|
301
301
|
* Format: uuid
|
|
302
302
|
* @description Project map id that the node to delete belongs to
|
|
303
303
|
*/
|
|
304
|
-
projectMapId
|
|
304
|
+
projectMapId?: string;
|
|
305
305
|
/**
|
|
306
306
|
* Format: uuid
|
|
307
307
|
* @description Project id that the project map belongs to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/project-map",
|
|
3
|
-
"version": "18.12.1-alpha.
|
|
3
|
+
"version": "18.12.1-alpha.18+19edda8b5",
|
|
4
4
|
"description": "Uniform Project Map",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"/dist"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@uniformdev/canvas": "18.12.1-alpha.
|
|
50
|
-
"@uniformdev/context": "18.12.1-alpha.
|
|
49
|
+
"@uniformdev/canvas": "18.12.1-alpha.18+19edda8b5",
|
|
50
|
+
"@uniformdev/context": "18.12.1-alpha.18+19edda8b5",
|
|
51
51
|
"p-limit": "^3.1.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/yargs": "17.0.22",
|
|
55
|
-
"@uniformdev/cli": "18.12.1-alpha.
|
|
55
|
+
"@uniformdev/cli": "18.12.1-alpha.18+19edda8b5",
|
|
56
56
|
"yargs": "17.6.2"
|
|
57
57
|
},
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "19edda8b549122f979543430d69de751df221ccf"
|
|
62
62
|
}
|