graphlit-client 1.0.20250927001 → 1.0.20250928001

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.
@@ -1148,6 +1148,7 @@ export const GetContent = gql `
1148
1148
  description
1149
1149
  identifier
1150
1150
  markdown
1151
+ html
1151
1152
  address {
1152
1153
  streetAddress
1153
1154
  city
@@ -1879,6 +1880,7 @@ export const LookupContents = gql `
1879
1880
  description
1880
1881
  identifier
1881
1882
  markdown
1883
+ html
1882
1884
  address {
1883
1885
  streetAddress
1884
1886
  city
@@ -1889,6 +1889,8 @@ export type Content = {
1889
1889
  h3?: Maybe<H3>;
1890
1890
  /** The summarized content headlines. */
1891
1891
  headlines?: Maybe<Array<Scalars['String']['output']>>;
1892
+ /** The original HTML content if natively ingested as HTML (emails, events, issues). Returns null for non-HTML content. No format conversions performed. */
1893
+ html?: Maybe<Scalars['String']['output']>;
1892
1894
  /** The ID of the content. */
1893
1895
  id: Scalars['ID']['output'];
1894
1896
  /** The content external identifier. */
@@ -5439,43 +5441,58 @@ export type GroqModelPropertiesUpdateInput = {
5439
5441
  export declare enum GroqModels {
5440
5442
  /** Developer-specified model */
5441
5443
  Custom = "CUSTOM",
5442
- /** Deepseek R1 Distill Llama 70b Preview */
5444
+ /**
5445
+ * Deepseek R1 Distill Llama 70b Preview
5446
+ * @deprecated Has been deprecated, select a different model
5447
+ */
5443
5448
  DeepseekR1Llama_70BPreview = "DEEPSEEK_R1_LLAMA_70B_PREVIEW",
5444
5449
  /** Kimi K2 32b */
5445
5450
  KimiK2_32B = "KIMI_K2_32B",
5446
- /** LLaMA 3.1 8b */
5451
+ /**
5452
+ * LLaMA 3.1 8b
5453
+ * @deprecated Use LLaMa 4 or newer model
5454
+ */
5447
5455
  Llama_3_1_8B = "LLAMA_3_1_8B",
5448
5456
  /**
5449
5457
  * LLaMA 3.2 1b Preview
5450
- * @deprecated Use LLaMa 3.3 or newer model
5458
+ * @deprecated Use LLaMa 4 or newer model
5451
5459
  */
5452
5460
  Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
5453
5461
  /**
5454
5462
  * LLaMA 3.2 3b Preview
5455
- * @deprecated Use LLaMa 3.3 or newer model
5463
+ * @deprecated Use LLaMa 4 or newer model
5456
5464
  */
5457
5465
  Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
5458
5466
  /**
5459
5467
  * LLaMA 3.2 11b Vision Preview
5460
- * @deprecated Use LLaMa 3.3 or newer model
5468
+ * @deprecated Use LLaMa 4 or newer model
5461
5469
  */
5462
5470
  Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
5463
5471
  /**
5464
5472
  * LLaMA 3.2 90b Vision Preview
5465
- * @deprecated Use LLaMa 3.3 or newer model
5473
+ * @deprecated Use LLaMa 4 or newer model
5466
5474
  */
5467
5475
  Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
5468
5476
  /** LLaMA 3.3 70b */
5469
5477
  Llama_3_3_70B = "LLAMA_3_3_70B",
5470
- /** LLaMA 3 8b */
5478
+ /**
5479
+ * LLaMA 3 8b
5480
+ * @deprecated Use LLaMa 4 or newer model
5481
+ */
5471
5482
  Llama_3_8B = "LLAMA_3_8B",
5472
- /** LLaMA 3 70b */
5483
+ /**
5484
+ * LLaMA 3 70b
5485
+ * @deprecated Use LLaMa 4 or newer model
5486
+ */
5473
5487
  Llama_3_70B = "LLAMA_3_70B",
5474
5488
  /** LLaMA 4 Maverick 17b */
5475
5489
  Llama_4Maverick_17B = "LLAMA_4_MAVERICK_17B",
5476
5490
  /** LLaMA 4 Scout 17b */
5477
5491
  Llama_4Scout_17B = "LLAMA_4_SCOUT_17B",
5478
- /** Mixtral 8x7b Instruct */
5492
+ /**
5493
+ * Mixtral 8x7b Instruct
5494
+ * @deprecated Has been deprecated, select a different model
5495
+ */
5479
5496
  Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT",
5480
5497
  /** Qwen 3 32b */
5481
5498
  Qwen_3_32B = "QWEN_3_32B"
@@ -16728,6 +16745,7 @@ export type GetContentQuery = {
16728
16745
  description?: string | null;
16729
16746
  identifier?: string | null;
16730
16747
  markdown?: string | null;
16748
+ html?: string | null;
16731
16749
  boundary?: string | null;
16732
16750
  epsgCode?: number | null;
16733
16751
  path?: string | null;
@@ -17553,6 +17571,7 @@ export type LookupContentsQuery = {
17553
17571
  description?: string | null;
17554
17572
  identifier?: string | null;
17555
17573
  markdown?: string | null;
17574
+ html?: string | null;
17556
17575
  boundary?: string | null;
17557
17576
  epsgCode?: number | null;
17558
17577
  path?: string | null;
@@ -1131,43 +1131,58 @@ export var GroqModels;
1131
1131
  (function (GroqModels) {
1132
1132
  /** Developer-specified model */
1133
1133
  GroqModels["Custom"] = "CUSTOM";
1134
- /** Deepseek R1 Distill Llama 70b Preview */
1134
+ /**
1135
+ * Deepseek R1 Distill Llama 70b Preview
1136
+ * @deprecated Has been deprecated, select a different model
1137
+ */
1135
1138
  GroqModels["DeepseekR1Llama_70BPreview"] = "DEEPSEEK_R1_LLAMA_70B_PREVIEW";
1136
1139
  /** Kimi K2 32b */
1137
1140
  GroqModels["KimiK2_32B"] = "KIMI_K2_32B";
1138
- /** LLaMA 3.1 8b */
1141
+ /**
1142
+ * LLaMA 3.1 8b
1143
+ * @deprecated Use LLaMa 4 or newer model
1144
+ */
1139
1145
  GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
1140
1146
  /**
1141
1147
  * LLaMA 3.2 1b Preview
1142
- * @deprecated Use LLaMa 3.3 or newer model
1148
+ * @deprecated Use LLaMa 4 or newer model
1143
1149
  */
1144
1150
  GroqModels["Llama_3_2_1BPreview"] = "LLAMA_3_2_1B_PREVIEW";
1145
1151
  /**
1146
1152
  * LLaMA 3.2 3b Preview
1147
- * @deprecated Use LLaMa 3.3 or newer model
1153
+ * @deprecated Use LLaMa 4 or newer model
1148
1154
  */
1149
1155
  GroqModels["Llama_3_2_3BPreview"] = "LLAMA_3_2_3B_PREVIEW";
1150
1156
  /**
1151
1157
  * LLaMA 3.2 11b Vision Preview
1152
- * @deprecated Use LLaMa 3.3 or newer model
1158
+ * @deprecated Use LLaMa 4 or newer model
1153
1159
  */
1154
1160
  GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
1155
1161
  /**
1156
1162
  * LLaMA 3.2 90b Vision Preview
1157
- * @deprecated Use LLaMa 3.3 or newer model
1163
+ * @deprecated Use LLaMa 4 or newer model
1158
1164
  */
1159
1165
  GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
1160
1166
  /** LLaMA 3.3 70b */
1161
1167
  GroqModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
1162
- /** LLaMA 3 8b */
1168
+ /**
1169
+ * LLaMA 3 8b
1170
+ * @deprecated Use LLaMa 4 or newer model
1171
+ */
1163
1172
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
1164
- /** LLaMA 3 70b */
1173
+ /**
1174
+ * LLaMA 3 70b
1175
+ * @deprecated Use LLaMa 4 or newer model
1176
+ */
1165
1177
  GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
1166
1178
  /** LLaMA 4 Maverick 17b */
1167
1179
  GroqModels["Llama_4Maverick_17B"] = "LLAMA_4_MAVERICK_17B";
1168
1180
  /** LLaMA 4 Scout 17b */
1169
1181
  GroqModels["Llama_4Scout_17B"] = "LLAMA_4_SCOUT_17B";
1170
- /** Mixtral 8x7b Instruct */
1182
+ /**
1183
+ * Mixtral 8x7b Instruct
1184
+ * @deprecated Has been deprecated, select a different model
1185
+ */
1171
1186
  GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
1172
1187
  /** Qwen 3 32b */
1173
1188
  GroqModels["Qwen_3_32B"] = "QWEN_3_32B";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250927001",
3
+ "version": "1.0.20250928001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",