baltica 0.1.12 → 0.1.13

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.
@@ -6,7 +6,8 @@ export declare enum ProtocolList {
6
6
  "1.21.80" = 800,
7
7
  "1.21.90" = 818,
8
8
  "1.21.93" = 819,
9
- "1.21.100" = 827
9
+ "1.21.100" = 827,
10
+ "1.21.113" = 844
10
11
  }
11
12
  export type PacketNames = {
12
13
  [K in keyof typeof Protocol]: K extends `${string}Packet` ? K extends "Packet" | "DataPacket" ? never : K : never;
@@ -14,7 +15,7 @@ export type PacketNames = {
14
15
  /**
15
16
  * We do not have multi protocol as of now (Not yet planned either).
16
17
  */
17
- export type CurrentVersion = "1.21.100";
18
+ export type CurrentVersion = "1.21.113";
18
19
  export declare const CurrentVersionConst: CurrentVersion;
19
20
  /**
20
21
  * Checks if client version is higher than the specified version
@@ -12,8 +12,9 @@ var ProtocolList;
12
12
  ProtocolList[ProtocolList["1.21.90"] = 818] = "1.21.90";
13
13
  ProtocolList[ProtocolList["1.21.93"] = 819] = "1.21.93";
14
14
  ProtocolList[ProtocolList["1.21.100"] = 827] = "1.21.100";
15
+ ProtocolList[ProtocolList["1.21.113"] = 844] = "1.21.113";
15
16
  })(ProtocolList || (exports.ProtocolList = ProtocolList = {}));
16
- exports.CurrentVersionConst = "1.21.100";
17
+ exports.CurrentVersionConst = "1.21.113";
17
18
  /**
18
19
  * Checks if client version is higher than the specified version
19
20
  * @param version The client version to check
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "baltica",
3
3
  "description": "Library for Minecraft Bedrock Edition community developers.",
4
- "version": "0.1.12",
5
- "minecraft": "1.21.100",
4
+ "version": "0.1.13",
5
+ "minecraft": "1.21.113",
6
6
  "main": "dist/index.js",
7
7
  "license": "MIT",
8
8
  "types": "dist/index.d.ts",