@reactionary/fake 0.9.1 → 0.9.3

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.
@@ -8,6 +8,7 @@ class FakeAnalyticsCapability extends AnalyticsCapability {
8
8
  this.config = config;
9
9
  }
10
10
  async track(event) {
11
+ return this.ignored();
11
12
  }
12
13
  }
13
14
  export {
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reactionary/fake",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {
8
8
  "vitest": "^4.0.9",
9
9
  "@nx/vite": "22.4.5",
10
- "@reactionary/core": "0.9.1",
10
+ "@reactionary/core": "0.9.3",
11
11
  "zod": "4.1.9",
12
12
  "@faker-js/faker": "^9.8.0"
13
13
  },
@@ -4,5 +4,5 @@ import type { FakeConfiguration } from '../schema/configuration.schema.js';
4
4
  export declare class FakeAnalyticsCapability extends AnalyticsCapability {
5
5
  protected config: FakeConfiguration;
6
6
  constructor(config: FakeConfiguration, cache: Cache, context: RequestContext);
7
- track(event: AnalyticsMutation): Promise<void>;
7
+ track(event: AnalyticsMutation): Promise<import("@reactionary/core").AnalyticsResult>;
8
8
  }