@tolinax/ayoune-interfaces 2026.33.1 → 2026.34.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.
@@ -170,7 +170,11 @@ export interface IComputingEntity extends IDefaultFields {
170
170
  agentType?: 'desktop-client' | 'standalone' | 'legacy';
171
171
  capabilities?: string[];
172
172
  lastHeartbeat?: Date;
173
- agentStatus?: 'online' | 'offline' | 'stale' | 'updating';
173
+ agentStatus?: 'online' | 'offline' | 'stale' | 'updating' | 'provisioning';
174
174
  tags?: string[];
175
175
  pendingCommands?: IRemoteCommand[];
176
+ bootstrapToken?: string;
177
+ bootstrapTokenExpiresAt?: Date;
178
+ bootstrapTokenUsedAt?: Date;
179
+ machineRefreshTokenHash?: string;
176
180
  }
@@ -1,4 +1,18 @@
1
1
  import { IDefaultFields } from "./IDefaultFields";
2
+ import { IComputingEntityProgram, IComputingEntityBinary, IComputingEntityConfigFile } from "./IComputingEntity";
3
+ export interface IComputingEntityFeatureFlags {
4
+ sync?: boolean;
5
+ nfc?: boolean;
6
+ barcode?: boolean;
7
+ iot?: boolean;
8
+ communication?: boolean;
9
+ ai?: boolean;
10
+ quickActions?: boolean;
11
+ clipboard?: boolean;
12
+ screenShare?: boolean;
13
+ remoteControl?: boolean;
14
+ processAgent?: boolean;
15
+ }
2
16
  export interface IComputingEntityTemplate extends IDefaultFields {
3
17
  _customerID: ObjectId;
4
18
  _clientID?: ObjectId[];
@@ -11,4 +25,11 @@ export interface IComputingEntityTemplate extends IDefaultFields {
11
25
  password?: string;
12
26
  template?: string;
13
27
  parameters?: string;
28
+ adapter?: string;
29
+ featureFlags?: IComputingEntityFeatureFlags;
30
+ programs?: IComputingEntityProgram[];
31
+ binaries?: IComputingEntityBinary[];
32
+ configFiles?: IComputingEntityConfigFile[];
33
+ desktopClientInstaller?: string;
34
+ bootstrapTtlHours?: number;
14
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2026.33.1",
3
+ "version": "2026.34.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",