Skip to content

Commit eacca4c

Browse files
authored
Merge pull request #62 from forcedotcom/development
Development
2 parents d9a8c8a + 4bc9d1c commit eacca4c

File tree

12 files changed

+48
-17
lines changed

12 files changed

+48
-17
lines changed

lib/commands/schema/dictionary.js

Lines changed: 15 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/commands/schema/dictionary.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/commands/source/delta/git.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class Git extends CommandBase {
2525
M: string;
2626
D: string;
2727
};
28-
getFullCopyPath(filePath: string, fullCopyDirNames: string[], allowFullCopyPathWithExt?: boolean): string;
28+
getFullCopyPath(filePath: string, fullCopyDirNames: string[], allowFullCopyPathWithExt?: boolean): string | null;
2929
};
3030
static readonly flags: any;
3131
protected name: string;

lib/commands/source/delta/md5.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ export default class Md5 extends CommandBase {
1616
run(deltaOptions: import("../../../helpers/delta-options.js").DeltaOptions): Promise<any>;
1717
loadDeltaFile(deltaFilePath?: string): Promise<void>;
1818
logMessage(message: string, includeConsole?: boolean): Promise<void>;
19-
validateDeltaOptions(deltaOptions: import("../../../helpers/delta-options.js").DeltaOptions): Promise<string>;
19+
validateDeltaOptions(deltaOptions: import("../../../helpers/delta-options.js").DeltaOptions): Promise<string | null>;
2020
};
2121
deltaTypeKind: {
2222
NONE: string;
2323
A: string;
2424
M: string;
2525
D: string;
2626
};
27-
getFullCopyPath(filePath: string, fullCopyDirNames: string[], allowFullCopyPathWithExt?: boolean): string;
27+
getFullCopyPath(filePath: string, fullCopyDirNames: string[], allowFullCopyPathWithExt?: boolean): string | null;
2828
};
2929
static readonly flags: any;
3030
protected name: string;

lib/helpers/command-base.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export declare abstract class CommandBase extends SfCommand<void> {
88
static messages: Messages<string>;
99
static targetOrgFlagName: string;
1010
protected static commonFlags: {
11-
[x: string]: import("@oclif/core/interfaces").OptionFlag<Org, import("@oclif/core/interfaces").CustomOptions>;
11+
[CommandBase.targetOrgFlagName]: import("@oclif/core/interfaces").OptionFlag<Org, import("@oclif/core/interfaces").CustomOptions>;
1212
};
1313
private static uxInst;
1414
org: Org | undefined;

lib/helpers/constants.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/helpers/constants.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/helpers/sf-query.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)