bc-minecraft-molang 1.0.17 → 1.1.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.
@@ -4,7 +4,7 @@ export declare namespace Blocks {
4
4
  /** */
5
5
  const Variables: Data[];
6
6
  /** */
7
- const Contents: Data[];
7
+ const Contexts: Data[];
8
8
  /** */
9
9
  const Temps: Data[];
10
10
  }
@@ -7,7 +7,7 @@ var Blocks;
7
7
  /** */
8
8
  Blocks.Variables = [];
9
9
  /** */
10
- Blocks.Contents = [];
10
+ Blocks.Contexts = [];
11
11
  /** */
12
12
  Blocks.Temps = [];
13
13
  })(Blocks = exports.Blocks || (exports.Blocks = {}));
@@ -3,7 +3,7 @@ export declare namespace Entities {
3
3
  /** */
4
4
  const Variables: Data[];
5
5
  /** */
6
- const Contents: Data[];
6
+ const Contexts: Data[];
7
7
  /** */
8
8
  const Temps: Data[];
9
9
  }
@@ -6,7 +6,7 @@ var Entities;
6
6
  /** */
7
7
  Entities.Variables = [{ id: "attack_time" }];
8
8
  /** */
9
- Entities.Contents = [
9
+ Entities.Contexts = [
10
10
  { id: "is_first_person" },
11
11
  { id: "item_slot" }
12
12
  ];
@@ -4,7 +4,7 @@ export declare namespace FeaturesRules {
4
4
  /** */
5
5
  const Variables: Data[];
6
6
  /** */
7
- const Contents: Data[];
7
+ const Contexts: Data[];
8
8
  /** */
9
9
  const Temps: Data[];
10
10
  }
@@ -7,7 +7,7 @@ var FeaturesRules;
7
7
  /** */
8
8
  FeaturesRules.Variables = [{ id: "originx" }, { id: "originy" }, { id: "originz" }, { id: "worldx" }, { id: "worldy" }, { id: "worldz" }];
9
9
  /** */
10
- FeaturesRules.Contents = [];
10
+ FeaturesRules.Contexts = [];
11
11
  /** */
12
12
  FeaturesRules.Temps = [];
13
13
  })(FeaturesRules = exports.FeaturesRules || (exports.FeaturesRules = {}));
@@ -4,7 +4,7 @@ export declare namespace Items {
4
4
  /** */
5
5
  const Variables: Data[];
6
6
  /** */
7
- const Contents: Data[];
7
+ const Contexts: Data[];
8
8
  /** */
9
9
  const Temps: Data[];
10
10
  }
@@ -7,7 +7,7 @@ var Items;
7
7
  /** */
8
8
  Items.Variables = [];
9
9
  /** */
10
- Items.Contents = [];
10
+ Items.Contexts = [];
11
11
  /** */
12
12
  Items.Temps = [];
13
13
  })(Items = exports.Items || (exports.Items = {}));
@@ -4,7 +4,7 @@ export declare namespace Particle {
4
4
  /** */
5
5
  const Variables: Data[];
6
6
  /** */
7
- const Contents: Data[];
7
+ const Contexts: Data[];
8
8
  /** */
9
9
  const Temps: Data[];
10
10
  }
@@ -21,7 +21,7 @@ var Particle;
21
21
  { documentation: "The scale of the entity that is using the particle", id: "entity_scale" },
22
22
  ];
23
23
  /** */
24
- Particle.Contents = [];
24
+ Particle.Contexts = [];
25
25
  /** */
26
26
  Particle.Temps = [];
27
27
  })(Particle = exports.Particle || (exports.Particle = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bc-minecraft-molang",
3
- "version": "1.0.17",
3
+ "version": "1.1.0",
4
4
  "description": "The library designed to deal with minecraft bedrock molang",
5
5
  "main": "./lib/src/main.js",
6
6
  "types": "./lib/src/main.d.ts",
@@ -41,7 +41,7 @@
41
41
  "devDependencies": {
42
42
  "@types/chai": "^4.2.22",
43
43
  "@types/mocha": "^9.0.0",
44
- "@types/node": "^16.10.1",
44
+ "@types/node": "^16.10.2",
45
45
  "chai": "^4.3.4",
46
46
  "mocha": "^9.1.2",
47
47
  "rimraf": "^3.0.2",
@@ -50,6 +50,6 @@
50
50
  "typescript": "^4.4.3"
51
51
  },
52
52
  "dependencies": {
53
- "bc-minecraft-bedrock-types": "^1.2.9"
53
+ "bc-minecraft-bedrock-types": "^1.2.10"
54
54
  }
55
55
  }