@grackle-ai/core 0.94.0 → 0.95.0

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.
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Compile-time compatibility guard.
3
+ *
4
+ * Verifies that plugin-sdk's PluginContext is a structural superset of
5
+ * core's PluginContext, so subscriber factories that accept core's narrow
6
+ * context also accept the full plugin-sdk context.
7
+ *
8
+ * These are pure type-level assertions — no runtime code. If the types
9
+ * drift, `rush build` will fail with a type error here.
10
+ *
11
+ * @module
12
+ */
13
+ export {};
14
+ //# sourceMappingURL=subscriber-compat-check.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"subscriber-compat-check.d.ts","sourceRoot":"","sources":["../src/subscriber-compat-check.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Compile-time compatibility guard.
3
+ *
4
+ * Verifies that plugin-sdk's PluginContext is a structural superset of
5
+ * core's PluginContext, so subscriber factories that accept core's narrow
6
+ * context also accept the full plugin-sdk context.
7
+ *
8
+ * These are pure type-level assertions — no runtime code. If the types
9
+ * drift, `rush build` will fail with a type error here.
10
+ *
11
+ * @module
12
+ */
13
+ export {};
14
+ //# sourceMappingURL=subscriber-compat-check.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"subscriber-compat-check.js","sourceRoot":"","sources":["../src/subscriber-compat-check.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grackle-ai/core",
3
- "version": "0.94.0",
3
+ "version": "0.95.0",
4
4
  "description": "Core gRPC business logic for Grackle — RPC handlers, event system, streaming, session lifecycle",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -36,12 +36,13 @@
36
36
  "pino": "^10.3.1",
37
37
  "ulid": "^2.3.0",
38
38
  "uuid": "^11.0.0",
39
- "@grackle-ai/adapter-sdk": "0.94.0",
40
- "@grackle-ai/auth": "0.94.0",
41
- "@grackle-ai/database": "0.94.0",
42
- "@grackle-ai/knowledge": "0.94.0",
43
- "@grackle-ai/common": "0.94.0",
44
- "@grackle-ai/prompt": "0.94.0"
39
+ "@grackle-ai/auth": "0.95.0",
40
+ "@grackle-ai/common": "0.95.0",
41
+ "@grackle-ai/database": "0.95.0",
42
+ "@grackle-ai/plugin-sdk": "0.95.0",
43
+ "@grackle-ai/adapter-sdk": "0.95.0",
44
+ "@grackle-ai/knowledge": "0.95.0",
45
+ "@grackle-ai/prompt": "0.95.0"
45
46
  },
46
47
  "devDependencies": {
47
48
  "@rushstack/heft": "1.2.7",