@contentful/experience-design-system-cli 2.23.2-dev-build-b213913.0 → 2.23.2-dev-build-5146e8a.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/README.md +2 -1
- package/dist/package.json +1 -1
- package/dist/src/apply/api-client.d.ts +4 -1
- package/dist/src/apply/api-client.js +4 -2
- package/dist/src/apply/command.js +19 -5
- package/dist/src/import/command.js +6 -1
- package/dist/src/import/orchestrator.d.ts +1 -0
- package/dist/src/import/orchestrator.js +2 -0
- package/dist/src/import/tui/WizardApp.d.ts +2 -1
- package/dist/src/import/tui/WizardApp.js +2 -2
- package/dist/src/lib/command-options.d.ts +1 -0
- package/dist/src/lib/command-options.js +3 -0
- package/dist/src/runs/modify-launcher.d.ts +2 -0
- package/dist/src/runs/modify-launcher.js +2 -0
- package/dist/src/runs/push-helpers.d.ts +1 -0
- package/dist/src/runs/push-helpers.js +3 -0
- package/dist/src/runs/replay-helpers.d.ts +4 -0
- package/dist/src/runs/replay-helpers.js +3 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -214,6 +214,7 @@ Pass `--select-prompt-path <path>` and/or `--generate-prompt-path <path>` to swa
|
|
|
214
214
|
| `--host <url>` | `https://api.contentful.com` | Override API base URL |
|
|
215
215
|
| `--on-conflict <mode>` | _(prompt via `<SaveConflictGate>`)_ | Headless conflict resolution when a file already exists at the save path: `overwrite`, `skip`, or `fail`. Bypasses the wizard's interactive save-conflict gate. Mutex with `--no-save`. |
|
|
216
216
|
| `--print-prompt` | — | Print the generate prompt to stdout and exit. Replaces the prompt-print semantics of `--dry-run`. |
|
|
217
|
+
| `--allow-deletions` | off (non-destructive) | Allow the push to delete remote ComponentTypes/DesignTokens missing from the manifest. Default skips them instead of deleting. Forwarded to headless subprocess pushes and `--push-from-run`. |
|
|
217
218
|
| `--dry-run` | _(deprecated)_ | Deprecated alias for `--print-prompt`. Emits a stderr deprecation notice; prompt-print semantics will be removed in a future release. |
|
|
218
219
|
|
|
219
220
|
### Run-picker at wizard start
|
|
@@ -418,7 +419,7 @@ experiences apply select --space-id <id> --environment-id <env> --session <id>
|
|
|
418
419
|
experiences apply push --space-id <id> --environment-id <env> --session <id> [--yes]
|
|
419
420
|
```
|
|
420
421
|
|
|
421
|
-
Shared flags: `--components`, `--tokens`, `--session`, `--space-id`, `--environment-id`, `--cma-token`, `--host`, `--viewports`. `apply preview` adds `--include-unchanged`. `apply select` adds `--select-all`, `--select`, `--deselect`, `--force`. `apply push` adds `--yes`, `--verbose`, `--force`, `--dry-run`.
|
|
422
|
+
Shared flags: `--components`, `--tokens`, `--session`, `--space-id`, `--environment-id`, `--cma-token`, `--host`, `--viewports`. `apply preview` adds `--include-unchanged`. `apply select` adds `--select-all`, `--select`, `--deselect`, `--force`, `--allow-deletions`. `apply push` adds `--yes`, `--verbose`, `--force`, `--dry-run`, `--allow-deletions`. By default, remote ComponentTypes and DesignTokens missing from the pushed manifest are skipped, not deleted; pass `--allow-deletions` to restore the prior delete behavior.
|
|
422
423
|
|
|
423
424
|
Design tokens are written first (component types may reference token kinds). Each entity write is recorded in the session database atomically — interrupted pushes resume from where they left off.
|
|
424
425
|
|
package/dist/package.json
CHANGED
|
@@ -52,7 +52,10 @@ export declare class ImportApiClient {
|
|
|
52
52
|
validateToken(): Promise<void>;
|
|
53
53
|
checkPreflight(): Promise<void>;
|
|
54
54
|
previewImport(manifest: ManifestPayload): Promise<ServerPreviewResponse>;
|
|
55
|
-
applyImport(manifest: ManifestPayload,
|
|
55
|
+
applyImport(manifest: ManifestPayload, options: {
|
|
56
|
+
acknowledgeBreakingChanges: boolean;
|
|
57
|
+
allowDeletions?: boolean;
|
|
58
|
+
}): Promise<ApplyOperationResponse>;
|
|
56
59
|
pollOperation(operationId: string, opts?: {
|
|
57
60
|
intervalMs?: number;
|
|
58
61
|
maxIntervalMs?: number;
|
|
@@ -335,12 +335,14 @@ export class ImportApiClient {
|
|
|
335
335
|
debug.event('apply', 'preview.ok', { status: result.response.status, durationMs: Date.now() - startedAt });
|
|
336
336
|
return sanitizePreviewResponse(parsed);
|
|
337
337
|
}
|
|
338
|
-
async applyImport(manifest,
|
|
338
|
+
async applyImport(manifest, options) {
|
|
339
|
+
const { acknowledgeBreakingChanges, allowDeletions = false } = options;
|
|
339
340
|
const debug = getDebugLogger();
|
|
340
341
|
const startedAt = Date.now();
|
|
341
342
|
debug.event('apply', 'apply.request', {
|
|
342
343
|
url: `${this.base()}/design_systems/imports/apply`,
|
|
343
344
|
acknowledgeBreakingChanges,
|
|
345
|
+
allowDeletions,
|
|
344
346
|
});
|
|
345
347
|
let result;
|
|
346
348
|
try {
|
|
@@ -348,7 +350,7 @@ export class ImportApiClient {
|
|
|
348
350
|
baseUrl: this.host,
|
|
349
351
|
headers: this.headers(),
|
|
350
352
|
path: { spaceId: this.spaceId, environmentId: this.environmentId },
|
|
351
|
-
body: { ...manifest, acknowledgeBreakingChanges },
|
|
353
|
+
body: { ...manifest, acknowledgeBreakingChanges, allowDeletions },
|
|
352
354
|
parseAs: 'json',
|
|
353
355
|
});
|
|
354
356
|
}
|
|
@@ -12,7 +12,7 @@ import { ServerPreviewApp, ServerPreviewConfirm, ServerApplyProgress, ServerAppl
|
|
|
12
12
|
import { SelectView, makeSelectKey } from './tui/SelectView.js';
|
|
13
13
|
import { buildPostPushUrl } from '../lib/contentful-urls.js';
|
|
14
14
|
import { resolveCompositionMode } from '../lib/composition-mode.js';
|
|
15
|
-
import { addArtifactInputOptions, addCompositionOptions, addContentfulTargetOptions, addSelectionOptions, } from '../lib/command-options.js';
|
|
15
|
+
import { addAllowDeletionsOption, addArtifactInputOptions, addCompositionOptions, addContentfulTargetOptions, addSelectionOptions, } from '../lib/command-options.js';
|
|
16
16
|
import { stripAllowedComponents } from '../import/strip-allowed-components.js';
|
|
17
17
|
import { readExperiencesCredentials } from '../credentials-store.js';
|
|
18
18
|
import { getInteractiveTerminalSupport, requireInteractiveTerminal } from '../lib/terminal-capabilities.js';
|
|
@@ -469,6 +469,7 @@ export function registerApplyCommand(program) {
|
|
|
469
469
|
addArtifactInputOptions(pushCmd);
|
|
470
470
|
addContentfulTargetOptions(pushCmd);
|
|
471
471
|
addCompositionOptions(pushCmd);
|
|
472
|
+
addAllowDeletionsOption(pushCmd);
|
|
472
473
|
pushCmd
|
|
473
474
|
.option('--yes', 'Skip interactive confirmation')
|
|
474
475
|
.option('--verbose', 'Show all entity progress including skipped/unchanged')
|
|
@@ -547,7 +548,10 @@ export function registerApplyCommand(program) {
|
|
|
547
548
|
}
|
|
548
549
|
let operation;
|
|
549
550
|
try {
|
|
550
|
-
operation = await client.applyImport(manifest,
|
|
551
|
+
operation = await client.applyImport(manifest, {
|
|
552
|
+
acknowledgeBreakingChanges: breakingWithImpact || opts.force === true,
|
|
553
|
+
allowDeletions: opts.allowDeletions === true,
|
|
554
|
+
});
|
|
551
555
|
}
|
|
552
556
|
catch (e) {
|
|
553
557
|
if (e instanceof ApiError)
|
|
@@ -577,7 +581,10 @@ export function registerApplyCommand(program) {
|
|
|
577
581
|
}));
|
|
578
582
|
let operation;
|
|
579
583
|
try {
|
|
580
|
-
operation = await client.applyImport(manifest,
|
|
584
|
+
operation = await client.applyImport(manifest, {
|
|
585
|
+
acknowledgeBreakingChanges: acknowledge,
|
|
586
|
+
allowDeletions: opts.allowDeletions === true,
|
|
587
|
+
});
|
|
581
588
|
}
|
|
582
589
|
catch (e) {
|
|
583
590
|
if (e instanceof ApiError) {
|
|
@@ -640,6 +647,7 @@ export function registerApplyCommand(program) {
|
|
|
640
647
|
addContentfulTargetOptions(selectCmd);
|
|
641
648
|
addCompositionOptions(selectCmd);
|
|
642
649
|
addSelectionOptions(selectCmd);
|
|
650
|
+
addAllowDeletionsOption(selectCmd);
|
|
643
651
|
selectCmd.option('--force', 'Skip confirmation for breaking changes').action(async (opts) => {
|
|
644
652
|
const nonInteractive = opts.selectAll || (opts.select ?? []).length > 0 || (opts.deselect ?? []).length > 0;
|
|
645
653
|
if (!nonInteractive) {
|
|
@@ -707,7 +715,10 @@ export function registerApplyCommand(program) {
|
|
|
707
715
|
}
|
|
708
716
|
let operation;
|
|
709
717
|
try {
|
|
710
|
-
operation = await client.applyImport(filteredManifest,
|
|
718
|
+
operation = await client.applyImport(filteredManifest, {
|
|
719
|
+
acknowledgeBreakingChanges: hasBreaking || opts.force === true,
|
|
720
|
+
allowDeletions: opts.allowDeletions === true,
|
|
721
|
+
});
|
|
711
722
|
}
|
|
712
723
|
catch (e) {
|
|
713
724
|
if (e instanceof ApiError)
|
|
@@ -749,7 +760,10 @@ export function registerApplyCommand(program) {
|
|
|
749
760
|
}));
|
|
750
761
|
let operation;
|
|
751
762
|
try {
|
|
752
|
-
operation = await client.applyImport(filteredManifest,
|
|
763
|
+
operation = await client.applyImport(filteredManifest, {
|
|
764
|
+
acknowledgeBreakingChanges: hasBreaking,
|
|
765
|
+
allowDeletions: opts.allowDeletions === true,
|
|
766
|
+
});
|
|
753
767
|
}
|
|
754
768
|
catch (e) {
|
|
755
769
|
if (e instanceof ApiError) {
|
|
@@ -4,7 +4,7 @@ import { resolveAutoFilter } from './auto-filter-resolve.js';
|
|
|
4
4
|
import { resolveAgent, resolveModel } from './agent-model-resolve.js';
|
|
5
5
|
import { addAgentModelOptions } from '../lib/agent-model-options.js';
|
|
6
6
|
import { resolveCompositionMode } from '../lib/composition-mode.js';
|
|
7
|
-
import { addCompositionOptions } from '../lib/command-options.js';
|
|
7
|
+
import { addAllowDeletionsOption, addCompositionOptions } from '../lib/command-options.js';
|
|
8
8
|
import { isConflictMode } from '../runs/save-path-resolver.js';
|
|
9
9
|
import { readExperiencesCredentials } from '../credentials-store.js';
|
|
10
10
|
import { DEFAULT_CONFIGURED_HOST, toConfiguredHost } from '../host-utils.js';
|
|
@@ -46,6 +46,7 @@ export function registerImportCommand(program) {
|
|
|
46
46
|
.option('--print-prompt', 'Print the generate components prompt without invoking the agent. Replaces the legacy --dry-run prompt-print behaviour on this command.')
|
|
47
47
|
.option('--auto-accept-scope', 'Accept all extracted components without prompting (for scripted/non-TTY callers)');
|
|
48
48
|
addCompositionOptions(cmd);
|
|
49
|
+
addAllowDeletionsOption(cmd);
|
|
49
50
|
cmd
|
|
50
51
|
.option('--composition-map <path>', 'Consume a hand-authored parent→children interchange map (implies --composite)')
|
|
51
52
|
.option('--composition-agent', 'Opt into agentic mapping resolution when deterministic sources find no groups (implies --composite)')
|
|
@@ -136,6 +137,7 @@ export function registerImportCommand(program) {
|
|
|
136
137
|
...(opts.host ? { host: opts.host } : {}),
|
|
137
138
|
interactive: interactiveTerminalSupported,
|
|
138
139
|
...(opts.force ? { force: true } : {}),
|
|
140
|
+
...(opts.allowDeletions ? { allowDeletions: true } : {}),
|
|
139
141
|
});
|
|
140
142
|
return;
|
|
141
143
|
}
|
|
@@ -166,6 +168,7 @@ export function registerImportCommand(program) {
|
|
|
166
168
|
...(opts.saveAsNew ? { saveAsNew: true } : {}),
|
|
167
169
|
...(opts.outDir ? { outDir: opts.outDir } : {}),
|
|
168
170
|
...(opts.force ? { force: true } : {}),
|
|
171
|
+
...(opts.allowDeletions ? { allowDeletions: true } : {}),
|
|
169
172
|
});
|
|
170
173
|
return;
|
|
171
174
|
}
|
|
@@ -297,6 +300,7 @@ export function registerImportCommand(program) {
|
|
|
297
300
|
selectPromptPath: opts.selectPromptPath ?? creds.selectPromptPath,
|
|
298
301
|
generatePromptPath: opts.generatePromptPath ?? creds.generatePromptPath,
|
|
299
302
|
...(opts.rawTokens ? { initialRawTokensPath: resolve(opts.rawTokens) } : {}),
|
|
303
|
+
allowDeletions: opts.allowDeletions === true,
|
|
300
304
|
...pickerProps,
|
|
301
305
|
}));
|
|
302
306
|
unmountInk = unmount;
|
|
@@ -357,6 +361,7 @@ export function registerImportCommand(program) {
|
|
|
357
361
|
dryRun: dryRunForward,
|
|
358
362
|
selectPromptPath: opts.selectPromptPath,
|
|
359
363
|
autoRejectCycles: opts.autoRejectCycles ?? false,
|
|
364
|
+
allowDeletions: opts.allowDeletions ?? false,
|
|
360
365
|
compositionMode: headlessCompositionMode,
|
|
361
366
|
...(opts.compositionMap ? { compositionMap: opts.compositionMap } : {}),
|
|
362
367
|
...(opts.compositionAgent ? { compositionAgent: true } : {}),
|
|
@@ -26,6 +26,7 @@ export interface PipelineOptions {
|
|
|
26
26
|
selectPromptPath?: string;
|
|
27
27
|
/** When true, auto-reject cycle participants and retry push instead of surfacing an error. */
|
|
28
28
|
autoRejectCycles?: boolean;
|
|
29
|
+
allowDeletions?: boolean;
|
|
29
30
|
compositionMode?: CompositionMode;
|
|
30
31
|
compositionMap?: string;
|
|
31
32
|
compositionAgent?: boolean;
|
|
@@ -418,6 +418,8 @@ export async function runPipeline(opts, progressWriter, cliPathOverride) {
|
|
|
418
418
|
pushArgs.push('--host', opts.host);
|
|
419
419
|
if (opts.verbose)
|
|
420
420
|
pushArgs.push('--verbose');
|
|
421
|
+
if (opts.allowDeletions)
|
|
422
|
+
pushArgs.push('--allow-deletions');
|
|
421
423
|
pushArgs.push('--yes');
|
|
422
424
|
const pushStepId = createStep(db, sessionId, 'apply push', {
|
|
423
425
|
components: componentsPath,
|
|
@@ -66,5 +66,6 @@ export type WizardAppProps = {
|
|
|
66
66
|
initialRawTokensPath?: string;
|
|
67
67
|
initialRuns?: RunRecord[];
|
|
68
68
|
onRunPicked?: (selection: RunPickerSelection) => void;
|
|
69
|
+
allowDeletions?: boolean;
|
|
69
70
|
};
|
|
70
|
-
export declare function WizardApp({ initialSpaceId, initialEnvironmentId, initialCmaToken, initialHost, initialAgent, initialModel, initialProjectPath, host, autoAcceptScope, autoRejectCycles, compositionMode, compositionMap, compositionAgent, compositionAgentMode, compositionRefresh, generateMap, promptOverrides, noCache, autoFilter, livePreview, noPush, noSave, outDirOverride, onConflictMode, selectPromptPath, generatePromptPath, seedExtractSessionId, seedGenerateSessionId, seedTokenSessionId, seedTokensPath, initialStep, initialRawTokensPath, initialRuns, onRunPicked, }?: WizardAppProps): React.ReactElement;
|
|
71
|
+
export declare function WizardApp({ initialSpaceId, initialEnvironmentId, initialCmaToken, initialHost, initialAgent, initialModel, initialProjectPath, host, autoAcceptScope, autoRejectCycles, compositionMode, compositionMap, compositionAgent, compositionAgentMode, compositionRefresh, generateMap, promptOverrides, noCache, autoFilter, livePreview, noPush, noSave, outDirOverride, onConflictMode, selectPromptPath, generatePromptPath, seedExtractSessionId, seedGenerateSessionId, seedTokenSessionId, seedTokensPath, initialStep, initialRawTokensPath, initialRuns, onRunPicked, allowDeletions, }?: WizardAppProps): React.ReactElement;
|
|
@@ -138,7 +138,7 @@ function logStep(entry) {
|
|
|
138
138
|
appendFileSync(WIZARD_LOG, line);
|
|
139
139
|
getDebugLogger().event('wizard', 'step', entry);
|
|
140
140
|
}
|
|
141
|
-
export function WizardApp({ initialSpaceId = '', initialEnvironmentId = 'master', initialCmaToken = '', initialHost, initialAgent, initialModel, initialProjectPath, host, autoAcceptScope = false, autoRejectCycles = false, compositionMode = 'atomic', compositionMap, compositionAgent = false, compositionAgentMode, compositionRefresh = false, generateMap, promptOverrides, noCache = false, autoFilter = true, livePreview = true, noPush = false, noSave = false, outDirOverride, onConflictMode, selectPromptPath, generatePromptPath, seedExtractSessionId, seedGenerateSessionId, seedTokenSessionId, seedTokensPath, initialStep, initialRawTokensPath, initialRuns, onRunPicked, } = {}) {
|
|
141
|
+
export function WizardApp({ initialSpaceId = '', initialEnvironmentId = 'master', initialCmaToken = '', initialHost, initialAgent, initialModel, initialProjectPath, host, autoAcceptScope = false, autoRejectCycles = false, compositionMode = 'atomic', compositionMap, compositionAgent = false, compositionAgentMode, compositionRefresh = false, generateMap, promptOverrides, noCache = false, autoFilter = true, livePreview = true, noPush = false, noSave = false, outDirOverride, onConflictMode, selectPromptPath, generatePromptPath, seedExtractSessionId, seedGenerateSessionId, seedTokenSessionId, seedTokensPath, initialStep, initialRawTokensPath, initialRuns, onRunPicked, allowDeletions = false, } = {}) {
|
|
142
142
|
const defaultConfiguredHost = toConfiguredHost(host || process.env['EDS_HOST']) ?? DEFAULT_CONFIGURED_HOST;
|
|
143
143
|
const resolveWizardHost = (hostValue) => hostValue || defaultConfiguredHost;
|
|
144
144
|
const { stdout } = useStdout();
|
|
@@ -986,7 +986,7 @@ export function WizardApp({ initialSpaceId = '', initialEnvironmentId = 'master'
|
|
|
986
986
|
environmentId,
|
|
987
987
|
host: resolvedHost,
|
|
988
988
|
});
|
|
989
|
-
let operation = await client.applyImport(manifest, acknowledgeBreakingChanges);
|
|
989
|
+
let operation = await client.applyImport(manifest, { acknowledgeBreakingChanges, allowDeletions });
|
|
990
990
|
try {
|
|
991
991
|
logStep({
|
|
992
992
|
applyResponse: {
|
|
@@ -3,3 +3,4 @@ export declare function addArtifactInputOptions(cmd: Command): Command;
|
|
|
3
3
|
export declare function addContentfulTargetOptions(cmd: Command): Command;
|
|
4
4
|
export declare function addCompositionOptions(cmd: Command): Command;
|
|
5
5
|
export declare function addSelectionOptions(cmd: Command): Command;
|
|
6
|
+
export declare function addAllowDeletionsOption(cmd: Command): Command;
|
|
@@ -25,3 +25,6 @@ export function addSelectionOptions(cmd) {
|
|
|
25
25
|
.option('--select <pattern>', 'Select entities by ID pattern (repeatable)', collectOptionValue, [])
|
|
26
26
|
.option('--deselect <pattern>', 'Deselect entities by ID pattern (repeatable)', collectOptionValue, []);
|
|
27
27
|
}
|
|
28
|
+
export function addAllowDeletionsOption(cmd) {
|
|
29
|
+
return cmd.option('--allow-deletions', 'Allow the push to delete remote ComponentTypes/DesignTokens missing from the manifest (default: skip them)');
|
|
30
|
+
}
|
|
@@ -26,5 +26,7 @@ export type ModifyLauncherInput = {
|
|
|
26
26
|
initialHost?: string;
|
|
27
27
|
/** Pre-fill CMA token (from credentials.json / env). */
|
|
28
28
|
initialCmaToken?: string;
|
|
29
|
+
/** From `--allow-deletions` flag. Forwarded to wizard's push step. */
|
|
30
|
+
allowDeletions?: boolean;
|
|
29
31
|
};
|
|
30
32
|
export declare function launchModifyWizard(input: ModifyLauncherInput): Promise<void>;
|
|
@@ -35,6 +35,8 @@ export async function launchModifyWizard(input) {
|
|
|
35
35
|
props.initialHost = input.initialHost;
|
|
36
36
|
if (input.initialCmaToken)
|
|
37
37
|
props.initialCmaToken = input.initialCmaToken;
|
|
38
|
+
if (input.allowDeletions !== undefined)
|
|
39
|
+
props.allowDeletions = input.allowDeletions;
|
|
38
40
|
const { waitUntilExit } = render(createElement(WizardApp, props));
|
|
39
41
|
await waitUntilExit();
|
|
40
42
|
}
|
|
@@ -16,6 +16,8 @@ export type ReplayRunOptions = {
|
|
|
16
16
|
interactive?: boolean;
|
|
17
17
|
/** When true, bypass the source/saved-file staleness check. */
|
|
18
18
|
force?: boolean;
|
|
19
|
+
/** From `--allow-deletions` flag. Forwarded verbatim to the pushed session's apply request. */
|
|
20
|
+
allowDeletions?: boolean;
|
|
19
21
|
/**
|
|
20
22
|
* Test seam: replace the interactive prompt with a deterministic resolver.
|
|
21
23
|
* The CLI surface never sets this; only used by tests.
|
|
@@ -57,6 +59,8 @@ export type ModifyRunOptions = {
|
|
|
57
59
|
outDir?: string;
|
|
58
60
|
/** When true, bypass the source/saved-file staleness check. */
|
|
59
61
|
force?: boolean;
|
|
62
|
+
/** From `--allow-deletions` flag. Forwarded through the modify wizard's push step. */
|
|
63
|
+
allowDeletions?: boolean;
|
|
60
64
|
};
|
|
61
65
|
/**
|
|
62
66
|
* Re-open the wizard with a prior run's extract/generate session pre-populated
|
|
@@ -83,6 +83,7 @@ export async function replayRun(opts) {
|
|
|
83
83
|
environmentId,
|
|
84
84
|
cmaToken,
|
|
85
85
|
...(host ? { host } : {}),
|
|
86
|
+
...(opts.allowDeletions ? { allowDeletions: true } : {}),
|
|
86
87
|
});
|
|
87
88
|
if (!result.ok) {
|
|
88
89
|
throw new Error(result.error);
|
|
@@ -98,6 +99,7 @@ export async function replayRun(opts) {
|
|
|
98
99
|
environmentId,
|
|
99
100
|
cmaToken,
|
|
100
101
|
...(host ? { host } : {}),
|
|
102
|
+
...(opts.allowDeletions ? { allowDeletions: true } : {}),
|
|
101
103
|
});
|
|
102
104
|
if (!tokenResult.ok) {
|
|
103
105
|
throw new Error(tokenResult.error);
|
|
@@ -157,5 +159,6 @@ export async function modifyRun(opts) {
|
|
|
157
159
|
...(mergedEnvironmentId ? { initialEnvironmentId: mergedEnvironmentId } : {}),
|
|
158
160
|
...(mergedHost ? { initialHost: mergedHost } : {}),
|
|
159
161
|
...(mergedCmaToken ? { initialCmaToken: mergedCmaToken } : {}),
|
|
162
|
+
...(opts.allowDeletions !== undefined ? { allowDeletions: opts.allowDeletions } : {}),
|
|
160
163
|
});
|
|
161
164
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experience-design-system-cli",
|
|
3
|
-
"version": "2.23.2-dev-build-
|
|
3
|
+
"version": "2.23.2-dev-build-5146e8a.0",
|
|
4
4
|
"description": "Contentful Experiences design system import CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"react": "^18.3.1",
|
|
34
34
|
"react-devtools-core": "^4.19.1",
|
|
35
35
|
"react-dom": "^18.3.1",
|
|
36
|
-
"@contentful/experience-design-system-client": "2.23.2-dev-build-
|
|
37
|
-
"@contentful/experience-design-system-
|
|
38
|
-
"@contentful/experience-design-system-generation": "2.23.2-dev-build-
|
|
39
|
-
"@contentful/experience-design-system-
|
|
36
|
+
"@contentful/experience-design-system-client": "2.23.2-dev-build-5146e8a.0",
|
|
37
|
+
"@contentful/experience-design-system-types": "2.23.2-dev-build-5146e8a.0",
|
|
38
|
+
"@contentful/experience-design-system-generation": "2.23.2-dev-build-5146e8a.0",
|
|
39
|
+
"@contentful/experience-design-system-extraction": "2.23.2-dev-build-5146e8a.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@tsconfig/node24": "^24.0.4",
|