@adhisang/minecraft-modding-mcp 6.1.1 → 6.2.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.
- package/CHANGELOG.md +30 -0
- package/README.md +4 -2
- package/dist/cache-registry.d.ts +1 -1
- package/dist/cache-registry.js +3 -0
- package/dist/entry-tools/analyze-mod-service.d.ts +12 -6
- package/dist/entry-tools/analyze-mod-service.js +37 -3
- package/dist/entry-tools/analyze-symbol-service.d.ts +2 -0
- package/dist/entry-tools/analyze-symbol-service.js +37 -2
- package/dist/entry-tools/inspect-minecraft/internal.d.ts +4 -0
- package/dist/entry-tools/inspect-minecraft/internal.js +28 -0
- package/dist/entry-tools/manage-cache-service.d.ts +4 -4
- package/dist/error-mapping.d.ts +13 -0
- package/dist/error-mapping.js +35 -2
- package/dist/errors.d.ts +2 -0
- package/dist/errors.js +2 -0
- package/dist/index.js +37 -17
- package/dist/mapping/internal-types.d.ts +7 -0
- package/dist/mapping/types.d.ts +18 -0
- package/dist/mapping-service.js +16 -3
- package/dist/minecraft-explorer-service.d.ts +4 -0
- package/dist/minecraft-explorer-service.js +156 -17
- package/dist/mod-analyzer.d.ts +7 -0
- package/dist/mod-analyzer.js +28 -7
- package/dist/source/artifact-resolver.d.ts +2 -0
- package/dist/source/artifact-resolver.js +24 -1
- package/dist/source/class-source/members-builder.d.ts +4 -0
- package/dist/source/class-source/members-builder.js +3 -1
- package/dist/source/class-source.d.ts +2 -1
- package/dist/source/class-source.js +154 -17
- package/dist/source/did-you-mean.d.ts +14 -0
- package/dist/source/did-you-mean.js +79 -0
- package/dist/source/file-access.js +159 -3
- package/dist/source/indexer.js +72 -2
- package/dist/source/lifecycle/runtime-check.js +9 -5
- package/dist/source/nested-jars.d.ts +59 -0
- package/dist/source/nested-jars.js +198 -0
- package/dist/source/workspace-target.js +5 -2
- package/dist/source-jar-reader.d.ts +16 -0
- package/dist/source-jar-reader.js +82 -0
- package/dist/source-service.d.ts +36 -0
- package/dist/source-service.js +49 -6
- package/dist/stage-emitter.js +24 -8
- package/dist/stdio-supervisor.d.ts +92 -9
- package/dist/stdio-supervisor.js +915 -103
- package/dist/tool-contract-manifest.js +1 -1
- package/dist/tool-guidance.js +3 -1
- package/dist/tool-schemas.d.ts +1337 -149
- package/dist/tool-schemas.js +38 -7
- package/dist/types.d.ts +23 -0
- package/dist/workspace-mapping-service.d.ts +1 -0
- package/dist/workspace-mapping-service.js +120 -8
- package/docs/tool-reference.md +19 -3
- package/package.json +1 -1
package/dist/tool-schemas.d.ts
CHANGED
|
@@ -401,7 +401,7 @@ export declare const resolveArtifactSchema: z.ZodObject<{
|
|
|
401
401
|
preferProjectVersion?: boolean | undefined;
|
|
402
402
|
strictVersion?: boolean | undefined;
|
|
403
403
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
404
|
-
include?: ("entries" | "workspace" | "
|
|
404
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
405
405
|
gradleUserHome?: string | undefined;
|
|
406
406
|
}, {
|
|
407
407
|
target: {
|
|
@@ -432,7 +432,7 @@ export declare const resolveArtifactSchema: z.ZodObject<{
|
|
|
432
432
|
strictVersion?: boolean | undefined;
|
|
433
433
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
434
434
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
435
|
-
include?: ("entries" | "workspace" | "
|
|
435
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
436
436
|
gradleUserHome?: string | undefined;
|
|
437
437
|
}>;
|
|
438
438
|
export declare const getClassSourceShape: {
|
|
@@ -609,9 +609,9 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
609
609
|
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">>;
|
|
610
610
|
includeProvenance: z.ZodDefault<z.ZodBoolean>;
|
|
611
611
|
}, "strip", z.ZodTypeAny, {
|
|
612
|
+
className: string;
|
|
612
613
|
allowDecompile: boolean;
|
|
613
614
|
mode: "full" | "metadata" | "snippet";
|
|
614
|
-
className: string;
|
|
615
615
|
target: {
|
|
616
616
|
kind: "workspace";
|
|
617
617
|
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
@@ -648,7 +648,7 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
648
648
|
endLine?: number | undefined;
|
|
649
649
|
maxLines?: number | undefined;
|
|
650
650
|
maxChars?: number | undefined;
|
|
651
|
-
include?: ("entries" | "workspace" | "
|
|
651
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
652
652
|
gradleUserHome?: string | undefined;
|
|
653
653
|
}, {
|
|
654
654
|
className: string;
|
|
@@ -689,13 +689,13 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
689
689
|
maxLines?: number | undefined;
|
|
690
690
|
maxChars?: number | undefined;
|
|
691
691
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
692
|
-
include?: ("entries" | "workspace" | "
|
|
692
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
693
693
|
gradleUserHome?: string | undefined;
|
|
694
694
|
includeProvenance?: boolean | undefined;
|
|
695
695
|
}>, {
|
|
696
|
+
className: string;
|
|
696
697
|
allowDecompile: boolean;
|
|
697
698
|
mode: "full" | "metadata" | "snippet";
|
|
698
|
-
className: string;
|
|
699
699
|
target: {
|
|
700
700
|
kind: "workspace";
|
|
701
701
|
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
@@ -732,7 +732,7 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
732
732
|
endLine?: number | undefined;
|
|
733
733
|
maxLines?: number | undefined;
|
|
734
734
|
maxChars?: number | undefined;
|
|
735
|
-
include?: ("entries" | "workspace" | "
|
|
735
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
736
736
|
gradleUserHome?: string | undefined;
|
|
737
737
|
}, {
|
|
738
738
|
className: string;
|
|
@@ -773,7 +773,7 @@ export declare const getClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
773
773
|
maxLines?: number | undefined;
|
|
774
774
|
maxChars?: number | undefined;
|
|
775
775
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
776
|
-
include?: ("entries" | "workspace" | "
|
|
776
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
777
777
|
gradleUserHome?: string | undefined;
|
|
778
778
|
includeProvenance?: boolean | undefined;
|
|
779
779
|
}>;
|
|
@@ -852,6 +852,7 @@ export declare const getClassMembersShape: {
|
|
|
852
852
|
access: z.ZodDefault<z.ZodEnum<["public", "all"]>>;
|
|
853
853
|
includeSynthetic: z.ZodDefault<z.ZodBoolean>;
|
|
854
854
|
includeInherited: z.ZodDefault<z.ZodBoolean>;
|
|
855
|
+
includeAnnotations: z.ZodDefault<z.ZodBoolean>;
|
|
855
856
|
memberPattern: z.ZodOptional<z.ZodString>;
|
|
856
857
|
projection: z.ZodOptional<z.ZodEnum<["names", "signatures", "full"]>>;
|
|
857
858
|
maxMembers: z.ZodOptional<z.ZodNumber>;
|
|
@@ -941,6 +942,7 @@ export declare const getClassMembersSchema: z.ZodObject<{
|
|
|
941
942
|
access: z.ZodDefault<z.ZodEnum<["public", "all"]>>;
|
|
942
943
|
includeSynthetic: z.ZodDefault<z.ZodBoolean>;
|
|
943
944
|
includeInherited: z.ZodDefault<z.ZodBoolean>;
|
|
945
|
+
includeAnnotations: z.ZodDefault<z.ZodBoolean>;
|
|
944
946
|
memberPattern: z.ZodOptional<z.ZodString>;
|
|
945
947
|
projection: z.ZodOptional<z.ZodEnum<["names", "signatures", "full"]>>;
|
|
946
948
|
maxMembers: z.ZodOptional<z.ZodNumber>;
|
|
@@ -955,11 +957,11 @@ export declare const getClassMembersSchema: z.ZodObject<{
|
|
|
955
957
|
includeProvenance: z.ZodDefault<z.ZodBoolean>;
|
|
956
958
|
includeDescriptors: z.ZodDefault<z.ZodBoolean>;
|
|
957
959
|
}, "strip", z.ZodTypeAny, {
|
|
960
|
+
className: string;
|
|
958
961
|
allowDecompile: boolean;
|
|
959
962
|
access: "public" | "all";
|
|
960
963
|
includeSynthetic: boolean;
|
|
961
964
|
includeInherited: boolean;
|
|
962
|
-
className: string;
|
|
963
965
|
target: {
|
|
964
966
|
kind: "workspace";
|
|
965
967
|
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
@@ -985,6 +987,7 @@ export declare const getClassMembersSchema: z.ZodObject<{
|
|
|
985
987
|
};
|
|
986
988
|
detail: "summary" | "standard" | "full";
|
|
987
989
|
includeProvenance: boolean;
|
|
990
|
+
includeAnnotations: boolean;
|
|
988
991
|
includeDescriptors: boolean;
|
|
989
992
|
projectPath?: string | undefined;
|
|
990
993
|
mapping?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
@@ -995,7 +998,7 @@ export declare const getClassMembersSchema: z.ZodObject<{
|
|
|
995
998
|
strictVersion?: boolean | undefined;
|
|
996
999
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
997
1000
|
memberPattern?: string | undefined;
|
|
998
|
-
include?: ("entries" | "workspace" | "
|
|
1001
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
999
1002
|
gradleUserHome?: string | undefined;
|
|
1000
1003
|
projection?: "full" | "names" | "signatures" | undefined;
|
|
1001
1004
|
}, {
|
|
@@ -1037,9 +1040,10 @@ export declare const getClassMembersSchema: z.ZodObject<{
|
|
|
1037
1040
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
1038
1041
|
memberPattern?: string | undefined;
|
|
1039
1042
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
1040
|
-
include?: ("entries" | "workspace" | "
|
|
1043
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
1041
1044
|
gradleUserHome?: string | undefined;
|
|
1042
1045
|
includeProvenance?: boolean | undefined;
|
|
1046
|
+
includeAnnotations?: boolean | undefined;
|
|
1043
1047
|
projection?: "full" | "names" | "signatures" | undefined;
|
|
1044
1048
|
includeDescriptors?: boolean | undefined;
|
|
1045
1049
|
}>;
|
|
@@ -1595,7 +1599,7 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1595
1599
|
preferProjectVersion?: boolean | undefined;
|
|
1596
1600
|
strictVersion?: boolean | undefined;
|
|
1597
1601
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
1598
|
-
include?: ("entries" | "workspace" | "
|
|
1602
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
1599
1603
|
gradleUserHome?: string | undefined;
|
|
1600
1604
|
concurrency?: number | undefined;
|
|
1601
1605
|
failFast?: boolean | undefined;
|
|
@@ -1637,7 +1641,7 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1637
1641
|
strictVersion?: boolean | undefined;
|
|
1638
1642
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
1639
1643
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
1640
|
-
include?: ("entries" | "workspace" | "
|
|
1644
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
1641
1645
|
gradleUserHome?: string | undefined;
|
|
1642
1646
|
concurrency?: number | undefined;
|
|
1643
1647
|
failFast?: boolean | undefined;
|
|
@@ -1679,7 +1683,7 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1679
1683
|
preferProjectVersion?: boolean | undefined;
|
|
1680
1684
|
strictVersion?: boolean | undefined;
|
|
1681
1685
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
1682
|
-
include?: ("entries" | "workspace" | "
|
|
1686
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
1683
1687
|
gradleUserHome?: string | undefined;
|
|
1684
1688
|
concurrency?: number | undefined;
|
|
1685
1689
|
failFast?: boolean | undefined;
|
|
@@ -1721,7 +1725,7 @@ export declare const batchClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1721
1725
|
strictVersion?: boolean | undefined;
|
|
1722
1726
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
1723
1727
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
1724
|
-
include?: ("entries" | "workspace" | "
|
|
1728
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
1725
1729
|
gradleUserHome?: string | undefined;
|
|
1726
1730
|
concurrency?: number | undefined;
|
|
1727
1731
|
failFast?: boolean | undefined;
|
|
@@ -1974,7 +1978,7 @@ export declare const batchClassMembersSchema: z.ZodObject<{
|
|
|
1974
1978
|
preferProjectVersion?: boolean | undefined;
|
|
1975
1979
|
strictVersion?: boolean | undefined;
|
|
1976
1980
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
1977
|
-
include?: ("entries" | "workspace" | "
|
|
1981
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
1978
1982
|
gradleUserHome?: string | undefined;
|
|
1979
1983
|
projection?: "full" | "names" | "signatures" | undefined;
|
|
1980
1984
|
concurrency?: number | undefined;
|
|
@@ -2016,7 +2020,7 @@ export declare const batchClassMembersSchema: z.ZodObject<{
|
|
|
2016
2020
|
strictVersion?: boolean | undefined;
|
|
2017
2021
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2018
2022
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2019
|
-
include?: ("entries" | "workspace" | "
|
|
2023
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2020
2024
|
gradleUserHome?: string | undefined;
|
|
2021
2025
|
projection?: "full" | "names" | "signatures" | undefined;
|
|
2022
2026
|
concurrency?: number | undefined;
|
|
@@ -2216,7 +2220,7 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
|
|
|
2216
2220
|
preferProjectVersion?: boolean | undefined;
|
|
2217
2221
|
strictVersion?: boolean | undefined;
|
|
2218
2222
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2219
|
-
include?: ("entries" | "workspace" | "
|
|
2223
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2220
2224
|
gradleUserHome?: string | undefined;
|
|
2221
2225
|
concurrency?: number | undefined;
|
|
2222
2226
|
failFast?: boolean | undefined;
|
|
@@ -2246,7 +2250,7 @@ export declare const batchSymbolExistsSchema: z.ZodObject<{
|
|
|
2246
2250
|
strictVersion?: boolean | undefined;
|
|
2247
2251
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2248
2252
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2249
|
-
include?: ("entries" | "workspace" | "
|
|
2253
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2250
2254
|
gradleUserHome?: string | undefined;
|
|
2251
2255
|
concurrency?: number | undefined;
|
|
2252
2256
|
failFast?: boolean | undefined;
|
|
@@ -2427,7 +2431,7 @@ export declare const batchMappingsSchema: z.ZodObject<{
|
|
|
2427
2431
|
detail: "summary" | "standard" | "full";
|
|
2428
2432
|
projectPath?: string | undefined;
|
|
2429
2433
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2430
|
-
include?: ("entries" | "workspace" | "
|
|
2434
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2431
2435
|
gradleUserHome?: string | undefined;
|
|
2432
2436
|
concurrency?: number | undefined;
|
|
2433
2437
|
failFast?: boolean | undefined;
|
|
@@ -2450,155 +2454,1107 @@ export declare const batchMappingsSchema: z.ZodObject<{
|
|
|
2450
2454
|
projectPath?: string | undefined;
|
|
2451
2455
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2452
2456
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2453
|
-
include?: ("entries" | "workspace" | "
|
|
2457
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2454
2458
|
gradleUserHome?: string | undefined;
|
|
2455
2459
|
concurrency?: number | undefined;
|
|
2456
2460
|
failFast?: boolean | undefined;
|
|
2457
2461
|
}>;
|
|
2458
|
-
export declare const
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2462
|
+
export declare const findClassShape: {
|
|
2463
|
+
className: z.ZodString;
|
|
2464
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
2465
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
2466
|
+
kind: z.ZodLiteral<"version">;
|
|
2467
|
+
value: z.ZodString;
|
|
2468
|
+
}, "strip", z.ZodTypeAny, {
|
|
2469
|
+
kind: "version";
|
|
2470
|
+
value: string;
|
|
2471
|
+
}, {
|
|
2472
|
+
kind: "version";
|
|
2473
|
+
value: string;
|
|
2474
|
+
}>, z.ZodObject<{
|
|
2475
|
+
kind: z.ZodLiteral<"jar">;
|
|
2476
|
+
value: z.ZodString;
|
|
2477
|
+
}, "strip", z.ZodTypeAny, {
|
|
2478
|
+
kind: "jar";
|
|
2479
|
+
value: string;
|
|
2480
|
+
}, {
|
|
2481
|
+
kind: "jar";
|
|
2482
|
+
value: string;
|
|
2483
|
+
}>, z.ZodObject<{
|
|
2484
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
2485
|
+
value: z.ZodString;
|
|
2486
|
+
}, "strip", z.ZodTypeAny, {
|
|
2487
|
+
kind: "coordinate";
|
|
2488
|
+
value: string;
|
|
2489
|
+
}, {
|
|
2490
|
+
kind: "coordinate";
|
|
2491
|
+
value: string;
|
|
2492
|
+
}>, z.ZodObject<{
|
|
2493
|
+
kind: z.ZodLiteral<"workspace">;
|
|
2494
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
2495
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
2496
|
+
}, "strip", z.ZodTypeAny, {
|
|
2497
|
+
kind: "workspace";
|
|
2498
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2499
|
+
strict?: boolean | undefined;
|
|
2500
|
+
}, {
|
|
2501
|
+
kind: "workspace";
|
|
2502
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2503
|
+
strict?: boolean | undefined;
|
|
2504
|
+
}>, z.ZodObject<{
|
|
2505
|
+
kind: z.ZodLiteral<"dependency">;
|
|
2506
|
+
group: z.ZodString;
|
|
2507
|
+
name: z.ZodString;
|
|
2508
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2509
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
2510
|
+
}, "strip", z.ZodTypeAny, {
|
|
2511
|
+
name: string;
|
|
2512
|
+
kind: "dependency";
|
|
2513
|
+
group: string;
|
|
2514
|
+
version?: string | undefined;
|
|
2515
|
+
versionFromProject?: boolean | undefined;
|
|
2516
|
+
}, {
|
|
2517
|
+
name: string;
|
|
2518
|
+
kind: "dependency";
|
|
2519
|
+
group: string;
|
|
2520
|
+
version?: string | undefined;
|
|
2521
|
+
versionFromProject?: boolean | undefined;
|
|
2522
|
+
}>, z.ZodObject<{
|
|
2523
|
+
kind: z.ZodLiteral<"artifact">;
|
|
2524
|
+
artifactId: z.ZodString;
|
|
2525
|
+
}, "strip", z.ZodTypeAny, {
|
|
2526
|
+
kind: "artifact";
|
|
2527
|
+
artifactId: string;
|
|
2528
|
+
}, {
|
|
2529
|
+
kind: "artifact";
|
|
2530
|
+
artifactId: string;
|
|
2531
|
+
}>]>>;
|
|
2532
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
2474
2533
|
};
|
|
2475
|
-
export declare const
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2534
|
+
export declare const findClassSchema: z.ZodEffects<z.ZodObject<{
|
|
2535
|
+
className: z.ZodString;
|
|
2536
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
2537
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
2538
|
+
kind: z.ZodLiteral<"version">;
|
|
2539
|
+
value: z.ZodString;
|
|
2540
|
+
}, "strip", z.ZodTypeAny, {
|
|
2541
|
+
kind: "version";
|
|
2542
|
+
value: string;
|
|
2543
|
+
}, {
|
|
2544
|
+
kind: "version";
|
|
2545
|
+
value: string;
|
|
2546
|
+
}>, z.ZodObject<{
|
|
2547
|
+
kind: z.ZodLiteral<"jar">;
|
|
2548
|
+
value: z.ZodString;
|
|
2549
|
+
}, "strip", z.ZodTypeAny, {
|
|
2550
|
+
kind: "jar";
|
|
2551
|
+
value: string;
|
|
2552
|
+
}, {
|
|
2553
|
+
kind: "jar";
|
|
2554
|
+
value: string;
|
|
2555
|
+
}>, z.ZodObject<{
|
|
2556
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
2557
|
+
value: z.ZodString;
|
|
2558
|
+
}, "strip", z.ZodTypeAny, {
|
|
2559
|
+
kind: "coordinate";
|
|
2560
|
+
value: string;
|
|
2561
|
+
}, {
|
|
2562
|
+
kind: "coordinate";
|
|
2563
|
+
value: string;
|
|
2564
|
+
}>, z.ZodObject<{
|
|
2565
|
+
kind: z.ZodLiteral<"workspace">;
|
|
2566
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
2567
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
2568
|
+
}, "strip", z.ZodTypeAny, {
|
|
2569
|
+
kind: "workspace";
|
|
2570
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2571
|
+
strict?: boolean | undefined;
|
|
2572
|
+
}, {
|
|
2573
|
+
kind: "workspace";
|
|
2574
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2575
|
+
strict?: boolean | undefined;
|
|
2576
|
+
}>, z.ZodObject<{
|
|
2577
|
+
kind: z.ZodLiteral<"dependency">;
|
|
2578
|
+
group: z.ZodString;
|
|
2579
|
+
name: z.ZodString;
|
|
2580
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2581
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
2582
|
+
}, "strip", z.ZodTypeAny, {
|
|
2583
|
+
name: string;
|
|
2584
|
+
kind: "dependency";
|
|
2585
|
+
group: string;
|
|
2586
|
+
version?: string | undefined;
|
|
2587
|
+
versionFromProject?: boolean | undefined;
|
|
2588
|
+
}, {
|
|
2589
|
+
name: string;
|
|
2590
|
+
kind: "dependency";
|
|
2591
|
+
group: string;
|
|
2592
|
+
version?: string | undefined;
|
|
2593
|
+
versionFromProject?: boolean | undefined;
|
|
2594
|
+
}>, z.ZodObject<{
|
|
2595
|
+
kind: z.ZodLiteral<"artifact">;
|
|
2596
|
+
artifactId: z.ZodString;
|
|
2597
|
+
}, "strip", z.ZodTypeAny, {
|
|
2598
|
+
kind: "artifact";
|
|
2599
|
+
artifactId: string;
|
|
2600
|
+
}, {
|
|
2601
|
+
kind: "artifact";
|
|
2602
|
+
artifactId: string;
|
|
2603
|
+
}>]>>;
|
|
2604
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
2491
2605
|
}, "strip", z.ZodTypeAny, {
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
detail: "summary" | "standard" | "full";
|
|
2495
|
-
query: string;
|
|
2496
|
-
queryMode: "auto" | "token" | "literal";
|
|
2497
|
-
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
2498
|
-
cursor?: string | undefined;
|
|
2499
|
-
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2500
|
-
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;
|
|
2501
|
-
gradleUserHome?: string | undefined;
|
|
2502
|
-
symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
|
|
2503
|
-
packagePrefix?: string | undefined;
|
|
2504
|
-
intent?: "symbol" | "path" | "text" | undefined;
|
|
2505
|
-
fileGlob?: string | undefined;
|
|
2506
|
-
queryNamespace?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
2507
|
-
}, {
|
|
2508
|
-
artifactId: string;
|
|
2509
|
-
query: string;
|
|
2510
|
-
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
2606
|
+
className: string;
|
|
2607
|
+
artifactId?: string | undefined;
|
|
2511
2608
|
limit?: number | undefined;
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
packagePrefix?: string | undefined;
|
|
2536
|
-
intent?: "symbol" | "path" | "text" | undefined;
|
|
2537
|
-
fileGlob?: string | undefined;
|
|
2538
|
-
queryNamespace?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
2609
|
+
target?: {
|
|
2610
|
+
kind: "workspace";
|
|
2611
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2612
|
+
strict?: boolean | undefined;
|
|
2613
|
+
} | {
|
|
2614
|
+
name: string;
|
|
2615
|
+
kind: "dependency";
|
|
2616
|
+
group: string;
|
|
2617
|
+
version?: string | undefined;
|
|
2618
|
+
versionFromProject?: boolean | undefined;
|
|
2619
|
+
} | {
|
|
2620
|
+
kind: "version";
|
|
2621
|
+
value: string;
|
|
2622
|
+
} | {
|
|
2623
|
+
kind: "jar";
|
|
2624
|
+
value: string;
|
|
2625
|
+
} | {
|
|
2626
|
+
kind: "coordinate";
|
|
2627
|
+
value: string;
|
|
2628
|
+
} | {
|
|
2629
|
+
kind: "artifact";
|
|
2630
|
+
artifactId: string;
|
|
2631
|
+
} | undefined;
|
|
2539
2632
|
}, {
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
2633
|
+
className: string;
|
|
2634
|
+
artifactId?: string | undefined;
|
|
2543
2635
|
limit?: number | undefined;
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2636
|
+
target?: {
|
|
2637
|
+
kind: "workspace";
|
|
2638
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2639
|
+
strict?: boolean | undefined;
|
|
2640
|
+
} | {
|
|
2641
|
+
name: string;
|
|
2642
|
+
kind: "dependency";
|
|
2643
|
+
group: string;
|
|
2644
|
+
version?: string | undefined;
|
|
2645
|
+
versionFromProject?: boolean | undefined;
|
|
2646
|
+
} | {
|
|
2647
|
+
kind: "version";
|
|
2648
|
+
value: string;
|
|
2649
|
+
} | {
|
|
2650
|
+
kind: "jar";
|
|
2651
|
+
value: string;
|
|
2652
|
+
} | {
|
|
2653
|
+
kind: "coordinate";
|
|
2654
|
+
value: string;
|
|
2655
|
+
} | {
|
|
2656
|
+
kind: "artifact";
|
|
2657
|
+
artifactId: string;
|
|
2658
|
+
} | undefined;
|
|
2659
|
+
}>, {
|
|
2660
|
+
className: string;
|
|
2661
|
+
artifactId?: string | undefined;
|
|
2662
|
+
limit?: number | undefined;
|
|
2663
|
+
target?: {
|
|
2664
|
+
kind: "workspace";
|
|
2665
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2666
|
+
strict?: boolean | undefined;
|
|
2667
|
+
} | {
|
|
2668
|
+
name: string;
|
|
2669
|
+
kind: "dependency";
|
|
2670
|
+
group: string;
|
|
2671
|
+
version?: string | undefined;
|
|
2672
|
+
versionFromProject?: boolean | undefined;
|
|
2673
|
+
} | {
|
|
2674
|
+
kind: "version";
|
|
2675
|
+
value: string;
|
|
2676
|
+
} | {
|
|
2677
|
+
kind: "jar";
|
|
2678
|
+
value: string;
|
|
2679
|
+
} | {
|
|
2680
|
+
kind: "coordinate";
|
|
2681
|
+
value: string;
|
|
2682
|
+
} | {
|
|
2683
|
+
kind: "artifact";
|
|
2684
|
+
artifactId: string;
|
|
2685
|
+
} | undefined;
|
|
2686
|
+
}, {
|
|
2687
|
+
className: string;
|
|
2688
|
+
artifactId?: string | undefined;
|
|
2689
|
+
limit?: number | undefined;
|
|
2690
|
+
target?: {
|
|
2691
|
+
kind: "workspace";
|
|
2692
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2693
|
+
strict?: boolean | undefined;
|
|
2694
|
+
} | {
|
|
2695
|
+
name: string;
|
|
2696
|
+
kind: "dependency";
|
|
2697
|
+
group: string;
|
|
2698
|
+
version?: string | undefined;
|
|
2699
|
+
versionFromProject?: boolean | undefined;
|
|
2700
|
+
} | {
|
|
2701
|
+
kind: "version";
|
|
2702
|
+
value: string;
|
|
2703
|
+
} | {
|
|
2704
|
+
kind: "jar";
|
|
2705
|
+
value: string;
|
|
2706
|
+
} | {
|
|
2707
|
+
kind: "coordinate";
|
|
2708
|
+
value: string;
|
|
2709
|
+
} | {
|
|
2710
|
+
kind: "artifact";
|
|
2711
|
+
artifactId: string;
|
|
2712
|
+
} | undefined;
|
|
2713
|
+
}>;
|
|
2714
|
+
export declare const searchClassSourceShape: {
|
|
2715
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
2716
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
2717
|
+
kind: z.ZodLiteral<"version">;
|
|
2718
|
+
value: z.ZodString;
|
|
2719
|
+
}, "strip", z.ZodTypeAny, {
|
|
2720
|
+
kind: "version";
|
|
2721
|
+
value: string;
|
|
2722
|
+
}, {
|
|
2723
|
+
kind: "version";
|
|
2724
|
+
value: string;
|
|
2725
|
+
}>, z.ZodObject<{
|
|
2726
|
+
kind: z.ZodLiteral<"jar">;
|
|
2727
|
+
value: z.ZodString;
|
|
2728
|
+
}, "strip", z.ZodTypeAny, {
|
|
2729
|
+
kind: "jar";
|
|
2730
|
+
value: string;
|
|
2731
|
+
}, {
|
|
2732
|
+
kind: "jar";
|
|
2733
|
+
value: string;
|
|
2734
|
+
}>, z.ZodObject<{
|
|
2735
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
2736
|
+
value: z.ZodString;
|
|
2737
|
+
}, "strip", z.ZodTypeAny, {
|
|
2738
|
+
kind: "coordinate";
|
|
2739
|
+
value: string;
|
|
2740
|
+
}, {
|
|
2741
|
+
kind: "coordinate";
|
|
2742
|
+
value: string;
|
|
2743
|
+
}>, z.ZodObject<{
|
|
2744
|
+
kind: z.ZodLiteral<"workspace">;
|
|
2745
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
2746
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
2747
|
+
}, "strip", z.ZodTypeAny, {
|
|
2748
|
+
kind: "workspace";
|
|
2749
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2750
|
+
strict?: boolean | undefined;
|
|
2751
|
+
}, {
|
|
2752
|
+
kind: "workspace";
|
|
2753
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2754
|
+
strict?: boolean | undefined;
|
|
2755
|
+
}>, z.ZodObject<{
|
|
2756
|
+
kind: z.ZodLiteral<"dependency">;
|
|
2757
|
+
group: z.ZodString;
|
|
2758
|
+
name: z.ZodString;
|
|
2759
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2760
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
2761
|
+
}, "strip", z.ZodTypeAny, {
|
|
2762
|
+
name: string;
|
|
2763
|
+
kind: "dependency";
|
|
2764
|
+
group: string;
|
|
2765
|
+
version?: string | undefined;
|
|
2766
|
+
versionFromProject?: boolean | undefined;
|
|
2767
|
+
}, {
|
|
2768
|
+
name: string;
|
|
2769
|
+
kind: "dependency";
|
|
2770
|
+
group: string;
|
|
2771
|
+
version?: string | undefined;
|
|
2772
|
+
versionFromProject?: boolean | undefined;
|
|
2773
|
+
}>, z.ZodObject<{
|
|
2774
|
+
kind: z.ZodLiteral<"artifact">;
|
|
2775
|
+
artifactId: z.ZodString;
|
|
2776
|
+
}, "strip", z.ZodTypeAny, {
|
|
2777
|
+
kind: "artifact";
|
|
2778
|
+
artifactId: string;
|
|
2779
|
+
}, {
|
|
2780
|
+
kind: "artifact";
|
|
2781
|
+
artifactId: string;
|
|
2782
|
+
}>]>>;
|
|
2783
|
+
query: z.ZodString;
|
|
2784
|
+
intent: z.ZodOptional<z.ZodEnum<["symbol", "text", "path"]>>;
|
|
2785
|
+
match: z.ZodOptional<z.ZodEnum<["exact", "prefix", "contains", "regex"]>>;
|
|
2786
|
+
packagePrefix: z.ZodOptional<z.ZodString>;
|
|
2787
|
+
fileGlob: z.ZodOptional<z.ZodString>;
|
|
2788
|
+
symbolKind: z.ZodOptional<z.ZodEnum<["class", "interface", "enum", "record", "method", "field"]>>;
|
|
2789
|
+
queryMode: z.ZodDefault<z.ZodEnum<["auto", "token", "literal"]>>;
|
|
2790
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
2791
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
2792
|
+
queryNamespace: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
|
|
2793
|
+
sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
|
|
2794
|
+
gradleUserHome: z.ZodOptional<z.ZodString>;
|
|
2795
|
+
detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
|
|
2796
|
+
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">>;
|
|
2797
|
+
};
|
|
2798
|
+
export declare const searchClassSourceSchema: z.ZodEffects<z.ZodObject<{
|
|
2799
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
2800
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
2801
|
+
kind: z.ZodLiteral<"version">;
|
|
2802
|
+
value: z.ZodString;
|
|
2803
|
+
}, "strip", z.ZodTypeAny, {
|
|
2804
|
+
kind: "version";
|
|
2805
|
+
value: string;
|
|
2806
|
+
}, {
|
|
2807
|
+
kind: "version";
|
|
2808
|
+
value: string;
|
|
2809
|
+
}>, z.ZodObject<{
|
|
2810
|
+
kind: z.ZodLiteral<"jar">;
|
|
2811
|
+
value: z.ZodString;
|
|
2812
|
+
}, "strip", z.ZodTypeAny, {
|
|
2813
|
+
kind: "jar";
|
|
2814
|
+
value: string;
|
|
2815
|
+
}, {
|
|
2816
|
+
kind: "jar";
|
|
2817
|
+
value: string;
|
|
2818
|
+
}>, z.ZodObject<{
|
|
2819
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
2820
|
+
value: z.ZodString;
|
|
2821
|
+
}, "strip", z.ZodTypeAny, {
|
|
2822
|
+
kind: "coordinate";
|
|
2823
|
+
value: string;
|
|
2824
|
+
}, {
|
|
2825
|
+
kind: "coordinate";
|
|
2826
|
+
value: string;
|
|
2827
|
+
}>, z.ZodObject<{
|
|
2828
|
+
kind: z.ZodLiteral<"workspace">;
|
|
2829
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
2830
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
2831
|
+
}, "strip", z.ZodTypeAny, {
|
|
2832
|
+
kind: "workspace";
|
|
2833
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2834
|
+
strict?: boolean | undefined;
|
|
2835
|
+
}, {
|
|
2836
|
+
kind: "workspace";
|
|
2837
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2838
|
+
strict?: boolean | undefined;
|
|
2839
|
+
}>, z.ZodObject<{
|
|
2840
|
+
kind: z.ZodLiteral<"dependency">;
|
|
2841
|
+
group: z.ZodString;
|
|
2842
|
+
name: z.ZodString;
|
|
2843
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2844
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
2845
|
+
}, "strip", z.ZodTypeAny, {
|
|
2846
|
+
name: string;
|
|
2847
|
+
kind: "dependency";
|
|
2848
|
+
group: string;
|
|
2849
|
+
version?: string | undefined;
|
|
2850
|
+
versionFromProject?: boolean | undefined;
|
|
2851
|
+
}, {
|
|
2852
|
+
name: string;
|
|
2853
|
+
kind: "dependency";
|
|
2854
|
+
group: string;
|
|
2855
|
+
version?: string | undefined;
|
|
2856
|
+
versionFromProject?: boolean | undefined;
|
|
2857
|
+
}>, z.ZodObject<{
|
|
2858
|
+
kind: z.ZodLiteral<"artifact">;
|
|
2859
|
+
artifactId: z.ZodString;
|
|
2860
|
+
}, "strip", z.ZodTypeAny, {
|
|
2861
|
+
kind: "artifact";
|
|
2862
|
+
artifactId: string;
|
|
2863
|
+
}, {
|
|
2864
|
+
kind: "artifact";
|
|
2865
|
+
artifactId: string;
|
|
2866
|
+
}>]>>;
|
|
2867
|
+
query: z.ZodString;
|
|
2868
|
+
intent: z.ZodOptional<z.ZodEnum<["symbol", "text", "path"]>>;
|
|
2869
|
+
match: z.ZodOptional<z.ZodEnum<["exact", "prefix", "contains", "regex"]>>;
|
|
2870
|
+
packagePrefix: z.ZodOptional<z.ZodString>;
|
|
2871
|
+
fileGlob: z.ZodOptional<z.ZodString>;
|
|
2872
|
+
symbolKind: z.ZodOptional<z.ZodEnum<["class", "interface", "enum", "record", "method", "field"]>>;
|
|
2873
|
+
queryMode: z.ZodDefault<z.ZodEnum<["auto", "token", "literal"]>>;
|
|
2874
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
2875
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
2876
|
+
queryNamespace: z.ZodOptional<z.ZodEnum<["obfuscated", "mojang", "intermediary", "yarn"]>>;
|
|
2877
|
+
sourcePriority: z.ZodOptional<z.ZodEnum<["loom-first", "maven-first"]>>;
|
|
2878
|
+
gradleUserHome: z.ZodOptional<z.ZodString>;
|
|
2879
|
+
detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
|
|
2880
|
+
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">>;
|
|
2881
|
+
}, "strip", z.ZodTypeAny, {
|
|
2882
|
+
limit: number;
|
|
2883
|
+
detail: "summary" | "standard" | "full";
|
|
2884
|
+
query: string;
|
|
2885
|
+
queryMode: "auto" | "token" | "literal";
|
|
2886
|
+
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
2887
|
+
artifactId?: string | undefined;
|
|
2888
|
+
cursor?: string | undefined;
|
|
2889
|
+
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2890
|
+
target?: {
|
|
2891
|
+
kind: "workspace";
|
|
2892
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2893
|
+
strict?: boolean | undefined;
|
|
2894
|
+
} | {
|
|
2895
|
+
name: string;
|
|
2896
|
+
kind: "dependency";
|
|
2897
|
+
group: string;
|
|
2898
|
+
version?: string | undefined;
|
|
2899
|
+
versionFromProject?: boolean | undefined;
|
|
2900
|
+
} | {
|
|
2901
|
+
kind: "version";
|
|
2902
|
+
value: string;
|
|
2903
|
+
} | {
|
|
2904
|
+
kind: "jar";
|
|
2905
|
+
value: string;
|
|
2906
|
+
} | {
|
|
2907
|
+
kind: "coordinate";
|
|
2908
|
+
value: string;
|
|
2909
|
+
} | {
|
|
2910
|
+
kind: "artifact";
|
|
2911
|
+
artifactId: string;
|
|
2912
|
+
} | undefined;
|
|
2913
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2914
|
+
gradleUserHome?: string | undefined;
|
|
2915
|
+
symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
|
|
2916
|
+
packagePrefix?: string | undefined;
|
|
2917
|
+
intent?: "symbol" | "path" | "text" | undefined;
|
|
2918
|
+
fileGlob?: string | undefined;
|
|
2919
|
+
queryNamespace?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
2920
|
+
}, {
|
|
2921
|
+
query: string;
|
|
2922
|
+
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
2923
|
+
artifactId?: string | undefined;
|
|
2924
|
+
limit?: number | undefined;
|
|
2925
|
+
cursor?: string | undefined;
|
|
2926
|
+
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2927
|
+
target?: {
|
|
2928
|
+
kind: "workspace";
|
|
2929
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2930
|
+
strict?: boolean | undefined;
|
|
2931
|
+
} | {
|
|
2932
|
+
name: string;
|
|
2933
|
+
kind: "dependency";
|
|
2934
|
+
group: string;
|
|
2935
|
+
version?: string | undefined;
|
|
2936
|
+
versionFromProject?: boolean | undefined;
|
|
2937
|
+
} | {
|
|
2938
|
+
kind: "version";
|
|
2939
|
+
value: string;
|
|
2940
|
+
} | {
|
|
2941
|
+
kind: "jar";
|
|
2942
|
+
value: string;
|
|
2943
|
+
} | {
|
|
2944
|
+
kind: "coordinate";
|
|
2945
|
+
value: string;
|
|
2946
|
+
} | {
|
|
2947
|
+
kind: "artifact";
|
|
2948
|
+
artifactId: string;
|
|
2949
|
+
} | undefined;
|
|
2950
|
+
detail?: "summary" | "standard" | "full" | undefined;
|
|
2951
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2952
|
+
gradleUserHome?: string | undefined;
|
|
2953
|
+
symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
|
|
2954
|
+
packagePrefix?: string | undefined;
|
|
2955
|
+
intent?: "symbol" | "path" | "text" | undefined;
|
|
2956
|
+
fileGlob?: string | undefined;
|
|
2957
|
+
queryMode?: "auto" | "token" | "literal" | undefined;
|
|
2958
|
+
queryNamespace?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
2959
|
+
}>, {
|
|
2960
|
+
limit: number;
|
|
2961
|
+
detail: "summary" | "standard" | "full";
|
|
2962
|
+
query: string;
|
|
2963
|
+
queryMode: "auto" | "token" | "literal";
|
|
2964
|
+
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
2965
|
+
artifactId?: string | undefined;
|
|
2966
|
+
cursor?: string | undefined;
|
|
2967
|
+
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2968
|
+
target?: {
|
|
2969
|
+
kind: "workspace";
|
|
2970
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
2971
|
+
strict?: boolean | undefined;
|
|
2972
|
+
} | {
|
|
2973
|
+
name: string;
|
|
2974
|
+
kind: "dependency";
|
|
2975
|
+
group: string;
|
|
2976
|
+
version?: string | undefined;
|
|
2977
|
+
versionFromProject?: boolean | undefined;
|
|
2978
|
+
} | {
|
|
2979
|
+
kind: "version";
|
|
2980
|
+
value: string;
|
|
2981
|
+
} | {
|
|
2982
|
+
kind: "jar";
|
|
2983
|
+
value: string;
|
|
2984
|
+
} | {
|
|
2985
|
+
kind: "coordinate";
|
|
2986
|
+
value: string;
|
|
2987
|
+
} | {
|
|
2988
|
+
kind: "artifact";
|
|
2989
|
+
artifactId: string;
|
|
2990
|
+
} | undefined;
|
|
2991
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2992
|
+
gradleUserHome?: string | undefined;
|
|
2993
|
+
symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
|
|
2994
|
+
packagePrefix?: string | undefined;
|
|
2995
|
+
intent?: "symbol" | "path" | "text" | undefined;
|
|
2996
|
+
fileGlob?: string | undefined;
|
|
2997
|
+
queryNamespace?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
2998
|
+
}, {
|
|
2999
|
+
query: string;
|
|
3000
|
+
match?: "exact" | "prefix" | "contains" | "regex" | undefined;
|
|
3001
|
+
artifactId?: string | undefined;
|
|
3002
|
+
limit?: number | undefined;
|
|
3003
|
+
cursor?: string | undefined;
|
|
3004
|
+
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
3005
|
+
target?: {
|
|
3006
|
+
kind: "workspace";
|
|
3007
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3008
|
+
strict?: boolean | undefined;
|
|
3009
|
+
} | {
|
|
3010
|
+
name: string;
|
|
3011
|
+
kind: "dependency";
|
|
3012
|
+
group: string;
|
|
3013
|
+
version?: string | undefined;
|
|
3014
|
+
versionFromProject?: boolean | undefined;
|
|
3015
|
+
} | {
|
|
3016
|
+
kind: "version";
|
|
3017
|
+
value: string;
|
|
3018
|
+
} | {
|
|
3019
|
+
kind: "jar";
|
|
3020
|
+
value: string;
|
|
3021
|
+
} | {
|
|
3022
|
+
kind: "coordinate";
|
|
3023
|
+
value: string;
|
|
3024
|
+
} | {
|
|
3025
|
+
kind: "artifact";
|
|
3026
|
+
artifactId: string;
|
|
3027
|
+
} | undefined;
|
|
3028
|
+
detail?: "summary" | "standard" | "full" | undefined;
|
|
3029
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3030
|
+
gradleUserHome?: string | undefined;
|
|
3031
|
+
symbolKind?: "class" | "field" | "method" | "record" | "interface" | "enum" | undefined;
|
|
3032
|
+
packagePrefix?: string | undefined;
|
|
3033
|
+
intent?: "symbol" | "path" | "text" | undefined;
|
|
3034
|
+
fileGlob?: string | undefined;
|
|
3035
|
+
queryMode?: "auto" | "token" | "literal" | undefined;
|
|
3036
|
+
queryNamespace?: "obfuscated" | "mojang" | "intermediary" | "yarn" | undefined;
|
|
3037
|
+
}>;
|
|
3038
|
+
export declare const getArtifactFileShape: {
|
|
3039
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
3040
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
3041
|
+
kind: z.ZodLiteral<"version">;
|
|
3042
|
+
value: z.ZodString;
|
|
3043
|
+
}, "strip", z.ZodTypeAny, {
|
|
3044
|
+
kind: "version";
|
|
3045
|
+
value: string;
|
|
3046
|
+
}, {
|
|
3047
|
+
kind: "version";
|
|
3048
|
+
value: string;
|
|
3049
|
+
}>, z.ZodObject<{
|
|
3050
|
+
kind: z.ZodLiteral<"jar">;
|
|
3051
|
+
value: z.ZodString;
|
|
3052
|
+
}, "strip", z.ZodTypeAny, {
|
|
3053
|
+
kind: "jar";
|
|
3054
|
+
value: string;
|
|
3055
|
+
}, {
|
|
3056
|
+
kind: "jar";
|
|
3057
|
+
value: string;
|
|
3058
|
+
}>, z.ZodObject<{
|
|
3059
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
3060
|
+
value: z.ZodString;
|
|
3061
|
+
}, "strip", z.ZodTypeAny, {
|
|
3062
|
+
kind: "coordinate";
|
|
3063
|
+
value: string;
|
|
3064
|
+
}, {
|
|
3065
|
+
kind: "coordinate";
|
|
3066
|
+
value: string;
|
|
3067
|
+
}>, z.ZodObject<{
|
|
3068
|
+
kind: z.ZodLiteral<"workspace">;
|
|
3069
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
3070
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
3071
|
+
}, "strip", z.ZodTypeAny, {
|
|
3072
|
+
kind: "workspace";
|
|
3073
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3074
|
+
strict?: boolean | undefined;
|
|
3075
|
+
}, {
|
|
3076
|
+
kind: "workspace";
|
|
3077
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3078
|
+
strict?: boolean | undefined;
|
|
3079
|
+
}>, z.ZodObject<{
|
|
3080
|
+
kind: z.ZodLiteral<"dependency">;
|
|
3081
|
+
group: z.ZodString;
|
|
3082
|
+
name: z.ZodString;
|
|
3083
|
+
version: z.ZodOptional<z.ZodString>;
|
|
3084
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
3085
|
+
}, "strip", z.ZodTypeAny, {
|
|
3086
|
+
name: string;
|
|
3087
|
+
kind: "dependency";
|
|
3088
|
+
group: string;
|
|
3089
|
+
version?: string | undefined;
|
|
3090
|
+
versionFromProject?: boolean | undefined;
|
|
3091
|
+
}, {
|
|
3092
|
+
name: string;
|
|
3093
|
+
kind: "dependency";
|
|
3094
|
+
group: string;
|
|
3095
|
+
version?: string | undefined;
|
|
3096
|
+
versionFromProject?: boolean | undefined;
|
|
3097
|
+
}>, z.ZodObject<{
|
|
3098
|
+
kind: z.ZodLiteral<"artifact">;
|
|
3099
|
+
artifactId: z.ZodString;
|
|
3100
|
+
}, "strip", z.ZodTypeAny, {
|
|
3101
|
+
kind: "artifact";
|
|
3102
|
+
artifactId: string;
|
|
3103
|
+
}, {
|
|
3104
|
+
kind: "artifact";
|
|
3105
|
+
artifactId: string;
|
|
3106
|
+
}>]>>;
|
|
3107
|
+
filePath: z.ZodString;
|
|
2559
3108
|
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
2560
3109
|
};
|
|
2561
|
-
export declare const getArtifactFileSchema: z.ZodObject<{
|
|
2562
|
-
artifactId: z.ZodString
|
|
3110
|
+
export declare const getArtifactFileSchema: z.ZodEffects<z.ZodObject<{
|
|
3111
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
3112
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
3113
|
+
kind: z.ZodLiteral<"version">;
|
|
3114
|
+
value: z.ZodString;
|
|
3115
|
+
}, "strip", z.ZodTypeAny, {
|
|
3116
|
+
kind: "version";
|
|
3117
|
+
value: string;
|
|
3118
|
+
}, {
|
|
3119
|
+
kind: "version";
|
|
3120
|
+
value: string;
|
|
3121
|
+
}>, z.ZodObject<{
|
|
3122
|
+
kind: z.ZodLiteral<"jar">;
|
|
3123
|
+
value: z.ZodString;
|
|
3124
|
+
}, "strip", z.ZodTypeAny, {
|
|
3125
|
+
kind: "jar";
|
|
3126
|
+
value: string;
|
|
3127
|
+
}, {
|
|
3128
|
+
kind: "jar";
|
|
3129
|
+
value: string;
|
|
3130
|
+
}>, z.ZodObject<{
|
|
3131
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
3132
|
+
value: z.ZodString;
|
|
3133
|
+
}, "strip", z.ZodTypeAny, {
|
|
3134
|
+
kind: "coordinate";
|
|
3135
|
+
value: string;
|
|
3136
|
+
}, {
|
|
3137
|
+
kind: "coordinate";
|
|
3138
|
+
value: string;
|
|
3139
|
+
}>, z.ZodObject<{
|
|
3140
|
+
kind: z.ZodLiteral<"workspace">;
|
|
3141
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
3142
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
3143
|
+
}, "strip", z.ZodTypeAny, {
|
|
3144
|
+
kind: "workspace";
|
|
3145
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3146
|
+
strict?: boolean | undefined;
|
|
3147
|
+
}, {
|
|
3148
|
+
kind: "workspace";
|
|
3149
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3150
|
+
strict?: boolean | undefined;
|
|
3151
|
+
}>, z.ZodObject<{
|
|
3152
|
+
kind: z.ZodLiteral<"dependency">;
|
|
3153
|
+
group: z.ZodString;
|
|
3154
|
+
name: z.ZodString;
|
|
3155
|
+
version: z.ZodOptional<z.ZodString>;
|
|
3156
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
3157
|
+
}, "strip", z.ZodTypeAny, {
|
|
3158
|
+
name: string;
|
|
3159
|
+
kind: "dependency";
|
|
3160
|
+
group: string;
|
|
3161
|
+
version?: string | undefined;
|
|
3162
|
+
versionFromProject?: boolean | undefined;
|
|
3163
|
+
}, {
|
|
3164
|
+
name: string;
|
|
3165
|
+
kind: "dependency";
|
|
3166
|
+
group: string;
|
|
3167
|
+
version?: string | undefined;
|
|
3168
|
+
versionFromProject?: boolean | undefined;
|
|
3169
|
+
}>, z.ZodObject<{
|
|
3170
|
+
kind: z.ZodLiteral<"artifact">;
|
|
3171
|
+
artifactId: z.ZodString;
|
|
3172
|
+
}, "strip", z.ZodTypeAny, {
|
|
3173
|
+
kind: "artifact";
|
|
3174
|
+
artifactId: string;
|
|
3175
|
+
}, {
|
|
3176
|
+
kind: "artifact";
|
|
3177
|
+
artifactId: string;
|
|
3178
|
+
}>]>>;
|
|
2563
3179
|
filePath: z.ZodString;
|
|
2564
3180
|
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
2565
3181
|
}, "strip", z.ZodTypeAny, {
|
|
2566
|
-
artifactId: string;
|
|
2567
3182
|
filePath: string;
|
|
3183
|
+
artifactId?: string | undefined;
|
|
3184
|
+
target?: {
|
|
3185
|
+
kind: "workspace";
|
|
3186
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3187
|
+
strict?: boolean | undefined;
|
|
3188
|
+
} | {
|
|
3189
|
+
name: string;
|
|
3190
|
+
kind: "dependency";
|
|
3191
|
+
group: string;
|
|
3192
|
+
version?: string | undefined;
|
|
3193
|
+
versionFromProject?: boolean | undefined;
|
|
3194
|
+
} | {
|
|
3195
|
+
kind: "version";
|
|
3196
|
+
value: string;
|
|
3197
|
+
} | {
|
|
3198
|
+
kind: "jar";
|
|
3199
|
+
value: string;
|
|
3200
|
+
} | {
|
|
3201
|
+
kind: "coordinate";
|
|
3202
|
+
value: string;
|
|
3203
|
+
} | {
|
|
3204
|
+
kind: "artifact";
|
|
3205
|
+
artifactId: string;
|
|
3206
|
+
} | undefined;
|
|
3207
|
+
maxBytes?: number | undefined;
|
|
3208
|
+
}, {
|
|
3209
|
+
filePath: string;
|
|
3210
|
+
artifactId?: string | undefined;
|
|
3211
|
+
target?: {
|
|
3212
|
+
kind: "workspace";
|
|
3213
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3214
|
+
strict?: boolean | undefined;
|
|
3215
|
+
} | {
|
|
3216
|
+
name: string;
|
|
3217
|
+
kind: "dependency";
|
|
3218
|
+
group: string;
|
|
3219
|
+
version?: string | undefined;
|
|
3220
|
+
versionFromProject?: boolean | undefined;
|
|
3221
|
+
} | {
|
|
3222
|
+
kind: "version";
|
|
3223
|
+
value: string;
|
|
3224
|
+
} | {
|
|
3225
|
+
kind: "jar";
|
|
3226
|
+
value: string;
|
|
3227
|
+
} | {
|
|
3228
|
+
kind: "coordinate";
|
|
3229
|
+
value: string;
|
|
3230
|
+
} | {
|
|
3231
|
+
kind: "artifact";
|
|
3232
|
+
artifactId: string;
|
|
3233
|
+
} | undefined;
|
|
3234
|
+
maxBytes?: number | undefined;
|
|
3235
|
+
}>, {
|
|
3236
|
+
filePath: string;
|
|
3237
|
+
artifactId?: string | undefined;
|
|
3238
|
+
target?: {
|
|
3239
|
+
kind: "workspace";
|
|
3240
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3241
|
+
strict?: boolean | undefined;
|
|
3242
|
+
} | {
|
|
3243
|
+
name: string;
|
|
3244
|
+
kind: "dependency";
|
|
3245
|
+
group: string;
|
|
3246
|
+
version?: string | undefined;
|
|
3247
|
+
versionFromProject?: boolean | undefined;
|
|
3248
|
+
} | {
|
|
3249
|
+
kind: "version";
|
|
3250
|
+
value: string;
|
|
3251
|
+
} | {
|
|
3252
|
+
kind: "jar";
|
|
3253
|
+
value: string;
|
|
3254
|
+
} | {
|
|
3255
|
+
kind: "coordinate";
|
|
3256
|
+
value: string;
|
|
3257
|
+
} | {
|
|
3258
|
+
kind: "artifact";
|
|
3259
|
+
artifactId: string;
|
|
3260
|
+
} | undefined;
|
|
2568
3261
|
maxBytes?: number | undefined;
|
|
2569
3262
|
}, {
|
|
2570
|
-
artifactId: string;
|
|
2571
3263
|
filePath: string;
|
|
3264
|
+
artifactId?: string | undefined;
|
|
3265
|
+
target?: {
|
|
3266
|
+
kind: "workspace";
|
|
3267
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3268
|
+
strict?: boolean | undefined;
|
|
3269
|
+
} | {
|
|
3270
|
+
name: string;
|
|
3271
|
+
kind: "dependency";
|
|
3272
|
+
group: string;
|
|
3273
|
+
version?: string | undefined;
|
|
3274
|
+
versionFromProject?: boolean | undefined;
|
|
3275
|
+
} | {
|
|
3276
|
+
kind: "version";
|
|
3277
|
+
value: string;
|
|
3278
|
+
} | {
|
|
3279
|
+
kind: "jar";
|
|
3280
|
+
value: string;
|
|
3281
|
+
} | {
|
|
3282
|
+
kind: "coordinate";
|
|
3283
|
+
value: string;
|
|
3284
|
+
} | {
|
|
3285
|
+
kind: "artifact";
|
|
3286
|
+
artifactId: string;
|
|
3287
|
+
} | undefined;
|
|
2572
3288
|
maxBytes?: number | undefined;
|
|
2573
3289
|
}>;
|
|
2574
3290
|
export declare const listArtifactFilesShape: {
|
|
2575
|
-
artifactId: z.ZodString
|
|
3291
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
3292
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
3293
|
+
kind: z.ZodLiteral<"version">;
|
|
3294
|
+
value: z.ZodString;
|
|
3295
|
+
}, "strip", z.ZodTypeAny, {
|
|
3296
|
+
kind: "version";
|
|
3297
|
+
value: string;
|
|
3298
|
+
}, {
|
|
3299
|
+
kind: "version";
|
|
3300
|
+
value: string;
|
|
3301
|
+
}>, z.ZodObject<{
|
|
3302
|
+
kind: z.ZodLiteral<"jar">;
|
|
3303
|
+
value: z.ZodString;
|
|
3304
|
+
}, "strip", z.ZodTypeAny, {
|
|
3305
|
+
kind: "jar";
|
|
3306
|
+
value: string;
|
|
3307
|
+
}, {
|
|
3308
|
+
kind: "jar";
|
|
3309
|
+
value: string;
|
|
3310
|
+
}>, z.ZodObject<{
|
|
3311
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
3312
|
+
value: z.ZodString;
|
|
3313
|
+
}, "strip", z.ZodTypeAny, {
|
|
3314
|
+
kind: "coordinate";
|
|
3315
|
+
value: string;
|
|
3316
|
+
}, {
|
|
3317
|
+
kind: "coordinate";
|
|
3318
|
+
value: string;
|
|
3319
|
+
}>, z.ZodObject<{
|
|
3320
|
+
kind: z.ZodLiteral<"workspace">;
|
|
3321
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
3322
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
3323
|
+
}, "strip", z.ZodTypeAny, {
|
|
3324
|
+
kind: "workspace";
|
|
3325
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3326
|
+
strict?: boolean | undefined;
|
|
3327
|
+
}, {
|
|
3328
|
+
kind: "workspace";
|
|
3329
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3330
|
+
strict?: boolean | undefined;
|
|
3331
|
+
}>, z.ZodObject<{
|
|
3332
|
+
kind: z.ZodLiteral<"dependency">;
|
|
3333
|
+
group: z.ZodString;
|
|
3334
|
+
name: z.ZodString;
|
|
3335
|
+
version: z.ZodOptional<z.ZodString>;
|
|
3336
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
3337
|
+
}, "strip", z.ZodTypeAny, {
|
|
3338
|
+
name: string;
|
|
3339
|
+
kind: "dependency";
|
|
3340
|
+
group: string;
|
|
3341
|
+
version?: string | undefined;
|
|
3342
|
+
versionFromProject?: boolean | undefined;
|
|
3343
|
+
}, {
|
|
3344
|
+
name: string;
|
|
3345
|
+
kind: "dependency";
|
|
3346
|
+
group: string;
|
|
3347
|
+
version?: string | undefined;
|
|
3348
|
+
versionFromProject?: boolean | undefined;
|
|
3349
|
+
}>, z.ZodObject<{
|
|
3350
|
+
kind: z.ZodLiteral<"artifact">;
|
|
3351
|
+
artifactId: z.ZodString;
|
|
3352
|
+
}, "strip", z.ZodTypeAny, {
|
|
3353
|
+
kind: "artifact";
|
|
3354
|
+
artifactId: string;
|
|
3355
|
+
}, {
|
|
3356
|
+
kind: "artifact";
|
|
3357
|
+
artifactId: string;
|
|
3358
|
+
}>]>>;
|
|
2576
3359
|
prefix: z.ZodOptional<z.ZodString>;
|
|
2577
3360
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
2578
3361
|
cursor: z.ZodOptional<z.ZodString>;
|
|
2579
3362
|
detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
|
|
2580
3363
|
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">>;
|
|
2581
3364
|
};
|
|
2582
|
-
export declare const listArtifactFilesSchema: z.ZodObject<{
|
|
2583
|
-
artifactId: z.ZodString
|
|
3365
|
+
export declare const listArtifactFilesSchema: z.ZodEffects<z.ZodObject<{
|
|
3366
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
3367
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
3368
|
+
kind: z.ZodLiteral<"version">;
|
|
3369
|
+
value: z.ZodString;
|
|
3370
|
+
}, "strip", z.ZodTypeAny, {
|
|
3371
|
+
kind: "version";
|
|
3372
|
+
value: string;
|
|
3373
|
+
}, {
|
|
3374
|
+
kind: "version";
|
|
3375
|
+
value: string;
|
|
3376
|
+
}>, z.ZodObject<{
|
|
3377
|
+
kind: z.ZodLiteral<"jar">;
|
|
3378
|
+
value: z.ZodString;
|
|
3379
|
+
}, "strip", z.ZodTypeAny, {
|
|
3380
|
+
kind: "jar";
|
|
3381
|
+
value: string;
|
|
3382
|
+
}, {
|
|
3383
|
+
kind: "jar";
|
|
3384
|
+
value: string;
|
|
3385
|
+
}>, z.ZodObject<{
|
|
3386
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
3387
|
+
value: z.ZodString;
|
|
3388
|
+
}, "strip", z.ZodTypeAny, {
|
|
3389
|
+
kind: "coordinate";
|
|
3390
|
+
value: string;
|
|
3391
|
+
}, {
|
|
3392
|
+
kind: "coordinate";
|
|
3393
|
+
value: string;
|
|
3394
|
+
}>, z.ZodObject<{
|
|
3395
|
+
kind: z.ZodLiteral<"workspace">;
|
|
3396
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
3397
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
3398
|
+
}, "strip", z.ZodTypeAny, {
|
|
3399
|
+
kind: "workspace";
|
|
3400
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3401
|
+
strict?: boolean | undefined;
|
|
3402
|
+
}, {
|
|
3403
|
+
kind: "workspace";
|
|
3404
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3405
|
+
strict?: boolean | undefined;
|
|
3406
|
+
}>, z.ZodObject<{
|
|
3407
|
+
kind: z.ZodLiteral<"dependency">;
|
|
3408
|
+
group: z.ZodString;
|
|
3409
|
+
name: z.ZodString;
|
|
3410
|
+
version: z.ZodOptional<z.ZodString>;
|
|
3411
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
3412
|
+
}, "strip", z.ZodTypeAny, {
|
|
3413
|
+
name: string;
|
|
3414
|
+
kind: "dependency";
|
|
3415
|
+
group: string;
|
|
3416
|
+
version?: string | undefined;
|
|
3417
|
+
versionFromProject?: boolean | undefined;
|
|
3418
|
+
}, {
|
|
3419
|
+
name: string;
|
|
3420
|
+
kind: "dependency";
|
|
3421
|
+
group: string;
|
|
3422
|
+
version?: string | undefined;
|
|
3423
|
+
versionFromProject?: boolean | undefined;
|
|
3424
|
+
}>, z.ZodObject<{
|
|
3425
|
+
kind: z.ZodLiteral<"artifact">;
|
|
3426
|
+
artifactId: z.ZodString;
|
|
3427
|
+
}, "strip", z.ZodTypeAny, {
|
|
3428
|
+
kind: "artifact";
|
|
3429
|
+
artifactId: string;
|
|
3430
|
+
}, {
|
|
3431
|
+
kind: "artifact";
|
|
3432
|
+
artifactId: string;
|
|
3433
|
+
}>]>>;
|
|
2584
3434
|
prefix: z.ZodOptional<z.ZodString>;
|
|
2585
3435
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
2586
3436
|
cursor: z.ZodOptional<z.ZodString>;
|
|
2587
3437
|
detail: z.ZodDefault<z.ZodEnum<["summary", "standard", "full"]>>;
|
|
2588
3438
|
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">>;
|
|
2589
3439
|
}, "strip", z.ZodTypeAny, {
|
|
2590
|
-
artifactId: string;
|
|
2591
3440
|
detail: "summary" | "standard" | "full";
|
|
3441
|
+
artifactId?: string | undefined;
|
|
3442
|
+
limit?: number | undefined;
|
|
3443
|
+
cursor?: string | undefined;
|
|
3444
|
+
target?: {
|
|
3445
|
+
kind: "workspace";
|
|
3446
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3447
|
+
strict?: boolean | undefined;
|
|
3448
|
+
} | {
|
|
3449
|
+
name: string;
|
|
3450
|
+
kind: "dependency";
|
|
3451
|
+
group: string;
|
|
3452
|
+
version?: string | undefined;
|
|
3453
|
+
versionFromProject?: boolean | undefined;
|
|
3454
|
+
} | {
|
|
3455
|
+
kind: "version";
|
|
3456
|
+
value: string;
|
|
3457
|
+
} | {
|
|
3458
|
+
kind: "jar";
|
|
3459
|
+
value: string;
|
|
3460
|
+
} | {
|
|
3461
|
+
kind: "coordinate";
|
|
3462
|
+
value: string;
|
|
3463
|
+
} | {
|
|
3464
|
+
kind: "artifact";
|
|
3465
|
+
artifactId: string;
|
|
3466
|
+
} | undefined;
|
|
3467
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3468
|
+
prefix?: string | undefined;
|
|
3469
|
+
}, {
|
|
3470
|
+
artifactId?: string | undefined;
|
|
3471
|
+
limit?: number | undefined;
|
|
3472
|
+
cursor?: string | undefined;
|
|
3473
|
+
target?: {
|
|
3474
|
+
kind: "workspace";
|
|
3475
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3476
|
+
strict?: boolean | undefined;
|
|
3477
|
+
} | {
|
|
3478
|
+
name: string;
|
|
3479
|
+
kind: "dependency";
|
|
3480
|
+
group: string;
|
|
3481
|
+
version?: string | undefined;
|
|
3482
|
+
versionFromProject?: boolean | undefined;
|
|
3483
|
+
} | {
|
|
3484
|
+
kind: "version";
|
|
3485
|
+
value: string;
|
|
3486
|
+
} | {
|
|
3487
|
+
kind: "jar";
|
|
3488
|
+
value: string;
|
|
3489
|
+
} | {
|
|
3490
|
+
kind: "coordinate";
|
|
3491
|
+
value: string;
|
|
3492
|
+
} | {
|
|
3493
|
+
kind: "artifact";
|
|
3494
|
+
artifactId: string;
|
|
3495
|
+
} | undefined;
|
|
3496
|
+
detail?: "summary" | "standard" | "full" | undefined;
|
|
3497
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3498
|
+
prefix?: string | undefined;
|
|
3499
|
+
}>, {
|
|
3500
|
+
detail: "summary" | "standard" | "full";
|
|
3501
|
+
artifactId?: string | undefined;
|
|
2592
3502
|
limit?: number | undefined;
|
|
2593
3503
|
cursor?: string | undefined;
|
|
2594
|
-
|
|
3504
|
+
target?: {
|
|
3505
|
+
kind: "workspace";
|
|
3506
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3507
|
+
strict?: boolean | undefined;
|
|
3508
|
+
} | {
|
|
3509
|
+
name: string;
|
|
3510
|
+
kind: "dependency";
|
|
3511
|
+
group: string;
|
|
3512
|
+
version?: string | undefined;
|
|
3513
|
+
versionFromProject?: boolean | undefined;
|
|
3514
|
+
} | {
|
|
3515
|
+
kind: "version";
|
|
3516
|
+
value: string;
|
|
3517
|
+
} | {
|
|
3518
|
+
kind: "jar";
|
|
3519
|
+
value: string;
|
|
3520
|
+
} | {
|
|
3521
|
+
kind: "coordinate";
|
|
3522
|
+
value: string;
|
|
3523
|
+
} | {
|
|
3524
|
+
kind: "artifact";
|
|
3525
|
+
artifactId: string;
|
|
3526
|
+
} | undefined;
|
|
3527
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2595
3528
|
prefix?: string | undefined;
|
|
2596
3529
|
}, {
|
|
2597
|
-
artifactId
|
|
3530
|
+
artifactId?: string | undefined;
|
|
2598
3531
|
limit?: number | undefined;
|
|
2599
3532
|
cursor?: string | undefined;
|
|
3533
|
+
target?: {
|
|
3534
|
+
kind: "workspace";
|
|
3535
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
3536
|
+
strict?: boolean | undefined;
|
|
3537
|
+
} | {
|
|
3538
|
+
name: string;
|
|
3539
|
+
kind: "dependency";
|
|
3540
|
+
group: string;
|
|
3541
|
+
version?: string | undefined;
|
|
3542
|
+
versionFromProject?: boolean | undefined;
|
|
3543
|
+
} | {
|
|
3544
|
+
kind: "version";
|
|
3545
|
+
value: string;
|
|
3546
|
+
} | {
|
|
3547
|
+
kind: "jar";
|
|
3548
|
+
value: string;
|
|
3549
|
+
} | {
|
|
3550
|
+
kind: "coordinate";
|
|
3551
|
+
value: string;
|
|
3552
|
+
} | {
|
|
3553
|
+
kind: "artifact";
|
|
3554
|
+
artifactId: string;
|
|
3555
|
+
} | undefined;
|
|
2600
3556
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2601
|
-
include?: ("entries" | "workspace" | "
|
|
3557
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2602
3558
|
prefix?: string | undefined;
|
|
2603
3559
|
}>;
|
|
2604
3560
|
export declare const traceSymbolLifecycleShape: {
|
|
@@ -2745,7 +3701,7 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2745
3701
|
descriptor?: string | undefined;
|
|
2746
3702
|
owner?: string | undefined;
|
|
2747
3703
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2748
|
-
include?: ("entries" | "workspace" | "
|
|
3704
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2749
3705
|
gradleUserHome?: string | undefined;
|
|
2750
3706
|
disambiguation?: {
|
|
2751
3707
|
ownerHint?: string | undefined;
|
|
@@ -2762,7 +3718,7 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2762
3718
|
maxCandidates?: number | undefined;
|
|
2763
3719
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2764
3720
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2765
|
-
include?: ("entries" | "workspace" | "
|
|
3721
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2766
3722
|
gradleUserHome?: string | undefined;
|
|
2767
3723
|
nameMode?: "auto" | "fqcn" | undefined;
|
|
2768
3724
|
signatureMode?: "exact" | "name-only" | undefined;
|
|
@@ -2783,7 +3739,7 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2783
3739
|
descriptor?: string | undefined;
|
|
2784
3740
|
owner?: string | undefined;
|
|
2785
3741
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2786
|
-
include?: ("entries" | "workspace" | "
|
|
3742
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2787
3743
|
gradleUserHome?: string | undefined;
|
|
2788
3744
|
disambiguation?: {
|
|
2789
3745
|
ownerHint?: string | undefined;
|
|
@@ -2800,7 +3756,7 @@ export declare const findMappingSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2800
3756
|
maxCandidates?: number | undefined;
|
|
2801
3757
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2802
3758
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2803
|
-
include?: ("entries" | "workspace" | "
|
|
3759
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2804
3760
|
gradleUserHome?: string | undefined;
|
|
2805
3761
|
nameMode?: "auto" | "fqcn" | undefined;
|
|
2806
3762
|
signatureMode?: "exact" | "name-only" | undefined;
|
|
@@ -2844,7 +3800,7 @@ export declare const resolveMethodMappingExactSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2844
3800
|
targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
|
|
2845
3801
|
sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
|
|
2846
3802
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2847
|
-
include?: ("entries" | "workspace" | "
|
|
3803
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2848
3804
|
gradleUserHome?: string | undefined;
|
|
2849
3805
|
}, {
|
|
2850
3806
|
name: string;
|
|
@@ -2856,7 +3812,7 @@ export declare const resolveMethodMappingExactSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2856
3812
|
maxCandidates?: number | undefined;
|
|
2857
3813
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2858
3814
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2859
|
-
include?: ("entries" | "workspace" | "
|
|
3815
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2860
3816
|
gradleUserHome?: string | undefined;
|
|
2861
3817
|
}>, {
|
|
2862
3818
|
name: string;
|
|
@@ -2868,7 +3824,7 @@ export declare const resolveMethodMappingExactSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2868
3824
|
targetMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
|
|
2869
3825
|
sourceMapping: "obfuscated" | "mojang" | "intermediary" | "yarn";
|
|
2870
3826
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2871
|
-
include?: ("entries" | "workspace" | "
|
|
3827
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2872
3828
|
gradleUserHome?: string | undefined;
|
|
2873
3829
|
}, {
|
|
2874
3830
|
name: string;
|
|
@@ -2880,7 +3836,7 @@ export declare const resolveMethodMappingExactSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2880
3836
|
maxCandidates?: number | undefined;
|
|
2881
3837
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2882
3838
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2883
|
-
include?: ("entries" | "workspace" | "
|
|
3839
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2884
3840
|
gradleUserHome?: string | undefined;
|
|
2885
3841
|
}>;
|
|
2886
3842
|
export declare const classApiKindsSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2960,7 +3916,7 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2960
3916
|
descriptor?: string | undefined;
|
|
2961
3917
|
owner?: string | undefined;
|
|
2962
3918
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2963
|
-
include?: ("entries" | "workspace" | "
|
|
3919
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2964
3920
|
gradleUserHome?: string | undefined;
|
|
2965
3921
|
}, {
|
|
2966
3922
|
name: string;
|
|
@@ -2973,7 +3929,7 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2973
3929
|
maxCandidates?: number | undefined;
|
|
2974
3930
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2975
3931
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
2976
|
-
include?: ("entries" | "workspace" | "
|
|
3932
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2977
3933
|
gradleUserHome?: string | undefined;
|
|
2978
3934
|
}>, {
|
|
2979
3935
|
name: string;
|
|
@@ -2986,7 +3942,7 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2986
3942
|
descriptor?: string | undefined;
|
|
2987
3943
|
owner?: string | undefined;
|
|
2988
3944
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
2989
|
-
include?: ("entries" | "workspace" | "
|
|
3945
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
2990
3946
|
gradleUserHome?: string | undefined;
|
|
2991
3947
|
}, {
|
|
2992
3948
|
name: string;
|
|
@@ -2999,7 +3955,7 @@ export declare const resolveWorkspaceSymbolSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2999
3955
|
maxCandidates?: number | undefined;
|
|
3000
3956
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
3001
3957
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
3002
|
-
include?: ("entries" | "workspace" | "
|
|
3958
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3003
3959
|
gradleUserHome?: string | undefined;
|
|
3004
3960
|
}>;
|
|
3005
3961
|
export declare const checkSymbolExistsShape: {
|
|
@@ -3043,7 +3999,7 @@ export declare const checkSymbolExistsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3043
3999
|
descriptor?: string | undefined;
|
|
3044
4000
|
owner?: string | undefined;
|
|
3045
4001
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
3046
|
-
include?: ("entries" | "workspace" | "
|
|
4002
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3047
4003
|
gradleUserHome?: string | undefined;
|
|
3048
4004
|
}, {
|
|
3049
4005
|
name: string;
|
|
@@ -3055,7 +4011,7 @@ export declare const checkSymbolExistsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3055
4011
|
maxCandidates?: number | undefined;
|
|
3056
4012
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
3057
4013
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
3058
|
-
include?: ("entries" | "workspace" | "
|
|
4014
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3059
4015
|
gradleUserHome?: string | undefined;
|
|
3060
4016
|
nameMode?: "auto" | "fqcn" | undefined;
|
|
3061
4017
|
signatureMode?: "exact" | "name-only" | undefined;
|
|
@@ -3071,7 +4027,7 @@ export declare const checkSymbolExistsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3071
4027
|
descriptor?: string | undefined;
|
|
3072
4028
|
owner?: string | undefined;
|
|
3073
4029
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
3074
|
-
include?: ("entries" | "workspace" | "
|
|
4030
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3075
4031
|
gradleUserHome?: string | undefined;
|
|
3076
4032
|
}, {
|
|
3077
4033
|
name: string;
|
|
@@ -3083,7 +4039,7 @@ export declare const checkSymbolExistsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3083
4039
|
maxCandidates?: number | undefined;
|
|
3084
4040
|
sourcePriority?: "loom-first" | "maven-first" | undefined;
|
|
3085
4041
|
detail?: "summary" | "standard" | "full" | undefined;
|
|
3086
|
-
include?: ("entries" | "workspace" | "
|
|
4042
|
+
include?: ("entries" | "workspace" | "candidates" | "source" | "warnings" | "registry" | "preview" | "files" | "samples" | "timings" | "issues" | "recovery" | "paths" | "members" | "provenance" | "artifact" | "classes" | "timeline" | "descriptors" | "diff" | "matrix" | "health" | "owners" | "cacheEntries")[] | undefined;
|
|
3087
4043
|
gradleUserHome?: string | undefined;
|
|
3088
4044
|
nameMode?: "auto" | "fqcn" | undefined;
|
|
3089
4045
|
signatureMode?: "exact" | "name-only" | undefined;
|
|
@@ -3163,18 +4119,250 @@ export declare const jsonToNbtSchema: z.ZodObject<{
|
|
|
3163
4119
|
compression?: "none" | "gzip" | undefined;
|
|
3164
4120
|
}>;
|
|
3165
4121
|
export declare const indexArtifactShape: {
|
|
3166
|
-
artifactId: z.ZodString
|
|
4122
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
4123
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
4124
|
+
kind: z.ZodLiteral<"version">;
|
|
4125
|
+
value: z.ZodString;
|
|
4126
|
+
}, "strip", z.ZodTypeAny, {
|
|
4127
|
+
kind: "version";
|
|
4128
|
+
value: string;
|
|
4129
|
+
}, {
|
|
4130
|
+
kind: "version";
|
|
4131
|
+
value: string;
|
|
4132
|
+
}>, z.ZodObject<{
|
|
4133
|
+
kind: z.ZodLiteral<"jar">;
|
|
4134
|
+
value: z.ZodString;
|
|
4135
|
+
}, "strip", z.ZodTypeAny, {
|
|
4136
|
+
kind: "jar";
|
|
4137
|
+
value: string;
|
|
4138
|
+
}, {
|
|
4139
|
+
kind: "jar";
|
|
4140
|
+
value: string;
|
|
4141
|
+
}>, z.ZodObject<{
|
|
4142
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
4143
|
+
value: z.ZodString;
|
|
4144
|
+
}, "strip", z.ZodTypeAny, {
|
|
4145
|
+
kind: "coordinate";
|
|
4146
|
+
value: string;
|
|
4147
|
+
}, {
|
|
4148
|
+
kind: "coordinate";
|
|
4149
|
+
value: string;
|
|
4150
|
+
}>, z.ZodObject<{
|
|
4151
|
+
kind: z.ZodLiteral<"workspace">;
|
|
4152
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
4153
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
4154
|
+
}, "strip", z.ZodTypeAny, {
|
|
4155
|
+
kind: "workspace";
|
|
4156
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4157
|
+
strict?: boolean | undefined;
|
|
4158
|
+
}, {
|
|
4159
|
+
kind: "workspace";
|
|
4160
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4161
|
+
strict?: boolean | undefined;
|
|
4162
|
+
}>, z.ZodObject<{
|
|
4163
|
+
kind: z.ZodLiteral<"dependency">;
|
|
4164
|
+
group: z.ZodString;
|
|
4165
|
+
name: z.ZodString;
|
|
4166
|
+
version: z.ZodOptional<z.ZodString>;
|
|
4167
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
4168
|
+
}, "strip", z.ZodTypeAny, {
|
|
4169
|
+
name: string;
|
|
4170
|
+
kind: "dependency";
|
|
4171
|
+
group: string;
|
|
4172
|
+
version?: string | undefined;
|
|
4173
|
+
versionFromProject?: boolean | undefined;
|
|
4174
|
+
}, {
|
|
4175
|
+
name: string;
|
|
4176
|
+
kind: "dependency";
|
|
4177
|
+
group: string;
|
|
4178
|
+
version?: string | undefined;
|
|
4179
|
+
versionFromProject?: boolean | undefined;
|
|
4180
|
+
}>, z.ZodObject<{
|
|
4181
|
+
kind: z.ZodLiteral<"artifact">;
|
|
4182
|
+
artifactId: z.ZodString;
|
|
4183
|
+
}, "strip", z.ZodTypeAny, {
|
|
4184
|
+
kind: "artifact";
|
|
4185
|
+
artifactId: string;
|
|
4186
|
+
}, {
|
|
4187
|
+
kind: "artifact";
|
|
4188
|
+
artifactId: string;
|
|
4189
|
+
}>]>>;
|
|
3167
4190
|
force: z.ZodDefault<z.ZodBoolean>;
|
|
3168
4191
|
};
|
|
3169
|
-
export declare const indexArtifactSchema: z.ZodObject<{
|
|
3170
|
-
artifactId: z.ZodString
|
|
4192
|
+
export declare const indexArtifactSchema: z.ZodEffects<z.ZodObject<{
|
|
4193
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
4194
|
+
target: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
4195
|
+
kind: z.ZodLiteral<"version">;
|
|
4196
|
+
value: z.ZodString;
|
|
4197
|
+
}, "strip", z.ZodTypeAny, {
|
|
4198
|
+
kind: "version";
|
|
4199
|
+
value: string;
|
|
4200
|
+
}, {
|
|
4201
|
+
kind: "version";
|
|
4202
|
+
value: string;
|
|
4203
|
+
}>, z.ZodObject<{
|
|
4204
|
+
kind: z.ZodLiteral<"jar">;
|
|
4205
|
+
value: z.ZodString;
|
|
4206
|
+
}, "strip", z.ZodTypeAny, {
|
|
4207
|
+
kind: "jar";
|
|
4208
|
+
value: string;
|
|
4209
|
+
}, {
|
|
4210
|
+
kind: "jar";
|
|
4211
|
+
value: string;
|
|
4212
|
+
}>, z.ZodObject<{
|
|
4213
|
+
kind: z.ZodLiteral<"coordinate">;
|
|
4214
|
+
value: z.ZodString;
|
|
4215
|
+
}, "strip", z.ZodTypeAny, {
|
|
4216
|
+
kind: "coordinate";
|
|
4217
|
+
value: string;
|
|
4218
|
+
}, {
|
|
4219
|
+
kind: "coordinate";
|
|
4220
|
+
value: string;
|
|
4221
|
+
}>, z.ZodObject<{
|
|
4222
|
+
kind: z.ZodLiteral<"workspace">;
|
|
4223
|
+
scope: z.ZodOptional<z.ZodEnum<["vanilla", "merged", "loader"]>>;
|
|
4224
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
4225
|
+
}, "strip", z.ZodTypeAny, {
|
|
4226
|
+
kind: "workspace";
|
|
4227
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4228
|
+
strict?: boolean | undefined;
|
|
4229
|
+
}, {
|
|
4230
|
+
kind: "workspace";
|
|
4231
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4232
|
+
strict?: boolean | undefined;
|
|
4233
|
+
}>, z.ZodObject<{
|
|
4234
|
+
kind: z.ZodLiteral<"dependency">;
|
|
4235
|
+
group: z.ZodString;
|
|
4236
|
+
name: z.ZodString;
|
|
4237
|
+
version: z.ZodOptional<z.ZodString>;
|
|
4238
|
+
versionFromProject: z.ZodOptional<z.ZodBoolean>;
|
|
4239
|
+
}, "strip", z.ZodTypeAny, {
|
|
4240
|
+
name: string;
|
|
4241
|
+
kind: "dependency";
|
|
4242
|
+
group: string;
|
|
4243
|
+
version?: string | undefined;
|
|
4244
|
+
versionFromProject?: boolean | undefined;
|
|
4245
|
+
}, {
|
|
4246
|
+
name: string;
|
|
4247
|
+
kind: "dependency";
|
|
4248
|
+
group: string;
|
|
4249
|
+
version?: string | undefined;
|
|
4250
|
+
versionFromProject?: boolean | undefined;
|
|
4251
|
+
}>, z.ZodObject<{
|
|
4252
|
+
kind: z.ZodLiteral<"artifact">;
|
|
4253
|
+
artifactId: z.ZodString;
|
|
4254
|
+
}, "strip", z.ZodTypeAny, {
|
|
4255
|
+
kind: "artifact";
|
|
4256
|
+
artifactId: string;
|
|
4257
|
+
}, {
|
|
4258
|
+
kind: "artifact";
|
|
4259
|
+
artifactId: string;
|
|
4260
|
+
}>]>>;
|
|
3171
4261
|
force: z.ZodDefault<z.ZodBoolean>;
|
|
3172
4262
|
}, "strip", z.ZodTypeAny, {
|
|
3173
|
-
artifactId: string;
|
|
3174
4263
|
force: boolean;
|
|
4264
|
+
artifactId?: string | undefined;
|
|
4265
|
+
target?: {
|
|
4266
|
+
kind: "workspace";
|
|
4267
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4268
|
+
strict?: boolean | undefined;
|
|
4269
|
+
} | {
|
|
4270
|
+
name: string;
|
|
4271
|
+
kind: "dependency";
|
|
4272
|
+
group: string;
|
|
4273
|
+
version?: string | undefined;
|
|
4274
|
+
versionFromProject?: boolean | undefined;
|
|
4275
|
+
} | {
|
|
4276
|
+
kind: "version";
|
|
4277
|
+
value: string;
|
|
4278
|
+
} | {
|
|
4279
|
+
kind: "jar";
|
|
4280
|
+
value: string;
|
|
4281
|
+
} | {
|
|
4282
|
+
kind: "coordinate";
|
|
4283
|
+
value: string;
|
|
4284
|
+
} | {
|
|
4285
|
+
kind: "artifact";
|
|
4286
|
+
artifactId: string;
|
|
4287
|
+
} | undefined;
|
|
3175
4288
|
}, {
|
|
3176
|
-
artifactId
|
|
4289
|
+
artifactId?: string | undefined;
|
|
4290
|
+
force?: boolean | undefined;
|
|
4291
|
+
target?: {
|
|
4292
|
+
kind: "workspace";
|
|
4293
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4294
|
+
strict?: boolean | undefined;
|
|
4295
|
+
} | {
|
|
4296
|
+
name: string;
|
|
4297
|
+
kind: "dependency";
|
|
4298
|
+
group: string;
|
|
4299
|
+
version?: string | undefined;
|
|
4300
|
+
versionFromProject?: boolean | undefined;
|
|
4301
|
+
} | {
|
|
4302
|
+
kind: "version";
|
|
4303
|
+
value: string;
|
|
4304
|
+
} | {
|
|
4305
|
+
kind: "jar";
|
|
4306
|
+
value: string;
|
|
4307
|
+
} | {
|
|
4308
|
+
kind: "coordinate";
|
|
4309
|
+
value: string;
|
|
4310
|
+
} | {
|
|
4311
|
+
kind: "artifact";
|
|
4312
|
+
artifactId: string;
|
|
4313
|
+
} | undefined;
|
|
4314
|
+
}>, {
|
|
4315
|
+
force: boolean;
|
|
4316
|
+
artifactId?: string | undefined;
|
|
4317
|
+
target?: {
|
|
4318
|
+
kind: "workspace";
|
|
4319
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4320
|
+
strict?: boolean | undefined;
|
|
4321
|
+
} | {
|
|
4322
|
+
name: string;
|
|
4323
|
+
kind: "dependency";
|
|
4324
|
+
group: string;
|
|
4325
|
+
version?: string | undefined;
|
|
4326
|
+
versionFromProject?: boolean | undefined;
|
|
4327
|
+
} | {
|
|
4328
|
+
kind: "version";
|
|
4329
|
+
value: string;
|
|
4330
|
+
} | {
|
|
4331
|
+
kind: "jar";
|
|
4332
|
+
value: string;
|
|
4333
|
+
} | {
|
|
4334
|
+
kind: "coordinate";
|
|
4335
|
+
value: string;
|
|
4336
|
+
} | {
|
|
4337
|
+
kind: "artifact";
|
|
4338
|
+
artifactId: string;
|
|
4339
|
+
} | undefined;
|
|
4340
|
+
}, {
|
|
4341
|
+
artifactId?: string | undefined;
|
|
3177
4342
|
force?: boolean | undefined;
|
|
4343
|
+
target?: {
|
|
4344
|
+
kind: "workspace";
|
|
4345
|
+
scope?: "vanilla" | "merged" | "loader" | undefined;
|
|
4346
|
+
strict?: boolean | undefined;
|
|
4347
|
+
} | {
|
|
4348
|
+
name: string;
|
|
4349
|
+
kind: "dependency";
|
|
4350
|
+
group: string;
|
|
4351
|
+
version?: string | undefined;
|
|
4352
|
+
versionFromProject?: boolean | undefined;
|
|
4353
|
+
} | {
|
|
4354
|
+
kind: "version";
|
|
4355
|
+
value: string;
|
|
4356
|
+
} | {
|
|
4357
|
+
kind: "jar";
|
|
4358
|
+
value: string;
|
|
4359
|
+
} | {
|
|
4360
|
+
kind: "coordinate";
|
|
4361
|
+
value: string;
|
|
4362
|
+
} | {
|
|
4363
|
+
kind: "artifact";
|
|
4364
|
+
artifactId: string;
|
|
4365
|
+
} | undefined;
|
|
3178
4366
|
}>;
|
|
3179
4367
|
export declare const validateMixinShape: {
|
|
3180
4368
|
input: z.ZodDiscriminatedUnion<"mode", [z.ZodObject<{
|