graphlit-client 1.0.20251215001 → 1.0.20251217001

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.
@@ -6202,6 +6202,8 @@ export declare enum GoogleModels {
6202
6202
  Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
6203
6203
  /** Gemini 2.5 Pro (Preview) */
6204
6204
  Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW",
6205
+ /** Gemini 3 Flash (Preview) */
6206
+ Gemini_3FlashPreview = "GEMINI_3_FLASH_PREVIEW",
6205
6207
  /** Gemini 3 Pro (Preview) */
6206
6208
  Gemini_3ProPreview = "GEMINI_3_PRO_PREVIEW",
6207
6209
  /** Gemini Flash (Latest) */
@@ -12515,6 +12517,8 @@ export declare enum OpenAiImageModels {
12515
12517
  Custom = "CUSTOM",
12516
12518
  /** GPT Image-1 */
12517
12519
  GptImage_1 = "GPT_IMAGE_1",
12520
+ /** GPT Image-1.5 */
12521
+ GptImage_1_5 = "GPT_IMAGE_1_5",
12518
12522
  /** GPT Image-1 Mini */
12519
12523
  GptImage_1Mini = "GPT_IMAGE_1_MINI"
12520
12524
  }
@@ -1254,6 +1254,8 @@ export var GoogleModels;
1254
1254
  GoogleModels["Gemini_2_5ProExperimental"] = "GEMINI_2_5_PRO_EXPERIMENTAL";
1255
1255
  /** Gemini 2.5 Pro (Preview) */
1256
1256
  GoogleModels["Gemini_2_5ProPreview"] = "GEMINI_2_5_PRO_PREVIEW";
1257
+ /** Gemini 3 Flash (Preview) */
1258
+ GoogleModels["Gemini_3FlashPreview"] = "GEMINI_3_FLASH_PREVIEW";
1257
1259
  /** Gemini 3 Pro (Preview) */
1258
1260
  GoogleModels["Gemini_3ProPreview"] = "GEMINI_3_PRO_PREVIEW";
1259
1261
  /** Gemini Flash (Latest) */
@@ -1808,6 +1810,8 @@ export var OpenAiImageModels;
1808
1810
  OpenAiImageModels["Custom"] = "CUSTOM";
1809
1811
  /** GPT Image-1 */
1810
1812
  OpenAiImageModels["GptImage_1"] = "GPT_IMAGE_1";
1813
+ /** GPT Image-1.5 */
1814
+ OpenAiImageModels["GptImage_1_5"] = "GPT_IMAGE_1_5";
1811
1815
  /** GPT Image-1 Mini */
1812
1816
  OpenAiImageModels["GptImage_1Mini"] = "GPT_IMAGE_1_MINI";
1813
1817
  })(OpenAiImageModels || (OpenAiImageModels = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251215001",
3
+ "version": "1.0.20251217001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",