Skip to content

Commit

Permalink
Merge pull request #629 from JeffAMasloSF/main
Browse files Browse the repository at this point in the history
feat: removing beta marking @w-14636241@
  • Loading branch information
WillieRuemmele authored Jul 2, 2024
2 parents bb9ad85 + 66de900 commit 455459e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 44 deletions.
44 changes: 4 additions & 40 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,52 +62,16 @@
"description": "Commands to manage org shapes and snapshots.",
"subtopics": {
"create": {
"description": "Commands to create org shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to create org shapes and snapshots."
},
"list": {
"description": "Commands to list org shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to list org shapes and snapshots."
},
"delete": {
"description": " Commands to delete shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to delete shapes and snapshots."
},
"get": {
"description": "Commands to get an org snapshot.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to get an org snapshot."
}
}
}
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/create/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export class SnapshotCreate extends SfCommand<OrgSnapshot> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:create'];
public static readonly deprecateAliases = true;
public static readonly state = 'beta';
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/delete/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class SnapshotDelete extends SfCommand<SaveResult | undefined> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:delete'];
public static readonly deprecateAliases = true;
public static readonly state = 'beta';

public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/get/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export class SnapshotGet extends SfCommand<OrgSnapshot> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:get'];
public static readonly deprecateAliases = true;
public static readonly state = 'beta';

public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/list/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export class SnapshotList extends SfCommand<OrgSnapshot[]> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:list'];
public static readonly deprecateAliases = true;
public static readonly state = 'beta';
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down

0 comments on commit 455459e

Please sign in to comment.