graphlit-client 1.0.20250702001 → 1.0.20250704001

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.
@@ -5145,8 +5145,12 @@ export declare enum GoogleModels {
5145
5145
  * @deprecated Use Gemini 2.5 Pro (Preview) instead.
5146
5146
  */
5147
5147
  Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL",
5148
+ /** Gemini 2.5 Flash */
5149
+ Gemini_2_5Flash = "GEMINI_2_5_FLASH",
5148
5150
  /** Gemini 2.5 Flash (Preview) */
5149
5151
  Gemini_2_5FlashPreview = "GEMINI_2_5_FLASH_PREVIEW",
5152
+ /** Gemini 2.5 Pro */
5153
+ Gemini_2_5Pro = "GEMINI_2_5_PRO",
5150
5154
  /**
5151
5155
  * Gemini 2.5 Pro (Experimental)
5152
5156
  * @deprecated Use Gemini 2.5 Pro (Preview) instead.
@@ -1051,8 +1051,12 @@ export var GoogleModels;
1051
1051
  * @deprecated Use Gemini 2.5 Pro (Preview) instead.
1052
1052
  */
1053
1053
  GoogleModels["Gemini_2_0ProExperimental"] = "GEMINI_2_0_PRO_EXPERIMENTAL";
1054
+ /** Gemini 2.5 Flash */
1055
+ GoogleModels["Gemini_2_5Flash"] = "GEMINI_2_5_FLASH";
1054
1056
  /** Gemini 2.5 Flash (Preview) */
1055
1057
  GoogleModels["Gemini_2_5FlashPreview"] = "GEMINI_2_5_FLASH_PREVIEW";
1058
+ /** Gemini 2.5 Pro */
1059
+ GoogleModels["Gemini_2_5Pro"] = "GEMINI_2_5_PRO";
1056
1060
  /**
1057
1061
  * Gemini 2.5 Pro (Experimental)
1058
1062
  * @deprecated Use Gemini 2.5 Pro (Preview) instead.
@@ -80,6 +80,8 @@ const GOOGLE_MODEL_MAP = {
80
80
  // Gemini 2.5 models
81
81
  [Types.GoogleModels.Gemini_2_5FlashPreview]: "gemini-2.5-flash-preview-05-20",
82
82
  [Types.GoogleModels.Gemini_2_5ProPreview]: "gemini-2.5-pro-preview-06-05",
83
+ [Types.GoogleModels.Gemini_2_5Flash]: "gemini-2.5-flash",
84
+ [Types.GoogleModels.Gemini_2_5Pro]: "gemini-2.5-pro",
83
85
  };
84
86
  // Groq model mappings
85
87
  const GROQ_MODEL_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250702001",
3
+ "version": "1.0.20250704001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",