@almadar/runtime 1.0.0 → 1.0.1

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.
@@ -122,6 +122,8 @@ interface EffectHandlers {
122
122
  filter?: unknown;
123
123
  limit?: number;
124
124
  offset?: number;
125
+ /** Relation fields to include (populate) in the response */
126
+ include?: string[];
125
127
  }) => Promise<Record<string, unknown> | Record<string, unknown>[] | null>;
126
128
  /** Spawn a new entity instance */
127
129
  spawn?: (entityType: string, props?: Record<string, unknown>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/runtime",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Interpreted runtime for Almadar orbital applications (OrbitalServerRuntime)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -29,8 +29,8 @@
29
29
  "dependencies": {
30
30
  "@faker-js/faker": "^9.3.0",
31
31
  "@almadar/server": "1.0.0",
32
- "@almadar/evaluator": "1.0.0",
33
- "@almadar/core": "1.0.0"
32
+ "@almadar/evaluator": "1.0.1",
33
+ "@almadar/core": "1.0.1"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "express": "^4.0.0"