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.
- package/dist/commands/ai4ctf.js +1 -1
- package/dist/commands/ctf4ai-demo.js +1 -1
- package/dist/commands/ctf4vla.js +1 -1
- package/dist/commands/exam.js +1 -1
- package/dist/lib/access.js +1 -1
- package/dist/lib/config.d.ts +1 -0
- package/dist/lib/config.js +1 -1
- package/dist/lib/demo2-progress.js +1 -1
- package/dist/lib/exam-state.js +1 -1
- package/dist/lib/input-dynamics.d.ts +9 -0
- package/dist/lib/input-dynamics.js +1 -0
- package/dist/lib/integrity-snapshot.d.ts +16 -0
- package/dist/lib/integrity-snapshot.js +1 -1
- package/dist/lib/learn-state.js +1 -1
- package/dist/lib/log-sync.js +1 -1
- package/dist/lib/logger.d.ts +8 -0
- package/dist/lib/logger.js +1 -1
- package/dist/lib/secure-store.d.ts +18 -0
- package/dist/lib/secure-store.js +1 -0
- package/dist/lib/sim-cooldown.js +1 -1
- package/dist/repl.js +1 -1
- package/dist/types/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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.
|
|
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": {
|