@tolinax/ayoune-interfaces 2026.42.0 → 2026.43.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.
@@ -1,6 +1,6 @@
1
1
  import { AyouneNewActions } from "./AyouneNewActions.interface";
2
2
  export type AyounePageTypes = 'list' | 'multi-list' | 'table' | 'detail' | 'component' | 'dashboard' | 'module-page' | 'grid' | 'i-frame' | 'sub-views';
3
- export type AyounePageViewModes = 'tabs' | 'accordion' | 'single' | 'stepper' | 'gridster' | 'chart-gridster';
3
+ export type AyounePageViewModes = 'tabs' | 'accordion' | 'single' | 'stepper' | 'gridster' | 'chart-gridster' | 'form';
4
4
  export type AyounePageSubViewModes = 'tabs' | 'sidebar';
5
5
  export interface AyouneBasePage {
6
6
  pageType: AyounePageTypes;
@@ -156,12 +156,16 @@ export interface IComputingEntityConfig {
156
156
  binaries?: IComputingEntityBinary[];
157
157
  configFiles?: IComputingEntityConfigFile[];
158
158
  }
159
- export type RemoteCommandType = 'start-process' | 'stop-process' | 'restart-process' | 'deploy-config' | 'reboot' | 'restart-agent' | 'run-sequence' | 'remote-input';
159
+ export type RemoteCommandType = 'start-process' | 'stop-process' | 'restart-process' | 'deploy-config' | 'reboot' | 'restart-agent' | 'run-sequence' | 'remote-input' | 'execute-cli';
160
160
  export interface IRemoteCommand {
161
161
  _id?: ObjectId;
162
162
  type: RemoteCommandType;
163
163
  programId?: string;
164
164
  payload?: any;
165
+ /** CLI args array for 'execute-cli' type (e.g. ['list', 'contacts', '-l', '10']) */
166
+ cliArgs?: string[];
167
+ /** Execution timeout in ms for 'execute-cli' type (default: 30000) */
168
+ cliTimeout?: number;
165
169
  timestamp?: Date;
166
170
  acknowledged?: boolean;
167
171
  acknowledgedAt?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2026.42.0",
3
+ "version": "2026.43.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",