ghostos 0.1.16 → 0.1.18
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/README.md +23 -1
- package/lib/api/leafio/leafgql.d.ts +13 -3
- package/lib/api/leafio/leaflake.d.ts +3 -3
- package/lib/index.browser.d.ts +3 -1
- package/lib/index.cjs +587 -512
- package/lib/index.core.d.ts +3 -1
- package/lib/index.core.js +1 -1
- package/lib/index.core.js.map +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/package.json +1 -1
package/lib/index.core.d.ts
CHANGED
|
@@ -33,9 +33,11 @@ import { mutateAddNode } from "./api/leafio/leafgql.js";
|
|
|
33
33
|
import { mutateDelNode } from "./api/leafio/leafgql.js";
|
|
34
34
|
import { mutateAddEdge } from "./api/leafio/leafgql.js";
|
|
35
35
|
import { mutateDelEdge } from "./api/leafio/leafgql.js";
|
|
36
|
+
import { getLEAFgqlEndpoints } from "./api/leafio/leafgql.js";
|
|
37
|
+
import { setLEAFgqlEndpoints } from "./api/leafio/leafgql.js";
|
|
36
38
|
import { _breezyforeststdlib_name } from "./api/metamodel.js";
|
|
37
39
|
import { _edge_handle_dict } from "./api/metamodel.js";
|
|
38
40
|
import { _edge_style_dict } from "./api/metamodel.js";
|
|
39
41
|
import { _leafgraph } from "./api/parser/nodelogic/abstraction/index.js";
|
|
40
42
|
import { _leafelement } from "./api/parser/nodelogic/elements/index.js";
|
|
41
|
-
export { executeLEAFLogic, executeLEAFLogicInSync, subscribeToLEAFLogic, driveDataflowByCtrlflow, parseAddressableGraph, initializeLEAFlakeGQLClient, init_gRuntimeLEAFlisp, runtimeEtaTree, etaReduceDataflowComponent, initLEAFIOapi, initializeMasterSubsDirectory, initializeSubsMain, reconstructLEAFGraph, analyzeLEAFGraph, LEAFIOmetamodel, _leafstdlib_dataflow_api, _breezyforeststdlib_hierarchy, createGQLClient, doBottle, doUnbottle, destroySoundStageNode, initializeSoundStage, parseJsonToLEAFlisp, runLEAFlispcode, SHA1, etaTreeForest, encodeUnicode, decodeUnicode, fetchMultiKeyedData, setMultiKeyedData, mutateUpdateNode, mutateAddNode, mutateDelNode, mutateAddEdge, mutateDelEdge, _breezyforeststdlib_name, _edge_handle_dict, _edge_style_dict, _leafgraph, _leafelement };
|
|
43
|
+
export { executeLEAFLogic, executeLEAFLogicInSync, subscribeToLEAFLogic, driveDataflowByCtrlflow, parseAddressableGraph, initializeLEAFlakeGQLClient, init_gRuntimeLEAFlisp, runtimeEtaTree, etaReduceDataflowComponent, initLEAFIOapi, initializeMasterSubsDirectory, initializeSubsMain, reconstructLEAFGraph, analyzeLEAFGraph, LEAFIOmetamodel, _leafstdlib_dataflow_api, _breezyforeststdlib_hierarchy, createGQLClient, doBottle, doUnbottle, destroySoundStageNode, initializeSoundStage, parseJsonToLEAFlisp, runLEAFlispcode, SHA1, etaTreeForest, encodeUnicode, decodeUnicode, fetchMultiKeyedData, setMultiKeyedData, mutateUpdateNode, mutateAddNode, mutateDelNode, mutateAddEdge, mutateDelEdge, getLEAFgqlEndpoints, setLEAFgqlEndpoints, _breezyforeststdlib_name, _edge_handle_dict, _edge_style_dict, _leafgraph, _leafelement };
|