@cryptotaxi247 / CoPilot / commits / f3b0f6cc

feat: add Wazuh API port field to customer metadata (#629)

taylor_socfortress committed Jan 24, 2026 at 16:07 UTC f3b0f6ccec6fc280a56d3d9159f2231ebbd7172e
2 files changed +5
backend/app/customers/schema/customers.py
+4
@@ -89,6 +89,10 @@ class CustomerMetaRequestBody(BaseModel):
89 ...,
90 description="Wazuh log ingestion port for the customer",
91 )
92 + customer_meta_wazuh_api_port: str = Field(
93 + ...,
94 + description="Wazuh API port for the customer",
95 + )
96 customer_meta_wazuh_auth_password: str = Field(
97 ...,
98 description="Wazuh auth password for the customer",
frontend/src/types/customers.d.ts
+1
@@ -31,6 +31,7 @@ export interface CustomerMeta {
31 customer_meta_wazuh_auth_password: string
32 customer_meta_iris_customer_id: number
33 customer_meta_office365_organization_id: string
34 + customer_meta_wazuh_api_port: string
35 }
36
37 export type CustomerHealthcheckSource = "wazuh" | "velociraptor"