motia 0.14.0-beta.165-285707 → 0.14.0-beta.165-454838
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/cjs/cli.js +14 -1
- package/dist/cjs/cloud/config-utils.d.ts.map +1 -1
- package/dist/cjs/cloud/config-utils.js +10 -6
- package/dist/cjs/redis-memory-manager.d.ts.map +1 -1
- package/dist/cjs/redis-memory-manager.js +1 -5
- package/dist/cjs/utils/execute-command.d.ts.map +1 -1
- package/dist/cjs/utils/execute-command.js +9 -1
- package/dist/esm/cli.js +14 -1
- package/dist/esm/cloud/config-utils.d.ts.map +1 -1
- package/dist/esm/cloud/config-utils.js +10 -6
- package/dist/esm/redis-memory-manager.d.ts.map +1 -1
- package/dist/esm/redis-memory-manager.js +1 -5
- package/dist/esm/utils/execute-command.d.ts.map +1 -1
- package/dist/esm/utils/execute-command.js +9 -1
- package/dist/types/cloud/config-utils.d.ts.map +1 -1
- package/dist/types/redis-memory-manager.d.ts.map +1 -1
- package/dist/types/utils/execute-command.d.ts.map +1 -1
- package/package.json +8 -8
package/dist/cjs/cli.js
CHANGED
|
@@ -185,6 +185,19 @@ docker
|
|
|
185
185
|
process.exit(0);
|
|
186
186
|
}));
|
|
187
187
|
commander_1.program.version(version_1.version, '-V, --version', 'Output the current version');
|
|
188
|
-
|
|
188
|
+
process.on('uncaughtException', (error) => {
|
|
189
|
+
console.error('Uncaught Exception:', error.message);
|
|
190
|
+
console.error(error.stack);
|
|
191
|
+
process.exit(1);
|
|
192
|
+
});
|
|
193
|
+
process.on('unhandledRejection', (reason, promise) => {
|
|
194
|
+
console.error('Unhandled Rejection at:', promise, 'reason:', reason);
|
|
195
|
+
process.exit(1);
|
|
196
|
+
});
|
|
197
|
+
commander_1.program.parseAsync(process.argv).catch((error) => {
|
|
198
|
+
console.error('CLI Error:', error instanceof Error ? error.message : String(error));
|
|
199
|
+
if (error instanceof Error && error.stack) {
|
|
200
|
+
console.error(error.stack);
|
|
201
|
+
}
|
|
189
202
|
process.exit(1);
|
|
190
203
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-utils.d.ts","sourceRoot":"","sources":["../../../src/cloud/config-utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config-utils.d.ts","sourceRoot":"","sources":["../../../src/cloud/config-utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAoB,KAAK,OAAO,EAAE,MAAM,sBAAsB,CAAA;AAkBrE,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAyB;IAEhD,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI;IAIpD,aAAa,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK;IAWlD,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;CAG1B;AAED,MAAM,MAAM,UAAU,GAAG,CAAC,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAE/G,wBAAgB,OAAO,CAAC,OAAO,EAAE,UAAU,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CA0BzF"}
|
|
@@ -4,6 +4,7 @@ exports.CliContext = void 0;
|
|
|
4
4
|
exports.handler = handler;
|
|
5
5
|
const analytics_node_1 = require("@amplitude/analytics-node");
|
|
6
6
|
const analytics_1 = require("../utils/analytics");
|
|
7
|
+
const build_tools_error_1 = require("../utils/build-tools-error");
|
|
7
8
|
const cli_output_manager_1 = require("./cli-output-manager");
|
|
8
9
|
const getCommandName = () => {
|
|
9
10
|
const args = process.argv.slice(2);
|
|
@@ -52,13 +53,16 @@ function handler(handler) {
|
|
|
52
53
|
await (0, analytics_node_1.flush)().promise.catch(() => {
|
|
53
54
|
// Silently fail
|
|
54
55
|
});
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
56
|
+
const wasBuildToolsError = (0, build_tools_error_1.handleBuildToolsError)(error, 'install');
|
|
57
|
+
if (!wasBuildToolsError) {
|
|
58
|
+
if (error instanceof Error) {
|
|
59
|
+
context.log('error', (message) => message.tag('failed').append(error.message));
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
context.exitWithError('An error occurred', error);
|
|
63
|
+
}
|
|
61
64
|
}
|
|
65
|
+
context.exit(1);
|
|
62
66
|
}
|
|
63
67
|
};
|
|
64
68
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redis-memory-manager.d.ts","sourceRoot":"","sources":["../../src/redis-memory-manager.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,KAAK,eAAe,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"redis-memory-manager.d.ts","sourceRoot":"","sources":["../../src/redis-memory-manager.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,KAAK,eAAe,EAAE,MAAM,OAAO,CAAA;AAI1D,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAiID,eAAO,MAAM,yBAAyB,GAAI,SAAS,MAAM,EAAE,YAAW,OAAc,KAAG,OAAO,CAAC,eAAe,CAC3E,CAAA;AAEnC,eAAO,MAAM,qBAAqB,QAAO,OAAO,CAAC,IAAI,CAAmB,CAAA"}
|
|
@@ -4,7 +4,6 @@ exports.stopRedisMemoryServer = exports.instanceRedisMemoryServer = void 0;
|
|
|
4
4
|
const fs_1 = require("fs");
|
|
5
5
|
const redis_1 = require("redis");
|
|
6
6
|
const redis_memory_server_1 = require("redis-memory-server");
|
|
7
|
-
const build_tools_error_1 = require("./utils/build-tools-error");
|
|
8
7
|
class RedisMemoryManager {
|
|
9
8
|
constructor() {
|
|
10
9
|
this.server = null;
|
|
@@ -82,10 +81,7 @@ class RedisMemoryManager {
|
|
|
82
81
|
return this.client;
|
|
83
82
|
}
|
|
84
83
|
catch (error) {
|
|
85
|
-
|
|
86
|
-
if (!wasBuildToolsError) {
|
|
87
|
-
console.error('[Redis Memory Server] Failed to start:', error);
|
|
88
|
-
}
|
|
84
|
+
console.error('[Redis Memory Server] Failed to start:', error);
|
|
89
85
|
throw error;
|
|
90
86
|
}
|
|
91
87
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-command.d.ts","sourceRoot":"","sources":["../../../src/utils/execute-command.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,MAAM,EACf,SAAS,MAAM,EACf,UAAU,qBAAqB,KAC9B,OAAO,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"execute-command.d.ts","sourceRoot":"","sources":["../../../src/utils/execute-command.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,MAAM,EACf,SAAS,MAAM,EACf,UAAU,qBAAqB,KAC9B,OAAO,CAAC,MAAM,CA+BhB,CAAA"}
|
|
@@ -7,10 +7,18 @@ const executeCommand = async (command, rootDir, options) => {
|
|
|
7
7
|
return new Promise((resolve, reject) => {
|
|
8
8
|
(0, child_process_1.exec)(command, { cwd: rootDir }, (error, stdout, stderr) => {
|
|
9
9
|
if (error) {
|
|
10
|
+
const stderrOutput = stderr?.toString() || '';
|
|
11
|
+
const stdoutOutput = stdout?.toString() || '';
|
|
12
|
+
const combinedOutput = `${stderrOutput} ${stdoutOutput} ${error.message}`;
|
|
13
|
+
const enhancedError = new Error(combinedOutput);
|
|
14
|
+
enhancedError.stack = error.stack;
|
|
10
15
|
if (!silent) {
|
|
11
16
|
console.error(`exec error: ${error}`);
|
|
17
|
+
if (stderr) {
|
|
18
|
+
console.error(stderr.toString());
|
|
19
|
+
}
|
|
12
20
|
}
|
|
13
|
-
reject(
|
|
21
|
+
reject(enhancedError);
|
|
14
22
|
return;
|
|
15
23
|
}
|
|
16
24
|
if (!silent) {
|
package/dist/esm/cli.js
CHANGED
|
@@ -183,6 +183,19 @@ docker
|
|
|
183
183
|
process.exit(0);
|
|
184
184
|
}));
|
|
185
185
|
program.version(version, '-V, --version', 'Output the current version');
|
|
186
|
-
|
|
186
|
+
process.on('uncaughtException', (error) => {
|
|
187
|
+
console.error('Uncaught Exception:', error.message);
|
|
188
|
+
console.error(error.stack);
|
|
189
|
+
process.exit(1);
|
|
190
|
+
});
|
|
191
|
+
process.on('unhandledRejection', (reason, promise) => {
|
|
192
|
+
console.error('Unhandled Rejection at:', promise, 'reason:', reason);
|
|
193
|
+
process.exit(1);
|
|
194
|
+
});
|
|
195
|
+
program.parseAsync(process.argv).catch((error) => {
|
|
196
|
+
console.error('CLI Error:', error instanceof Error ? error.message : String(error));
|
|
197
|
+
if (error instanceof Error && error.stack) {
|
|
198
|
+
console.error(error.stack);
|
|
199
|
+
}
|
|
187
200
|
process.exit(1);
|
|
188
201
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-utils.d.ts","sourceRoot":"","sources":["../../../src/cloud/config-utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config-utils.d.ts","sourceRoot":"","sources":["../../../src/cloud/config-utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAoB,KAAK,OAAO,EAAE,MAAM,sBAAsB,CAAA;AAkBrE,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAyB;IAEhD,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI;IAIpD,aAAa,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK;IAWlD,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;CAG1B;AAED,MAAM,MAAM,UAAU,GAAG,CAAC,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAE/G,wBAAgB,OAAO,CAAC,OAAO,EAAE,UAAU,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CA0BzF"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { flush } from '@amplitude/analytics-node';
|
|
2
2
|
import { logCliError } from '../utils/analytics';
|
|
3
|
+
import { handleBuildToolsError } from '../utils/build-tools-error';
|
|
3
4
|
import { CLIOutputManager } from './cli-output-manager';
|
|
4
5
|
const getCommandName = () => {
|
|
5
6
|
const args = process.argv.slice(2);
|
|
@@ -47,13 +48,16 @@ export function handler(handler) {
|
|
|
47
48
|
await flush().promise.catch(() => {
|
|
48
49
|
// Silently fail
|
|
49
50
|
});
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
const wasBuildToolsError = handleBuildToolsError(error, 'install');
|
|
52
|
+
if (!wasBuildToolsError) {
|
|
53
|
+
if (error instanceof Error) {
|
|
54
|
+
context.log('error', (message) => message.tag('failed').append(error.message));
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
context.exitWithError('An error occurred', error);
|
|
58
|
+
}
|
|
56
59
|
}
|
|
60
|
+
context.exit(1);
|
|
57
61
|
}
|
|
58
62
|
};
|
|
59
63
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redis-memory-manager.d.ts","sourceRoot":"","sources":["../../src/redis-memory-manager.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,KAAK,eAAe,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"redis-memory-manager.d.ts","sourceRoot":"","sources":["../../src/redis-memory-manager.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,KAAK,eAAe,EAAE,MAAM,OAAO,CAAA;AAI1D,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAiID,eAAO,MAAM,yBAAyB,GAAI,SAAS,MAAM,EAAE,YAAW,OAAc,KAAG,OAAO,CAAC,eAAe,CAC3E,CAAA;AAEnC,eAAO,MAAM,qBAAqB,QAAO,OAAO,CAAC,IAAI,CAAmB,CAAA"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { mkdirSync } from 'fs';
|
|
2
2
|
import { createClient } from 'redis';
|
|
3
3
|
import { RedisMemoryServer } from 'redis-memory-server';
|
|
4
|
-
import { handleBuildToolsError } from './utils/build-tools-error';
|
|
5
4
|
class RedisMemoryManager {
|
|
6
5
|
constructor() {
|
|
7
6
|
this.server = null;
|
|
@@ -79,10 +78,7 @@ class RedisMemoryManager {
|
|
|
79
78
|
return this.client;
|
|
80
79
|
}
|
|
81
80
|
catch (error) {
|
|
82
|
-
|
|
83
|
-
if (!wasBuildToolsError) {
|
|
84
|
-
console.error('[Redis Memory Server] Failed to start:', error);
|
|
85
|
-
}
|
|
81
|
+
console.error('[Redis Memory Server] Failed to start:', error);
|
|
86
82
|
throw error;
|
|
87
83
|
}
|
|
88
84
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-command.d.ts","sourceRoot":"","sources":["../../../src/utils/execute-command.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,MAAM,EACf,SAAS,MAAM,EACf,UAAU,qBAAqB,KAC9B,OAAO,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"execute-command.d.ts","sourceRoot":"","sources":["../../../src/utils/execute-command.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,MAAM,EACf,SAAS,MAAM,EACf,UAAU,qBAAqB,KAC9B,OAAO,CAAC,MAAM,CA+BhB,CAAA"}
|
|
@@ -4,10 +4,18 @@ export const executeCommand = async (command, rootDir, options) => {
|
|
|
4
4
|
return new Promise((resolve, reject) => {
|
|
5
5
|
exec(command, { cwd: rootDir }, (error, stdout, stderr) => {
|
|
6
6
|
if (error) {
|
|
7
|
+
const stderrOutput = stderr?.toString() || '';
|
|
8
|
+
const stdoutOutput = stdout?.toString() || '';
|
|
9
|
+
const combinedOutput = `${stderrOutput} ${stdoutOutput} ${error.message}`;
|
|
10
|
+
const enhancedError = new Error(combinedOutput);
|
|
11
|
+
enhancedError.stack = error.stack;
|
|
7
12
|
if (!silent) {
|
|
8
13
|
console.error(`exec error: ${error}`);
|
|
14
|
+
if (stderr) {
|
|
15
|
+
console.error(stderr.toString());
|
|
16
|
+
}
|
|
9
17
|
}
|
|
10
|
-
reject(
|
|
18
|
+
reject(enhancedError);
|
|
11
19
|
return;
|
|
12
20
|
}
|
|
13
21
|
if (!silent) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-utils.d.ts","sourceRoot":"","sources":["../../../src/cloud/config-utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config-utils.d.ts","sourceRoot":"","sources":["../../../src/cloud/config-utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAoB,KAAK,OAAO,EAAE,MAAM,sBAAsB,CAAA;AAkBrE,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAyB;IAEhD,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI;IAIpD,aAAa,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK;IAWlD,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;CAG1B;AAED,MAAM,MAAM,UAAU,GAAG,CAAC,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;AAE/G,wBAAgB,OAAO,CAAC,OAAO,EAAE,UAAU,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CA0BzF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redis-memory-manager.d.ts","sourceRoot":"","sources":["../../src/redis-memory-manager.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,KAAK,eAAe,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"redis-memory-manager.d.ts","sourceRoot":"","sources":["../../src/redis-memory-manager.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,KAAK,eAAe,EAAE,MAAM,OAAO,CAAA;AAI1D,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAiID,eAAO,MAAM,yBAAyB,GAAI,SAAS,MAAM,EAAE,YAAW,OAAc,KAAG,OAAO,CAAC,eAAe,CAC3E,CAAA;AAEnC,eAAO,MAAM,qBAAqB,QAAO,OAAO,CAAC,IAAI,CAAmB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-command.d.ts","sourceRoot":"","sources":["../../../src/utils/execute-command.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,MAAM,EACf,SAAS,MAAM,EACf,UAAU,qBAAqB,KAC9B,OAAO,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"execute-command.d.ts","sourceRoot":"","sources":["../../../src/utils/execute-command.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,cAAc,GACzB,SAAS,MAAM,EACf,SAAS,MAAM,EACf,UAAU,qBAAqB,KAC9B,OAAO,CAAC,MAAM,CA+BhB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "motia",
|
|
3
3
|
"description": "Build production-grade backends with a single primitive. APIs, background jobs, Queues, Workflows, and AI agents - unified in one system with built-in State management, Streaming, and Observability.",
|
|
4
|
-
"version": "0.14.0-beta.165-
|
|
4
|
+
"version": "0.14.0-beta.165-454838",
|
|
5
5
|
"license": "Elastic-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"table": "^6.9.0",
|
|
50
50
|
"ts-node": "^10.9.2",
|
|
51
51
|
"zod": "^4.1.12",
|
|
52
|
-
"@motiadev/adapter-redis-cron": "0.14.0-beta.165-
|
|
53
|
-
"@motiadev/adapter-
|
|
54
|
-
"@motiadev/adapter-
|
|
55
|
-
"@motiadev/core": "0.14.0-beta.165-
|
|
56
|
-
"@motiadev/stream-client-node": "0.14.0-beta.165-
|
|
57
|
-
"@motiadev/
|
|
58
|
-
"@motiadev/
|
|
52
|
+
"@motiadev/adapter-redis-cron": "0.14.0-beta.165-454838",
|
|
53
|
+
"@motiadev/adapter-bullmq-events": "0.14.0-beta.165-454838",
|
|
54
|
+
"@motiadev/adapter-redis-streams": "0.14.0-beta.165-454838",
|
|
55
|
+
"@motiadev/core": "0.14.0-beta.165-454838",
|
|
56
|
+
"@motiadev/stream-client-node": "0.14.0-beta.165-454838",
|
|
57
|
+
"@motiadev/adapter-redis-state": "0.14.0-beta.165-454838",
|
|
58
|
+
"@motiadev/workbench": "0.14.0-beta.165-454838"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@amplitude/analytics-types": "^2.9.2",
|