Skip to content

Commit f181dc7

Browse files
committed
chore: optional params
1 parent 27fb09e commit f181dc7

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/commands/omnistudio/migration/assess.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,7 @@ export default class Assess extends OmniStudioBaseCommand {
178178
this.logger,
179179
messages,
180180
this.ux,
181-
objectsToProcess,
182-
undefined,
183-
undefined
181+
objectsToProcess
184182
);
185183

186184
const userActionMessages: string[] = [];

src/migration/postMigrate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export class PostMigrate extends BaseMigrationTool {
2727
messages: Messages,
2828
ux: UX,
2929
relatedObjectsToProcess: string[],
30-
deploymentConfig: { autoDeploy: boolean; authKey: string | undefined },
31-
projectPath: string
30+
deploymentConfig?: { autoDeploy: boolean; authKey: string | undefined },
31+
projectPath?: string
3232
) {
3333
super(namespace, connection, logger, messages, ux);
3434
this.org = org;

0 commit comments

Comments
 (0)