@ai.ntellect/core 0.7.0 → 0.7.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.
package/graph/observer.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { GraphObservable } from "interfaces";
2
1
  import {
3
2
  BehaviorSubject,
4
3
  Observable,
@@ -17,6 +16,7 @@ import {
17
16
  timeout,
18
17
  } from "rxjs/operators";
19
18
  import { ZodSchema } from "zod";
19
+ import { GraphObservable } from "../interfaces";
20
20
  import { GraphContext, GraphEvent } from "../types";
21
21
  import { GraphFlow } from "./index";
22
22
 
@@ -1,5 +1,9 @@
1
- import { ICronJob, IMemoryAdapter } from "interfaces";
2
- import { BaseMemoryType, CreateMemoryInput, ScheduledRequest } from "types";
1
+ import { ICronJob, IMemoryAdapter } from "../../../../interfaces";
2
+ import {
3
+ BaseMemoryType,
4
+ CreateMemoryInput,
5
+ ScheduledRequest,
6
+ } from "../../../../types";
3
7
 
4
8
  /**
5
9
  * @module InMemoryAdapter
@@ -1,5 +1,9 @@
1
- import { IMemoryAdapter } from "interfaces";
2
- import { BaseMemoryType, CreateMemoryInput, MeilisearchConfig } from "types";
1
+ import { IMemoryAdapter } from "../../../../interfaces";
2
+ import {
3
+ BaseMemoryType,
4
+ CreateMemoryInput,
5
+ MeilisearchConfig,
6
+ } from "../../../../types";
3
7
 
4
8
  /**
5
9
  * @module MeilisearchAdapter
@@ -1,6 +1,6 @@
1
- import { IMemoryAdapter } from "interfaces";
2
1
  import { createClient } from "redis";
3
- import { BaseMemoryType, CreateMemoryInput } from "types";
2
+ import { IMemoryAdapter } from "../../../../interfaces";
3
+ import { BaseMemoryType, CreateMemoryInput } from "../../../../types";
4
4
 
5
5
  /**
6
6
  * @module RedisAdapter
@@ -1,5 +1,5 @@
1
- import { BaseMemoryType, CreateMemoryInput } from "types";
2
1
  import { BaseMemory, IMemoryAdapter } from "../../interfaces";
2
+ import { BaseMemoryType, CreateMemoryInput } from "../../types";
3
3
 
4
4
  /**
5
5
  * @module Memory
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai.ntellect/core",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/types/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter } from "events";
2
- import { IEventEmitter } from "interfaces";
3
2
  import { ZodSchema } from "zod";
3
+ import { IEventEmitter } from "../interfaces";
4
4
 
5
5
  /* ======================== MEMORY ======================== */
6
6