export const PLAY_RUNTIME_API_COMPAT_PATH = '/api/v2/plays/internal/runtime'; export const PLAY_RUNTIME_API_CURRENT_PATH = '/api/v2/internal/play-runtime'; export const PLAY_RUNTIME_OPERATION_ID_HEADER = 'x-deepline-runtime-operation-id'; export const PLAY_RUNTIME_OPERATION_ATTEMPT_HEADER = 'x-deepline-runtime-operation-attempt'; export const PLAY_RUNTIME_ATTEMPT_EXECUTOR_TOKEN_PATH = '/api/v2/internal/play-runtime/executor-token'; export const PLAY_RUNTIME_TAIL_LOG_COMPAT_PATH = '/api/v2/plays/internal/tail-log'; export const PLAY_RUNTIME_TAIL_LOG_CURRENT_PATH = '/api/v2/internal/play-runtime/tail-log'; export const PLAY_RUNTIME_EGRESS_FETCH_COMPAT_PATH = '/api/v2/plays/internal/egress-fetch'; export const PLAY_RUNTIME_EGRESS_FETCH_CURRENT_PATH = '/api/v2/internal/play-runtime/egress-fetch'; export const PLAY_RUNTIME_HARNESS_ALLOWED_PATH_PREFIXES = [ PLAY_RUNTIME_API_COMPAT_PATH, PLAY_RUNTIME_API_CURRENT_PATH, '/api/v2/plays/', '/api/v2/integrations/', ] as const;