@latticexyz/world-modules 2.0.0-main-cf2104eb → 2.0.0-main-5fdbb127

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 (47) hide show
  1. package/out/CallboundDelegationControl.sol/CallboundDelegationControl.json +17 -17
  2. package/out/CallboundDelegations.sol/CallboundDelegations.json +1608 -1608
  3. package/out/DelegationControl.sol/DelegationControl.json +13 -13
  4. package/out/Hook.sol/HookInstance.json +13 -13
  5. package/out/Hook.sol/HookLib.json +13 -13
  6. package/out/Hooks.sol/Hooks.json +2872 -2872
  7. package/out/IBaseWorld.sol/IBaseWorld.json +15 -15
  8. package/out/IWorldRegistrationSystem.sol/IWorldRegistrationSystem.json +13 -13
  9. package/out/KeysInTable.sol/KeysInTable.json +7285 -7285
  10. package/out/KeysInTableHook.sol/KeysInTableHook.json +20 -20
  11. package/out/KeysInTableModule.sol/KeysInTableModule.json +23 -23
  12. package/out/KeysWithValue.sol/KeysWithValue.json +2599 -2599
  13. package/out/KeysWithValueHook.sol/KeysWithValueHook.json +20 -20
  14. package/out/KeysWithValueModule.sol/KeysWithValueModule.json +19 -19
  15. package/out/Module.sol/Module.json +13 -13
  16. package/out/ResourceIds.sol/ResourceIds.json +919 -919
  17. package/out/StandardDelegationsModule.sol/StandardDelegationsModule.json +23 -23
  18. package/out/StoreCore.sol/StoreCore.json +13 -13
  19. package/out/StoreCore.sol/StoreCoreInternal.json +13 -13
  20. package/out/StoreHooks.sol/StoreHooks.json +2647 -2647
  21. package/out/StoreSwitch.sol/StoreSwitch.json +13 -13
  22. package/out/System.sol/System.json +13 -13
  23. package/out/Tables.sol/Tables.json +4611 -4611
  24. package/out/TimeboundDelegationControl.sol/TimeboundDelegationControl.json +17 -17
  25. package/out/TimeboundDelegations.sol/TimeboundDelegations.json +1224 -1224
  26. package/out/UniqueEntity.sol/UniqueEntity.json +723 -723
  27. package/out/UniqueEntityModule.sol/UniqueEntityModule.json +20 -20
  28. package/out/UniqueEntitySystem.sol/UniqueEntitySystem.json +17 -17
  29. package/out/UsedKeysIndex.sol/UsedKeysIndex.json +1586 -1586
  30. package/out/WorldContext.sol/WorldContextConsumer.json +13 -13
  31. package/out/WorldContext.sol/WorldContextProvider.json +13 -13
  32. package/out/interfaces/IBaseWorld.sol/IBaseWorld.json +45 -45
  33. package/out/src/StoreCore.sol/StoreCore.json +13 -13
  34. package/out/src/StoreCore.sol/StoreCoreInternal.json +13 -13
  35. package/out/src/StoreSwitch.sol/StoreSwitch.json +13 -13
  36. package/out/src/WorldContext.sol/WorldContextConsumer.json +13 -13
  37. package/out/src/WorldContext.sol/WorldContextProvider.json +13 -13
  38. package/out/tables/ResourceIds.sol/ResourceIds.json +919 -919
  39. package/out/tables/Tables.sol/Tables.json +4611 -4611
  40. package/package.json +8 -8
  41. package/src/interfaces/IBaseWorld.sol +3 -2
  42. package/src/modules/keysintable/tables/KeysInTable.sol +285 -135
  43. package/src/modules/keysintable/tables/UsedKeysIndex.sol +36 -12
  44. package/src/modules/keyswithvalue/tables/KeysWithValue.sol +114 -54
  45. package/src/modules/std-delegations/tables/CallboundDelegations.sol +36 -12
  46. package/src/modules/std-delegations/tables/TimeboundDelegations.sol +36 -12
  47. package/src/modules/uniqueentity/tables/UniqueEntity.sol +36 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latticexyz/world-modules",
3
- "version": "2.0.0-main-cf2104eb",
3
+ "version": "2.0.0-main-5fdbb127",
4
4
  "description": "World modules",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,11 +15,11 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "zod": "^3.21.4",
18
- "@latticexyz/common": "2.0.0-main-cf2104eb",
19
- "@latticexyz/config": "2.0.0-main-cf2104eb",
20
- "@latticexyz/schema-type": "2.0.0-main-cf2104eb",
21
- "@latticexyz/store": "2.0.0-main-cf2104eb",
22
- "@latticexyz/world": "2.0.0-main-cf2104eb"
18
+ "@latticexyz/common": "2.0.0-main-5fdbb127",
19
+ "@latticexyz/config": "2.0.0-main-5fdbb127",
20
+ "@latticexyz/schema-type": "2.0.0-main-5fdbb127",
21
+ "@latticexyz/store": "2.0.0-main-5fdbb127",
22
+ "@latticexyz/world": "2.0.0-main-5fdbb127"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/ejs": "^3.1.1",
@@ -34,8 +34,8 @@
34
34
  "tsup": "^6.7.0",
35
35
  "tsx": "^3.12.6",
36
36
  "vitest": "0.31.4",
37
- "@latticexyz/abi-ts": "2.0.0-main-cf2104eb",
38
- "@latticexyz/gas-report": "2.0.0-main-cf2104eb"
37
+ "@latticexyz/abi-ts": "2.0.0-main-5fdbb127",
38
+ "@latticexyz/gas-report": "2.0.0-main-5fdbb127"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
@@ -7,8 +7,9 @@ import { IStore } from "@latticexyz/store/src/IStore.sol";
7
7
  import { IWorldKernel } from "@latticexyz/world/src/IWorldKernel.sol";
8
8
 
9
9
  /**
10
- * The IBaseWorld interface includes all systems dynamically added to the World
11
- * during the deploy process.
10
+ * @title IBaseWorld
11
+ * @notice This interface integrates all systems that are dynamically added to the World during deployment.
12
+ * @dev This is an autogenerated file; do not edit manually.
12
13
  */
13
14
  interface IBaseWorld is IStore, IWorldKernel {
14
15