@xano/cli 0.0.95-beta.26 → 0.0.95-beta.27
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/commands/sandbox/push/index.js +1 -1
- package/dist/utils/multidoc-push.js +3 -0
- package/oclif.manifest.json +2868 -2868
- package/package.json +1 -1
|
@@ -131,7 +131,7 @@ Push and open sandbox review in the browser
|
|
|
131
131
|
instanceOrigin: profile.instance_origin,
|
|
132
132
|
label: 'sandbox environment',
|
|
133
133
|
supportsBranches: false,
|
|
134
|
-
supportsPartial:
|
|
134
|
+
supportsPartial: true,
|
|
135
135
|
};
|
|
136
136
|
const pushFlags = {
|
|
137
137
|
delete: flags.delete,
|
|
@@ -483,6 +483,9 @@ export async function executePush(ctx, target, flags) {
|
|
|
483
483
|
const parsed = parseDocument(entry.content);
|
|
484
484
|
if (!parsed)
|
|
485
485
|
return true;
|
|
486
|
+
// Workspace settings always use a fixed key in dry-run regardless of the actual name
|
|
487
|
+
if (parsed.type === 'workspace' && changedKeys.has('workspace:workspace'))
|
|
488
|
+
return true;
|
|
486
489
|
const opName = parsed.verb ? `${parsed.name} ${parsed.verb}` : parsed.name;
|
|
487
490
|
if (changedKeys.has(`${parsed.type}:${opName}`))
|
|
488
491
|
return true;
|