@windsland52/maa-log-tools 1.1.0 → 1.1.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.
- package/dist/cli.d.ts +1 -1
- package/dist/frameworkInput.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/package.json +5 -5
package/dist/cli.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import type { KernelOutput } from '@windsland52/maa-log-kernel/protocol';
|
|
3
|
-
import { type FrameworkSession, type FrameworkSessionExtraction, type FrameworkVersionSummary } from './frameworkVersion';
|
|
3
|
+
import { type FrameworkSession, type FrameworkSessionExtraction, type FrameworkVersionSummary } from './frameworkVersion.js';
|
|
4
4
|
export declare const MLA_PREFLIGHT_SCHEMA_VERSION = "mla-preflight/v1";
|
|
5
5
|
export type PreflightReason = 'notify_events_parsed' | 'empty_log' | 'no_notify_events' | 'no_task_lifecycle' | 'no_analyzable_content';
|
|
6
6
|
export interface PreflightOutput {
|
package/dist/frameworkInput.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { FrameworkLogSource } from './frameworkVersion';
|
|
1
|
+
import type { FrameworkLogSource } from './frameworkVersion.js';
|
|
2
2
|
export declare const loadFrameworkLogSources: (targetPath: string) => Promise<FrameworkLogSource[]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { KernelOutput } from '@windsland52/maa-log-kernel';
|
|
2
2
|
import type { AnalyzeLogContentInput, ParseFileOptions } from '@windsland52/maa-log-runtime';
|
|
3
|
-
import { type LogBundleFocus } from './nodeInput';
|
|
3
|
+
import { type LogBundleFocus } from './nodeInput.js';
|
|
4
4
|
type ParseOptions = ParseFileOptions;
|
|
5
5
|
export interface AnalyzeZipBufferInput {
|
|
6
6
|
zipData: Uint8Array;
|
|
@@ -27,6 +27,6 @@ export declare const analyzeZipFile: (input: AnalyzeZipFileInput) => Promise<Ker
|
|
|
27
27
|
export declare const analyzeDirectory: (input: AnalyzeDirectoryInput) => Promise<KernelOutput | null>;
|
|
28
28
|
export { DEFAULT_CORE_PARSE_OPTIONS, } from '@windsland52/maa-log-runtime';
|
|
29
29
|
export type { AnalyzeLogContentInput, ParseFileOptions } from '@windsland52/maa-log-runtime';
|
|
30
|
-
export * from './nodeInput';
|
|
31
|
-
export * from './frameworkInput';
|
|
32
|
-
export * from './frameworkVersion';
|
|
30
|
+
export * from './nodeInput.js';
|
|
31
|
+
export * from './frameworkInput.js';
|
|
32
|
+
export * from './frameworkVersion.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windsland52/maa-log-tools",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"bin": {
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"fflate": "^0.8.2",
|
|
45
|
-
"@windsland52/maa-log-
|
|
46
|
-
"@windsland52/maa-log-parser": "1.0.
|
|
47
|
-
"@windsland52/maa-log-runtime": "1.0.
|
|
48
|
-
"@windsland52/maa-log-
|
|
45
|
+
"@windsland52/maa-log-adapter": "1.0.1",
|
|
46
|
+
"@windsland52/maa-log-parser": "1.0.1",
|
|
47
|
+
"@windsland52/maa-log-runtime": "1.0.1",
|
|
48
|
+
"@windsland52/maa-log-kernel": "1.0.1"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=24.0.0"
|