@creeperhost/modlens-mcp 1.6.13 → 1.6.15

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 (66) hide show
  1. package/README.md +32 -2
  2. package/dist/feed-the-beast.d.ts +46 -0
  3. package/dist/feed-the-beast.d.ts.map +1 -0
  4. package/dist/feed-the-beast.js +29 -0
  5. package/dist/feed-the-beast.js.map +1 -0
  6. package/dist/generated/sqlite/browser.d.ts +10 -0
  7. package/dist/generated/sqlite/browser.d.ts.map +1 -1
  8. package/dist/generated/sqlite/client.d.ts +10 -0
  9. package/dist/generated/sqlite/client.d.ts.map +1 -1
  10. package/dist/generated/sqlite/internal/class.d.ts +22 -0
  11. package/dist/generated/sqlite/internal/class.d.ts.map +1 -1
  12. package/dist/generated/sqlite/internal/class.js +5 -5
  13. package/dist/generated/sqlite/internal/class.js.map +1 -1
  14. package/dist/generated/sqlite/internal/prismaNamespace.d.ts +180 -1
  15. package/dist/generated/sqlite/internal/prismaNamespace.d.ts.map +1 -1
  16. package/dist/generated/sqlite/internal/prismaNamespace.js +27 -0
  17. package/dist/generated/sqlite/internal/prismaNamespace.js.map +1 -1
  18. package/dist/generated/sqlite/internal/prismaNamespaceBrowser.d.ts +29 -0
  19. package/dist/generated/sqlite/internal/prismaNamespaceBrowser.d.ts.map +1 -1
  20. package/dist/generated/sqlite/internal/prismaNamespaceBrowser.js +27 -0
  21. package/dist/generated/sqlite/internal/prismaNamespaceBrowser.js.map +1 -1
  22. package/dist/generated/sqlite/models/Mod.d.ts +219 -0
  23. package/dist/generated/sqlite/models/Mod.d.ts.map +1 -1
  24. package/dist/generated/sqlite/models/PackFile.d.ts +1603 -0
  25. package/dist/generated/sqlite/models/PackFile.d.ts.map +1 -0
  26. package/dist/generated/sqlite/models/PackFile.js +2 -0
  27. package/dist/generated/sqlite/models/PackFile.js.map +1 -0
  28. package/dist/generated/sqlite/models/PackVersion.d.ts +1365 -0
  29. package/dist/generated/sqlite/models/PackVersion.d.ts.map +1 -0
  30. package/dist/generated/sqlite/models/PackVersion.js +2 -0
  31. package/dist/generated/sqlite/models/PackVersion.js.map +1 -0
  32. package/dist/generated/sqlite/models.d.ts +2 -0
  33. package/dist/generated/sqlite/models.d.ts.map +1 -1
  34. package/dist/java-tools.d.ts.map +1 -1
  35. package/dist/java-tools.js +75 -1
  36. package/dist/java-tools.js.map +1 -1
  37. package/dist/modpacks-ch.d.ts +5 -0
  38. package/dist/modpacks-ch.d.ts.map +1 -1
  39. package/dist/modpacks-ch.js +27 -5
  40. package/dist/modpacks-ch.js.map +1 -1
  41. package/dist/modrinth.d.ts +10 -0
  42. package/dist/modrinth.d.ts.map +1 -1
  43. package/dist/modrinth.js +20 -0
  44. package/dist/modrinth.js.map +1 -1
  45. package/dist/repositories/mod.d.ts.map +1 -1
  46. package/dist/repositories/mod.js +8 -1
  47. package/dist/repositories/mod.js.map +1 -1
  48. package/dist/server.js +43 -10
  49. package/dist/server.js.map +1 -1
  50. package/dist/tools/diagnostics.d.ts +2 -1
  51. package/dist/tools/diagnostics.d.ts.map +1 -1
  52. package/dist/tools/diagnostics.js +387 -56
  53. package/dist/tools/diagnostics.js.map +1 -1
  54. package/dist/tools/ingest.d.ts.map +1 -1
  55. package/dist/tools/ingest.js +3 -2
  56. package/dist/tools/ingest.js.map +1 -1
  57. package/dist/tools/modpacks-ch.d.ts +269 -3
  58. package/dist/tools/modpacks-ch.d.ts.map +1 -1
  59. package/dist/tools/modpacks-ch.js +810 -11
  60. package/dist/tools/modpacks-ch.js.map +1 -1
  61. package/dist/tools/source.d.ts.map +1 -1
  62. package/dist/tools/source.js +9 -1
  63. package/dist/tools/source.js.map +1 -1
  64. package/package.json +1 -1
  65. package/prisma/backends/schema.sqlite.prisma +42 -0
  66. package/prisma/backends/template.db +0 -0
@@ -367,6 +367,7 @@ export type ModWhereInput = {
367
367
  classes?: Prisma.ModClassListRelationFilter;
368
368
  modTags?: Prisma.ModTagListRelationFilter;
369
369
  sourceFiles?: Prisma.ModSourceFileListRelationFilter;
370
+ packFiles?: Prisma.PackFileListRelationFilter;
370
371
  };
371
372
  export type ModOrderByWithRelationInput = {
372
373
  id?: Prisma.SortOrder;
@@ -401,6 +402,7 @@ export type ModOrderByWithRelationInput = {
401
402
  classes?: Prisma.ModClassOrderByRelationAggregateInput;
402
403
  modTags?: Prisma.ModTagOrderByRelationAggregateInput;
403
404
  sourceFiles?: Prisma.ModSourceFileOrderByRelationAggregateInput;
405
+ packFiles?: Prisma.PackFileOrderByRelationAggregateInput;
404
406
  };
405
407
  export type ModWhereUniqueInput = Prisma.AtLeast<{
406
408
  id?: number;
@@ -439,6 +441,7 @@ export type ModWhereUniqueInput = Prisma.AtLeast<{
439
441
  classes?: Prisma.ModClassListRelationFilter;
440
442
  modTags?: Prisma.ModTagListRelationFilter;
441
443
  sourceFiles?: Prisma.ModSourceFileListRelationFilter;
444
+ packFiles?: Prisma.PackFileListRelationFilter;
442
445
  }, "id" | "jarPath" | "modId_version_mcVersion_loader">;
443
446
  export type ModOrderByWithAggregationInput = {
444
447
  id?: Prisma.SortOrder;
@@ -542,6 +545,7 @@ export type ModCreateInput = {
542
545
  classes?: Prisma.ModClassCreateNestedManyWithoutModInput;
543
546
  modTags?: Prisma.ModTagCreateNestedManyWithoutModInput;
544
547
  sourceFiles?: Prisma.ModSourceFileCreateNestedManyWithoutModInput;
548
+ packFiles?: Prisma.PackFileCreateNestedManyWithoutModInput;
545
549
  };
546
550
  export type ModUncheckedCreateInput = {
547
551
  id?: number;
@@ -576,6 +580,7 @@ export type ModUncheckedCreateInput = {
576
580
  classes?: Prisma.ModClassUncheckedCreateNestedManyWithoutModInput;
577
581
  modTags?: Prisma.ModTagUncheckedCreateNestedManyWithoutModInput;
578
582
  sourceFiles?: Prisma.ModSourceFileUncheckedCreateNestedManyWithoutModInput;
583
+ packFiles?: Prisma.PackFileUncheckedCreateNestedManyWithoutModInput;
579
584
  };
580
585
  export type ModUpdateInput = {
581
586
  modId?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -609,6 +614,7 @@ export type ModUpdateInput = {
609
614
  classes?: Prisma.ModClassUpdateManyWithoutModNestedInput;
610
615
  modTags?: Prisma.ModTagUpdateManyWithoutModNestedInput;
611
616
  sourceFiles?: Prisma.ModSourceFileUpdateManyWithoutModNestedInput;
617
+ packFiles?: Prisma.PackFileUpdateManyWithoutModNestedInput;
612
618
  };
613
619
  export type ModUncheckedUpdateInput = {
614
620
  id?: Prisma.IntFieldUpdateOperationsInput | number;
@@ -643,6 +649,7 @@ export type ModUncheckedUpdateInput = {
643
649
  classes?: Prisma.ModClassUncheckedUpdateManyWithoutModNestedInput;
644
650
  modTags?: Prisma.ModTagUncheckedUpdateManyWithoutModNestedInput;
645
651
  sourceFiles?: Prisma.ModSourceFileUncheckedUpdateManyWithoutModNestedInput;
652
+ packFiles?: Prisma.PackFileUncheckedUpdateManyWithoutModNestedInput;
646
653
  };
647
654
  export type ModCreateManyInput = {
648
655
  id?: number;
@@ -847,6 +854,10 @@ export type ModScalarRelationFilter = {
847
854
  is?: Prisma.ModWhereInput;
848
855
  isNot?: Prisma.ModWhereInput;
849
856
  };
857
+ export type ModNullableScalarRelationFilter = {
858
+ is?: Prisma.ModWhereInput | null;
859
+ isNot?: Prisma.ModWhereInput | null;
860
+ };
850
861
  export type StringFieldUpdateOperationsInput = {
851
862
  set?: string;
852
863
  };
@@ -897,6 +908,20 @@ export type ModUpdateOneRequiredWithoutModTagsNestedInput = {
897
908
  connect?: Prisma.ModWhereUniqueInput;
898
909
  update?: Prisma.XOR<Prisma.XOR<Prisma.ModUpdateToOneWithWhereWithoutModTagsInput, Prisma.ModUpdateWithoutModTagsInput>, Prisma.ModUncheckedUpdateWithoutModTagsInput>;
899
910
  };
911
+ export type ModCreateNestedOneWithoutPackFilesInput = {
912
+ create?: Prisma.XOR<Prisma.ModCreateWithoutPackFilesInput, Prisma.ModUncheckedCreateWithoutPackFilesInput>;
913
+ connectOrCreate?: Prisma.ModCreateOrConnectWithoutPackFilesInput;
914
+ connect?: Prisma.ModWhereUniqueInput;
915
+ };
916
+ export type ModUpdateOneWithoutPackFilesNestedInput = {
917
+ create?: Prisma.XOR<Prisma.ModCreateWithoutPackFilesInput, Prisma.ModUncheckedCreateWithoutPackFilesInput>;
918
+ connectOrCreate?: Prisma.ModCreateOrConnectWithoutPackFilesInput;
919
+ upsert?: Prisma.ModUpsertWithoutPackFilesInput;
920
+ disconnect?: Prisma.ModWhereInput | boolean;
921
+ delete?: Prisma.ModWhereInput | boolean;
922
+ connect?: Prisma.ModWhereUniqueInput;
923
+ update?: Prisma.XOR<Prisma.XOR<Prisma.ModUpdateToOneWithWhereWithoutPackFilesInput, Prisma.ModUpdateWithoutPackFilesInput>, Prisma.ModUncheckedUpdateWithoutPackFilesInput>;
924
+ };
900
925
  export type ModCreateNestedOneWithoutSourceFilesInput = {
901
926
  create?: Prisma.XOR<Prisma.ModCreateWithoutSourceFilesInput, Prisma.ModUncheckedCreateWithoutSourceFilesInput>;
902
927
  connectOrCreate?: Prisma.ModCreateOrConnectWithoutSourceFilesInput;
@@ -940,6 +965,7 @@ export type ModCreateWithoutClassesInput = {
940
965
  updatedAt?: Date | string;
941
966
  modTags?: Prisma.ModTagCreateNestedManyWithoutModInput;
942
967
  sourceFiles?: Prisma.ModSourceFileCreateNestedManyWithoutModInput;
968
+ packFiles?: Prisma.PackFileCreateNestedManyWithoutModInput;
943
969
  };
944
970
  export type ModUncheckedCreateWithoutClassesInput = {
945
971
  id?: number;
@@ -973,6 +999,7 @@ export type ModUncheckedCreateWithoutClassesInput = {
973
999
  updatedAt?: Date | string;
974
1000
  modTags?: Prisma.ModTagUncheckedCreateNestedManyWithoutModInput;
975
1001
  sourceFiles?: Prisma.ModSourceFileUncheckedCreateNestedManyWithoutModInput;
1002
+ packFiles?: Prisma.PackFileUncheckedCreateNestedManyWithoutModInput;
976
1003
  };
977
1004
  export type ModCreateOrConnectWithoutClassesInput = {
978
1005
  where: Prisma.ModWhereUniqueInput;
@@ -1018,6 +1045,7 @@ export type ModUpdateWithoutClassesInput = {
1018
1045
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1019
1046
  modTags?: Prisma.ModTagUpdateManyWithoutModNestedInput;
1020
1047
  sourceFiles?: Prisma.ModSourceFileUpdateManyWithoutModNestedInput;
1048
+ packFiles?: Prisma.PackFileUpdateManyWithoutModNestedInput;
1021
1049
  };
1022
1050
  export type ModUncheckedUpdateWithoutClassesInput = {
1023
1051
  id?: Prisma.IntFieldUpdateOperationsInput | number;
@@ -1051,6 +1079,7 @@ export type ModUncheckedUpdateWithoutClassesInput = {
1051
1079
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1052
1080
  modTags?: Prisma.ModTagUncheckedUpdateManyWithoutModNestedInput;
1053
1081
  sourceFiles?: Prisma.ModSourceFileUncheckedUpdateManyWithoutModNestedInput;
1082
+ packFiles?: Prisma.PackFileUncheckedUpdateManyWithoutModNestedInput;
1054
1083
  };
1055
1084
  export type ModCreateWithoutModTagsInput = {
1056
1085
  modId: string;
@@ -1083,6 +1112,7 @@ export type ModCreateWithoutModTagsInput = {
1083
1112
  updatedAt?: Date | string;
1084
1113
  classes?: Prisma.ModClassCreateNestedManyWithoutModInput;
1085
1114
  sourceFiles?: Prisma.ModSourceFileCreateNestedManyWithoutModInput;
1115
+ packFiles?: Prisma.PackFileCreateNestedManyWithoutModInput;
1086
1116
  };
1087
1117
  export type ModUncheckedCreateWithoutModTagsInput = {
1088
1118
  id?: number;
@@ -1116,6 +1146,7 @@ export type ModUncheckedCreateWithoutModTagsInput = {
1116
1146
  updatedAt?: Date | string;
1117
1147
  classes?: Prisma.ModClassUncheckedCreateNestedManyWithoutModInput;
1118
1148
  sourceFiles?: Prisma.ModSourceFileUncheckedCreateNestedManyWithoutModInput;
1149
+ packFiles?: Prisma.PackFileUncheckedCreateNestedManyWithoutModInput;
1119
1150
  };
1120
1151
  export type ModCreateOrConnectWithoutModTagsInput = {
1121
1152
  where: Prisma.ModWhereUniqueInput;
@@ -1161,6 +1192,7 @@ export type ModUpdateWithoutModTagsInput = {
1161
1192
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1162
1193
  classes?: Prisma.ModClassUpdateManyWithoutModNestedInput;
1163
1194
  sourceFiles?: Prisma.ModSourceFileUpdateManyWithoutModNestedInput;
1195
+ packFiles?: Prisma.PackFileUpdateManyWithoutModNestedInput;
1164
1196
  };
1165
1197
  export type ModUncheckedUpdateWithoutModTagsInput = {
1166
1198
  id?: Prisma.IntFieldUpdateOperationsInput | number;
@@ -1194,6 +1226,154 @@ export type ModUncheckedUpdateWithoutModTagsInput = {
1194
1226
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1195
1227
  classes?: Prisma.ModClassUncheckedUpdateManyWithoutModNestedInput;
1196
1228
  sourceFiles?: Prisma.ModSourceFileUncheckedUpdateManyWithoutModNestedInput;
1229
+ packFiles?: Prisma.PackFileUncheckedUpdateManyWithoutModNestedInput;
1230
+ };
1231
+ export type ModCreateWithoutPackFilesInput = {
1232
+ modId: string;
1233
+ displayName: string;
1234
+ version: string;
1235
+ mcVersion: string;
1236
+ loader: string;
1237
+ jarPath: string;
1238
+ sha256?: string | null;
1239
+ murmur2?: string | null;
1240
+ sha512?: string | null;
1241
+ sourcePath?: string | null;
1242
+ decompPath?: string | null;
1243
+ decompiled?: boolean;
1244
+ graphPath?: string | null;
1245
+ modrinthId?: string | null;
1246
+ curseforgeId?: number | null;
1247
+ hasMixins?: boolean;
1248
+ hasAt?: boolean;
1249
+ hasAw?: boolean;
1250
+ mixinConfigs?: string;
1251
+ mixinTargets?: string;
1252
+ atEntries?: string;
1253
+ awEntries?: string;
1254
+ dependencies?: string;
1255
+ metadata?: string;
1256
+ metadataSource?: string | null;
1257
+ tags?: string;
1258
+ ingestedAt?: Date | string;
1259
+ updatedAt?: Date | string;
1260
+ classes?: Prisma.ModClassCreateNestedManyWithoutModInput;
1261
+ modTags?: Prisma.ModTagCreateNestedManyWithoutModInput;
1262
+ sourceFiles?: Prisma.ModSourceFileCreateNestedManyWithoutModInput;
1263
+ };
1264
+ export type ModUncheckedCreateWithoutPackFilesInput = {
1265
+ id?: number;
1266
+ modId: string;
1267
+ displayName: string;
1268
+ version: string;
1269
+ mcVersion: string;
1270
+ loader: string;
1271
+ jarPath: string;
1272
+ sha256?: string | null;
1273
+ murmur2?: string | null;
1274
+ sha512?: string | null;
1275
+ sourcePath?: string | null;
1276
+ decompPath?: string | null;
1277
+ decompiled?: boolean;
1278
+ graphPath?: string | null;
1279
+ modrinthId?: string | null;
1280
+ curseforgeId?: number | null;
1281
+ hasMixins?: boolean;
1282
+ hasAt?: boolean;
1283
+ hasAw?: boolean;
1284
+ mixinConfigs?: string;
1285
+ mixinTargets?: string;
1286
+ atEntries?: string;
1287
+ awEntries?: string;
1288
+ dependencies?: string;
1289
+ metadata?: string;
1290
+ metadataSource?: string | null;
1291
+ tags?: string;
1292
+ ingestedAt?: Date | string;
1293
+ updatedAt?: Date | string;
1294
+ classes?: Prisma.ModClassUncheckedCreateNestedManyWithoutModInput;
1295
+ modTags?: Prisma.ModTagUncheckedCreateNestedManyWithoutModInput;
1296
+ sourceFiles?: Prisma.ModSourceFileUncheckedCreateNestedManyWithoutModInput;
1297
+ };
1298
+ export type ModCreateOrConnectWithoutPackFilesInput = {
1299
+ where: Prisma.ModWhereUniqueInput;
1300
+ create: Prisma.XOR<Prisma.ModCreateWithoutPackFilesInput, Prisma.ModUncheckedCreateWithoutPackFilesInput>;
1301
+ };
1302
+ export type ModUpsertWithoutPackFilesInput = {
1303
+ update: Prisma.XOR<Prisma.ModUpdateWithoutPackFilesInput, Prisma.ModUncheckedUpdateWithoutPackFilesInput>;
1304
+ create: Prisma.XOR<Prisma.ModCreateWithoutPackFilesInput, Prisma.ModUncheckedCreateWithoutPackFilesInput>;
1305
+ where?: Prisma.ModWhereInput;
1306
+ };
1307
+ export type ModUpdateToOneWithWhereWithoutPackFilesInput = {
1308
+ where?: Prisma.ModWhereInput;
1309
+ data: Prisma.XOR<Prisma.ModUpdateWithoutPackFilesInput, Prisma.ModUncheckedUpdateWithoutPackFilesInput>;
1310
+ };
1311
+ export type ModUpdateWithoutPackFilesInput = {
1312
+ modId?: Prisma.StringFieldUpdateOperationsInput | string;
1313
+ displayName?: Prisma.StringFieldUpdateOperationsInput | string;
1314
+ version?: Prisma.StringFieldUpdateOperationsInput | string;
1315
+ mcVersion?: Prisma.StringFieldUpdateOperationsInput | string;
1316
+ loader?: Prisma.StringFieldUpdateOperationsInput | string;
1317
+ jarPath?: Prisma.StringFieldUpdateOperationsInput | string;
1318
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1319
+ murmur2?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1320
+ sha512?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1321
+ sourcePath?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1322
+ decompPath?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1323
+ decompiled?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1324
+ graphPath?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1325
+ modrinthId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1326
+ curseforgeId?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
1327
+ hasMixins?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1328
+ hasAt?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1329
+ hasAw?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1330
+ mixinConfigs?: Prisma.StringFieldUpdateOperationsInput | string;
1331
+ mixinTargets?: Prisma.StringFieldUpdateOperationsInput | string;
1332
+ atEntries?: Prisma.StringFieldUpdateOperationsInput | string;
1333
+ awEntries?: Prisma.StringFieldUpdateOperationsInput | string;
1334
+ dependencies?: Prisma.StringFieldUpdateOperationsInput | string;
1335
+ metadata?: Prisma.StringFieldUpdateOperationsInput | string;
1336
+ metadataSource?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1337
+ tags?: Prisma.StringFieldUpdateOperationsInput | string;
1338
+ ingestedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1339
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1340
+ classes?: Prisma.ModClassUpdateManyWithoutModNestedInput;
1341
+ modTags?: Prisma.ModTagUpdateManyWithoutModNestedInput;
1342
+ sourceFiles?: Prisma.ModSourceFileUpdateManyWithoutModNestedInput;
1343
+ };
1344
+ export type ModUncheckedUpdateWithoutPackFilesInput = {
1345
+ id?: Prisma.IntFieldUpdateOperationsInput | number;
1346
+ modId?: Prisma.StringFieldUpdateOperationsInput | string;
1347
+ displayName?: Prisma.StringFieldUpdateOperationsInput | string;
1348
+ version?: Prisma.StringFieldUpdateOperationsInput | string;
1349
+ mcVersion?: Prisma.StringFieldUpdateOperationsInput | string;
1350
+ loader?: Prisma.StringFieldUpdateOperationsInput | string;
1351
+ jarPath?: Prisma.StringFieldUpdateOperationsInput | string;
1352
+ sha256?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1353
+ murmur2?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1354
+ sha512?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1355
+ sourcePath?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1356
+ decompPath?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1357
+ decompiled?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1358
+ graphPath?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1359
+ modrinthId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1360
+ curseforgeId?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
1361
+ hasMixins?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1362
+ hasAt?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1363
+ hasAw?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1364
+ mixinConfigs?: Prisma.StringFieldUpdateOperationsInput | string;
1365
+ mixinTargets?: Prisma.StringFieldUpdateOperationsInput | string;
1366
+ atEntries?: Prisma.StringFieldUpdateOperationsInput | string;
1367
+ awEntries?: Prisma.StringFieldUpdateOperationsInput | string;
1368
+ dependencies?: Prisma.StringFieldUpdateOperationsInput | string;
1369
+ metadata?: Prisma.StringFieldUpdateOperationsInput | string;
1370
+ metadataSource?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1371
+ tags?: Prisma.StringFieldUpdateOperationsInput | string;
1372
+ ingestedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1373
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1374
+ classes?: Prisma.ModClassUncheckedUpdateManyWithoutModNestedInput;
1375
+ modTags?: Prisma.ModTagUncheckedUpdateManyWithoutModNestedInput;
1376
+ sourceFiles?: Prisma.ModSourceFileUncheckedUpdateManyWithoutModNestedInput;
1197
1377
  };
1198
1378
  export type ModCreateWithoutSourceFilesInput = {
1199
1379
  modId: string;
@@ -1226,6 +1406,7 @@ export type ModCreateWithoutSourceFilesInput = {
1226
1406
  updatedAt?: Date | string;
1227
1407
  classes?: Prisma.ModClassCreateNestedManyWithoutModInput;
1228
1408
  modTags?: Prisma.ModTagCreateNestedManyWithoutModInput;
1409
+ packFiles?: Prisma.PackFileCreateNestedManyWithoutModInput;
1229
1410
  };
1230
1411
  export type ModUncheckedCreateWithoutSourceFilesInput = {
1231
1412
  id?: number;
@@ -1259,6 +1440,7 @@ export type ModUncheckedCreateWithoutSourceFilesInput = {
1259
1440
  updatedAt?: Date | string;
1260
1441
  classes?: Prisma.ModClassUncheckedCreateNestedManyWithoutModInput;
1261
1442
  modTags?: Prisma.ModTagUncheckedCreateNestedManyWithoutModInput;
1443
+ packFiles?: Prisma.PackFileUncheckedCreateNestedManyWithoutModInput;
1262
1444
  };
1263
1445
  export type ModCreateOrConnectWithoutSourceFilesInput = {
1264
1446
  where: Prisma.ModWhereUniqueInput;
@@ -1304,6 +1486,7 @@ export type ModUpdateWithoutSourceFilesInput = {
1304
1486
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1305
1487
  classes?: Prisma.ModClassUpdateManyWithoutModNestedInput;
1306
1488
  modTags?: Prisma.ModTagUpdateManyWithoutModNestedInput;
1489
+ packFiles?: Prisma.PackFileUpdateManyWithoutModNestedInput;
1307
1490
  };
1308
1491
  export type ModUncheckedUpdateWithoutSourceFilesInput = {
1309
1492
  id?: Prisma.IntFieldUpdateOperationsInput | number;
@@ -1337,6 +1520,7 @@ export type ModUncheckedUpdateWithoutSourceFilesInput = {
1337
1520
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1338
1521
  classes?: Prisma.ModClassUncheckedUpdateManyWithoutModNestedInput;
1339
1522
  modTags?: Prisma.ModTagUncheckedUpdateManyWithoutModNestedInput;
1523
+ packFiles?: Prisma.PackFileUncheckedUpdateManyWithoutModNestedInput;
1340
1524
  };
1341
1525
  /**
1342
1526
  * Count Type ModCountOutputType
@@ -1345,11 +1529,13 @@ export type ModCountOutputType = {
1345
1529
  classes: number;
1346
1530
  modTags: number;
1347
1531
  sourceFiles: number;
1532
+ packFiles: number;
1348
1533
  };
1349
1534
  export type ModCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1350
1535
  classes?: boolean | ModCountOutputTypeCountClassesArgs;
1351
1536
  modTags?: boolean | ModCountOutputTypeCountModTagsArgs;
1352
1537
  sourceFiles?: boolean | ModCountOutputTypeCountSourceFilesArgs;
1538
+ packFiles?: boolean | ModCountOutputTypeCountPackFilesArgs;
1353
1539
  };
1354
1540
  /**
1355
1541
  * ModCountOutputType without action
@@ -1378,6 +1564,12 @@ export type ModCountOutputTypeCountModTagsArgs<ExtArgs extends runtime.Types.Ext
1378
1564
  export type ModCountOutputTypeCountSourceFilesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1379
1565
  where?: Prisma.ModSourceFileWhereInput;
1380
1566
  };
1567
+ /**
1568
+ * ModCountOutputType without action
1569
+ */
1570
+ export type ModCountOutputTypeCountPackFilesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1571
+ where?: Prisma.PackFileWhereInput;
1572
+ };
1381
1573
  export type ModSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
1382
1574
  id?: boolean;
1383
1575
  modId?: boolean;
@@ -1411,6 +1603,7 @@ export type ModSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = ru
1411
1603
  classes?: boolean | Prisma.Mod$classesArgs<ExtArgs>;
1412
1604
  modTags?: boolean | Prisma.Mod$modTagsArgs<ExtArgs>;
1413
1605
  sourceFiles?: boolean | Prisma.Mod$sourceFilesArgs<ExtArgs>;
1606
+ packFiles?: boolean | Prisma.Mod$packFilesArgs<ExtArgs>;
1414
1607
  _count?: boolean | Prisma.ModCountOutputTypeDefaultArgs<ExtArgs>;
1415
1608
  }, ExtArgs["result"]["mod"]>;
1416
1609
  export type ModSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
@@ -1511,6 +1704,7 @@ export type ModInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
1511
1704
  classes?: boolean | Prisma.Mod$classesArgs<ExtArgs>;
1512
1705
  modTags?: boolean | Prisma.Mod$modTagsArgs<ExtArgs>;
1513
1706
  sourceFiles?: boolean | Prisma.Mod$sourceFilesArgs<ExtArgs>;
1707
+ packFiles?: boolean | Prisma.Mod$packFilesArgs<ExtArgs>;
1514
1708
  _count?: boolean | Prisma.ModCountOutputTypeDefaultArgs<ExtArgs>;
1515
1709
  };
1516
1710
  export type ModIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {};
@@ -1521,6 +1715,7 @@ export type $ModPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
1521
1715
  classes: Prisma.$ModClassPayload<ExtArgs>[];
1522
1716
  modTags: Prisma.$ModTagPayload<ExtArgs>[];
1523
1717
  sourceFiles: Prisma.$ModSourceFilePayload<ExtArgs>[];
1718
+ packFiles: Prisma.$PackFilePayload<ExtArgs>[];
1524
1719
  };
1525
1720
  scalars: runtime.Types.Extensions.GetPayloadResult<{
1526
1721
  id: number;
@@ -1884,6 +2079,7 @@ export interface Prisma__ModClient<T, Null = never, ExtArgs extends runtime.Type
1884
2079
  classes<T extends Prisma.Mod$classesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Mod$classesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ModClassPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1885
2080
  modTags<T extends Prisma.Mod$modTagsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Mod$modTagsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ModTagPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1886
2081
  sourceFiles<T extends Prisma.Mod$sourceFilesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Mod$sourceFilesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ModSourceFilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2082
+ packFiles<T extends Prisma.Mod$packFilesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Mod$packFilesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PackFilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1887
2083
  /**
1888
2084
  * Attaches callbacks for the resolution and/or rejection of the Promise.
1889
2085
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -2375,6 +2571,29 @@ export type Mod$sourceFilesArgs<ExtArgs extends runtime.Types.Extensions.Interna
2375
2571
  skip?: number;
2376
2572
  distinct?: Prisma.ModSourceFileScalarFieldEnum | Prisma.ModSourceFileScalarFieldEnum[];
2377
2573
  };
2574
+ /**
2575
+ * Mod.packFiles
2576
+ */
2577
+ export type Mod$packFilesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2578
+ /**
2579
+ * Select specific fields to fetch from the PackFile
2580
+ */
2581
+ select?: Prisma.PackFileSelect<ExtArgs> | null;
2582
+ /**
2583
+ * Omit specific fields from the PackFile
2584
+ */
2585
+ omit?: Prisma.PackFileOmit<ExtArgs> | null;
2586
+ /**
2587
+ * Choose, which related nodes to fetch as well
2588
+ */
2589
+ include?: Prisma.PackFileInclude<ExtArgs> | null;
2590
+ where?: Prisma.PackFileWhereInput;
2591
+ orderBy?: Prisma.PackFileOrderByWithRelationInput | Prisma.PackFileOrderByWithRelationInput[];
2592
+ cursor?: Prisma.PackFileWhereUniqueInput;
2593
+ take?: number;
2594
+ skip?: number;
2595
+ distinct?: Prisma.PackFileScalarFieldEnum | Prisma.PackFileScalarFieldEnum[];
2596
+ };
2378
2597
  /**
2379
2598
  * Mod without action
2380
2599
  */