@ericsanchezok/synergy-sdk 1.1.7 → 1.1.8

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.
@@ -2795,16 +2795,21 @@ export type RewardsInfo = {
2795
2795
  };
2796
2796
  export type ExperienceSearchResult = {
2797
2797
  id: string;
2798
+ sessionID: string;
2799
+ scopeID: string;
2798
2800
  intent: string;
2799
2801
  sourceProviderID: string | null;
2800
2802
  sourceModelID: string | null;
2801
- similarity: number;
2803
+ reward: number | null;
2804
+ rewards: RewardsInfo;
2802
2805
  qValue: number;
2803
2806
  qValues: RewardsInfo;
2804
- score: number;
2805
- script: string | null;
2806
- rewards: RewardsInfo;
2807
+ qVisits: number;
2808
+ turnsRemaining: number | null;
2807
2809
  createdAt: number;
2810
+ updatedAt: number;
2811
+ similarity: number;
2812
+ score: number;
2808
2813
  };
2809
2814
  export type ExperienceInfo = {
2810
2815
  id: string;
@@ -2850,11 +2855,11 @@ export type ExperienceDetailInfo = {
2850
2855
  qValues: RewardsInfo;
2851
2856
  qVisits: number;
2852
2857
  turnsRemaining: number | null;
2858
+ createdAt: number;
2859
+ updatedAt: number;
2853
2860
  script: string | null;
2854
2861
  raw: string | null;
2855
2862
  metadata: string;
2856
- createdAt: number;
2857
- updatedAt: number;
2858
2863
  };
2859
2864
  export type ApplyRewardResult = {
2860
2865
  compositeReward: number;
@@ -2874,8 +2879,9 @@ export type MemorySearchResult = {
2874
2879
  title: string;
2875
2880
  content: string;
2876
2881
  category: string;
2877
- similarity: number;
2878
2882
  createdAt: number;
2883
+ updatedAt: number;
2884
+ similarity: number;
2879
2885
  };
2880
2886
  export type MemoryResetResult = {
2881
2887
  deleted: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ericsanchezok/synergy-sdk",
4
- "version": "1.1.7",
4
+ "version": "1.1.8",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {