IAV-1080/feat(url-paths): extend N8nCoreServicePath and OrchestrationServicePath with new endpoint builders
Summary
This MR extends the two URL path constant classes with new endpoint builder methods required by upcoming service integrations. No existing methods have been modified — all changes are strictly additive.
Changes
N8nCoreServicePath
| Method | Path pattern | Description |
|---|---|---|
buildGetCredentialDataUrl(credentialInstanceUid) |
GET /credential/data/{uid} |
Fetches credential raw data by instance UID |
OrchestrationServicePath
| Method | Path pattern | Description |
|---|---|---|
buildGetFirstIntegrationByUserIntegrationUidUrl(userIntegrationUid) |
GET /agent-integrations/user-integration/{uid}/first |
Retrieves the first agent integration linked to a user integration |
buildGetUserIntegrationsByUidsUrl(List<String> uids) |
GET /user-integrations/by-uids?uids=... |
Fetches multiple user integrations by a list of UIDs |
The USER_INTEGRATIONS_BASE constant in OrchestrationServicePath, previously declared but never referenced, is now consumed by buildGetUserIntegrationsByUidsUrl().
Related Issues
Closes IAV-1080