feat: rename Application Solutions to Agentic Apps in docs, UI, and codebase
This commit is contained in:
@@ -405,11 +405,11 @@ impl Default for ServiceLevelAgreement {
|
||||
|
||||
/// Application deployment configuration
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
pub struct AppDeployment {
|
||||
pub struct ApplicationDeployment {
|
||||
pub id: String,
|
||||
pub app_id: String,
|
||||
pub customer_email: String,
|
||||
pub deployment_status: AppDeploymentStatus,
|
||||
pub deployment_status: ApplicationDeploymentStatus,
|
||||
pub resource_allocation: ResourceUtilization,
|
||||
pub monthly_cost: rust_decimal::Decimal,
|
||||
pub deployed_at: Option<DateTime<Utc>>,
|
||||
@@ -418,9 +418,9 @@ pub struct AppDeployment {
|
||||
pub monitoring_enabled: bool,
|
||||
}
|
||||
|
||||
/// App deployment status
|
||||
/// Application deployment status
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
pub enum AppDeploymentStatus {
|
||||
pub enum ApplicationDeploymentStatus {
|
||||
Pending,
|
||||
Deploying,
|
||||
Running,
|
||||
@@ -429,7 +429,7 @@ pub enum AppDeploymentStatus {
|
||||
Maintenance,
|
||||
}
|
||||
|
||||
impl Default for AppDeploymentStatus {
|
||||
impl Default for ApplicationDeploymentStatus {
|
||||
fn default() -> Self {
|
||||
Self::Pending
|
||||
}
|
||||
|
Reference in New Issue
Block a user