@tolinax/ayoune-interfaces 2026.35.0 → 2026.36.1

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.
@@ -212,6 +212,8 @@ export interface IComputingEntity extends IDefaultFields {
212
212
  capabilities?: string[];
213
213
  lastHeartbeat?: Date;
214
214
  agentStatus?: 'online' | 'offline' | 'stale' | 'updating' | 'provisioning';
215
+ updatePolicy?: 'force' | 'optional' | 'silent-on-quit';
216
+ updateForceCountdownSec?: number;
215
217
  tags?: string[];
216
218
  pendingCommands?: IRemoteCommand[];
217
219
  bootstrapToken?: string;
@@ -1067,6 +1067,46 @@ export interface ISetting extends IDefaultFields {
1067
1067
  customerportal: ISettingCustomerPortal;
1068
1068
  linkPortal: ILinkPortal;
1069
1069
  supportPortal: ISupportPortal;
1070
+ warehouse?: IWarehouseSettings;
1070
1071
  [x: string]: any;
1071
1072
  }
1073
+ export interface IWarehouseSettings {
1074
+ putAway?: {
1075
+ mode?: 'system-directed' | 'pallet-first' | 'worker-pick';
1076
+ placementStrategy?: 'empty_bin' | 'same_product' | 'FIFO' | 'FEFO' | 'ABC';
1077
+ };
1078
+ receive?: {
1079
+ poLookupMode?: 'off' | 'optional' | 'required';
1080
+ poSessionMode?: 'single' | 'multi' | 'ad-hoc';
1081
+ allowOverage?: boolean;
1082
+ overageThresholdPercent?: number;
1083
+ requireLotOnReceive?: boolean;
1084
+ };
1085
+ pick?: {
1086
+ batchMode?: 'single' | 'wave' | 'both';
1087
+ qtyMode?: 'prompt' | 'per-unit';
1088
+ allowShortPick?: boolean;
1089
+ requireSerialForTaggedProducts?: boolean;
1090
+ };
1091
+ materialCommissioning?: {
1092
+ handoffMode?: 'auto-deliver' | 'operator-confirm';
1093
+ };
1094
+ cycleCount?: {
1095
+ autoApproveVarianceThreshold?: number;
1096
+ requireTwoCount?: boolean;
1097
+ escalateOnConsecutiveVariances?: number;
1098
+ };
1099
+ replenishment?: {
1100
+ autoTriggerEnabled?: boolean;
1101
+ minLevelCheckIntervalMinutes?: number;
1102
+ };
1103
+ autoPrint?: {
1104
+ onStorageAreaCreate?: boolean;
1105
+ onPickListStart?: boolean;
1106
+ onReceive?: boolean;
1107
+ onPutAwayComplete?: boolean;
1108
+ onMaterialDispatch?: boolean;
1109
+ onPackSeal?: boolean;
1110
+ };
1111
+ }
1072
1112
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2026.35.0",
3
+ "version": "2026.36.1",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",