motia 0.13.0-beta.162-415452 → 0.13.0-beta.162-016792

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.
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-dependencies.d.ts","sourceRoot":"","sources":["../../../src/plugins/plugin-dependencies.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,UAM9B,CAAA"}
1
+ {"version":3,"file":"plugin-dependencies.d.ts","sourceRoot":"","sources":["../../../src/plugins/plugin-dependencies.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,UAO9B,CAAA"}
@@ -7,4 +7,5 @@ exports.pluginDependencies = [
7
7
  '@motiadev/plugin-states',
8
8
  '@motiadev/plugin-endpoint',
9
9
  '@motiadev/plugin-observability',
10
+ '@motiadev/plugin-bullmq',
10
11
  ];
@@ -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;AAI1D,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAmID,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
+ {"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"}
@@ -89,9 +89,7 @@ class RedisMemoryManager {
89
89
  if (this.client && this.running) {
90
90
  try {
91
91
  if (this.client.isOpen) {
92
- await this.client.quit().catch((error) => {
93
- console.error('[Redis Memory Server] Error closing client:', error);
94
- });
92
+ await this.client.quit().catch();
95
93
  }
96
94
  this.client = null;
97
95
  }
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -3,7 +3,8 @@ const statesPlugin = require('@motiadev/plugin-states/plugin')
3
3
  const endpointPlugin = require('@motiadev/plugin-endpoint/plugin')
4
4
  const logsPlugin = require('@motiadev/plugin-logs/plugin')
5
5
  const observabilityPlugin = require('@motiadev/plugin-observability/plugin')
6
+ const bullmqPlugin = require('@motiadev/plugin-bullmq/plugin')
6
7
 
7
8
  export default config({
8
- plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin],
9
+ plugins: [observabilityPlugin, statesPlugin, endpointPlugin, logsPlugin, bullmqPlugin],
9
10
  })
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-dependencies.d.ts","sourceRoot":"","sources":["../../../src/plugins/plugin-dependencies.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,UAM9B,CAAA"}
1
+ {"version":3,"file":"plugin-dependencies.d.ts","sourceRoot":"","sources":["../../../src/plugins/plugin-dependencies.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,UAO9B,CAAA"}
@@ -4,4 +4,5 @@ export const pluginDependencies = [
4
4
  '@motiadev/plugin-states',
5
5
  '@motiadev/plugin-endpoint',
6
6
  '@motiadev/plugin-observability',
7
+ '@motiadev/plugin-bullmq',
7
8
  ];
@@ -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;AAI1D,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAmID,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
+ {"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"}
@@ -86,9 +86,7 @@ class RedisMemoryManager {
86
86
  if (this.client && this.running) {
87
87
  try {
88
88
  if (this.client.isOpen) {
89
- await this.client.quit().catch((error) => {
90
- console.error('[Redis Memory Server] Error closing client:', error);
91
- });
89
+ await this.client.quit().catch();
92
90
  }
93
91
  this.client = null;
94
92
  }
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-dependencies.d.ts","sourceRoot":"","sources":["../../../src/plugins/plugin-dependencies.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,UAM9B,CAAA"}
1
+ {"version":3,"file":"plugin-dependencies.d.ts","sourceRoot":"","sources":["../../../src/plugins/plugin-dependencies.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,UAO9B,CAAA"}
@@ -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;AAI1D,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAmID,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
+ {"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"}
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.13.0-beta.162-415452",
4
+ "version": "0.13.0-beta.162-016792",
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-state": "0.13.0-beta.162-415452",
53
- "@motiadev/adapter-redis-streams": "0.13.0-beta.162-415452",
54
- "@motiadev/adapter-bullmq-events": "0.13.0-beta.162-415452",
55
- "@motiadev/stream-client-node": "0.13.0-beta.162-415452",
56
- "@motiadev/core": "0.13.0-beta.162-415452",
57
- "@motiadev/workbench": "0.13.0-beta.162-415452",
58
- "@motiadev/adapter-redis-cron": "0.13.0-beta.162-415452"
52
+ "@motiadev/adapter-bullmq-events": "0.13.0-beta.162-016792",
53
+ "@motiadev/adapter-redis-cron": "0.13.0-beta.162-016792",
54
+ "@motiadev/adapter-redis-state": "0.13.0-beta.162-016792",
55
+ "@motiadev/adapter-redis-streams": "0.13.0-beta.162-016792",
56
+ "@motiadev/core": "0.13.0-beta.162-016792",
57
+ "@motiadev/workbench": "0.13.0-beta.162-016792",
58
+ "@motiadev/stream-client-node": "0.13.0-beta.162-016792"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@amplitude/analytics-types": "^2.9.2",