Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
983 changes: 983 additions & 0 deletions crates/node/src/tests.rs

Large diffs are not rendered by default.

40 changes: 39 additions & 1 deletion crates/node/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,47 @@ pub(crate) use bump::{
VALID_DEPENDENCY_TYPES,
};

// TODO: will be implemented on story 8.1 (upgrade types)
// Upgrade types (Story 8.1 - Implemented)
pub(crate) mod upgrade;

// Re-export upgrade types for easier access
// Allow unused imports - these will be used by upgrade commands (Stories 8.2-8.4)
#[allow(unused_imports)]
pub(crate) use upgrade::{
// Supporting Types
AppliedUpgradeInfo,
ApplySummaryInfo,
// API Responses
BackupCleanApiResponse,
// Response Data
BackupCleanData,
// Input Parameters
BackupCleanParams,
BackupInfo,
BackupListApiResponse,
BackupListData,
BackupListParams,
BackupRestoreApiResponse,
BackupRestoreData,
BackupRestoreParams,
// Constants
DEFAULT_KEEP_COUNT,
DependencyUpgradeInfo,
FailedUpgradeInfo,
PackageUpgradeInfo,
SkippedUpgradeInfo,
UpgradeApplyApiResponse,
UpgradeApplyData,
UpgradeApplyParams,
UpgradeCheckApiResponse,
UpgradeCheckData,
UpgradeCheckParams,
UpgradeSelectionInfo,
UpgradeSummaryInfo,
VALID_DEPENDENCY_TYPES as UPGRADE_VALID_DEPENDENCY_TYPES,
VALID_UPGRADE_TYPES,
};

// TODO: will be implemented on story 9.1 (audit types)
pub(crate) mod audit;

Expand Down
Loading
Loading