node-ts-screeps-api 0.0.11 → 0.0.12
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/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/src/rawApi.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3725,6 +3725,9 @@ class RawApi {
|
|
|
3725
3725
|
async getEncodedRoomTerrain(args) {
|
|
3726
3726
|
return this.req("GET", "/api/game/room-terrain", Object.assign(Object.assign({}, args), { encoded: 1 }));
|
|
3727
3727
|
}
|
|
3728
|
+
async getWorldSize(args) {
|
|
3729
|
+
return this.req("GET", "/api/game/world-size", args);
|
|
3730
|
+
}
|
|
3728
3731
|
}
|
|
3729
3732
|
|
|
3730
3733
|
var bufferUtil$1 = {exports: {}};
|