Packages Flows
Load flow
sequenceDiagram
participant UI as ConfigPackage
participant API as package endpoints
participant DATA as package and flow tables
UI->>API: GET package list and tag metadata
API->>DATA: Read stored package state
API-->>UI: Return normalized rows
Label update flow
sequenceDiagram
participant U as User
participant UI as Package row editor
participant API as package label endpoint
participant DATA as package record
U->>UI: Change package label
UI->>API: PATCH package label
API->>DATA: Persist label
API-->>UI: Return updated row
Sync dependency
The popup itself does not fetch live package data from CPI. It depends on backend synchronization having already refreshed package and iFlow state for the tenant.