Skip to content

Commit

Permalink
fix: removing changes other than package version create
Browse files Browse the repository at this point in the history
  • Loading branch information
mradulsf committed Jun 17, 2024
1 parent a3cc60f commit 03ade82
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions messages/package_version_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,6 @@ Code Coverage Met

Validation Skipped

# validatedAsync

Validation Async

# releaseVersion

Release Version
Expand Down
3 changes: 0 additions & 3 deletions schemas/package-version-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@
"ValidationSkipped": {
"type": "boolean"
},
"ValidatedAsync": {
"type": "boolean"
},
"ConvertedFromVersionId": {
"type": "string"
},
Expand Down
3 changes: 0 additions & 3 deletions src/commands/package/version/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export type PackageVersionListDetails = Omit<
Alias: string;
IsOrgDependent: 'N/A' | 'Yes' | 'No';
CreatedBy: string;
ValidatedAsync: boolean;
};

export type PackageVersionListCommandResult = PackageVersionListDetails[];
Expand Down Expand Up @@ -190,7 +189,6 @@ export class PackageVersionListCommand extends SfCommand<PackageVersionListComma
CodeCoverage: codeCoverage,
HasPassedCodeCoverageCheck: hasPassedCodeCoverageCheck as string | boolean,
ValidationSkipped: record.ValidationSkipped,
ValidatedAsync: record.ValidatedAsync,
AncestorId: record.AncestorId,
AncestorVersion: ancestorVersion as string,
Alias: AliasStr,
Expand Down Expand Up @@ -241,7 +239,6 @@ const getColumnData = (
IsPasswordProtected: { header: messages.getMessage('installKey') },
IsReleased: { header: 'Released' },
ValidationSkipped: { header: messages.getMessage('validationSkipped') },
ValidatedAsync: { header: messages.getMessage('validatedAsync') },
AncestorId: { header: 'Ancestor' },
AncestorVersion: { header: 'Ancestor Version' },
Branch: { header: messages.getMessage('packageBranch') },
Expand Down

0 comments on commit 03ade82

Please sign in to comment.