smoltalk 0.0.36 → 0.0.37
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/dist/statelogClient.d.ts +0 -6
- package/dist/statelogClient.js +0 -8
- package/dist/types.d.ts +0 -7
- package/package.json +1 -1
package/dist/statelogClient.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { JSONEdge } from "./types.js";
|
|
2
1
|
import { Result } from "./types/result.js";
|
|
3
2
|
import { ModelConfig, ModelName } from "./models.js";
|
|
4
3
|
export type AgencyFile = {
|
|
@@ -30,11 +29,6 @@ export declare class StatelogClient {
|
|
|
30
29
|
debugMode: boolean;
|
|
31
30
|
};
|
|
32
31
|
debug(message: string, data: any): Promise<void>;
|
|
33
|
-
graph({ nodes, edges, startNode, }: {
|
|
34
|
-
nodes: string[];
|
|
35
|
-
edges: Record<string, JSONEdge>;
|
|
36
|
-
startNode?: string;
|
|
37
|
-
}): Promise<void>;
|
|
38
32
|
enterNode({ nodeId, data, }: {
|
|
39
33
|
nodeId: string;
|
|
40
34
|
data: any;
|
package/dist/statelogClient.js
CHANGED
|
@@ -45,14 +45,6 @@ export class StatelogClient {
|
|
|
45
45
|
data,
|
|
46
46
|
});
|
|
47
47
|
}
|
|
48
|
-
async graph({ nodes, edges, startNode, }) {
|
|
49
|
-
await this.post({
|
|
50
|
-
type: "graph",
|
|
51
|
-
nodes,
|
|
52
|
-
edges,
|
|
53
|
-
startNode,
|
|
54
|
-
});
|
|
55
|
-
}
|
|
56
48
|
async enterNode({ nodeId, data, }) {
|
|
57
49
|
await this.post({
|
|
58
50
|
type: "enterNode",
|
package/dist/types.d.ts
CHANGED