@tolinax/ayoune-interfaces 2026.52.0 → 2026.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -105,6 +105,13 @@ export interface IComputingEntityProgram {
105
105
  restartDelayMs?: number;
106
106
  restartCount?: number;
107
107
  logPaths?: string[];
108
+ /**
109
+ * Glob patterns applied to files found under `logPaths` (directories).
110
+ * Empty or undefined means "collect all *.log files" (legacy behaviour).
111
+ * Supports include patterns ('*.log', 'MT4_*.log') and negated patterns
112
+ * ('!debug-*.log'). Negations apply after includes.
113
+ */
114
+ logFilePatterns?: string[];
108
115
  healthCheck?: IComputingEntityProgramHealthCheck;
109
116
  adapter?: string;
110
117
  adapterConfig?: Record<string, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2026.52.0",
3
+ "version": "2026.53.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",