openxiangda 1.0.195 → 1.0.196
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/lib/cli.js +4 -4
- package/package.json +2 -1
package/lib/cli.js
CHANGED
|
@@ -22281,9 +22281,9 @@ function normalizePublicAccessPolicyManifest(bound, policy) {
|
|
|
22281
22281
|
function normalizeScopeDimensionManifest(dimension, bound) {
|
|
22282
22282
|
const code = dimension.code || dimension.resourceCode;
|
|
22283
22283
|
const sourceFormUuid =
|
|
22284
|
+
resolveOptionalFormUuid(bound, dimension.sourceFormCode || dimension.formCode) ||
|
|
22284
22285
|
dimension.sourceFormUuid ||
|
|
22285
|
-
dimension.formUuid
|
|
22286
|
-
resolveOptionalFormUuid(bound, dimension.sourceFormCode || dimension.formCode);
|
|
22286
|
+
dimension.formUuid;
|
|
22287
22287
|
return stripUndefinedValues({
|
|
22288
22288
|
code,
|
|
22289
22289
|
name: dimension.name || dimension.title || code,
|
|
@@ -22302,9 +22302,9 @@ function normalizeScopeDimensionManifest(dimension, bound) {
|
|
|
22302
22302
|
function normalizeScopeGrantSourceManifest(source, bound) {
|
|
22303
22303
|
const code = source.code || source.resourceCode;
|
|
22304
22304
|
const sourceFormUuid =
|
|
22305
|
+
resolveOptionalFormUuid(bound, source.sourceFormCode || source.formCode) ||
|
|
22305
22306
|
source.sourceFormUuid ||
|
|
22306
|
-
source.formUuid
|
|
22307
|
-
resolveOptionalFormUuid(bound, source.sourceFormCode || source.formCode);
|
|
22307
|
+
source.formUuid;
|
|
22308
22308
|
return stripUndefinedValues({
|
|
22309
22309
|
code,
|
|
22310
22310
|
name: source.name || source.title || code,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openxiangda",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.196",
|
|
4
4
|
"description": "OpenXiangda CLI, workspace build tools, runtime SDK, and form components.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"bin": {
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"test:profile-isolation": "bash scripts/profile-isolation-smoke.sh",
|
|
82
82
|
"test:resource-plan": "node scripts/resource-plan-smoke.mjs",
|
|
83
83
|
"test:resource-publish-scope": "node scripts/resource-publish-scope-smoke.mjs",
|
|
84
|
+
"test:managed-target-scope-form-resolution": "node scripts/managed-target-scope-form-resolution-smoke.mjs",
|
|
84
85
|
"test:resource-plan-readonly": "node scripts/resource-plan-readonly-smoke.mjs",
|
|
85
86
|
"test:design-gates": "node scripts/design-gates-smoke.mjs",
|
|
86
87
|
"test:resource-cli": "node scripts/resource-cli-smoke.mjs",
|