SP-957: move Team-to-Team Copy commands to 't2tc package' group#370
Open
Zgjim Haziri (ZgjimHaziri) wants to merge 1 commit into
Open
Conversation
Bulk T2TC operations (list/export/import/diff) move from the top-level 'config' group to a dedicated 't2tc package' group, and 'config validate' moves to 'config package validate'. The old commands remain as deprecated aliases with runtime deprecation notices pointing to the new ones, so the change is non-breaking. Also adds a staging-focused 'config package list' and updates the docs. Includes-AI-Code: true Co-authored-by: Cursor <cursoragent@cursor.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Description
The batch commands
config list/export/import/diffare specific to the Team-to-Team Copy (T2TC) service but lived under the generic top-levelconfiggroup, mixed in with the package-resource commands (package,nodes,versions,variables,metadata). This made the surface confusing: bulk T2TC-archive operations looked like general-purpose commands.Approach: group the T2TC operations under a dedicated
t2tc packagegroup, and keepconfigfor package-resource commands only.config list/export/import/diff→t2tc package list/export/import/diffconfig validate→config package validate(it validates a package)config package listfor everyday package listing (staging packages by default, with flavor filtering)Non-breaking: the old commands are kept as deprecated aliases. Each prints a runtime deprecation notice pointing to its replacement and is marked
[Deprecated]in--help, so existing automation keeps working until the aliases are removed in a future release.Docs updated accordingly (new
t2tc-commands.md, reframedconfig-commands.md, mkdocs nav).Relevant links
Checklist
Made with Cursor