@adhisang/minecraft-modding-mcp 4.2.0 → 5.0.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.
Files changed (120) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/README.md +6 -4
  3. package/dist/access-transformer-parser.d.ts +2 -1
  4. package/dist/access-transformer-parser.js +10 -1
  5. package/dist/build-suggested-call.js +31 -10
  6. package/dist/cache-registry.d.ts +8 -0
  7. package/dist/cache-registry.js +99 -6
  8. package/dist/config.d.ts +1 -0
  9. package/dist/config.js +4 -0
  10. package/dist/entry-tools/analyze-mod-service.d.ts +24 -24
  11. package/dist/entry-tools/analyze-symbol-service.d.ts +57 -22
  12. package/dist/entry-tools/analyze-symbol-service.js +124 -28
  13. package/dist/entry-tools/batch-class-members-service.d.ts +3 -1
  14. package/dist/entry-tools/batch-class-members-service.js +6 -6
  15. package/dist/entry-tools/batch-class-source-service.d.ts +3 -1
  16. package/dist/entry-tools/batch-class-source-service.js +5 -6
  17. package/dist/entry-tools/batch-mappings-service.d.ts +3 -1
  18. package/dist/entry-tools/batch-mappings-service.js +4 -5
  19. package/dist/entry-tools/batch-symbol-exists-service.d.ts +3 -1
  20. package/dist/entry-tools/batch-symbol-exists-service.js +4 -5
  21. package/dist/entry-tools/compare-minecraft-service.d.ts +10 -10
  22. package/dist/entry-tools/entry-tool-schema.d.ts +1 -1
  23. package/dist/entry-tools/inspect-minecraft/handlers/artifact.js +1 -3
  24. package/dist/entry-tools/inspect-minecraft/handlers/class-members.js +2 -2
  25. package/dist/entry-tools/inspect-minecraft/handlers/class-overview.js +0 -5
  26. package/dist/entry-tools/inspect-minecraft/handlers/class-source.js +0 -1
  27. package/dist/entry-tools/inspect-minecraft/handlers/file.js +0 -1
  28. package/dist/entry-tools/inspect-minecraft/handlers/list-files.js +0 -1
  29. package/dist/entry-tools/inspect-minecraft/handlers/search.d.ts +8 -0
  30. package/dist/entry-tools/inspect-minecraft/handlers/search.js +13 -2
  31. package/dist/entry-tools/inspect-minecraft/handlers/versions.d.ts +1 -1
  32. package/dist/entry-tools/inspect-minecraft/handlers/versions.js +1 -1
  33. package/dist/entry-tools/inspect-minecraft/internal.d.ts +90 -89
  34. package/dist/entry-tools/inspect-minecraft/internal.js +30 -14
  35. package/dist/entry-tools/inspect-minecraft-service.d.ts +218 -218
  36. package/dist/entry-tools/inspect-minecraft-service.js +1 -1
  37. package/dist/entry-tools/manage-cache-service.d.ts +4 -4
  38. package/dist/entry-tools/response-contract.d.ts +1 -1
  39. package/dist/entry-tools/response-contract.js +1 -0
  40. package/dist/entry-tools/validate-project/cases/mixin.js +2 -1
  41. package/dist/entry-tools/validate-project/cases/project-summary.js +5 -3
  42. package/dist/entry-tools/validate-project-service.d.ts +42 -36
  43. package/dist/entry-tools/validate-project-service.js +3 -1
  44. package/dist/entry-tools/verify-mixin-target-service.d.ts +30 -0
  45. package/dist/entry-tools/verify-mixin-target-service.js +113 -22
  46. package/dist/error-mapping.d.ts +51 -0
  47. package/dist/error-mapping.js +157 -2
  48. package/dist/errors.js +4 -1
  49. package/dist/index.js +138 -71
  50. package/dist/java-process.d.ts +9 -0
  51. package/dist/java-process.js +11 -5
  52. package/dist/mapping/internal-types.d.ts +7 -0
  53. package/dist/mapping/lookup.d.ts +1 -1
  54. package/dist/mapping/lookup.js +7 -1
  55. package/dist/mapping/types.d.ts +6 -0
  56. package/dist/mapping-service.d.ts +26 -2
  57. package/dist/mapping-service.js +178 -36
  58. package/dist/mcp-helpers.d.ts +1 -0
  59. package/dist/mcp-helpers.js +25 -3
  60. package/dist/minecraft-explorer-service.js +24 -11
  61. package/dist/mixin/access-validators.js +33 -1
  62. package/dist/mixin/annotation-validators.js +53 -7
  63. package/dist/mixin/parsed-validator.js +2 -2
  64. package/dist/mixin-parser.js +48 -4
  65. package/dist/mod-decompile-service.js +2 -1
  66. package/dist/mod-remap-service.d.ts +20 -1
  67. package/dist/mod-remap-service.js +95 -40
  68. package/dist/nbt/java-nbt-codec.js +87 -2
  69. package/dist/observability.d.ts +6 -0
  70. package/dist/observability.js +10 -0
  71. package/dist/page-cursor.d.ts +17 -0
  72. package/dist/page-cursor.js +0 -0
  73. package/dist/registry-service.js +25 -1
  74. package/dist/resources.js +45 -9
  75. package/dist/response-utils.d.ts +29 -4
  76. package/dist/response-utils.js +95 -5
  77. package/dist/source/access-validate.js +12 -2
  78. package/dist/source/artifact-resolver.js +1 -1
  79. package/dist/source/cache-metrics.js +2 -2
  80. package/dist/source/class-source/members-builder.d.ts +44 -1
  81. package/dist/source/class-source/members-builder.js +51 -4
  82. package/dist/source/class-source/snippet-builder.d.ts +13 -0
  83. package/dist/source/class-source/snippet-builder.js +48 -4
  84. package/dist/source/class-source-helpers.js +67 -11
  85. package/dist/source/class-source.js +97 -20
  86. package/dist/source/indexer.d.ts +31 -6
  87. package/dist/source/indexer.js +95 -25
  88. package/dist/source/search.d.ts +1 -1
  89. package/dist/source/search.js +94 -22
  90. package/dist/source/validate-mixin.d.ts +2 -1
  91. package/dist/source/validate-mixin.js +45 -4
  92. package/dist/source/workspace-target.js +15 -9
  93. package/dist/source-jar-reader.d.ts +54 -1
  94. package/dist/source-jar-reader.js +121 -10
  95. package/dist/source-service.d.ts +28 -7
  96. package/dist/storage/files-repo.d.ts +12 -0
  97. package/dist/storage/files-repo.js +24 -0
  98. package/dist/storage/symbols-repo.d.ts +6 -0
  99. package/dist/storage/symbols-repo.js +6 -0
  100. package/dist/symbols/symbol-extractor.js +35 -6
  101. package/dist/text-truncate.d.ts +7 -0
  102. package/dist/text-truncate.js +21 -0
  103. package/dist/tiny-remapper-resolver.js +10 -0
  104. package/dist/tiny-remapper-service.js +3 -3
  105. package/dist/tool-contract-manifest.js +2 -2
  106. package/dist/tool-execution-gate.js +12 -1
  107. package/dist/tool-guidance.d.ts +4 -1
  108. package/dist/tool-guidance.js +37 -12
  109. package/dist/tool-schemas.d.ts +559 -494
  110. package/dist/tool-schemas.js +99 -63
  111. package/dist/types.d.ts +1 -0
  112. package/dist/version-diff-service.js +5 -0
  113. package/dist/version-service.d.ts +3 -0
  114. package/dist/version-service.js +18 -2
  115. package/dist/warning-details.d.ts +18 -0
  116. package/dist/warning-details.js +63 -0
  117. package/docs/README-ja.md +2 -2
  118. package/docs/examples.md +26 -2
  119. package/docs/tool-reference.md +23 -17
  120. package/package.json +1 -1
@@ -51,11 +51,9 @@ export type ResolveArtifactTargetInput = {
51
51
  versionFromProject?: boolean;
52
52
  };
53
53
  export type SourceLookupTargetInput = {
54
- type: "artifact";
54
+ kind: "artifact";
55
55
  artifactId: string;
56
- } | ({
57
- type: "resolve";
58
- } & ResolveArtifactTargetInput);
56
+ } | ResolveArtifactTargetInput;
59
57
  export declare const workspaceTargetSchema: z.ZodObject<{
60
58
  kind: z.ZodLiteral<"workspace">;
61
59
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
@@ -146,68 +144,46 @@ export declare const resolveArtifactTargetSchema: z.ZodDiscriminatedUnion<"kind"
146
144
  version?: string | undefined;
147
145
  versionFromProject?: boolean | undefined;
148
146
  }>]>;
149
- export declare const sourceLookupTargetSchema: z.ZodUnion<[z.ZodObject<{
150
- type: z.ZodLiteral<"artifact">;
151
- artifactId: z.ZodString;
152
- }, "strip", z.ZodTypeAny, {
153
- artifactId: string;
154
- type: "artifact";
155
- }, {
156
- artifactId: string;
157
- type: "artifact";
158
- }>, z.ZodObject<{
159
- type: z.ZodLiteral<"resolve">;
147
+ export declare const sourceLookupTargetSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
160
148
  kind: z.ZodLiteral<"version">;
161
149
  value: z.ZodString;
162
150
  }, "strip", z.ZodTypeAny, {
163
151
  kind: "version";
164
- type: "resolve";
165
152
  value: string;
166
153
  }, {
167
154
  kind: "version";
168
- type: "resolve";
169
155
  value: string;
170
156
  }>, z.ZodObject<{
171
- type: z.ZodLiteral<"resolve">;
172
157
  kind: z.ZodLiteral<"jar">;
173
158
  value: z.ZodString;
174
159
  }, "strip", z.ZodTypeAny, {
175
160
  kind: "jar";
176
- type: "resolve";
177
161
  value: string;
178
162
  }, {
179
163
  kind: "jar";
180
- type: "resolve";
181
164
  value: string;
182
165
  }>, z.ZodObject<{
183
- type: z.ZodLiteral<"resolve">;
184
166
  kind: z.ZodLiteral<"coordinate">;
185
167
  value: z.ZodString;
186
168
  }, "strip", z.ZodTypeAny, {
187
169
  kind: "coordinate";
188
- type: "resolve";
189
170
  value: string;
190
171
  }, {
191
172
  kind: "coordinate";
192
- type: "resolve";
193
173
  value: string;
194
174
  }>, z.ZodObject<{
195
- type: z.ZodLiteral<"resolve">;
196
175
  kind: z.ZodLiteral<"workspace">;
197
176
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
198
177
  strict: z.ZodOptional<z.ZodBoolean>;
199
178
  }, "strip", z.ZodTypeAny, {
200
179
  kind: "workspace";
201
- type: "resolve";
202
180
  scope?: "vanilla" | "merged" | "loader" | undefined;
203
181
  strict?: boolean | undefined;
204
182
  }, {
205
183
  kind: "workspace";
206
- type: "resolve";
207
184
  scope?: "vanilla" | "merged" | "loader" | undefined;
208
185
  strict?: boolean | undefined;
209
186
  }>, z.ZodObject<{
210
- type: z.ZodLiteral<"resolve">;
211
187
  kind: z.ZodLiteral<"dependency">;
212
188
  group: z.ZodString;
213
189
  name: z.ZodString;
@@ -217,20 +193,29 @@ export declare const sourceLookupTargetSchema: z.ZodUnion<[z.ZodObject<{
217
193
  name: string;
218
194
  kind: "dependency";
219
195
  group: string;
220
- type: "resolve";
221
196
  version?: string | undefined;
222
197
  versionFromProject?: boolean | undefined;
223
198
  }, {
224
199
  name: string;
225
200
  kind: "dependency";
226
201
  group: string;
227
- type: "resolve";
228
202
  version?: string | undefined;
229
203
  versionFromProject?: boolean | undefined;
204
+ }>, z.ZodObject<{
205
+ kind: z.ZodLiteral<"artifact">;
206
+ artifactId: z.ZodString;
207
+ }, "strip", z.ZodTypeAny, {
208
+ kind: "artifact";
209
+ artifactId: string;
210
+ }, {
211
+ kind: "artifact";
212
+ artifactId: string;
230
213
  }>]>;
231
214
  export declare const RESOLVE_ARTIFACT_TARGET_DESCRIPTION = "Object with kind. Examples: {\"kind\":\"version\",\"value\":\"1.21.10\"}, {\"kind\":\"workspace\"} (uses projectPath), or {\"kind\":\"dependency\",\"group\":\"dev.architectury\",\"name\":\"architectury\"}. Must be an object, not a string.";
232
- export declare const SOURCE_LOOKUP_TARGET_DESCRIPTION = "Object: {\"type\":\"resolve\",\"kind\":\"version\",\"value\":\"1.21.10\"} or {\"type\":\"resolve\",\"kind\":\"workspace\"} or {\"type\":\"resolve\",\"kind\":\"dependency\",\"group\":\"...\",\"name\":\"...\"} or {\"type\":\"artifact\",\"artifactId\":\"...\"}. Must be an object, not a string.";
215
+ export declare const SOURCE_LOOKUP_TARGET_DESCRIPTION = "Object with kind (same shape as resolve-artifact). Examples: {\"kind\":\"version\",\"value\":\"1.21.10\"}, {\"kind\":\"workspace\"} (uses projectPath), {\"kind\":\"dependency\",\"group\":\"...\",\"name\":\"...\"}, or {\"kind\":\"artifact\",\"artifactId\":\"...\"} to reuse an already-resolved artifact. Must be an object, not a string.";
233
216
  export declare const SOURCE_SCOPE_DESCRIPTION = "vanilla = Mojang client jar only; merged = source-oriented merged runtime discovery; loader = loader/runtime artifact discovery when the workspace exposes transformed runtime jars.";
217
+ export declare const SIGNATURE_MODE_DESCRIPTION = "exact: descriptor required for kind=method; name-only (default): match by owner+name only.";
218
+ export declare const NAME_MODE_DESCRIPTION = "auto (default): accept a fully-qualified name, or a dotless name where the tool allows it; fqcn: require a fully-qualified name.";
234
219
  export declare const listVersionsShape: {
235
220
  includeSnapshots: z.ZodDefault<z.ZodBoolean>;
236
221
  limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
@@ -312,7 +297,8 @@ export declare const resolveArtifactShape: {
312
297
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
313
298
  preferProjectVersion: z.ZodOptional<z.ZodBoolean>;
314
299
  strictVersion: z.ZodOptional<z.ZodBoolean>;
315
- compact: z.ZodDefault<z.ZodBoolean>;
300
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
301
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
316
302
  };
317
303
  export declare const resolveArtifactSchema: z.ZodObject<{
318
304
  target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
@@ -381,9 +367,10 @@ export declare const resolveArtifactSchema: z.ZodObject<{
381
367
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
382
368
  preferProjectVersion: z.ZodOptional<z.ZodBoolean>;
383
369
  strictVersion: z.ZodOptional<z.ZodBoolean>;
384
- compact: z.ZodDefault<z.ZodBoolean>;
370
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
371
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
385
372
  }, "strip", z.ZodTypeAny, {
386
- compact: boolean;
373
+ allowDecompile: boolean;
387
374
  target: {
388
375
  kind: "workspace";
389
376
  scope?: "vanilla" | "merged" | "loader" | undefined;
@@ -404,14 +391,15 @@ export declare const resolveArtifactSchema: z.ZodObject<{
404
391
  kind: "coordinate";
405
392
  value: string;
406
393
  };
407
- allowDecompile: boolean;
394
+ detail: "summary" | "standard" | "full";
408
395
  projectPath?: string | undefined;
409
396
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
410
397
  scope?: "vanilla" | "merged" | "loader" | undefined;
411
- gradleUserHome?: string | undefined;
412
- sourcePriority?: "loom-first" | "maven-first" | undefined;
413
398
  preferProjectVersion?: boolean | undefined;
414
399
  strictVersion?: boolean | undefined;
400
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
401
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
402
+ gradleUserHome?: string | undefined;
415
403
  }, {
416
404
  target: {
417
405
  kind: "workspace";
@@ -436,78 +424,57 @@ export declare const resolveArtifactSchema: z.ZodObject<{
436
424
  projectPath?: string | undefined;
437
425
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
438
426
  scope?: "vanilla" | "merged" | "loader" | undefined;
439
- compact?: boolean | undefined;
440
- gradleUserHome?: string | undefined;
441
- sourcePriority?: "loom-first" | "maven-first" | undefined;
427
+ allowDecompile?: boolean | undefined;
442
428
  preferProjectVersion?: boolean | undefined;
443
429
  strictVersion?: boolean | undefined;
444
- allowDecompile?: boolean | undefined;
430
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
431
+ detail?: "summary" | "standard" | "full" | undefined;
432
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
433
+ gradleUserHome?: string | undefined;
445
434
  }>;
446
435
  export declare const getClassSourceShape: {
447
436
  className: z.ZodString;
448
437
  mode: z.ZodDefault<z.ZodEnum<["metadata", "snippet", "full"]>>;
449
- target: z.ZodUnion<[z.ZodObject<{
450
- type: z.ZodLiteral<"artifact">;
451
- artifactId: z.ZodString;
452
- }, "strip", z.ZodTypeAny, {
453
- artifactId: string;
454
- type: "artifact";
455
- }, {
456
- artifactId: string;
457
- type: "artifact";
458
- }>, z.ZodObject<{
459
- type: z.ZodLiteral<"resolve">;
438
+ target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
460
439
  kind: z.ZodLiteral<"version">;
461
440
  value: z.ZodString;
462
441
  }, "strip", z.ZodTypeAny, {
463
442
  kind: "version";
464
- type: "resolve";
465
443
  value: string;
466
444
  }, {
467
445
  kind: "version";
468
- type: "resolve";
469
446
  value: string;
470
447
  }>, z.ZodObject<{
471
- type: z.ZodLiteral<"resolve">;
472
448
  kind: z.ZodLiteral<"jar">;
473
449
  value: z.ZodString;
474
450
  }, "strip", z.ZodTypeAny, {
475
451
  kind: "jar";
476
- type: "resolve";
477
452
  value: string;
478
453
  }, {
479
454
  kind: "jar";
480
- type: "resolve";
481
455
  value: string;
482
456
  }>, z.ZodObject<{
483
- type: z.ZodLiteral<"resolve">;
484
457
  kind: z.ZodLiteral<"coordinate">;
485
458
  value: z.ZodString;
486
459
  }, "strip", z.ZodTypeAny, {
487
460
  kind: "coordinate";
488
- type: "resolve";
489
461
  value: string;
490
462
  }, {
491
463
  kind: "coordinate";
492
- type: "resolve";
493
464
  value: string;
494
465
  }>, z.ZodObject<{
495
- type: z.ZodLiteral<"resolve">;
496
466
  kind: z.ZodLiteral<"workspace">;
497
467
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
498
468
  strict: z.ZodOptional<z.ZodBoolean>;
499
469
  }, "strip", z.ZodTypeAny, {
500
470
  kind: "workspace";
501
- type: "resolve";
502
471
  scope?: "vanilla" | "merged" | "loader" | undefined;
503
472
  strict?: boolean | undefined;
504
473
  }, {
505
474
  kind: "workspace";
506
- type: "resolve";
507
475
  scope?: "vanilla" | "merged" | "loader" | undefined;
508
476
  strict?: boolean | undefined;
509
477
  }>, z.ZodObject<{
510
- type: z.ZodLiteral<"resolve">;
511
478
  kind: z.ZodLiteral<"dependency">;
512
479
  group: z.ZodString;
513
480
  name: z.ZodString;
@@ -517,16 +484,23 @@ export declare const getClassSourceShape: {
517
484
  name: string;
518
485
  kind: "dependency";
519
486
  group: string;
520
- type: "resolve";
521
487
  version?: string | undefined;
522
488
  versionFromProject?: boolean | undefined;
523
489
  }, {
524
490
  name: string;
525
491
  kind: "dependency";
526
492
  group: string;
527
- type: "resolve";
528
493
  version?: string | undefined;
529
494
  versionFromProject?: boolean | undefined;
495
+ }>, z.ZodObject<{
496
+ kind: z.ZodLiteral<"artifact">;
497
+ artifactId: z.ZodString;
498
+ }, "strip", z.ZodTypeAny, {
499
+ kind: "artifact";
500
+ artifactId: string;
501
+ }, {
502
+ kind: "artifact";
503
+ artifactId: string;
530
504
  }>]>;
531
505
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
532
506
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
@@ -541,73 +515,53 @@ export declare const getClassSourceShape: {
541
515
  maxLines: z.ZodOptional<z.ZodNumber>;
542
516
  maxChars: z.ZodOptional<z.ZodNumber>;
543
517
  outputFile: z.ZodOptional<z.ZodString>;
544
- compact: z.ZodDefault<z.ZodBoolean>;
518
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
519
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
520
+ includeProvenance: z.ZodDefault<z.ZodBoolean>;
545
521
  };
546
522
  export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
547
523
  className: z.ZodString;
548
524
  mode: z.ZodDefault<z.ZodEnum<["metadata", "snippet", "full"]>>;
549
- target: z.ZodUnion<[z.ZodObject<{
550
- type: z.ZodLiteral<"artifact">;
551
- artifactId: z.ZodString;
552
- }, "strip", z.ZodTypeAny, {
553
- artifactId: string;
554
- type: "artifact";
555
- }, {
556
- artifactId: string;
557
- type: "artifact";
558
- }>, z.ZodObject<{
559
- type: z.ZodLiteral<"resolve">;
525
+ target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
560
526
  kind: z.ZodLiteral<"version">;
561
527
  value: z.ZodString;
562
528
  }, "strip", z.ZodTypeAny, {
563
529
  kind: "version";
564
- type: "resolve";
565
530
  value: string;
566
531
  }, {
567
532
  kind: "version";
568
- type: "resolve";
569
533
  value: string;
570
534
  }>, z.ZodObject<{
571
- type: z.ZodLiteral<"resolve">;
572
535
  kind: z.ZodLiteral<"jar">;
573
536
  value: z.ZodString;
574
537
  }, "strip", z.ZodTypeAny, {
575
538
  kind: "jar";
576
- type: "resolve";
577
539
  value: string;
578
540
  }, {
579
541
  kind: "jar";
580
- type: "resolve";
581
542
  value: string;
582
543
  }>, z.ZodObject<{
583
- type: z.ZodLiteral<"resolve">;
584
544
  kind: z.ZodLiteral<"coordinate">;
585
545
  value: z.ZodString;
586
546
  }, "strip", z.ZodTypeAny, {
587
547
  kind: "coordinate";
588
- type: "resolve";
589
548
  value: string;
590
549
  }, {
591
550
  kind: "coordinate";
592
- type: "resolve";
593
551
  value: string;
594
552
  }>, z.ZodObject<{
595
- type: z.ZodLiteral<"resolve">;
596
553
  kind: z.ZodLiteral<"workspace">;
597
554
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
598
555
  strict: z.ZodOptional<z.ZodBoolean>;
599
556
  }, "strip", z.ZodTypeAny, {
600
557
  kind: "workspace";
601
- type: "resolve";
602
558
  scope?: "vanilla" | "merged" | "loader" | undefined;
603
559
  strict?: boolean | undefined;
604
560
  }, {
605
561
  kind: "workspace";
606
- type: "resolve";
607
562
  scope?: "vanilla" | "merged" | "loader" | undefined;
608
563
  strict?: boolean | undefined;
609
564
  }>, z.ZodObject<{
610
- type: z.ZodLiteral<"resolve">;
611
565
  kind: z.ZodLiteral<"dependency">;
612
566
  group: z.ZodString;
613
567
  name: z.ZodString;
@@ -617,16 +571,23 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
617
571
  name: string;
618
572
  kind: "dependency";
619
573
  group: string;
620
- type: "resolve";
621
574
  version?: string | undefined;
622
575
  versionFromProject?: boolean | undefined;
623
576
  }, {
624
577
  name: string;
625
578
  kind: "dependency";
626
579
  group: string;
627
- type: "resolve";
628
580
  version?: string | undefined;
629
581
  versionFromProject?: boolean | undefined;
582
+ }>, z.ZodObject<{
583
+ kind: z.ZodLiteral<"artifact">;
584
+ artifactId: z.ZodString;
585
+ }, "strip", z.ZodTypeAny, {
586
+ kind: "artifact";
587
+ artifactId: string;
588
+ }, {
589
+ kind: "artifact";
590
+ artifactId: string;
630
591
  }>]>;
631
592
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
632
593
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
@@ -641,252 +602,220 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
641
602
  maxLines: z.ZodOptional<z.ZodNumber>;
642
603
  maxChars: z.ZodOptional<z.ZodNumber>;
643
604
  outputFile: z.ZodOptional<z.ZodString>;
644
- compact: z.ZodDefault<z.ZodBoolean>;
605
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
606
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
607
+ includeProvenance: z.ZodDefault<z.ZodBoolean>;
645
608
  }, "strip", z.ZodTypeAny, {
646
- compact: boolean;
609
+ allowDecompile: boolean;
610
+ mode: "full" | "metadata" | "snippet";
647
611
  className: string;
648
- mode: "metadata" | "full" | "snippet";
649
612
  target: {
650
- artifactId: string;
651
- type: "artifact";
613
+ kind: "workspace";
614
+ scope?: "vanilla" | "merged" | "loader" | undefined;
615
+ strict?: boolean | undefined;
616
+ } | {
617
+ name: string;
618
+ kind: "dependency";
619
+ group: string;
620
+ version?: string | undefined;
621
+ versionFromProject?: boolean | undefined;
652
622
  } | {
653
623
  kind: "version";
654
- type: "resolve";
655
624
  value: string;
656
625
  } | {
657
626
  kind: "jar";
658
- type: "resolve";
659
627
  value: string;
660
628
  } | {
661
629
  kind: "coordinate";
662
- type: "resolve";
663
630
  value: string;
664
631
  } | {
665
- kind: "workspace";
666
- type: "resolve";
667
- scope?: "vanilla" | "merged" | "loader" | undefined;
668
- strict?: boolean | undefined;
669
- } | {
670
- name: string;
671
- kind: "dependency";
672
- group: string;
673
- type: "resolve";
674
- version?: string | undefined;
675
- versionFromProject?: boolean | undefined;
632
+ kind: "artifact";
633
+ artifactId: string;
676
634
  };
677
- allowDecompile: boolean;
635
+ detail: "summary" | "standard" | "full";
636
+ includeProvenance: boolean;
678
637
  projectPath?: string | undefined;
679
638
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
680
639
  scope?: "vanilla" | "merged" | "loader" | undefined;
640
+ preferProjectVersion?: boolean | undefined;
641
+ strictVersion?: boolean | undefined;
642
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
643
+ outputFile?: string | undefined;
681
644
  startLine?: number | undefined;
682
645
  endLine?: number | undefined;
683
646
  maxLines?: number | undefined;
684
647
  maxChars?: number | undefined;
648
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
685
649
  gradleUserHome?: string | undefined;
686
- sourcePriority?: "loom-first" | "maven-first" | undefined;
687
- preferProjectVersion?: boolean | undefined;
688
- strictVersion?: boolean | undefined;
689
- outputFile?: string | undefined;
690
650
  }, {
691
651
  className: string;
692
652
  target: {
693
- artifactId: string;
694
- type: "artifact";
653
+ kind: "workspace";
654
+ scope?: "vanilla" | "merged" | "loader" | undefined;
655
+ strict?: boolean | undefined;
656
+ } | {
657
+ name: string;
658
+ kind: "dependency";
659
+ group: string;
660
+ version?: string | undefined;
661
+ versionFromProject?: boolean | undefined;
695
662
  } | {
696
663
  kind: "version";
697
- type: "resolve";
698
664
  value: string;
699
665
  } | {
700
666
  kind: "jar";
701
- type: "resolve";
702
667
  value: string;
703
668
  } | {
704
669
  kind: "coordinate";
705
- type: "resolve";
706
670
  value: string;
707
671
  } | {
708
- kind: "workspace";
709
- type: "resolve";
710
- scope?: "vanilla" | "merged" | "loader" | undefined;
711
- strict?: boolean | undefined;
712
- } | {
713
- name: string;
714
- kind: "dependency";
715
- group: string;
716
- type: "resolve";
717
- version?: string | undefined;
718
- versionFromProject?: boolean | undefined;
672
+ kind: "artifact";
673
+ artifactId: string;
719
674
  };
720
675
  projectPath?: string | undefined;
721
676
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
722
677
  scope?: "vanilla" | "merged" | "loader" | undefined;
678
+ allowDecompile?: boolean | undefined;
679
+ preferProjectVersion?: boolean | undefined;
680
+ strictVersion?: boolean | undefined;
681
+ mode?: "full" | "metadata" | "snippet" | undefined;
682
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
683
+ outputFile?: string | undefined;
723
684
  startLine?: number | undefined;
724
685
  endLine?: number | undefined;
725
686
  maxLines?: number | undefined;
726
687
  maxChars?: number | undefined;
727
- compact?: boolean | undefined;
688
+ detail?: "summary" | "standard" | "full" | undefined;
689
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
728
690
  gradleUserHome?: string | undefined;
729
- sourcePriority?: "loom-first" | "maven-first" | undefined;
730
- mode?: "metadata" | "full" | "snippet" | undefined;
731
- preferProjectVersion?: boolean | undefined;
732
- strictVersion?: boolean | undefined;
733
- outputFile?: string | undefined;
734
- allowDecompile?: boolean | undefined;
691
+ includeProvenance?: boolean | undefined;
735
692
  }>, {
736
- compact: boolean;
693
+ allowDecompile: boolean;
694
+ mode: "full" | "metadata" | "snippet";
737
695
  className: string;
738
- mode: "metadata" | "full" | "snippet";
739
696
  target: {
740
- artifactId: string;
741
- type: "artifact";
697
+ kind: "workspace";
698
+ scope?: "vanilla" | "merged" | "loader" | undefined;
699
+ strict?: boolean | undefined;
700
+ } | {
701
+ name: string;
702
+ kind: "dependency";
703
+ group: string;
704
+ version?: string | undefined;
705
+ versionFromProject?: boolean | undefined;
742
706
  } | {
743
707
  kind: "version";
744
- type: "resolve";
745
708
  value: string;
746
709
  } | {
747
710
  kind: "jar";
748
- type: "resolve";
749
711
  value: string;
750
712
  } | {
751
713
  kind: "coordinate";
752
- type: "resolve";
753
714
  value: string;
754
715
  } | {
755
- kind: "workspace";
756
- type: "resolve";
757
- scope?: "vanilla" | "merged" | "loader" | undefined;
758
- strict?: boolean | undefined;
759
- } | {
760
- name: string;
761
- kind: "dependency";
762
- group: string;
763
- type: "resolve";
764
- version?: string | undefined;
765
- versionFromProject?: boolean | undefined;
716
+ kind: "artifact";
717
+ artifactId: string;
766
718
  };
767
- allowDecompile: boolean;
719
+ detail: "summary" | "standard" | "full";
720
+ includeProvenance: boolean;
768
721
  projectPath?: string | undefined;
769
722
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
770
723
  scope?: "vanilla" | "merged" | "loader" | undefined;
724
+ preferProjectVersion?: boolean | undefined;
725
+ strictVersion?: boolean | undefined;
726
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
727
+ outputFile?: string | undefined;
771
728
  startLine?: number | undefined;
772
729
  endLine?: number | undefined;
773
730
  maxLines?: number | undefined;
774
731
  maxChars?: number | undefined;
732
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
775
733
  gradleUserHome?: string | undefined;
776
- sourcePriority?: "loom-first" | "maven-first" | undefined;
777
- preferProjectVersion?: boolean | undefined;
778
- strictVersion?: boolean | undefined;
779
- outputFile?: string | undefined;
780
734
  }, {
781
735
  className: string;
782
736
  target: {
783
- artifactId: string;
784
- type: "artifact";
737
+ kind: "workspace";
738
+ scope?: "vanilla" | "merged" | "loader" | undefined;
739
+ strict?: boolean | undefined;
740
+ } | {
741
+ name: string;
742
+ kind: "dependency";
743
+ group: string;
744
+ version?: string | undefined;
745
+ versionFromProject?: boolean | undefined;
785
746
  } | {
786
747
  kind: "version";
787
- type: "resolve";
788
748
  value: string;
789
749
  } | {
790
750
  kind: "jar";
791
- type: "resolve";
792
751
  value: string;
793
752
  } | {
794
753
  kind: "coordinate";
795
- type: "resolve";
796
754
  value: string;
797
755
  } | {
798
- kind: "workspace";
799
- type: "resolve";
800
- scope?: "vanilla" | "merged" | "loader" | undefined;
801
- strict?: boolean | undefined;
802
- } | {
803
- name: string;
804
- kind: "dependency";
805
- group: string;
806
- type: "resolve";
807
- version?: string | undefined;
808
- versionFromProject?: boolean | undefined;
756
+ kind: "artifact";
757
+ artifactId: string;
809
758
  };
810
759
  projectPath?: string | undefined;
811
760
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
812
761
  scope?: "vanilla" | "merged" | "loader" | undefined;
762
+ allowDecompile?: boolean | undefined;
763
+ preferProjectVersion?: boolean | undefined;
764
+ strictVersion?: boolean | undefined;
765
+ mode?: "full" | "metadata" | "snippet" | undefined;
766
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
767
+ outputFile?: string | undefined;
813
768
  startLine?: number | undefined;
814
769
  endLine?: number | undefined;
815
770
  maxLines?: number | undefined;
816
771
  maxChars?: number | undefined;
817
- compact?: boolean | undefined;
772
+ detail?: "summary" | "standard" | "full" | undefined;
773
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
818
774
  gradleUserHome?: string | undefined;
819
- sourcePriority?: "loom-first" | "maven-first" | undefined;
820
- mode?: "metadata" | "full" | "snippet" | undefined;
821
- preferProjectVersion?: boolean | undefined;
822
- strictVersion?: boolean | undefined;
823
- outputFile?: string | undefined;
824
- allowDecompile?: boolean | undefined;
775
+ includeProvenance?: boolean | undefined;
825
776
  }>;
826
777
  export declare const getClassMembersShape: {
827
778
  className: z.ZodString;
828
- target: z.ZodUnion<[z.ZodObject<{
829
- type: z.ZodLiteral<"artifact">;
830
- artifactId: z.ZodString;
831
- }, "strip", z.ZodTypeAny, {
832
- artifactId: string;
833
- type: "artifact";
834
- }, {
835
- artifactId: string;
836
- type: "artifact";
837
- }>, z.ZodObject<{
838
- type: z.ZodLiteral<"resolve">;
779
+ target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
839
780
  kind: z.ZodLiteral<"version">;
840
781
  value: z.ZodString;
841
782
  }, "strip", z.ZodTypeAny, {
842
783
  kind: "version";
843
- type: "resolve";
844
784
  value: string;
845
785
  }, {
846
786
  kind: "version";
847
- type: "resolve";
848
787
  value: string;
849
788
  }>, z.ZodObject<{
850
- type: z.ZodLiteral<"resolve">;
851
789
  kind: z.ZodLiteral<"jar">;
852
790
  value: z.ZodString;
853
791
  }, "strip", z.ZodTypeAny, {
854
792
  kind: "jar";
855
- type: "resolve";
856
793
  value: string;
857
794
  }, {
858
795
  kind: "jar";
859
- type: "resolve";
860
796
  value: string;
861
797
  }>, z.ZodObject<{
862
- type: z.ZodLiteral<"resolve">;
863
798
  kind: z.ZodLiteral<"coordinate">;
864
799
  value: z.ZodString;
865
800
  }, "strip", z.ZodTypeAny, {
866
801
  kind: "coordinate";
867
- type: "resolve";
868
802
  value: string;
869
803
  }, {
870
804
  kind: "coordinate";
871
- type: "resolve";
872
805
  value: string;
873
806
  }>, z.ZodObject<{
874
- type: z.ZodLiteral<"resolve">;
875
807
  kind: z.ZodLiteral<"workspace">;
876
808
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
877
809
  strict: z.ZodOptional<z.ZodBoolean>;
878
810
  }, "strip", z.ZodTypeAny, {
879
811
  kind: "workspace";
880
- type: "resolve";
881
812
  scope?: "vanilla" | "merged" | "loader" | undefined;
882
813
  strict?: boolean | undefined;
883
814
  }, {
884
815
  kind: "workspace";
885
- type: "resolve";
886
816
  scope?: "vanilla" | "merged" | "loader" | undefined;
887
817
  strict?: boolean | undefined;
888
818
  }>, z.ZodObject<{
889
- type: z.ZodLiteral<"resolve">;
890
819
  kind: z.ZodLiteral<"dependency">;
891
820
  group: z.ZodString;
892
821
  name: z.ZodString;
@@ -896,16 +825,23 @@ export declare const getClassMembersShape: {
896
825
  name: string;
897
826
  kind: "dependency";
898
827
  group: string;
899
- type: "resolve";
900
828
  version?: string | undefined;
901
829
  versionFromProject?: boolean | undefined;
902
830
  }, {
903
831
  name: string;
904
832
  kind: "dependency";
905
833
  group: string;
906
- type: "resolve";
907
834
  version?: string | undefined;
908
835
  versionFromProject?: boolean | undefined;
836
+ }>, z.ZodObject<{
837
+ kind: z.ZodLiteral<"artifact">;
838
+ artifactId: z.ZodString;
839
+ }, "strip", z.ZodTypeAny, {
840
+ kind: "artifact";
841
+ artifactId: string;
842
+ }, {
843
+ kind: "artifact";
844
+ artifactId: string;
909
845
  }>]>;
910
846
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
911
847
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
@@ -915,77 +851,59 @@ export declare const getClassMembersShape: {
915
851
  includeInherited: z.ZodDefault<z.ZodBoolean>;
916
852
  memberPattern: z.ZodOptional<z.ZodString>;
917
853
  maxMembers: z.ZodOptional<z.ZodNumber>;
854
+ cursor: z.ZodOptional<z.ZodString>;
918
855
  projectPath: z.ZodOptional<z.ZodString>;
919
856
  gradleUserHome: z.ZodOptional<z.ZodString>;
920
857
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
921
858
  preferProjectVersion: z.ZodOptional<z.ZodBoolean>;
922
859
  strictVersion: z.ZodOptional<z.ZodBoolean>;
923
- compact: z.ZodDefault<z.ZodBoolean>;
860
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
861
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
862
+ includeProvenance: z.ZodDefault<z.ZodBoolean>;
863
+ includeDescriptors: z.ZodDefault<z.ZodBoolean>;
924
864
  };
925
865
  export declare const getClassMembersSchema: z.ZodObject<{
926
866
  className: z.ZodString;
927
- target: z.ZodUnion<[z.ZodObject<{
928
- type: z.ZodLiteral<"artifact">;
929
- artifactId: z.ZodString;
930
- }, "strip", z.ZodTypeAny, {
931
- artifactId: string;
932
- type: "artifact";
933
- }, {
934
- artifactId: string;
935
- type: "artifact";
936
- }>, z.ZodObject<{
937
- type: z.ZodLiteral<"resolve">;
867
+ target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
938
868
  kind: z.ZodLiteral<"version">;
939
869
  value: z.ZodString;
940
870
  }, "strip", z.ZodTypeAny, {
941
871
  kind: "version";
942
- type: "resolve";
943
872
  value: string;
944
873
  }, {
945
874
  kind: "version";
946
- type: "resolve";
947
875
  value: string;
948
876
  }>, z.ZodObject<{
949
- type: z.ZodLiteral<"resolve">;
950
877
  kind: z.ZodLiteral<"jar">;
951
878
  value: z.ZodString;
952
879
  }, "strip", z.ZodTypeAny, {
953
880
  kind: "jar";
954
- type: "resolve";
955
881
  value: string;
956
882
  }, {
957
883
  kind: "jar";
958
- type: "resolve";
959
884
  value: string;
960
885
  }>, z.ZodObject<{
961
- type: z.ZodLiteral<"resolve">;
962
886
  kind: z.ZodLiteral<"coordinate">;
963
887
  value: z.ZodString;
964
888
  }, "strip", z.ZodTypeAny, {
965
889
  kind: "coordinate";
966
- type: "resolve";
967
890
  value: string;
968
891
  }, {
969
892
  kind: "coordinate";
970
- type: "resolve";
971
893
  value: string;
972
894
  }>, z.ZodObject<{
973
- type: z.ZodLiteral<"resolve">;
974
895
  kind: z.ZodLiteral<"workspace">;
975
896
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
976
897
  strict: z.ZodOptional<z.ZodBoolean>;
977
898
  }, "strip", z.ZodTypeAny, {
978
899
  kind: "workspace";
979
- type: "resolve";
980
900
  scope?: "vanilla" | "merged" | "loader" | undefined;
981
901
  strict?: boolean | undefined;
982
902
  }, {
983
903
  kind: "workspace";
984
- type: "resolve";
985
904
  scope?: "vanilla" | "merged" | "loader" | undefined;
986
905
  strict?: boolean | undefined;
987
906
  }>, z.ZodObject<{
988
- type: z.ZodLiteral<"resolve">;
989
907
  kind: z.ZodLiteral<"dependency">;
990
908
  group: z.ZodString;
991
909
  name: z.ZodString;
@@ -995,16 +913,23 @@ export declare const getClassMembersSchema: z.ZodObject<{
995
913
  name: string;
996
914
  kind: "dependency";
997
915
  group: string;
998
- type: "resolve";
999
916
  version?: string | undefined;
1000
917
  versionFromProject?: boolean | undefined;
1001
918
  }, {
1002
919
  name: string;
1003
920
  kind: "dependency";
1004
921
  group: string;
1005
- type: "resolve";
1006
922
  version?: string | undefined;
1007
923
  versionFromProject?: boolean | undefined;
924
+ }>, z.ZodObject<{
925
+ kind: z.ZodLiteral<"artifact">;
926
+ artifactId: z.ZodString;
927
+ }, "strip", z.ZodTypeAny, {
928
+ kind: "artifact";
929
+ artifactId: string;
930
+ }, {
931
+ kind: "artifact";
932
+ artifactId: string;
1008
933
  }>]>;
1009
934
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
1010
935
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
@@ -1014,105 +939,107 @@ export declare const getClassMembersSchema: z.ZodObject<{
1014
939
  includeInherited: z.ZodDefault<z.ZodBoolean>;
1015
940
  memberPattern: z.ZodOptional<z.ZodString>;
1016
941
  maxMembers: z.ZodOptional<z.ZodNumber>;
942
+ cursor: z.ZodOptional<z.ZodString>;
1017
943
  projectPath: z.ZodOptional<z.ZodString>;
1018
944
  gradleUserHome: z.ZodOptional<z.ZodString>;
1019
945
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
1020
946
  preferProjectVersion: z.ZodOptional<z.ZodBoolean>;
1021
947
  strictVersion: z.ZodOptional<z.ZodBoolean>;
1022
- compact: z.ZodDefault<z.ZodBoolean>;
948
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
949
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
950
+ includeProvenance: z.ZodDefault<z.ZodBoolean>;
951
+ includeDescriptors: z.ZodDefault<z.ZodBoolean>;
1023
952
  }, "strip", z.ZodTypeAny, {
1024
- compact: boolean;
953
+ allowDecompile: boolean;
954
+ access: "public" | "all";
955
+ includeSynthetic: boolean;
956
+ includeInherited: boolean;
1025
957
  className: string;
1026
958
  target: {
1027
- artifactId: string;
1028
- type: "artifact";
959
+ kind: "workspace";
960
+ scope?: "vanilla" | "merged" | "loader" | undefined;
961
+ strict?: boolean | undefined;
962
+ } | {
963
+ name: string;
964
+ kind: "dependency";
965
+ group: string;
966
+ version?: string | undefined;
967
+ versionFromProject?: boolean | undefined;
1029
968
  } | {
1030
969
  kind: "version";
1031
- type: "resolve";
1032
970
  value: string;
1033
971
  } | {
1034
972
  kind: "jar";
1035
- type: "resolve";
1036
973
  value: string;
1037
974
  } | {
1038
975
  kind: "coordinate";
1039
- type: "resolve";
1040
976
  value: string;
1041
977
  } | {
1042
- kind: "workspace";
1043
- type: "resolve";
1044
- scope?: "vanilla" | "merged" | "loader" | undefined;
1045
- strict?: boolean | undefined;
1046
- } | {
1047
- name: string;
1048
- kind: "dependency";
1049
- group: string;
1050
- type: "resolve";
1051
- version?: string | undefined;
1052
- versionFromProject?: boolean | undefined;
978
+ kind: "artifact";
979
+ artifactId: string;
1053
980
  };
1054
- access: "public" | "all";
1055
- includeSynthetic: boolean;
1056
- includeInherited: boolean;
1057
- allowDecompile: boolean;
981
+ detail: "summary" | "standard" | "full";
982
+ includeProvenance: boolean;
983
+ includeDescriptors: boolean;
1058
984
  projectPath?: string | undefined;
1059
985
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1060
986
  scope?: "vanilla" | "merged" | "loader" | undefined;
1061
987
  maxMembers?: number | undefined;
1062
- gradleUserHome?: string | undefined;
1063
- sourcePriority?: "loom-first" | "maven-first" | undefined;
988
+ cursor?: string | undefined;
1064
989
  preferProjectVersion?: boolean | undefined;
1065
990
  strictVersion?: boolean | undefined;
991
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1066
992
  memberPattern?: string | undefined;
993
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
994
+ gradleUserHome?: string | undefined;
1067
995
  }, {
1068
996
  className: string;
1069
997
  target: {
1070
- artifactId: string;
1071
- type: "artifact";
998
+ kind: "workspace";
999
+ scope?: "vanilla" | "merged" | "loader" | undefined;
1000
+ strict?: boolean | undefined;
1001
+ } | {
1002
+ name: string;
1003
+ kind: "dependency";
1004
+ group: string;
1005
+ version?: string | undefined;
1006
+ versionFromProject?: boolean | undefined;
1072
1007
  } | {
1073
1008
  kind: "version";
1074
- type: "resolve";
1075
1009
  value: string;
1076
1010
  } | {
1077
1011
  kind: "jar";
1078
- type: "resolve";
1079
1012
  value: string;
1080
1013
  } | {
1081
1014
  kind: "coordinate";
1082
- type: "resolve";
1083
1015
  value: string;
1084
1016
  } | {
1085
- kind: "workspace";
1086
- type: "resolve";
1087
- scope?: "vanilla" | "merged" | "loader" | undefined;
1088
- strict?: boolean | undefined;
1089
- } | {
1090
- name: string;
1091
- kind: "dependency";
1092
- group: string;
1093
- type: "resolve";
1094
- version?: string | undefined;
1095
- versionFromProject?: boolean | undefined;
1017
+ kind: "artifact";
1018
+ artifactId: string;
1096
1019
  };
1097
1020
  projectPath?: string | undefined;
1098
1021
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1099
1022
  scope?: "vanilla" | "merged" | "loader" | undefined;
1100
1023
  maxMembers?: number | undefined;
1101
- compact?: boolean | undefined;
1102
- gradleUserHome?: string | undefined;
1103
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1024
+ cursor?: string | undefined;
1025
+ allowDecompile?: boolean | undefined;
1104
1026
  preferProjectVersion?: boolean | undefined;
1105
- access?: "public" | "all" | undefined;
1106
1027
  strictVersion?: boolean | undefined;
1028
+ access?: "public" | "all" | undefined;
1107
1029
  includeSynthetic?: boolean | undefined;
1108
1030
  includeInherited?: boolean | undefined;
1031
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1109
1032
  memberPattern?: string | undefined;
1110
- allowDecompile?: boolean | undefined;
1033
+ detail?: "summary" | "standard" | "full" | undefined;
1034
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
1035
+ gradleUserHome?: string | undefined;
1036
+ includeProvenance?: boolean | undefined;
1037
+ includeDescriptors?: boolean | undefined;
1111
1038
  }>;
1112
1039
  export declare const verifyMixinTargetMemberSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1113
1040
  kind: z.ZodLiteral<"method">;
1114
1041
  name: z.ZodString;
1115
- descriptor: z.ZodOptional<z.ZodString>;
1042
+ descriptor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1116
1043
  }, "strip", z.ZodTypeAny, {
1117
1044
  name: string;
1118
1045
  kind: "method";
@@ -1124,7 +1051,7 @@ export declare const verifyMixinTargetMemberSchema: z.ZodDiscriminatedUnion<"kin
1124
1051
  }>, z.ZodObject<{
1125
1052
  kind: z.ZodLiteral<"field">;
1126
1053
  name: z.ZodString;
1127
- descriptor: z.ZodOptional<z.ZodString>;
1054
+ descriptor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1128
1055
  }, "strip", z.ZodTypeAny, {
1129
1056
  name: string;
1130
1057
  kind: "field";
@@ -1139,7 +1066,7 @@ export declare const verifyMixinTargetShape: {
1139
1066
  member: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1140
1067
  kind: z.ZodLiteral<"method">;
1141
1068
  name: z.ZodString;
1142
- descriptor: z.ZodOptional<z.ZodString>;
1069
+ descriptor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1143
1070
  }, "strip", z.ZodTypeAny, {
1144
1071
  name: string;
1145
1072
  kind: "method";
@@ -1151,7 +1078,7 @@ export declare const verifyMixinTargetShape: {
1151
1078
  }>, z.ZodObject<{
1152
1079
  kind: z.ZodLiteral<"field">;
1153
1080
  name: z.ZodString;
1154
- descriptor: z.ZodOptional<z.ZodString>;
1081
+ descriptor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1155
1082
  }, "strip", z.ZodTypeAny, {
1156
1083
  name: string;
1157
1084
  kind: "field";
@@ -1163,6 +1090,7 @@ export declare const verifyMixinTargetShape: {
1163
1090
  }>]>;
1164
1091
  mixinMemberName: z.ZodOptional<z.ZodString>;
1165
1092
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
1093
+ autoRemap: z.ZodOptional<z.ZodBoolean>;
1166
1094
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
1167
1095
  projectPath: z.ZodOptional<z.ZodString>;
1168
1096
  gradleUserHome: z.ZodOptional<z.ZodString>;
@@ -1233,7 +1161,7 @@ export declare const verifyMixinTargetSchema: z.ZodObject<{
1233
1161
  member: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1234
1162
  kind: z.ZodLiteral<"method">;
1235
1163
  name: z.ZodString;
1236
- descriptor: z.ZodOptional<z.ZodString>;
1164
+ descriptor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1237
1165
  }, "strip", z.ZodTypeAny, {
1238
1166
  name: string;
1239
1167
  kind: "method";
@@ -1245,7 +1173,7 @@ export declare const verifyMixinTargetSchema: z.ZodObject<{
1245
1173
  }>, z.ZodObject<{
1246
1174
  kind: z.ZodLiteral<"field">;
1247
1175
  name: z.ZodString;
1248
- descriptor: z.ZodOptional<z.ZodString>;
1176
+ descriptor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
1249
1177
  }, "strip", z.ZodTypeAny, {
1250
1178
  name: string;
1251
1179
  kind: "field";
@@ -1257,6 +1185,7 @@ export declare const verifyMixinTargetSchema: z.ZodObject<{
1257
1185
  }>]>;
1258
1186
  mixinMemberName: z.ZodOptional<z.ZodString>;
1259
1187
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
1188
+ autoRemap: z.ZodOptional<z.ZodBoolean>;
1260
1189
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
1261
1190
  projectPath: z.ZodOptional<z.ZodString>;
1262
1191
  gradleUserHome: z.ZodOptional<z.ZodString>;
@@ -1355,11 +1284,12 @@ export declare const verifyMixinTargetSchema: z.ZodObject<{
1355
1284
  projectPath?: string | undefined;
1356
1285
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1357
1286
  scope?: "vanilla" | "merged" | "loader" | undefined;
1358
- gradleUserHome?: string | undefined;
1359
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1360
1287
  preferProjectVersion?: boolean | undefined;
1361
1288
  strictVersion?: boolean | undefined;
1289
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1290
+ gradleUserHome?: string | undefined;
1362
1291
  mixinMemberName?: string | undefined;
1292
+ autoRemap?: boolean | undefined;
1363
1293
  }, {
1364
1294
  owner: string;
1365
1295
  target: {
@@ -1394,11 +1324,12 @@ export declare const verifyMixinTargetSchema: z.ZodObject<{
1394
1324
  projectPath?: string | undefined;
1395
1325
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1396
1326
  scope?: "vanilla" | "merged" | "loader" | undefined;
1397
- gradleUserHome?: string | undefined;
1398
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1399
1327
  preferProjectVersion?: boolean | undefined;
1400
1328
  strictVersion?: boolean | undefined;
1329
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1330
+ gradleUserHome?: string | undefined;
1401
1331
  mixinMemberName?: string | undefined;
1332
+ autoRemap?: boolean | undefined;
1402
1333
  }>;
1403
1334
  export declare const batchSymbolKindSchema: z.ZodEnum<["class", "field", "method"]>;
1404
1335
  export declare const batchClassSourceEntrySchema: z.ZodObject<{
@@ -1411,20 +1342,20 @@ export declare const batchClassSourceEntrySchema: z.ZodObject<{
1411
1342
  outputFile: z.ZodOptional<z.ZodString>;
1412
1343
  }, "strip", z.ZodTypeAny, {
1413
1344
  className: string;
1345
+ mode?: "full" | "metadata" | "snippet" | undefined;
1346
+ outputFile?: string | undefined;
1414
1347
  startLine?: number | undefined;
1415
1348
  endLine?: number | undefined;
1416
1349
  maxLines?: number | undefined;
1417
1350
  maxChars?: number | undefined;
1418
- mode?: "metadata" | "full" | "snippet" | undefined;
1419
- outputFile?: string | undefined;
1420
1351
  }, {
1421
1352
  className: string;
1353
+ mode?: "full" | "metadata" | "snippet" | undefined;
1354
+ outputFile?: string | undefined;
1422
1355
  startLine?: number | undefined;
1423
1356
  endLine?: number | undefined;
1424
1357
  maxLines?: number | undefined;
1425
1358
  maxChars?: number | undefined;
1426
- mode?: "metadata" | "full" | "snippet" | undefined;
1427
- outputFile?: string | undefined;
1428
1359
  }>;
1429
1360
  export declare const batchClassSourceShape: {
1430
1361
  target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
@@ -1495,7 +1426,8 @@ export declare const batchClassSourceShape: {
1495
1426
  strictVersion: z.ZodOptional<z.ZodBoolean>;
1496
1427
  concurrency: z.ZodOptional<z.ZodNumber>;
1497
1428
  failFast: z.ZodOptional<z.ZodBoolean>;
1498
- compact: z.ZodOptional<z.ZodBoolean>;
1429
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
1430
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
1499
1431
  entries: z.ZodArray<z.ZodObject<{
1500
1432
  className: z.ZodString;
1501
1433
  mode: z.ZodOptional<z.ZodEnum<["metadata", "snippet", "full"]>>;
@@ -1506,20 +1438,20 @@ export declare const batchClassSourceShape: {
1506
1438
  outputFile: z.ZodOptional<z.ZodString>;
1507
1439
  }, "strip", z.ZodTypeAny, {
1508
1440
  className: string;
1441
+ mode?: "full" | "metadata" | "snippet" | undefined;
1442
+ outputFile?: string | undefined;
1509
1443
  startLine?: number | undefined;
1510
1444
  endLine?: number | undefined;
1511
1445
  maxLines?: number | undefined;
1512
1446
  maxChars?: number | undefined;
1513
- mode?: "metadata" | "full" | "snippet" | undefined;
1514
- outputFile?: string | undefined;
1515
1447
  }, {
1516
1448
  className: string;
1449
+ mode?: "full" | "metadata" | "snippet" | undefined;
1450
+ outputFile?: string | undefined;
1517
1451
  startLine?: number | undefined;
1518
1452
  endLine?: number | undefined;
1519
1453
  maxLines?: number | undefined;
1520
1454
  maxChars?: number | undefined;
1521
- mode?: "metadata" | "full" | "snippet" | undefined;
1522
- outputFile?: string | undefined;
1523
1455
  }>, "many">;
1524
1456
  };
1525
1457
  export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
@@ -1591,7 +1523,8 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
1591
1523
  strictVersion: z.ZodOptional<z.ZodBoolean>;
1592
1524
  concurrency: z.ZodOptional<z.ZodNumber>;
1593
1525
  failFast: z.ZodOptional<z.ZodBoolean>;
1594
- compact: z.ZodOptional<z.ZodBoolean>;
1526
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
1527
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
1595
1528
  entries: z.ZodArray<z.ZodObject<{
1596
1529
  className: z.ZodString;
1597
1530
  mode: z.ZodOptional<z.ZodEnum<["metadata", "snippet", "full"]>>;
@@ -1602,30 +1535,30 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
1602
1535
  outputFile: z.ZodOptional<z.ZodString>;
1603
1536
  }, "strip", z.ZodTypeAny, {
1604
1537
  className: string;
1538
+ mode?: "full" | "metadata" | "snippet" | undefined;
1539
+ outputFile?: string | undefined;
1605
1540
  startLine?: number | undefined;
1606
1541
  endLine?: number | undefined;
1607
1542
  maxLines?: number | undefined;
1608
1543
  maxChars?: number | undefined;
1609
- mode?: "metadata" | "full" | "snippet" | undefined;
1610
- outputFile?: string | undefined;
1611
1544
  }, {
1612
1545
  className: string;
1546
+ mode?: "full" | "metadata" | "snippet" | undefined;
1547
+ outputFile?: string | undefined;
1613
1548
  startLine?: number | undefined;
1614
1549
  endLine?: number | undefined;
1615
1550
  maxLines?: number | undefined;
1616
1551
  maxChars?: number | undefined;
1617
- mode?: "metadata" | "full" | "snippet" | undefined;
1618
- outputFile?: string | undefined;
1619
1552
  }>, "many">;
1620
1553
  }, "strip", z.ZodTypeAny, {
1621
1554
  entries: {
1622
1555
  className: string;
1556
+ mode?: "full" | "metadata" | "snippet" | undefined;
1557
+ outputFile?: string | undefined;
1623
1558
  startLine?: number | undefined;
1624
1559
  endLine?: number | undefined;
1625
1560
  maxLines?: number | undefined;
1626
1561
  maxChars?: number | undefined;
1627
- mode?: "metadata" | "full" | "snippet" | undefined;
1628
- outputFile?: string | undefined;
1629
1562
  }[];
1630
1563
  target: {
1631
1564
  kind: "workspace";
@@ -1647,26 +1580,27 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
1647
1580
  kind: "coordinate";
1648
1581
  value: string;
1649
1582
  };
1583
+ detail: "summary" | "standard" | "full";
1650
1584
  projectPath?: string | undefined;
1651
1585
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1652
1586
  scope?: "vanilla" | "merged" | "loader" | undefined;
1653
- compact?: boolean | undefined;
1654
- gradleUserHome?: string | undefined;
1655
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1587
+ allowDecompile?: boolean | undefined;
1656
1588
  preferProjectVersion?: boolean | undefined;
1657
1589
  strictVersion?: boolean | undefined;
1658
- allowDecompile?: boolean | undefined;
1590
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1591
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
1592
+ gradleUserHome?: string | undefined;
1659
1593
  concurrency?: number | undefined;
1660
1594
  failFast?: boolean | undefined;
1661
1595
  }, {
1662
1596
  entries: {
1663
1597
  className: string;
1598
+ mode?: "full" | "metadata" | "snippet" | undefined;
1599
+ outputFile?: string | undefined;
1664
1600
  startLine?: number | undefined;
1665
1601
  endLine?: number | undefined;
1666
1602
  maxLines?: number | undefined;
1667
1603
  maxChars?: number | undefined;
1668
- mode?: "metadata" | "full" | "snippet" | undefined;
1669
- outputFile?: string | undefined;
1670
1604
  }[];
1671
1605
  target: {
1672
1606
  kind: "workspace";
@@ -1691,23 +1625,24 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
1691
1625
  projectPath?: string | undefined;
1692
1626
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1693
1627
  scope?: "vanilla" | "merged" | "loader" | undefined;
1694
- compact?: boolean | undefined;
1695
- gradleUserHome?: string | undefined;
1696
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1628
+ allowDecompile?: boolean | undefined;
1697
1629
  preferProjectVersion?: boolean | undefined;
1698
1630
  strictVersion?: boolean | undefined;
1699
- allowDecompile?: boolean | undefined;
1631
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1632
+ detail?: "summary" | "standard" | "full" | undefined;
1633
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
1634
+ gradleUserHome?: string | undefined;
1700
1635
  concurrency?: number | undefined;
1701
1636
  failFast?: boolean | undefined;
1702
1637
  }>, {
1703
1638
  entries: {
1704
1639
  className: string;
1640
+ mode?: "full" | "metadata" | "snippet" | undefined;
1641
+ outputFile?: string | undefined;
1705
1642
  startLine?: number | undefined;
1706
1643
  endLine?: number | undefined;
1707
1644
  maxLines?: number | undefined;
1708
1645
  maxChars?: number | undefined;
1709
- mode?: "metadata" | "full" | "snippet" | undefined;
1710
- outputFile?: string | undefined;
1711
1646
  }[];
1712
1647
  target: {
1713
1648
  kind: "workspace";
@@ -1729,26 +1664,27 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
1729
1664
  kind: "coordinate";
1730
1665
  value: string;
1731
1666
  };
1667
+ detail: "summary" | "standard" | "full";
1732
1668
  projectPath?: string | undefined;
1733
1669
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1734
1670
  scope?: "vanilla" | "merged" | "loader" | undefined;
1735
- compact?: boolean | undefined;
1736
- gradleUserHome?: string | undefined;
1737
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1671
+ allowDecompile?: boolean | undefined;
1738
1672
  preferProjectVersion?: boolean | undefined;
1739
1673
  strictVersion?: boolean | undefined;
1740
- allowDecompile?: boolean | undefined;
1674
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1675
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
1676
+ gradleUserHome?: string | undefined;
1741
1677
  concurrency?: number | undefined;
1742
1678
  failFast?: boolean | undefined;
1743
1679
  }, {
1744
1680
  entries: {
1745
1681
  className: string;
1682
+ mode?: "full" | "metadata" | "snippet" | undefined;
1683
+ outputFile?: string | undefined;
1746
1684
  startLine?: number | undefined;
1747
1685
  endLine?: number | undefined;
1748
1686
  maxLines?: number | undefined;
1749
1687
  maxChars?: number | undefined;
1750
- mode?: "metadata" | "full" | "snippet" | undefined;
1751
- outputFile?: string | undefined;
1752
1688
  }[];
1753
1689
  target: {
1754
1690
  kind: "workspace";
@@ -1773,12 +1709,13 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
1773
1709
  projectPath?: string | undefined;
1774
1710
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
1775
1711
  scope?: "vanilla" | "merged" | "loader" | undefined;
1776
- compact?: boolean | undefined;
1777
- gradleUserHome?: string | undefined;
1778
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1712
+ allowDecompile?: boolean | undefined;
1779
1713
  preferProjectVersion?: boolean | undefined;
1780
1714
  strictVersion?: boolean | undefined;
1781
- allowDecompile?: boolean | undefined;
1715
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1716
+ detail?: "summary" | "standard" | "full" | undefined;
1717
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
1718
+ gradleUserHome?: string | undefined;
1782
1719
  concurrency?: number | undefined;
1783
1720
  failFast?: boolean | undefined;
1784
1721
  }>;
@@ -1873,7 +1810,8 @@ export declare const batchClassMembersShape: {
1873
1810
  strictVersion: z.ZodOptional<z.ZodBoolean>;
1874
1811
  concurrency: z.ZodOptional<z.ZodNumber>;
1875
1812
  failFast: z.ZodOptional<z.ZodBoolean>;
1876
- compact: z.ZodOptional<z.ZodBoolean>;
1813
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
1814
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
1877
1815
  entries: z.ZodArray<z.ZodObject<{
1878
1816
  className: z.ZodString;
1879
1817
  access: z.ZodOptional<z.ZodEnum<["public", "all"]>>;
@@ -1966,7 +1904,8 @@ export declare const batchClassMembersSchema: z.ZodObject<{
1966
1904
  strictVersion: z.ZodOptional<z.ZodBoolean>;
1967
1905
  concurrency: z.ZodOptional<z.ZodNumber>;
1968
1906
  failFast: z.ZodOptional<z.ZodBoolean>;
1969
- compact: z.ZodOptional<z.ZodBoolean>;
1907
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
1908
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
1970
1909
  entries: z.ZodArray<z.ZodObject<{
1971
1910
  className: z.ZodString;
1972
1911
  access: z.ZodOptional<z.ZodEnum<["public", "all"]>>;
@@ -2018,15 +1957,16 @@ export declare const batchClassMembersSchema: z.ZodObject<{
2018
1957
  kind: "coordinate";
2019
1958
  value: string;
2020
1959
  };
1960
+ detail: "summary" | "standard" | "full";
2021
1961
  projectPath?: string | undefined;
2022
1962
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2023
1963
  scope?: "vanilla" | "merged" | "loader" | undefined;
2024
- compact?: boolean | undefined;
2025
- gradleUserHome?: string | undefined;
2026
- sourcePriority?: "loom-first" | "maven-first" | undefined;
1964
+ allowDecompile?: boolean | undefined;
2027
1965
  preferProjectVersion?: boolean | undefined;
2028
1966
  strictVersion?: boolean | undefined;
2029
- allowDecompile?: boolean | undefined;
1967
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
1968
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
1969
+ gradleUserHome?: string | undefined;
2030
1970
  concurrency?: number | undefined;
2031
1971
  failFast?: boolean | undefined;
2032
1972
  }, {
@@ -2061,12 +2001,13 @@ export declare const batchClassMembersSchema: z.ZodObject<{
2061
2001
  projectPath?: string | undefined;
2062
2002
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2063
2003
  scope?: "vanilla" | "merged" | "loader" | undefined;
2064
- compact?: boolean | undefined;
2065
- gradleUserHome?: string | undefined;
2066
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2004
+ allowDecompile?: boolean | undefined;
2067
2005
  preferProjectVersion?: boolean | undefined;
2068
2006
  strictVersion?: boolean | undefined;
2069
- allowDecompile?: boolean | undefined;
2007
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2008
+ detail?: "summary" | "standard" | "full" | undefined;
2009
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2010
+ gradleUserHome?: string | undefined;
2070
2011
  concurrency?: number | undefined;
2071
2012
  failFast?: boolean | undefined;
2072
2013
  }>;
@@ -2105,17 +2046,17 @@ export declare const batchSymbolExistsEntrySchema: z.ZodObject<{
2105
2046
  kind: "class" | "field" | "method";
2106
2047
  descriptor?: string | undefined;
2107
2048
  owner?: string | undefined;
2049
+ maxCandidates?: number | undefined;
2108
2050
  nameMode?: "auto" | "fqcn" | undefined;
2109
2051
  signatureMode?: "exact" | "name-only" | undefined;
2110
- maxCandidates?: number | undefined;
2111
2052
  }, {
2112
2053
  name: string;
2113
2054
  kind: "class" | "field" | "method";
2114
2055
  descriptor?: string | undefined;
2115
2056
  owner?: string | undefined;
2057
+ maxCandidates?: number | undefined;
2116
2058
  nameMode?: "auto" | "fqcn" | undefined;
2117
2059
  signatureMode?: "exact" | "name-only" | undefined;
2118
- maxCandidates?: number | undefined;
2119
2060
  }>;
2120
2061
  export declare const batchSymbolExistsShape: {
2121
2062
  target: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
@@ -2150,7 +2091,8 @@ export declare const batchSymbolExistsShape: {
2150
2091
  strictVersion: z.ZodOptional<z.ZodBoolean>;
2151
2092
  concurrency: z.ZodOptional<z.ZodNumber>;
2152
2093
  failFast: z.ZodOptional<z.ZodBoolean>;
2153
- compact: z.ZodOptional<z.ZodBoolean>;
2094
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2095
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2154
2096
  entries: z.ZodArray<z.ZodObject<{
2155
2097
  kind: z.ZodEnum<["class", "field", "method"]>;
2156
2098
  name: z.ZodString;
@@ -2164,17 +2106,17 @@ export declare const batchSymbolExistsShape: {
2164
2106
  kind: "class" | "field" | "method";
2165
2107
  descriptor?: string | undefined;
2166
2108
  owner?: string | undefined;
2109
+ maxCandidates?: number | undefined;
2167
2110
  nameMode?: "auto" | "fqcn" | undefined;
2168
2111
  signatureMode?: "exact" | "name-only" | undefined;
2169
- maxCandidates?: number | undefined;
2170
2112
  }, {
2171
2113
  name: string;
2172
2114
  kind: "class" | "field" | "method";
2173
2115
  descriptor?: string | undefined;
2174
2116
  owner?: string | undefined;
2117
+ maxCandidates?: number | undefined;
2175
2118
  nameMode?: "auto" | "fqcn" | undefined;
2176
2119
  signatureMode?: "exact" | "name-only" | undefined;
2177
- maxCandidates?: number | undefined;
2178
2120
  }>, "many">;
2179
2121
  };
2180
2122
  export declare const batchSymbolExistsSchema: z.ZodObject<{
@@ -2210,7 +2152,8 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
2210
2152
  strictVersion: z.ZodOptional<z.ZodBoolean>;
2211
2153
  concurrency: z.ZodOptional<z.ZodNumber>;
2212
2154
  failFast: z.ZodOptional<z.ZodBoolean>;
2213
- compact: z.ZodOptional<z.ZodBoolean>;
2155
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2156
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2214
2157
  entries: z.ZodArray<z.ZodObject<{
2215
2158
  kind: z.ZodEnum<["class", "field", "method"]>;
2216
2159
  name: z.ZodString;
@@ -2224,17 +2167,17 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
2224
2167
  kind: "class" | "field" | "method";
2225
2168
  descriptor?: string | undefined;
2226
2169
  owner?: string | undefined;
2170
+ maxCandidates?: number | undefined;
2227
2171
  nameMode?: "auto" | "fqcn" | undefined;
2228
2172
  signatureMode?: "exact" | "name-only" | undefined;
2229
- maxCandidates?: number | undefined;
2230
2173
  }, {
2231
2174
  name: string;
2232
2175
  kind: "class" | "field" | "method";
2233
2176
  descriptor?: string | undefined;
2234
2177
  owner?: string | undefined;
2178
+ maxCandidates?: number | undefined;
2235
2179
  nameMode?: "auto" | "fqcn" | undefined;
2236
2180
  signatureMode?: "exact" | "name-only" | undefined;
2237
- maxCandidates?: number | undefined;
2238
2181
  }>, "many">;
2239
2182
  }, "strip", z.ZodTypeAny, {
2240
2183
  entries: {
@@ -2242,9 +2185,9 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
2242
2185
  kind: "class" | "field" | "method";
2243
2186
  descriptor?: string | undefined;
2244
2187
  owner?: string | undefined;
2188
+ maxCandidates?: number | undefined;
2245
2189
  nameMode?: "auto" | "fqcn" | undefined;
2246
2190
  signatureMode?: "exact" | "name-only" | undefined;
2247
- maxCandidates?: number | undefined;
2248
2191
  }[];
2249
2192
  target: {
2250
2193
  kind: "workspace";
@@ -2254,15 +2197,16 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
2254
2197
  kind: "version";
2255
2198
  value: string;
2256
2199
  };
2200
+ detail: "summary" | "standard" | "full";
2257
2201
  projectPath?: string | undefined;
2258
2202
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2259
2203
  scope?: "vanilla" | "merged" | "loader" | undefined;
2260
- compact?: boolean | undefined;
2261
- gradleUserHome?: string | undefined;
2262
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2204
+ allowDecompile?: boolean | undefined;
2263
2205
  preferProjectVersion?: boolean | undefined;
2264
2206
  strictVersion?: boolean | undefined;
2265
- allowDecompile?: boolean | undefined;
2207
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2208
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2209
+ gradleUserHome?: string | undefined;
2266
2210
  concurrency?: number | undefined;
2267
2211
  failFast?: boolean | undefined;
2268
2212
  }, {
@@ -2271,9 +2215,9 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
2271
2215
  kind: "class" | "field" | "method";
2272
2216
  descriptor?: string | undefined;
2273
2217
  owner?: string | undefined;
2218
+ maxCandidates?: number | undefined;
2274
2219
  nameMode?: "auto" | "fqcn" | undefined;
2275
2220
  signatureMode?: "exact" | "name-only" | undefined;
2276
- maxCandidates?: number | undefined;
2277
2221
  }[];
2278
2222
  target: {
2279
2223
  kind: "workspace";
@@ -2286,12 +2230,13 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
2286
2230
  projectPath?: string | undefined;
2287
2231
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2288
2232
  scope?: "vanilla" | "merged" | "loader" | undefined;
2289
- compact?: boolean | undefined;
2290
- gradleUserHome?: string | undefined;
2291
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2233
+ allowDecompile?: boolean | undefined;
2292
2234
  preferProjectVersion?: boolean | undefined;
2293
2235
  strictVersion?: boolean | undefined;
2294
- allowDecompile?: boolean | undefined;
2236
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2237
+ detail?: "summary" | "standard" | "full" | undefined;
2238
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2239
+ gradleUserHome?: string | undefined;
2295
2240
  concurrency?: number | undefined;
2296
2241
  failFast?: boolean | undefined;
2297
2242
  }>;
@@ -2317,12 +2262,12 @@ export declare const batchMappingsEntrySchema: z.ZodObject<{
2317
2262
  }, "strict", z.ZodTypeAny, {
2318
2263
  name: string;
2319
2264
  kind: "class" | "field" | "method";
2320
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2321
2265
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2266
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2322
2267
  descriptor?: string | undefined;
2323
2268
  owner?: string | undefined;
2324
- signatureMode?: "exact" | "name-only" | undefined;
2325
2269
  maxCandidates?: number | undefined;
2270
+ signatureMode?: "exact" | "name-only" | undefined;
2326
2271
  disambiguation?: {
2327
2272
  ownerHint?: string | undefined;
2328
2273
  descriptorHint?: string | undefined;
@@ -2330,12 +2275,12 @@ export declare const batchMappingsEntrySchema: z.ZodObject<{
2330
2275
  }, {
2331
2276
  name: string;
2332
2277
  kind: "class" | "field" | "method";
2333
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2334
2278
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2279
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2335
2280
  descriptor?: string | undefined;
2336
2281
  owner?: string | undefined;
2337
- signatureMode?: "exact" | "name-only" | undefined;
2338
2282
  maxCandidates?: number | undefined;
2283
+ signatureMode?: "exact" | "name-only" | undefined;
2339
2284
  disambiguation?: {
2340
2285
  ownerHint?: string | undefined;
2341
2286
  descriptorHint?: string | undefined;
@@ -2348,7 +2293,8 @@ export declare const batchMappingsShape: {
2348
2293
  gradleUserHome: z.ZodOptional<z.ZodString>;
2349
2294
  concurrency: z.ZodOptional<z.ZodNumber>;
2350
2295
  failFast: z.ZodOptional<z.ZodBoolean>;
2351
- compact: z.ZodOptional<z.ZodBoolean>;
2296
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2297
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2352
2298
  entries: z.ZodArray<z.ZodObject<{
2353
2299
  kind: z.ZodEnum<["class", "field", "method"]>;
2354
2300
  name: z.ZodString;
@@ -2371,12 +2317,12 @@ export declare const batchMappingsShape: {
2371
2317
  }, "strict", z.ZodTypeAny, {
2372
2318
  name: string;
2373
2319
  kind: "class" | "field" | "method";
2374
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2375
2320
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2321
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2376
2322
  descriptor?: string | undefined;
2377
2323
  owner?: string | undefined;
2378
- signatureMode?: "exact" | "name-only" | undefined;
2379
2324
  maxCandidates?: number | undefined;
2325
+ signatureMode?: "exact" | "name-only" | undefined;
2380
2326
  disambiguation?: {
2381
2327
  ownerHint?: string | undefined;
2382
2328
  descriptorHint?: string | undefined;
@@ -2384,12 +2330,12 @@ export declare const batchMappingsShape: {
2384
2330
  }, {
2385
2331
  name: string;
2386
2332
  kind: "class" | "field" | "method";
2387
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2388
2333
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2334
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2389
2335
  descriptor?: string | undefined;
2390
2336
  owner?: string | undefined;
2391
- signatureMode?: "exact" | "name-only" | undefined;
2392
2337
  maxCandidates?: number | undefined;
2338
+ signatureMode?: "exact" | "name-only" | undefined;
2393
2339
  disambiguation?: {
2394
2340
  ownerHint?: string | undefined;
2395
2341
  descriptorHint?: string | undefined;
@@ -2403,7 +2349,8 @@ export declare const batchMappingsSchema: z.ZodObject<{
2403
2349
  gradleUserHome: z.ZodOptional<z.ZodString>;
2404
2350
  concurrency: z.ZodOptional<z.ZodNumber>;
2405
2351
  failFast: z.ZodOptional<z.ZodBoolean>;
2406
- compact: z.ZodOptional<z.ZodBoolean>;
2352
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2353
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2407
2354
  entries: z.ZodArray<z.ZodObject<{
2408
2355
  kind: z.ZodEnum<["class", "field", "method"]>;
2409
2356
  name: z.ZodString;
@@ -2426,12 +2373,12 @@ export declare const batchMappingsSchema: z.ZodObject<{
2426
2373
  }, "strict", z.ZodTypeAny, {
2427
2374
  name: string;
2428
2375
  kind: "class" | "field" | "method";
2429
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2430
2376
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2377
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2431
2378
  descriptor?: string | undefined;
2432
2379
  owner?: string | undefined;
2433
- signatureMode?: "exact" | "name-only" | undefined;
2434
2380
  maxCandidates?: number | undefined;
2381
+ signatureMode?: "exact" | "name-only" | undefined;
2435
2382
  disambiguation?: {
2436
2383
  ownerHint?: string | undefined;
2437
2384
  descriptorHint?: string | undefined;
@@ -2439,12 +2386,12 @@ export declare const batchMappingsSchema: z.ZodObject<{
2439
2386
  }, {
2440
2387
  name: string;
2441
2388
  kind: "class" | "field" | "method";
2442
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2443
2389
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2390
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2444
2391
  descriptor?: string | undefined;
2445
2392
  owner?: string | undefined;
2446
- signatureMode?: "exact" | "name-only" | undefined;
2447
2393
  maxCandidates?: number | undefined;
2394
+ signatureMode?: "exact" | "name-only" | undefined;
2448
2395
  disambiguation?: {
2449
2396
  ownerHint?: string | undefined;
2450
2397
  descriptorHint?: string | undefined;
@@ -2454,34 +2401,35 @@ export declare const batchMappingsSchema: z.ZodObject<{
2454
2401
  entries: {
2455
2402
  name: string;
2456
2403
  kind: "class" | "field" | "method";
2457
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2458
2404
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2405
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2459
2406
  descriptor?: string | undefined;
2460
2407
  owner?: string | undefined;
2461
- signatureMode?: "exact" | "name-only" | undefined;
2462
2408
  maxCandidates?: number | undefined;
2409
+ signatureMode?: "exact" | "name-only" | undefined;
2463
2410
  disambiguation?: {
2464
2411
  ownerHint?: string | undefined;
2465
2412
  descriptorHint?: string | undefined;
2466
2413
  } | undefined;
2467
2414
  }[];
2468
2415
  version: string;
2416
+ detail: "summary" | "standard" | "full";
2469
2417
  projectPath?: string | undefined;
2470
- compact?: boolean | undefined;
2471
- gradleUserHome?: string | undefined;
2472
2418
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2419
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2420
+ gradleUserHome?: string | undefined;
2473
2421
  concurrency?: number | undefined;
2474
2422
  failFast?: boolean | undefined;
2475
2423
  }, {
2476
2424
  entries: {
2477
2425
  name: string;
2478
2426
  kind: "class" | "field" | "method";
2479
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2480
2427
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2428
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2481
2429
  descriptor?: string | undefined;
2482
2430
  owner?: string | undefined;
2483
- signatureMode?: "exact" | "name-only" | undefined;
2484
2431
  maxCandidates?: number | undefined;
2432
+ signatureMode?: "exact" | "name-only" | undefined;
2485
2433
  disambiguation?: {
2486
2434
  ownerHint?: string | undefined;
2487
2435
  descriptorHint?: string | undefined;
@@ -2489,9 +2437,10 @@ export declare const batchMappingsSchema: z.ZodObject<{
2489
2437
  }[];
2490
2438
  version: string;
2491
2439
  projectPath?: string | undefined;
2492
- compact?: boolean | undefined;
2493
- gradleUserHome?: string | undefined;
2494
2440
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2441
+ detail?: "summary" | "standard" | "full" | undefined;
2442
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2443
+ gradleUserHome?: string | undefined;
2495
2444
  concurrency?: number | undefined;
2496
2445
  failFast?: boolean | undefined;
2497
2446
  }>;
@@ -2509,7 +2458,8 @@ export declare const searchClassSourceShape: {
2509
2458
  queryNamespace: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
2510
2459
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2511
2460
  gradleUserHome: z.ZodOptional<z.ZodString>;
2512
- compact: z.ZodDefault<z.ZodBoolean>;
2461
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2462
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2513
2463
  };
2514
2464
  export declare const searchClassSourceSchema: z.ZodEffects<z.ZodObject<{
2515
2465
  artifactId: z.ZodString;
@@ -2525,17 +2475,19 @@ export declare const searchClassSourceSchema: z.ZodEffects<z.ZodObject<{
2525
2475
  queryNamespace: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
2526
2476
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2527
2477
  gradleUserHome: z.ZodOptional<z.ZodString>;
2528
- compact: z.ZodDefault<z.ZodBoolean>;
2478
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2479
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2529
2480
  }, "strip", z.ZodTypeAny, {
2530
2481
  artifactId: string;
2531
2482
  limit: number;
2532
- compact: boolean;
2483
+ detail: "summary" | "standard" | "full";
2533
2484
  query: string;
2534
2485
  queryMode: "auto" | "token" | "literal";
2535
2486
  match?: "exact" | "prefix" | "contains" | "regex" | undefined;
2536
- gradleUserHome?: string | undefined;
2537
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2538
2487
  cursor?: string | undefined;
2488
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2489
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2490
+ gradleUserHome?: string | undefined;
2539
2491
  symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
2540
2492
  packagePrefix?: string | undefined;
2541
2493
  intent?: "symbol" | "path" | "text" | undefined;
@@ -2546,10 +2498,11 @@ export declare const searchClassSourceSchema: z.ZodEffects<z.ZodObject<{
2546
2498
  query: string;
2547
2499
  match?: "exact" | "prefix" | "contains" | "regex" | undefined;
2548
2500
  limit?: number | undefined;
2549
- compact?: boolean | undefined;
2550
- gradleUserHome?: string | undefined;
2551
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2552
2501
  cursor?: string | undefined;
2502
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2503
+ detail?: "summary" | "standard" | "full" | undefined;
2504
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2505
+ gradleUserHome?: string | undefined;
2553
2506
  symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
2554
2507
  packagePrefix?: string | undefined;
2555
2508
  intent?: "symbol" | "path" | "text" | undefined;
@@ -2559,13 +2512,14 @@ export declare const searchClassSourceSchema: z.ZodEffects<z.ZodObject<{
2559
2512
  }>, {
2560
2513
  artifactId: string;
2561
2514
  limit: number;
2562
- compact: boolean;
2515
+ detail: "summary" | "standard" | "full";
2563
2516
  query: string;
2564
2517
  queryMode: "auto" | "token" | "literal";
2565
2518
  match?: "exact" | "prefix" | "contains" | "regex" | undefined;
2566
- gradleUserHome?: string | undefined;
2567
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2568
2519
  cursor?: string | undefined;
2520
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2521
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2522
+ gradleUserHome?: string | undefined;
2569
2523
  symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
2570
2524
  packagePrefix?: string | undefined;
2571
2525
  intent?: "symbol" | "path" | "text" | undefined;
@@ -2576,10 +2530,11 @@ export declare const searchClassSourceSchema: z.ZodEffects<z.ZodObject<{
2576
2530
  query: string;
2577
2531
  match?: "exact" | "prefix" | "contains" | "regex" | undefined;
2578
2532
  limit?: number | undefined;
2579
- compact?: boolean | undefined;
2580
- gradleUserHome?: string | undefined;
2581
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2582
2533
  cursor?: string | undefined;
2534
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2535
+ detail?: "summary" | "standard" | "full" | undefined;
2536
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2537
+ gradleUserHome?: string | undefined;
2583
2538
  symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
2584
2539
  packagePrefix?: string | undefined;
2585
2540
  intent?: "symbol" | "path" | "text" | undefined;
@@ -2610,25 +2565,29 @@ export declare const listArtifactFilesShape: {
2610
2565
  prefix: z.ZodOptional<z.ZodString>;
2611
2566
  limit: z.ZodOptional<z.ZodNumber>;
2612
2567
  cursor: z.ZodOptional<z.ZodString>;
2613
- compact: z.ZodDefault<z.ZodBoolean>;
2568
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2569
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2614
2570
  };
2615
2571
  export declare const listArtifactFilesSchema: z.ZodObject<{
2616
2572
  artifactId: z.ZodString;
2617
2573
  prefix: z.ZodOptional<z.ZodString>;
2618
2574
  limit: z.ZodOptional<z.ZodNumber>;
2619
2575
  cursor: z.ZodOptional<z.ZodString>;
2620
- compact: z.ZodDefault<z.ZodBoolean>;
2576
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2577
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2621
2578
  }, "strip", z.ZodTypeAny, {
2622
2579
  artifactId: string;
2623
- compact: boolean;
2580
+ detail: "summary" | "standard" | "full";
2624
2581
  limit?: number | undefined;
2625
2582
  cursor?: string | undefined;
2583
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2626
2584
  prefix?: string | undefined;
2627
2585
  }, {
2628
2586
  artifactId: string;
2629
2587
  limit?: number | undefined;
2630
- compact?: boolean | undefined;
2631
2588
  cursor?: string | undefined;
2589
+ detail?: "summary" | "standard" | "full" | undefined;
2590
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2632
2591
  prefix?: string | undefined;
2633
2592
  }>;
2634
2593
  export declare const traceSymbolLifecycleShape: {
@@ -2661,17 +2620,17 @@ export declare const traceSymbolLifecycleSchema: z.ZodObject<{
2661
2620
  includeTimeline: boolean;
2662
2621
  descriptor?: string | undefined;
2663
2622
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2664
- gradleUserHome?: string | undefined;
2665
2623
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2624
+ gradleUserHome?: string | undefined;
2666
2625
  fromVersion?: string | undefined;
2667
2626
  toVersion?: string | undefined;
2668
2627
  }, {
2669
2628
  symbol: string;
2670
2629
  descriptor?: string | undefined;
2671
2630
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2631
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2672
2632
  maxVersions?: number | undefined;
2673
2633
  gradleUserHome?: string | undefined;
2674
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2675
2634
  includeSnapshots?: boolean | undefined;
2676
2635
  fromVersion?: string | undefined;
2677
2636
  toVersion?: string | undefined;
@@ -2700,15 +2659,15 @@ export declare const diffClassSignaturesSchema: z.ZodObject<{
2700
2659
  toVersion: string;
2701
2660
  includeFullDiff: boolean;
2702
2661
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2703
- gradleUserHome?: string | undefined;
2704
2662
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2663
+ gradleUserHome?: string | undefined;
2705
2664
  }, {
2706
2665
  className: string;
2707
2666
  fromVersion: string;
2708
2667
  toVersion: string;
2709
2668
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
2710
- gradleUserHome?: string | undefined;
2711
2669
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2670
+ gradleUserHome?: string | undefined;
2712
2671
  includeFullDiff?: boolean | undefined;
2713
2672
  }>;
2714
2673
  export declare const findMappingShape: {
@@ -2721,6 +2680,7 @@ export declare const findMappingShape: {
2721
2680
  targetMapping: z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>;
2722
2681
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2723
2682
  gradleUserHome: z.ZodOptional<z.ZodString>;
2683
+ nameMode: z.ZodDefault<z.ZodEnum<["fqcn", "auto"]>>;
2724
2684
  signatureMode: z.ZodDefault<z.ZodEnum<["exact", "name-only"]>>;
2725
2685
  disambiguation: z.ZodOptional<z.ZodObject<{
2726
2686
  ownerHint: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -2733,7 +2693,8 @@ export declare const findMappingShape: {
2733
2693
  descriptorHint?: string | undefined;
2734
2694
  }>>;
2735
2695
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2736
- compact: z.ZodDefault<z.ZodBoolean>;
2696
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2697
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2737
2698
  };
2738
2699
  export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
2739
2700
  version: z.ZodString;
@@ -2745,6 +2706,7 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
2745
2706
  targetMapping: z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>;
2746
2707
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2747
2708
  gradleUserHome: z.ZodOptional<z.ZodString>;
2709
+ nameMode: z.ZodDefault<z.ZodEnum<["fqcn", "auto"]>>;
2748
2710
  signatureMode: z.ZodDefault<z.ZodEnum<["exact", "name-only"]>>;
2749
2711
  disambiguation: z.ZodOptional<z.ZodObject<{
2750
2712
  ownerHint: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -2757,20 +2719,23 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
2757
2719
  descriptorHint?: string | undefined;
2758
2720
  }>>;
2759
2721
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2760
- compact: z.ZodDefault<z.ZodBoolean>;
2722
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2723
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2761
2724
  }, "strip", z.ZodTypeAny, {
2762
2725
  name: string;
2763
2726
  kind: "class" | "field" | "method";
2764
2727
  version: string;
2765
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2728
+ maxCandidates: number;
2729
+ detail: "summary" | "standard" | "full";
2766
2730
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2767
- compact: boolean;
2731
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2732
+ nameMode: "auto" | "fqcn";
2768
2733
  signatureMode: "exact" | "name-only";
2769
- maxCandidates: number;
2770
2734
  descriptor?: string | undefined;
2771
2735
  owner?: string | undefined;
2772
- gradleUserHome?: string | undefined;
2773
2736
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2737
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2738
+ gradleUserHome?: string | undefined;
2774
2739
  disambiguation?: {
2775
2740
  ownerHint?: string | undefined;
2776
2741
  descriptorHint?: string | undefined;
@@ -2779,15 +2744,17 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
2779
2744
  name: string;
2780
2745
  kind: "class" | "field" | "method";
2781
2746
  version: string;
2782
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2783
2747
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2748
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2784
2749
  descriptor?: string | undefined;
2785
- compact?: boolean | undefined;
2786
2750
  owner?: string | undefined;
2787
- gradleUserHome?: string | undefined;
2751
+ maxCandidates?: number | undefined;
2788
2752
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2753
+ detail?: "summary" | "standard" | "full" | undefined;
2754
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2755
+ gradleUserHome?: string | undefined;
2756
+ nameMode?: "auto" | "fqcn" | undefined;
2789
2757
  signatureMode?: "exact" | "name-only" | undefined;
2790
- maxCandidates?: number | undefined;
2791
2758
  disambiguation?: {
2792
2759
  ownerHint?: string | undefined;
2793
2760
  descriptorHint?: string | undefined;
@@ -2796,15 +2763,17 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
2796
2763
  name: string;
2797
2764
  kind: "class" | "field" | "method";
2798
2765
  version: string;
2799
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2766
+ maxCandidates: number;
2767
+ detail: "summary" | "standard" | "full";
2800
2768
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2801
- compact: boolean;
2769
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2770
+ nameMode: "auto" | "fqcn";
2802
2771
  signatureMode: "exact" | "name-only";
2803
- maxCandidates: number;
2804
2772
  descriptor?: string | undefined;
2805
2773
  owner?: string | undefined;
2806
- gradleUserHome?: string | undefined;
2807
2774
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2775
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2776
+ gradleUserHome?: string | undefined;
2808
2777
  disambiguation?: {
2809
2778
  ownerHint?: string | undefined;
2810
2779
  descriptorHint?: string | undefined;
@@ -2813,15 +2782,17 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
2813
2782
  name: string;
2814
2783
  kind: "class" | "field" | "method";
2815
2784
  version: string;
2816
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2817
2785
  targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2786
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2818
2787
  descriptor?: string | undefined;
2819
- compact?: boolean | undefined;
2820
2788
  owner?: string | undefined;
2821
- gradleUserHome?: string | undefined;
2789
+ maxCandidates?: number | undefined;
2822
2790
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2791
+ detail?: "summary" | "standard" | "full" | undefined;
2792
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2793
+ gradleUserHome?: string | undefined;
2794
+ nameMode?: "auto" | "fqcn" | undefined;
2823
2795
  signatureMode?: "exact" | "name-only" | undefined;
2824
- maxCandidates?: number | undefined;
2825
2796
  disambiguation?: {
2826
2797
  ownerHint?: string | undefined;
2827
2798
  descriptorHint?: string | undefined;
@@ -2837,7 +2808,8 @@ export declare const resolveMethodMappingExactShape: {
2837
2808
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2838
2809
  gradleUserHome: z.ZodOptional<z.ZodString>;
2839
2810
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2840
- compact: z.ZodDefault<z.ZodBoolean>;
2811
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2812
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2841
2813
  };
2842
2814
  export declare const resolveMethodMappingExactSchema: z.ZodEffects<z.ZodObject<{
2843
2815
  version: z.ZodString;
@@ -2849,51 +2821,56 @@ export declare const resolveMethodMappingExactSchema: z.ZodEffects<z.ZodObject<{
2849
2821
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2850
2822
  gradleUserHome: z.ZodOptional<z.ZodString>;
2851
2823
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2852
- compact: z.ZodDefault<z.ZodBoolean>;
2824
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2825
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2853
2826
  }, "strip", z.ZodTypeAny, {
2854
2827
  name: string;
2855
2828
  descriptor: string;
2856
2829
  version: string;
2857
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2858
- targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2859
- compact: boolean;
2860
2830
  owner: string;
2861
2831
  maxCandidates: number;
2862
- gradleUserHome?: string | undefined;
2832
+ detail: "summary" | "standard" | "full";
2833
+ targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2834
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2863
2835
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2836
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2837
+ gradleUserHome?: string | undefined;
2864
2838
  }, {
2865
2839
  name: string;
2866
2840
  descriptor: string;
2867
2841
  version: string;
2868
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2869
- targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2870
2842
  owner: string;
2871
- compact?: boolean | undefined;
2872
- gradleUserHome?: string | undefined;
2873
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2843
+ targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2844
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2874
2845
  maxCandidates?: number | undefined;
2846
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2847
+ detail?: "summary" | "standard" | "full" | undefined;
2848
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2849
+ gradleUserHome?: string | undefined;
2875
2850
  }>, {
2876
2851
  name: string;
2877
2852
  descriptor: string;
2878
2853
  version: string;
2879
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2880
- targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2881
- compact: boolean;
2882
2854
  owner: string;
2883
2855
  maxCandidates: number;
2884
- gradleUserHome?: string | undefined;
2856
+ detail: "summary" | "standard" | "full";
2857
+ targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2858
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2885
2859
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2860
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2861
+ gradleUserHome?: string | undefined;
2886
2862
  }, {
2887
2863
  name: string;
2888
2864
  descriptor: string;
2889
2865
  version: string;
2890
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2891
- targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2892
2866
  owner: string;
2893
- compact?: boolean | undefined;
2894
- gradleUserHome?: string | undefined;
2895
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2867
+ targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2868
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2896
2869
  maxCandidates?: number | undefined;
2870
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2871
+ detail?: "summary" | "standard" | "full" | undefined;
2872
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2873
+ gradleUserHome?: string | undefined;
2897
2874
  }>;
2898
2875
  export declare const classApiKindsSchema: z.ZodEffects<z.ZodString, string, string>;
2899
2876
  export declare const getClassApiMatrixShape: {
@@ -2904,6 +2881,7 @@ export declare const getClassApiMatrixShape: {
2904
2881
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2905
2882
  gradleUserHome: z.ZodOptional<z.ZodString>;
2906
2883
  maxRows: z.ZodOptional<z.ZodNumber>;
2884
+ cursor: z.ZodOptional<z.ZodString>;
2907
2885
  };
2908
2886
  export declare const getClassApiMatrixSchema: z.ZodObject<{
2909
2887
  version: z.ZodString;
@@ -2913,22 +2891,25 @@ export declare const getClassApiMatrixSchema: z.ZodObject<{
2913
2891
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2914
2892
  gradleUserHome: z.ZodOptional<z.ZodString>;
2915
2893
  maxRows: z.ZodOptional<z.ZodNumber>;
2894
+ cursor: z.ZodOptional<z.ZodString>;
2916
2895
  }, "strip", z.ZodTypeAny, {
2917
2896
  version: string;
2918
- classNameMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2919
2897
  className: string;
2920
- gradleUserHome?: string | undefined;
2898
+ classNameMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2899
+ maxRows?: number | undefined;
2900
+ cursor?: string | undefined;
2921
2901
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2902
+ gradleUserHome?: string | undefined;
2922
2903
  includeKinds?: string | undefined;
2923
- maxRows?: number | undefined;
2924
2904
  }, {
2925
2905
  version: string;
2926
- classNameMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2927
2906
  className: string;
2928
- gradleUserHome?: string | undefined;
2907
+ classNameMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2908
+ maxRows?: number | undefined;
2909
+ cursor?: string | undefined;
2929
2910
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2911
+ gradleUserHome?: string | undefined;
2930
2912
  includeKinds?: string | undefined;
2931
- maxRows?: number | undefined;
2932
2913
  }>;
2933
2914
  export declare const resolveWorkspaceSymbolShape: {
2934
2915
  projectPath: z.ZodString;
@@ -2941,7 +2922,8 @@ export declare const resolveWorkspaceSymbolShape: {
2941
2922
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2942
2923
  gradleUserHome: z.ZodOptional<z.ZodString>;
2943
2924
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2944
- compact: z.ZodDefault<z.ZodBoolean>;
2925
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2926
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2945
2927
  };
2946
2928
  export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
2947
2929
  projectPath: z.ZodString;
@@ -2954,19 +2936,21 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
2954
2936
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
2955
2937
  gradleUserHome: z.ZodOptional<z.ZodString>;
2956
2938
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2957
- compact: z.ZodDefault<z.ZodBoolean>;
2939
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
2940
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
2958
2941
  }, "strip", z.ZodTypeAny, {
2959
2942
  name: string;
2960
2943
  kind: "class" | "field" | "method";
2961
2944
  version: string;
2962
2945
  projectPath: string;
2963
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2964
- compact: boolean;
2965
2946
  maxCandidates: number;
2947
+ detail: "summary" | "standard" | "full";
2948
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2966
2949
  descriptor?: string | undefined;
2967
2950
  owner?: string | undefined;
2968
- gradleUserHome?: string | undefined;
2969
2951
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2952
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2953
+ gradleUserHome?: string | undefined;
2970
2954
  }, {
2971
2955
  name: string;
2972
2956
  kind: "class" | "field" | "method";
@@ -2974,23 +2958,25 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
2974
2958
  projectPath: string;
2975
2959
  sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2976
2960
  descriptor?: string | undefined;
2977
- compact?: boolean | undefined;
2978
2961
  owner?: string | undefined;
2979
- gradleUserHome?: string | undefined;
2980
- sourcePriority?: "loom-first" | "maven-first" | undefined;
2981
2962
  maxCandidates?: number | undefined;
2963
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2964
+ detail?: "summary" | "standard" | "full" | undefined;
2965
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2966
+ gradleUserHome?: string | undefined;
2982
2967
  }>, {
2983
2968
  name: string;
2984
2969
  kind: "class" | "field" | "method";
2985
2970
  version: string;
2986
2971
  projectPath: string;
2987
- sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2988
- compact: boolean;
2989
2972
  maxCandidates: number;
2973
+ detail: "summary" | "standard" | "full";
2974
+ sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
2990
2975
  descriptor?: string | undefined;
2991
2976
  owner?: string | undefined;
2992
- gradleUserHome?: string | undefined;
2993
2977
  sourcePriority?: "loom-first" | "maven-first" | undefined;
2978
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2979
+ gradleUserHome?: string | undefined;
2994
2980
  }, {
2995
2981
  name: string;
2996
2982
  kind: "class" | "field" | "method";
@@ -2998,11 +2984,12 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
2998
2984
  projectPath: string;
2999
2985
  sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
3000
2986
  descriptor?: string | undefined;
3001
- compact?: boolean | undefined;
3002
2987
  owner?: string | undefined;
3003
- gradleUserHome?: string | undefined;
3004
- sourcePriority?: "loom-first" | "maven-first" | undefined;
3005
2988
  maxCandidates?: number | undefined;
2989
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
2990
+ detail?: "summary" | "standard" | "full" | undefined;
2991
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
2992
+ gradleUserHome?: string | undefined;
3006
2993
  }>;
3007
2994
  export declare const checkSymbolExistsShape: {
3008
2995
  version: z.ZodString;
@@ -3016,7 +3003,8 @@ export declare const checkSymbolExistsShape: {
3016
3003
  nameMode: z.ZodDefault<z.ZodEnum<["fqcn", "auto"]>>;
3017
3004
  signatureMode: z.ZodDefault<z.ZodEnum<["exact", "name-only"]>>;
3018
3005
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
3019
- compact: z.ZodDefault<z.ZodBoolean>;
3006
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
3007
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
3020
3008
  };
3021
3009
  export declare const checkSymbolExistsSchema: z.ZodEffects<z.ZodObject<{
3022
3010
  version: z.ZodString;
@@ -3030,59 +3018,64 @@ export declare const checkSymbolExistsSchema: z.ZodEffects<z.ZodObject<{
3030
3018
  nameMode: z.ZodDefault<z.ZodEnum<["fqcn", "auto"]>>;
3031
3019
  signatureMode: z.ZodDefault<z.ZodEnum<["exact", "name-only"]>>;
3032
3020
  maxCandidates: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
3033
- compact: z.ZodDefault<z.ZodBoolean>;
3021
+ detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
3022
+ include: z.ZodOptional<z.ZodArray<z.ZodEnum<["warnings", "provenance", "candidates", "members", "descriptors", "source", "files", "samples", "diff", "issues", "timeline", "matrix", "entries", "workspace", "health", "recovery", "paths", "owners", "preview", "cacheEntries", "timings", "artifact", "classes", "registry"]>, "many">>;
3034
3023
  }, "strip", z.ZodTypeAny, {
3035
3024
  name: string;
3036
3025
  kind: "class" | "field" | "method";
3037
3026
  version: string;
3027
+ maxCandidates: number;
3028
+ detail: "summary" | "standard" | "full";
3038
3029
  sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
3039
- compact: boolean;
3040
3030
  nameMode: "auto" | "fqcn";
3041
3031
  signatureMode: "exact" | "name-only";
3042
- maxCandidates: number;
3043
3032
  descriptor?: string | undefined;
3044
3033
  owner?: string | undefined;
3045
- gradleUserHome?: string | undefined;
3046
3034
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3035
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
3036
+ gradleUserHome?: string | undefined;
3047
3037
  }, {
3048
3038
  name: string;
3049
3039
  kind: "class" | "field" | "method";
3050
3040
  version: string;
3051
3041
  sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
3052
3042
  descriptor?: string | undefined;
3053
- compact?: boolean | undefined;
3054
3043
  owner?: string | undefined;
3055
- gradleUserHome?: string | undefined;
3044
+ maxCandidates?: number | undefined;
3056
3045
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3046
+ detail?: "summary" | "standard" | "full" | undefined;
3047
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
3048
+ gradleUserHome?: string | undefined;
3057
3049
  nameMode?: "auto" | "fqcn" | undefined;
3058
3050
  signatureMode?: "exact" | "name-only" | undefined;
3059
- maxCandidates?: number | undefined;
3060
3051
  }>, {
3061
3052
  name: string;
3062
3053
  kind: "class" | "field" | "method";
3063
3054
  version: string;
3055
+ maxCandidates: number;
3056
+ detail: "summary" | "standard" | "full";
3064
3057
  sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
3065
- compact: boolean;
3066
3058
  nameMode: "auto" | "fqcn";
3067
3059
  signatureMode: "exact" | "name-only";
3068
- maxCandidates: number;
3069
3060
  descriptor?: string | undefined;
3070
3061
  owner?: string | undefined;
3071
- gradleUserHome?: string | undefined;
3072
3062
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3063
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
3064
+ gradleUserHome?: string | undefined;
3073
3065
  }, {
3074
3066
  name: string;
3075
3067
  kind: "class" | "field" | "method";
3076
3068
  version: string;
3077
3069
  sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
3078
3070
  descriptor?: string | undefined;
3079
- compact?: boolean | undefined;
3080
3071
  owner?: string | undefined;
3081
- gradleUserHome?: string | undefined;
3072
+ maxCandidates?: number | undefined;
3082
3073
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3074
+ detail?: "summary" | "standard" | "full" | undefined;
3075
+ include?: ("entries" | "workspace" | "warnings" | "source" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "candidates" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
3076
+ gradleUserHome?: string | undefined;
3083
3077
  nameMode?: "auto" | "fqcn" | undefined;
3084
3078
  signatureMode?: "exact" | "name-only" | undefined;
3085
- maxCandidates?: number | undefined;
3086
3079
  }>;
3087
3080
  export declare const nbtToJsonShape: {
3088
3081
  nbtBase64: z.ZodString;
@@ -3220,7 +3213,7 @@ export declare const validateMixinShape: {
3220
3213
  mode: "project";
3221
3214
  }>]>;
3222
3215
  sourceRoots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3223
- version: z.ZodString;
3216
+ version: z.ZodOptional<z.ZodString>;
3224
3217
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
3225
3218
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
3226
3219
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
@@ -3237,7 +3230,7 @@ export declare const validateMixinShape: {
3237
3230
  treatInfoAsWarning: z.ZodDefault<z.ZodBoolean>;
3238
3231
  includeIssues: z.ZodDefault<z.ZodBoolean>;
3239
3232
  };
3240
- export declare const validateMixinSchema: z.ZodObject<{
3233
+ export declare const validateMixinSchema: z.ZodEffects<z.ZodObject<{
3241
3234
  input: z.ZodDiscriminatedUnion<"mode", [z.ZodObject<{
3242
3235
  mode: z.ZodLiteral<"inline">;
3243
3236
  source: z.ZodString;
@@ -3285,7 +3278,7 @@ export declare const validateMixinSchema: z.ZodObject<{
3285
3278
  mode: "project";
3286
3279
  }>]>;
3287
3280
  sourceRoots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3288
- version: z.ZodString;
3281
+ version: z.ZodOptional<z.ZodString>;
3289
3282
  mapping: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
3290
3283
  sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
3291
3284
  scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
@@ -3302,7 +3295,6 @@ export declare const validateMixinSchema: z.ZodObject<{
3302
3295
  treatInfoAsWarning: z.ZodDefault<z.ZodBoolean>;
3303
3296
  includeIssues: z.ZodDefault<z.ZodBoolean>;
3304
3297
  }, "strip", z.ZodTypeAny, {
3305
- version: string;
3306
3298
  input: {
3307
3299
  source: string;
3308
3300
  mode: "inline";
@@ -3319,24 +3311,24 @@ export declare const validateMixinSchema: z.ZodObject<{
3319
3311
  path: string;
3320
3312
  mode: "project";
3321
3313
  };
3322
- minSeverity: "all" | "error" | "warning";
3323
3314
  hideUncertain: boolean;
3324
3315
  explain: boolean;
3325
3316
  preferProjectMapping: boolean;
3326
- reportMode: "compact" | "full" | "summary-first";
3317
+ minSeverity: "all" | "error" | "warning";
3318
+ reportMode: "full" | "summary-first" | "compact";
3327
3319
  treatInfoAsWarning: boolean;
3328
3320
  includeIssues: boolean;
3321
+ version?: string | undefined;
3329
3322
  projectPath?: string | undefined;
3330
3323
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
3331
3324
  scope?: "vanilla" | "merged" | "loader" | undefined;
3332
- gradleUserHome?: string | undefined;
3333
- sourcePriority?: "loom-first" | "maven-first" | undefined;
3334
- sourceRoots?: string[] | undefined;
3335
3325
  preferProjectVersion?: boolean | undefined;
3326
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
3336
3327
  warningMode?: "full" | "aggregated" | undefined;
3328
+ sourceRoots?: string[] | undefined;
3337
3329
  warningCategoryFilter?: ("mapping" | "parse" | "validation" | "configuration" | "resolution")[] | undefined;
3330
+ gradleUserHome?: string | undefined;
3338
3331
  }, {
3339
- version: string;
3340
3332
  input: {
3341
3333
  source: string;
3342
3334
  mode: "inline";
@@ -3353,22 +3345,91 @@ export declare const validateMixinSchema: z.ZodObject<{
3353
3345
  path: string;
3354
3346
  mode: "project";
3355
3347
  };
3348
+ version?: string | undefined;
3356
3349
  projectPath?: string | undefined;
3357
3350
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
3358
3351
  scope?: "vanilla" | "merged" | "loader" | undefined;
3352
+ preferProjectVersion?: boolean | undefined;
3353
+ hideUncertain?: boolean | undefined;
3354
+ explain?: boolean | undefined;
3355
+ preferProjectMapping?: boolean | undefined;
3356
+ minSeverity?: "all" | "error" | "warning" | undefined;
3357
+ reportMode?: "full" | "summary-first" | "compact" | undefined;
3358
+ treatInfoAsWarning?: boolean | undefined;
3359
+ includeIssues?: boolean | undefined;
3360
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
3361
+ warningMode?: "full" | "aggregated" | undefined;
3362
+ sourceRoots?: string[] | undefined;
3363
+ warningCategoryFilter?: ("mapping" | "parse" | "validation" | "configuration" | "resolution")[] | undefined;
3359
3364
  gradleUserHome?: string | undefined;
3365
+ }>, {
3366
+ input: {
3367
+ source: string;
3368
+ mode: "inline";
3369
+ } | {
3370
+ path: string;
3371
+ mode: "path";
3372
+ } | {
3373
+ mode: "paths";
3374
+ paths: string[];
3375
+ } | {
3376
+ mode: "config";
3377
+ configPaths: string[];
3378
+ } | {
3379
+ path: string;
3380
+ mode: "project";
3381
+ };
3382
+ hideUncertain: boolean;
3383
+ explain: boolean;
3384
+ preferProjectMapping: boolean;
3385
+ minSeverity: "all" | "error" | "warning";
3386
+ reportMode: "full" | "summary-first" | "compact";
3387
+ treatInfoAsWarning: boolean;
3388
+ includeIssues: boolean;
3389
+ version?: string | undefined;
3390
+ projectPath?: string | undefined;
3391
+ mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
3392
+ scope?: "vanilla" | "merged" | "loader" | undefined;
3393
+ preferProjectVersion?: boolean | undefined;
3360
3394
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3395
+ warningMode?: "full" | "aggregated" | undefined;
3361
3396
  sourceRoots?: string[] | undefined;
3397
+ warningCategoryFilter?: ("mapping" | "parse" | "validation" | "configuration" | "resolution")[] | undefined;
3398
+ gradleUserHome?: string | undefined;
3399
+ }, {
3400
+ input: {
3401
+ source: string;
3402
+ mode: "inline";
3403
+ } | {
3404
+ path: string;
3405
+ mode: "path";
3406
+ } | {
3407
+ mode: "paths";
3408
+ paths: string[];
3409
+ } | {
3410
+ mode: "config";
3411
+ configPaths: string[];
3412
+ } | {
3413
+ path: string;
3414
+ mode: "project";
3415
+ };
3416
+ version?: string | undefined;
3417
+ projectPath?: string | undefined;
3418
+ mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
3419
+ scope?: "vanilla" | "merged" | "loader" | undefined;
3362
3420
  preferProjectVersion?: boolean | undefined;
3363
- minSeverity?: "all" | "error" | "warning" | undefined;
3364
3421
  hideUncertain?: boolean | undefined;
3365
3422
  explain?: boolean | undefined;
3366
- warningMode?: "full" | "aggregated" | undefined;
3367
3423
  preferProjectMapping?: boolean | undefined;
3368
- reportMode?: "compact" | "full" | "summary-first" | undefined;
3369
- warningCategoryFilter?: ("mapping" | "parse" | "validation" | "configuration" | "resolution")[] | undefined;
3424
+ minSeverity?: "all" | "error" | "warning" | undefined;
3425
+ reportMode?: "full" | "summary-first" | "compact" | undefined;
3370
3426
  treatInfoAsWarning?: boolean | undefined;
3371
3427
  includeIssues?: boolean | undefined;
3428
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
3429
+ warningMode?: "full" | "aggregated" | undefined;
3430
+ sourceRoots?: string[] | undefined;
3431
+ warningCategoryFilter?: ("mapping" | "parse" | "validation" | "configuration" | "resolution")[] | undefined;
3432
+ gradleUserHome?: string | undefined;
3372
3433
  }>;
3373
3434
  export declare const validateAccessWidenerShape: {
3374
3435
  content: z.ZodString;
@@ -3396,17 +3457,17 @@ export declare const validateAccessWidenerSchema: z.ZodObject<{
3396
3457
  projectPath?: string | undefined;
3397
3458
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
3398
3459
  scope?: "vanilla" | "merged" | "loader" | undefined;
3399
- gradleUserHome?: string | undefined;
3400
3460
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3461
+ gradleUserHome?: string | undefined;
3401
3462
  }, {
3402
3463
  version: string;
3403
3464
  content: string;
3404
3465
  projectPath?: string | undefined;
3405
3466
  mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
3406
3467
  scope?: "vanilla" | "merged" | "loader" | undefined;
3407
- gradleUserHome?: string | undefined;
3408
- sourcePriority?: "loom-first" | "maven-first" | undefined;
3409
3468
  preferProjectVersion?: boolean | undefined;
3469
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
3470
+ gradleUserHome?: string | undefined;
3410
3471
  }>;
3411
3472
  export declare const validateAccessTransformerShape: {
3412
3473
  content: z.ZodString;
@@ -3433,17 +3494,17 @@ export declare const validateAccessTransformerSchema: z.ZodObject<{
3433
3494
  preferProjectVersion: boolean;
3434
3495
  projectPath?: string | undefined;
3435
3496
  scope?: "vanilla" | "merged" | "loader" | undefined;
3436
- gradleUserHome?: string | undefined;
3437
3497
  sourcePriority?: "loom-first" | "maven-first" | undefined;
3498
+ gradleUserHome?: string | undefined;
3438
3499
  atNamespace?: "obfuscated" | "mojang" | "srg" | undefined;
3439
3500
  }, {
3440
3501
  version: string;
3441
3502
  content: string;
3442
3503
  projectPath?: string | undefined;
3443
3504
  scope?: "vanilla" | "merged" | "loader" | undefined;
3444
- gradleUserHome?: string | undefined;
3445
- sourcePriority?: "loom-first" | "maven-first" | undefined;
3446
3505
  preferProjectVersion?: boolean | undefined;
3506
+ sourcePriority?: "loom-first" | "maven-first" | undefined;
3507
+ gradleUserHome?: string | undefined;
3447
3508
  atNamespace?: "obfuscated" | "mojang" | "srg" | undefined;
3448
3509
  }>;
3449
3510
  export declare const analyzeModJarShape: {
@@ -3548,15 +3609,15 @@ export declare const getModClassSourceSchema: z.ZodObject<{
3548
3609
  }, "strip", z.ZodTypeAny, {
3549
3610
  jarPath: string;
3550
3611
  className: string;
3612
+ outputFile?: string | undefined;
3551
3613
  maxLines?: number | undefined;
3552
3614
  maxChars?: number | undefined;
3553
- outputFile?: string | undefined;
3554
3615
  }, {
3555
3616
  jarPath: string;
3556
3617
  className: string;
3618
+ outputFile?: string | undefined;
3557
3619
  maxLines?: number | undefined;
3558
3620
  maxChars?: number | undefined;
3559
- outputFile?: string | undefined;
3560
3621
  }>;
3561
3622
  export declare const MOD_SEARCH_TYPES: readonly ["class", "method", "field", "content", "all"];
3562
3623
  export declare const modSearchTypeSchema: z.ZodEnum<["class", "method", "field", "content", "all"]>;
@@ -3589,21 +3650,25 @@ export declare const remapModJarShape: {
3589
3650
  outputJar: z.ZodOptional<z.ZodString>;
3590
3651
  mcVersion: z.ZodOptional<z.ZodString>;
3591
3652
  targetMapping: z.ZodEnum<["yarn", "mojang"]>;
3653
+ forceRemap: z.ZodOptional<z.ZodBoolean>;
3592
3654
  };
3593
3655
  export declare const remapModJarSchema: z.ZodObject<{
3594
3656
  inputJar: z.ZodString;
3595
3657
  outputJar: z.ZodOptional<z.ZodString>;
3596
3658
  mcVersion: z.ZodOptional<z.ZodString>;
3597
3659
  targetMapping: z.ZodEnum<["yarn", "mojang"]>;
3660
+ forceRemap: z.ZodOptional<z.ZodBoolean>;
3598
3661
  }, "strip", z.ZodTypeAny, {
3599
3662
  targetMapping: "mojang" | "yarn";
3600
3663
  inputJar: string;
3601
3664
  outputJar?: string | undefined;
3602
3665
  mcVersion?: string | undefined;
3666
+ forceRemap?: boolean | undefined;
3603
3667
  }, {
3604
3668
  targetMapping: "mojang" | "yarn";
3605
3669
  inputJar: string;
3606
3670
  outputJar?: string | undefined;
3607
3671
  mcVersion?: string | undefined;
3672
+ forceRemap?: boolean | undefined;
3608
3673
  }>;
3609
3674
  export declare const emptySchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;