recnet-types 1.0.0 → 1.0.1

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 (3) hide show
  1. package/enums.ts +3 -1
  2. package/package.json +1 -1
  3. package/types.ts +3 -1
package/enums.ts CHANGED
@@ -92,4 +92,6 @@ export enum RoomPersistenceVersion {
92
92
  V37ToolHandednessAdded,
93
93
  V38ProjectileSpreadFloat,
94
94
  LatestRoomPersistenceVersion = 38
95
- }
95
+ }
96
+
97
+ export default "default";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recnet-types",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "exports": {
5
5
  "./enums": "./enums.ts",
6
6
  "./types": "./types.ts"
package/types.ts CHANGED
@@ -103,4 +103,6 @@ export interface SubRoom {
103
103
  Accessibility: Accessibility
104
104
  ShouldAutoStageSaves: boolean
105
105
  StagedSubRoomDataSaveId: RecRoomNumber | null
106
- }
106
+ }
107
+
108
+ export default "default";