icoa-cli 2.19.373 → 2.19.374

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.
@@ -101,6 +101,7 @@ export interface IcoaConfig {
101
101
  themeVariant?: 'dark' | 'high-contrast';
102
102
  leaderToken?: string;
103
103
  leaderTeam?: string;
104
+ bracketedPaste?: boolean;
104
105
  }
105
106
  export type CompetitionState = 'pre_competition' | 'demo' | 'live' | 'finished' | 'unknown';
106
107
  export type IcoaMode = 'instant' | 'learn' | 'selection' | 'olympiad' | 'organizer' | 'embodied';
@@ -118,6 +119,17 @@ export interface LogEntry {
118
119
  input: string;
119
120
  challengeId?: number;
120
121
  sessionId: string;
122
+ _mac?: string;
123
+ dyn?: InputDynamics;
124
+ }
125
+ export interface InputDynamics {
126
+ ms: number;
127
+ keys: number;
128
+ backspaces: number;
129
+ pastes: number;
130
+ pasteChars: number;
131
+ maxBurst: number;
132
+ suspectPaste: boolean;
121
133
  }
122
134
  export interface ChallengeContext {
123
135
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icoa-cli",
3
- "version": "2.19.373",
3
+ "version": "2.19.374",
4
4
  "description": "ICOA CLI — The world's first CLI-native cyber & AI security olympiad terminal: AI4CTF (Day 1), CTF4AI (Day 2), VLA4CTF (Pioneer Round — embodied AI)",
5
5
  "type": "module",
6
6
  "bin": {