Skip to content

@loontail/minecraft-kit / MinecraftVersionSummary

Type Alias: MinecraftVersionSummary

ts
type MinecraftVersionSummary = {
  complianceLevel: number;
  id: MinecraftVersionId;
  releaseTime: string;
  sha1: string;
  time: string;
  type: MinecraftChannel;
  url: string;
};

Defined in: src/types/minecraft.ts:35

One entry from the top-level Minecraft version_manifest_v2.json listing.

Note: this is a summary entry, not the full per-version manifest. Use ResolvedMinecraft for the resolved/parsed full manifest.

Properties

PropertyModifierTypeDescriptionDefined in
complianceLevelreadonlynumberCompliance level: 0 = legacy, 1 = secure-chat / safety features.src/types/minecraft.ts:48
idreadonlyMinecraftVersionId-src/types/minecraft.ts:36
releaseTimereadonlystringOriginal release time (ISO-8601).src/types/minecraft.ts:44
sha1readonlystringSHA-1 of the per-version manifest (added in v2).src/types/minecraft.ts:46
timereadonlystringManifest's last edit time (ISO-8601).src/types/minecraft.ts:42
typereadonlyMinecraftChannelRelease channel.src/types/minecraft.ts:38
urlreadonlystringURL to the per-version manifest JSON.src/types/minecraft.ts:40

MIT License