graphlit-client 1.0.20241110001 → 1.0.20241124001

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.
@@ -1075,6 +1075,8 @@ var MistralModels;
1075
1075
  MistralModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
1076
1076
  /** Pixtral 12b (2024-09 version) */
1077
1077
  MistralModels["Pixtral_12B_2409"] = "PIXTRAL_12B_2409";
1078
+ /** Pixtral Large */
1079
+ MistralModels["PixtralLarge"] = "PIXTRAL_LARGE";
1078
1080
  })(MistralModels || (exports.MistralModels = MistralModels = {}));
1079
1081
  /** Model service type */
1080
1082
  var ModelServiceTypes;
@@ -1185,6 +1187,8 @@ var OpenAiModels;
1185
1187
  OpenAiModels["Gpt4O_128K_20240513"] = "GPT4O_128K_20240513";
1186
1188
  /** GPT-4o 128k (2024-08-06 version) */
1187
1189
  OpenAiModels["Gpt4O_128K_20240806"] = "GPT4O_128K_20240806";
1190
+ /** GPT-4o 128k (2024-11-20 version) */
1191
+ OpenAiModels["Gpt4O_128K_20241120"] = "GPT4O_128K_20241120";
1188
1192
  /** ChatGPT-4o 128k (Latest) */
1189
1193
  OpenAiModels["Gpt4OChat_128K"] = "GPT4O_CHAT_128K";
1190
1194
  /** GPT-4o Mini 128k (Latest) */
@@ -1528,10 +1532,14 @@ var TextRoles;
1528
1532
  TextRoles["CornerHeader"] = "CORNER_HEADER";
1529
1533
  /** Diagram */
1530
1534
  TextRoles["Diagram"] = "DIAGRAM";
1535
+ /** Diagram Caption */
1536
+ TextRoles["DiagramCaption"] = "DIAGRAM_CAPTION";
1531
1537
  /** Equation */
1532
1538
  TextRoles["Equation"] = "EQUATION";
1533
1539
  /** Figure */
1534
1540
  TextRoles["Figure"] = "FIGURE";
1541
+ /** Figure Caption */
1542
+ TextRoles["FigureCaption"] = "FIGURE_CAPTION";
1535
1543
  /** Footnote */
1536
1544
  TextRoles["Footnote"] = "FOOTNOTE";
1537
1545
  /** Heading 1 */
@@ -1570,6 +1578,8 @@ var TextRoles;
1570
1578
  TextRoles["TableColumnHeader"] = "TABLE_COLUMN_HEADER";
1571
1579
  /** Table Corner Header */
1572
1580
  TextRoles["TableCornerHeader"] = "TABLE_CORNER_HEADER";
1581
+ /** Table Header */
1582
+ TextRoles["TableHeader"] = "TABLE_HEADER";
1573
1583
  /** Table Row Header */
1574
1584
  TextRoles["TableRowHeader"] = "TABLE_ROW_HEADER";
1575
1585
  /** Title */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20241110001",
3
+ "version": "1.0.20241124001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",