motia 0.8.2-beta.140-362903 → 0.8.2-beta.140-460356
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.
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { LockedData, type Step, type
|
|
1
|
+
import { LockedData, type Step, type StreamAdapterFactory } from '@motiadev/core';
|
|
2
2
|
export declare const getStepFiles: (projectDir: string) => string[];
|
|
3
3
|
export declare const getStreamFiles: (projectDir: string) => string[];
|
|
4
4
|
export declare const collectFlows: (projectDir: string, lockedData: LockedData) => Promise<Step[]>;
|
|
5
5
|
export declare const generateLockedData: (config: {
|
|
6
6
|
projectDir: string;
|
|
7
|
-
streamAdapter: "file" | "memory" |
|
|
7
|
+
streamAdapter: "file" | "memory" | StreamAdapterFactory;
|
|
8
8
|
printerType?: "disabled" | "default";
|
|
9
9
|
motiaFileStoragePath?: string;
|
|
10
10
|
}) => Promise<LockedData>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { LockedData, type Step, type
|
|
1
|
+
import { LockedData, type Step, type StreamAdapterFactory } from '@motiadev/core';
|
|
2
2
|
export declare const getStepFiles: (projectDir: string) => string[];
|
|
3
3
|
export declare const getStreamFiles: (projectDir: string) => string[];
|
|
4
4
|
export declare const collectFlows: (projectDir: string, lockedData: LockedData) => Promise<Step[]>;
|
|
5
5
|
export declare const generateLockedData: (config: {
|
|
6
6
|
projectDir: string;
|
|
7
|
-
streamAdapter: "file" | "memory" |
|
|
7
|
+
streamAdapter: "file" | "memory" | StreamAdapterFactory;
|
|
8
8
|
printerType?: "disabled" | "default";
|
|
9
9
|
motiaFileStoragePath?: string;
|
|
10
10
|
}) => Promise<LockedData>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getStepConfig, getStreamConfig, LockedData } from '@motiadev/core';
|
|
1
|
+
import { getStepConfig, getStreamConfig, LockedData, } from '@motiadev/core';
|
|
2
2
|
import { NoPrinter, Printer } from '@motiadev/core/dist/src/printer';
|
|
3
3
|
import colors from 'colors';
|
|
4
4
|
import { randomUUID } from 'crypto';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { LockedData, type Step, type
|
|
1
|
+
import { LockedData, type Step, type StreamAdapterFactory } from '@motiadev/core';
|
|
2
2
|
export declare const getStepFiles: (projectDir: string) => string[];
|
|
3
3
|
export declare const getStreamFiles: (projectDir: string) => string[];
|
|
4
4
|
export declare const collectFlows: (projectDir: string, lockedData: LockedData) => Promise<Step[]>;
|
|
5
5
|
export declare const generateLockedData: (config: {
|
|
6
6
|
projectDir: string;
|
|
7
|
-
streamAdapter: "file" | "memory" |
|
|
7
|
+
streamAdapter: "file" | "memory" | StreamAdapterFactory;
|
|
8
8
|
printerType?: "disabled" | "default";
|
|
9
9
|
motiaFileStoragePath?: string;
|
|
10
10
|
}) => Promise<LockedData>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "motia",
|
|
3
3
|
"description": "A Modern Unified Backend Framework for APIs, Events and Agents",
|
|
4
|
-
"version": "0.8.2-beta.140-
|
|
4
|
+
"version": "0.8.2-beta.140-460356",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"python-ast": "^0.1.0",
|
|
47
47
|
"table": "^6.9.0",
|
|
48
48
|
"ts-node": "^10.9.2",
|
|
49
|
-
"@motiadev/
|
|
50
|
-
"@motiadev/
|
|
51
|
-
"@motiadev/
|
|
49
|
+
"@motiadev/stream-client-node": "0.8.2-beta.140-460356",
|
|
50
|
+
"@motiadev/core": "0.8.2-beta.140-460356",
|
|
51
|
+
"@motiadev/workbench": "0.8.2-beta.140-460356"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@amplitude/analytics-types": "^2.9.2",
|