@uniformdev/project-map 18.18.1-alpha.12 → 18.19.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/dist/index.esm.js +3 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +6 -5
package/dist/index.esm.js
CHANGED
|
@@ -131,6 +131,9 @@ var ProjectMapClient = class extends ApiClient {
|
|
|
131
131
|
if (options.expanded) {
|
|
132
132
|
fetchOptions["expanded"] = "true";
|
|
133
133
|
}
|
|
134
|
+
if (options.state) {
|
|
135
|
+
fetchOptions["state"] = options.state.toString();
|
|
136
|
+
}
|
|
134
137
|
return fetchOptions;
|
|
135
138
|
}
|
|
136
139
|
cleanProjectMapNode(node) {
|
package/dist/index.js
CHANGED
|
@@ -159,6 +159,9 @@ var ProjectMapClient = class extends import_api.ApiClient {
|
|
|
159
159
|
if (options.expanded) {
|
|
160
160
|
fetchOptions["expanded"] = "true";
|
|
161
161
|
}
|
|
162
|
+
if (options.state) {
|
|
163
|
+
fetchOptions["state"] = options.state.toString();
|
|
164
|
+
}
|
|
162
165
|
return fetchOptions;
|
|
163
166
|
}
|
|
164
167
|
cleanProjectMapNode(node) {
|
package/dist/index.mjs
CHANGED
|
@@ -131,6 +131,9 @@ var ProjectMapClient = class extends ApiClient {
|
|
|
131
131
|
if (options.expanded) {
|
|
132
132
|
fetchOptions["expanded"] = "true";
|
|
133
133
|
}
|
|
134
|
+
if (options.state) {
|
|
135
|
+
fetchOptions["state"] = options.state.toString();
|
|
136
|
+
}
|
|
134
137
|
return fetchOptions;
|
|
135
138
|
}
|
|
136
139
|
cleanProjectMapNode(node) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/project-map",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.19.0",
|
|
4
4
|
"description": "Uniform Project Map",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,17 +25,18 @@
|
|
|
25
25
|
"test": "jest --maxWorkers=1 --passWithNoTests",
|
|
26
26
|
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
27
27
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
|
|
28
|
-
"update-openapi": "tsx ./scripts/update-openapi.cts"
|
|
28
|
+
"update-openapi": "tsx ./scripts/update-openapi.cts",
|
|
29
|
+
"document": "api-extractor run --local"
|
|
29
30
|
},
|
|
30
31
|
"files": [
|
|
31
32
|
"/dist"
|
|
32
33
|
],
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@uniformdev/canvas": "18.
|
|
35
|
-
"@uniformdev/context": "18.
|
|
35
|
+
"@uniformdev/canvas": "18.19.0",
|
|
36
|
+
"@uniformdev/context": "18.19.0"
|
|
36
37
|
},
|
|
37
38
|
"publishConfig": {
|
|
38
39
|
"access": "public"
|
|
39
40
|
},
|
|
40
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "bd4414826a6d38b928b5ba2ea68e58160b784562"
|
|
41
42
|
}
|