@hytopia.com/server-protocol 1.0.7 → 1.0.8

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 (2) hide show
  1. package/index.ts +5 -4
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- import * as inbound from './packets/inbound';
2
- import * as outbound from './packets/outbound';
1
+ import * as inboundPackets from './packets/inbound';
2
+ import * as outboundPackets from './packets/outbound';
3
3
  import * as PacketCore from './packets/PacketCore';
4
4
  import * as schemas from './schemas';
5
5
 
@@ -7,9 +7,10 @@ export * from './packets/inbound';
7
7
  export * from './packets/outbound';
8
8
  export * from './packets/PacketCore';
9
9
  export * from './schemas';
10
+
10
11
  export default {
11
- ...inbound,
12
- ...outbound,
12
+ inboundPackets,
13
+ outboundPackets,
13
14
  ...PacketCore,
14
15
  ...schemas,
15
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hytopia.com/server-protocol",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"