@noya-app/noya-multiplayer-react 0.1.81 → 0.1.82
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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +8 -0
- package/dist/index.bundle.js +22 -22
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/NoyaStateContext.tsx +5 -0
package/dist/index.mjs
CHANGED
|
@@ -8122,6 +8122,10 @@ function usePipelineManager() {
|
|
|
8122
8122
|
const { noyaManager } = useAnyNoyaStateContext();
|
|
8123
8123
|
return noyaManager.pipelineManager;
|
|
8124
8124
|
}
|
|
8125
|
+
function useScriptEvaluator() {
|
|
8126
|
+
const { noyaManager } = useAnyNoyaStateContext();
|
|
8127
|
+
return noyaManager.scriptEvaluatorManager;
|
|
8128
|
+
}
|
|
8125
8129
|
function useNoyaUserManager() {
|
|
8126
8130
|
const { noyaManager } = useAnyNoyaStateContext();
|
|
8127
8131
|
return noyaManager.userManager;
|
|
@@ -8634,6 +8638,7 @@ export {
|
|
|
8634
8638
|
useRegisterAITool,
|
|
8635
8639
|
useResourceManager,
|
|
8636
8640
|
useResources,
|
|
8641
|
+
useScriptEvaluator,
|
|
8637
8642
|
useSecret,
|
|
8638
8643
|
useSecretManager,
|
|
8639
8644
|
useSecrets,
|