graphlit-client 1.0.20250927001 → 1.0.20250930001
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
|
|
@@ -405,6 +405,10 @@ export declare enum AnthropicModels {
|
|
|
405
405
|
Claude_4_1Opus = "CLAUDE_4_1_OPUS",
|
|
406
406
|
/** Claude 4.1 Opus (08-05-2025 version) */
|
|
407
407
|
Claude_4_1Opus_20250805 = "CLAUDE_4_1_OPUS_20250805",
|
|
408
|
+
/** Claude 4.5 Sonnet (Latest) */
|
|
409
|
+
Claude_4_5Sonnet = "CLAUDE_4_5_SONNET",
|
|
410
|
+
/** Claude 4.5 Sonnet (09-29-2025 version) */
|
|
411
|
+
Claude_4_5Sonnet_20250929 = "CLAUDE_4_5_SONNET_20250929",
|
|
408
412
|
/** Claude 4 Opus (Latest) */
|
|
409
413
|
Claude_4Opus = "CLAUDE_4_OPUS",
|
|
410
414
|
/** Claude 4 Opus (05-14-2025 version) */
|
|
@@ -1889,6 +1893,8 @@ export type Content = {
|
|
|
1889
1893
|
h3?: Maybe<H3>;
|
|
1890
1894
|
/** The summarized content headlines. */
|
|
1891
1895
|
headlines?: Maybe<Array<Scalars['String']['output']>>;
|
|
1896
|
+
/** The original HTML content if natively ingested as HTML (emails, events, issues). Returns null for non-HTML content. No format conversions performed. */
|
|
1897
|
+
html?: Maybe<Scalars['String']['output']>;
|
|
1892
1898
|
/** The ID of the content. */
|
|
1893
1899
|
id: Scalars['ID']['output'];
|
|
1894
1900
|
/** The content external identifier. */
|
|
@@ -4701,7 +4707,10 @@ export declare enum FileTypes {
|
|
|
4701
4707
|
Document = "DOCUMENT",
|
|
4702
4708
|
/** Drawing file */
|
|
4703
4709
|
Drawing = "DRAWING",
|
|
4704
|
-
/**
|
|
4710
|
+
/**
|
|
4711
|
+
* Email file
|
|
4712
|
+
* @deprecated Email files now use ContentTypes.Email instead. FileTypes.Email is maintained for backward compatibility with existing data only.
|
|
4713
|
+
*/
|
|
4705
4714
|
Email = "EMAIL",
|
|
4706
4715
|
/** Geometry file */
|
|
4707
4716
|
Geometry = "GEOMETRY",
|
|
@@ -5439,43 +5448,58 @@ export type GroqModelPropertiesUpdateInput = {
|
|
|
5439
5448
|
export declare enum GroqModels {
|
|
5440
5449
|
/** Developer-specified model */
|
|
5441
5450
|
Custom = "CUSTOM",
|
|
5442
|
-
/**
|
|
5451
|
+
/**
|
|
5452
|
+
* Deepseek R1 Distill Llama 70b Preview
|
|
5453
|
+
* @deprecated Has been deprecated, select a different model
|
|
5454
|
+
*/
|
|
5443
5455
|
DeepseekR1Llama_70BPreview = "DEEPSEEK_R1_LLAMA_70B_PREVIEW",
|
|
5444
5456
|
/** Kimi K2 32b */
|
|
5445
5457
|
KimiK2_32B = "KIMI_K2_32B",
|
|
5446
|
-
/**
|
|
5458
|
+
/**
|
|
5459
|
+
* LLaMA 3.1 8b
|
|
5460
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5461
|
+
*/
|
|
5447
5462
|
Llama_3_1_8B = "LLAMA_3_1_8B",
|
|
5448
5463
|
/**
|
|
5449
5464
|
* LLaMA 3.2 1b Preview
|
|
5450
|
-
* @deprecated Use LLaMa
|
|
5465
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5451
5466
|
*/
|
|
5452
5467
|
Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
|
|
5453
5468
|
/**
|
|
5454
5469
|
* LLaMA 3.2 3b Preview
|
|
5455
|
-
* @deprecated Use LLaMa
|
|
5470
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5456
5471
|
*/
|
|
5457
5472
|
Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
|
|
5458
5473
|
/**
|
|
5459
5474
|
* LLaMA 3.2 11b Vision Preview
|
|
5460
|
-
* @deprecated Use LLaMa
|
|
5475
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5461
5476
|
*/
|
|
5462
5477
|
Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
|
|
5463
5478
|
/**
|
|
5464
5479
|
* LLaMA 3.2 90b Vision Preview
|
|
5465
|
-
* @deprecated Use LLaMa
|
|
5480
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5466
5481
|
*/
|
|
5467
5482
|
Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
|
|
5468
5483
|
/** LLaMA 3.3 70b */
|
|
5469
5484
|
Llama_3_3_70B = "LLAMA_3_3_70B",
|
|
5470
|
-
/**
|
|
5485
|
+
/**
|
|
5486
|
+
* LLaMA 3 8b
|
|
5487
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5488
|
+
*/
|
|
5471
5489
|
Llama_3_8B = "LLAMA_3_8B",
|
|
5472
|
-
/**
|
|
5490
|
+
/**
|
|
5491
|
+
* LLaMA 3 70b
|
|
5492
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
5493
|
+
*/
|
|
5473
5494
|
Llama_3_70B = "LLAMA_3_70B",
|
|
5474
5495
|
/** LLaMA 4 Maverick 17b */
|
|
5475
5496
|
Llama_4Maverick_17B = "LLAMA_4_MAVERICK_17B",
|
|
5476
5497
|
/** LLaMA 4 Scout 17b */
|
|
5477
5498
|
Llama_4Scout_17B = "LLAMA_4_SCOUT_17B",
|
|
5478
|
-
/**
|
|
5499
|
+
/**
|
|
5500
|
+
* Mixtral 8x7b Instruct
|
|
5501
|
+
* @deprecated Has been deprecated, select a different model
|
|
5502
|
+
*/
|
|
5479
5503
|
Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT",
|
|
5480
5504
|
/** Qwen 3 32b */
|
|
5481
5505
|
Qwen_3_32B = "QWEN_3_32B"
|
|
@@ -16728,6 +16752,7 @@ export type GetContentQuery = {
|
|
|
16728
16752
|
description?: string | null;
|
|
16729
16753
|
identifier?: string | null;
|
|
16730
16754
|
markdown?: string | null;
|
|
16755
|
+
html?: string | null;
|
|
16731
16756
|
boundary?: string | null;
|
|
16732
16757
|
epsgCode?: number | null;
|
|
16733
16758
|
path?: string | null;
|
|
@@ -17553,6 +17578,7 @@ export type LookupContentsQuery = {
|
|
|
17553
17578
|
description?: string | null;
|
|
17554
17579
|
identifier?: string | null;
|
|
17555
17580
|
markdown?: string | null;
|
|
17581
|
+
html?: string | null;
|
|
17556
17582
|
boundary?: string | null;
|
|
17557
17583
|
epsgCode?: number | null;
|
|
17558
17584
|
path?: string | null;
|
|
@@ -43,6 +43,10 @@ export var AnthropicModels;
|
|
|
43
43
|
AnthropicModels["Claude_4_1Opus"] = "CLAUDE_4_1_OPUS";
|
|
44
44
|
/** Claude 4.1 Opus (08-05-2025 version) */
|
|
45
45
|
AnthropicModels["Claude_4_1Opus_20250805"] = "CLAUDE_4_1_OPUS_20250805";
|
|
46
|
+
/** Claude 4.5 Sonnet (Latest) */
|
|
47
|
+
AnthropicModels["Claude_4_5Sonnet"] = "CLAUDE_4_5_SONNET";
|
|
48
|
+
/** Claude 4.5 Sonnet (09-29-2025 version) */
|
|
49
|
+
AnthropicModels["Claude_4_5Sonnet_20250929"] = "CLAUDE_4_5_SONNET_20250929";
|
|
46
50
|
/** Claude 4 Opus (Latest) */
|
|
47
51
|
AnthropicModels["Claude_4Opus"] = "CLAUDE_4_OPUS";
|
|
48
52
|
/** Claude 4 Opus (05-14-2025 version) */
|
|
@@ -991,7 +995,10 @@ export var FileTypes;
|
|
|
991
995
|
FileTypes["Document"] = "DOCUMENT";
|
|
992
996
|
/** Drawing file */
|
|
993
997
|
FileTypes["Drawing"] = "DRAWING";
|
|
994
|
-
/**
|
|
998
|
+
/**
|
|
999
|
+
* Email file
|
|
1000
|
+
* @deprecated Email files now use ContentTypes.Email instead. FileTypes.Email is maintained for backward compatibility with existing data only.
|
|
1001
|
+
*/
|
|
995
1002
|
FileTypes["Email"] = "EMAIL";
|
|
996
1003
|
/** Geometry file */
|
|
997
1004
|
FileTypes["Geometry"] = "GEOMETRY";
|
|
@@ -1131,43 +1138,58 @@ export var GroqModels;
|
|
|
1131
1138
|
(function (GroqModels) {
|
|
1132
1139
|
/** Developer-specified model */
|
|
1133
1140
|
GroqModels["Custom"] = "CUSTOM";
|
|
1134
|
-
/**
|
|
1141
|
+
/**
|
|
1142
|
+
* Deepseek R1 Distill Llama 70b Preview
|
|
1143
|
+
* @deprecated Has been deprecated, select a different model
|
|
1144
|
+
*/
|
|
1135
1145
|
GroqModels["DeepseekR1Llama_70BPreview"] = "DEEPSEEK_R1_LLAMA_70B_PREVIEW";
|
|
1136
1146
|
/** Kimi K2 32b */
|
|
1137
1147
|
GroqModels["KimiK2_32B"] = "KIMI_K2_32B";
|
|
1138
|
-
/**
|
|
1148
|
+
/**
|
|
1149
|
+
* LLaMA 3.1 8b
|
|
1150
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1151
|
+
*/
|
|
1139
1152
|
GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
|
|
1140
1153
|
/**
|
|
1141
1154
|
* LLaMA 3.2 1b Preview
|
|
1142
|
-
* @deprecated Use LLaMa
|
|
1155
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1143
1156
|
*/
|
|
1144
1157
|
GroqModels["Llama_3_2_1BPreview"] = "LLAMA_3_2_1B_PREVIEW";
|
|
1145
1158
|
/**
|
|
1146
1159
|
* LLaMA 3.2 3b Preview
|
|
1147
|
-
* @deprecated Use LLaMa
|
|
1160
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1148
1161
|
*/
|
|
1149
1162
|
GroqModels["Llama_3_2_3BPreview"] = "LLAMA_3_2_3B_PREVIEW";
|
|
1150
1163
|
/**
|
|
1151
1164
|
* LLaMA 3.2 11b Vision Preview
|
|
1152
|
-
* @deprecated Use LLaMa
|
|
1165
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1153
1166
|
*/
|
|
1154
1167
|
GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
|
|
1155
1168
|
/**
|
|
1156
1169
|
* LLaMA 3.2 90b Vision Preview
|
|
1157
|
-
* @deprecated Use LLaMa
|
|
1170
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1158
1171
|
*/
|
|
1159
1172
|
GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
|
|
1160
1173
|
/** LLaMA 3.3 70b */
|
|
1161
1174
|
GroqModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
|
|
1162
|
-
/**
|
|
1175
|
+
/**
|
|
1176
|
+
* LLaMA 3 8b
|
|
1177
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1178
|
+
*/
|
|
1163
1179
|
GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
|
|
1164
|
-
/**
|
|
1180
|
+
/**
|
|
1181
|
+
* LLaMA 3 70b
|
|
1182
|
+
* @deprecated Use LLaMa 4 or newer model
|
|
1183
|
+
*/
|
|
1165
1184
|
GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
|
|
1166
1185
|
/** LLaMA 4 Maverick 17b */
|
|
1167
1186
|
GroqModels["Llama_4Maverick_17B"] = "LLAMA_4_MAVERICK_17B";
|
|
1168
1187
|
/** LLaMA 4 Scout 17b */
|
|
1169
1188
|
GroqModels["Llama_4Scout_17B"] = "LLAMA_4_SCOUT_17B";
|
|
1170
|
-
/**
|
|
1189
|
+
/**
|
|
1190
|
+
* Mixtral 8x7b Instruct
|
|
1191
|
+
* @deprecated Has been deprecated, select a different model
|
|
1192
|
+
*/
|
|
1171
1193
|
GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
|
|
1172
1194
|
/** Qwen 3 32b */
|
|
1173
1195
|
GroqModels["Qwen_3_32B"] = "QWEN_3_32B";
|
package/dist/model-mapping.js
CHANGED
|
@@ -74,6 +74,9 @@ const ANTHROPIC_MODEL_MAP = {
|
|
|
74
74
|
// Claude 4.1 models
|
|
75
75
|
[Types.AnthropicModels.Claude_4_1Opus]: "claude-opus-4-1",
|
|
76
76
|
[Types.AnthropicModels.Claude_4_1Opus_20250805]: "claude-opus-4-1-20250805",
|
|
77
|
+
// Claude 4.5 models
|
|
78
|
+
[Types.AnthropicModels.Claude_4_5Sonnet]: "claude-sonnet-4-5",
|
|
79
|
+
[Types.AnthropicModels.Claude_4_5Sonnet_20250929]: "claude-sonnet-4-5-20250929",
|
|
77
80
|
};
|
|
78
81
|
// Google model mappings
|
|
79
82
|
const GOOGLE_MODEL_MAP = {
|