graphlit-client 1.0.20250402002 → 1.0.20250407002

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.
@@ -1016,6 +1016,7 @@ exports.GetContent = (0, graphql_tag_1.default) `
1016
1016
  }
1017
1017
  email {
1018
1018
  identifier
1019
+ threadIdentifier
1019
1020
  subject
1020
1021
  labels
1021
1022
  sensitivity
@@ -1787,6 +1788,7 @@ exports.QueryContents = (0, graphql_tag_1.default) `
1787
1788
  }
1788
1789
  email {
1789
1790
  identifier
1791
+ threadIdentifier
1790
1792
  subject
1791
1793
  labels
1792
1794
  sensitivity
@@ -8438,6 +8440,7 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
8438
8440
  name
8439
8441
  }
8440
8442
  }
8443
+ enableEmailCollections
8441
8444
  }
8442
8445
  indexing {
8443
8446
  jobs {
@@ -8672,6 +8675,7 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
8672
8675
  name
8673
8676
  }
8674
8677
  }
8678
+ enableEmailCollections
8675
8679
  }
8676
8680
  indexing {
8677
8681
  jobs {
@@ -8879,6 +8883,7 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
8879
8883
  name
8880
8884
  }
8881
8885
  }
8886
+ enableEmailCollections
8882
8887
  }
8883
8888
  indexing {
8884
8889
  jobs {
@@ -9081,6 +9086,7 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
9081
9086
  name
9082
9087
  }
9083
9088
  }
9089
+ enableEmailCollections
9084
9090
  }
9085
9091
  indexing {
9086
9092
  jobs {
@@ -9282,6 +9288,7 @@ exports.UpsertWorkflow = (0, graphql_tag_1.default) `
9282
9288
  name
9283
9289
  }
9284
9290
  }
9291
+ enableEmailCollections
9285
9292
  }
9286
9293
  indexing {
9287
9294
  jobs {
@@ -1334,7 +1334,9 @@ export type CollectionResults = {
1334
1334
  /** Collection type */
1335
1335
  export declare enum CollectionTypes {
1336
1336
  /** Content collection */
1337
- Collection = "COLLECTION"
1337
+ Collection = "COLLECTION",
1338
+ /** Email thread */
1339
+ Thread = "THREAD"
1338
1340
  }
1339
1341
  /** Represents a collection. */
1340
1342
  export type CollectionUpdateInput = {
@@ -2960,6 +2962,8 @@ export type EmailMetadata = {
2960
2962
  sensitivity?: Maybe<MailSensitivity>;
2961
2963
  /** The email subject. */
2962
2964
  subject?: Maybe<Scalars['String']['output']>;
2965
+ /** The email thread identifier. */
2966
+ threadIdentifier?: Maybe<Scalars['String']['output']>;
2963
2967
  /** The to recipients of the email. */
2964
2968
  to?: Maybe<Array<Maybe<PersonReference>>>;
2965
2969
  };
@@ -2985,6 +2989,8 @@ export type EmailMetadataInput = {
2985
2989
  sensitivity?: InputMaybe<MailSensitivity>;
2986
2990
  /** The email subject. */
2987
2991
  subject?: InputMaybe<Scalars['String']['input']>;
2992
+ /** The email thread identifier. */
2993
+ threadIdentifier?: InputMaybe<Scalars['String']['input']>;
2988
2994
  };
2989
2995
  /** Represents the email preparation properties. */
2990
2996
  export type EmailPreparationProperties = {
@@ -4327,7 +4333,9 @@ export declare enum GoogleModels {
4327
4333
  */
4328
4334
  Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL",
4329
4335
  /** Gemini 2.5 Pro (Experimental) */
4330
- Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL"
4336
+ Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
4337
+ /** Gemini 2.5 Pro (Preview) */
4338
+ Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW"
4331
4339
  }
4332
4340
  /** Represents a knowledge graph. */
4333
4341
  export type Graph = {
@@ -4462,13 +4470,25 @@ export declare enum GroqModels {
4462
4470
  DeepseekR1Llama_70BPreview = "DEEPSEEK_R1_LLAMA_70B_PREVIEW",
4463
4471
  /** LLaMA 3.1 8b */
4464
4472
  Llama_3_1_8B = "LLAMA_3_1_8B",
4465
- /** LLaMA 3.2 1b Preview */
4473
+ /**
4474
+ * LLaMA 3.2 1b Preview
4475
+ * @deprecated Use LLaMa 3.3 or newer model
4476
+ */
4466
4477
  Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
4467
- /** LLaMA 3.2 3b Preview */
4478
+ /**
4479
+ * LLaMA 3.2 3b Preview
4480
+ * @deprecated Use LLaMa 3.3 or newer model
4481
+ */
4468
4482
  Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
4469
- /** LLaMA 3.2 11b Vision Preview */
4483
+ /**
4484
+ * LLaMA 3.2 11b Vision Preview
4485
+ * @deprecated Use LLaMa 3.3 or newer model
4486
+ */
4470
4487
  Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
4471
- /** LLaMA 3.2 90b Vision Preview */
4488
+ /**
4489
+ * LLaMA 3.2 90b Vision Preview
4490
+ * @deprecated Use LLaMa 3.3 or newer model
4491
+ */
4472
4492
  Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
4473
4493
  /** LLaMA 3.3 70b */
4474
4494
  Llama_3_3_70B = "LLAMA_3_3_70B",
@@ -4476,6 +4496,10 @@ export declare enum GroqModels {
4476
4496
  Llama_3_8B = "LLAMA_3_8B",
4477
4497
  /** LLaMA 3 70b */
4478
4498
  Llama_3_70B = "LLAMA_3_70B",
4499
+ /** LLaMA 4 Maverick 17b */
4500
+ Llama_4Maverick_17B = "LLAMA_4_MAVERICK_17B",
4501
+ /** LLaMA 4 Scout 17b */
4502
+ Llama_4Scout_17B = "LLAMA_4_SCOUT_17B",
4479
4503
  /** Mixtral 8x7b Instruct */
4480
4504
  Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
4481
4505
  }
@@ -4768,6 +4792,8 @@ export type IngestionWorkflowStage = {
4768
4792
  __typename?: 'IngestionWorkflowStage';
4769
4793
  /** The collections to be assigned to ingested content. */
4770
4794
  collections?: Maybe<Array<Maybe<EntityReference>>>;
4795
+ /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
4796
+ enableEmailCollections?: Maybe<Scalars['Boolean']['output']>;
4771
4797
  /** The ingestion filter. */
4772
4798
  if?: Maybe<IngestionContentFilter>;
4773
4799
  /** The observations to be assigned to ingested content. */
@@ -4777,6 +4803,8 @@ export type IngestionWorkflowStage = {
4777
4803
  export type IngestionWorkflowStageInput = {
4778
4804
  /** The collections to be assigned to ingested content. */
4779
4805
  collections?: InputMaybe<Array<InputMaybe<EntityReferenceInput>>>;
4806
+ /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
4807
+ enableEmailCollections?: InputMaybe<Scalars['Boolean']['input']>;
4780
4808
  /** The ingestion filter. */
4781
4809
  if?: InputMaybe<IngestionContentFilterInput>;
4782
4810
  /** The observations to be assigned to ingested content. */
@@ -14671,6 +14699,7 @@ export type GetContentQuery = {
14671
14699
  email?: {
14672
14700
  __typename?: 'EmailMetadata';
14673
14701
  identifier?: string | null;
14702
+ threadIdentifier?: string | null;
14674
14703
  subject?: string | null;
14675
14704
  labels?: Array<string | null> | null;
14676
14705
  sensitivity?: MailSensitivity | null;
@@ -15529,6 +15558,7 @@ export type QueryContentsQuery = {
15529
15558
  email?: {
15530
15559
  __typename?: 'EmailMetadata';
15531
15560
  identifier?: string | null;
15561
+ threadIdentifier?: string | null;
15532
15562
  subject?: string | null;
15533
15563
  labels?: Array<string | null> | null;
15534
15564
  sensitivity?: MailSensitivity | null;
@@ -23410,6 +23440,7 @@ export type CreateWorkflowMutation = {
23410
23440
  state: EntityState;
23411
23441
  ingestion?: {
23412
23442
  __typename?: 'IngestionWorkflowStage';
23443
+ enableEmailCollections?: boolean | null;
23413
23444
  if?: {
23414
23445
  __typename?: 'IngestionContentFilter';
23415
23446
  types?: Array<ContentTypes> | null;
@@ -23708,6 +23739,7 @@ export type GetWorkflowQuery = {
23708
23739
  };
23709
23740
  ingestion?: {
23710
23741
  __typename?: 'IngestionWorkflowStage';
23742
+ enableEmailCollections?: boolean | null;
23711
23743
  if?: {
23712
23744
  __typename?: 'IngestionContentFilter';
23713
23745
  types?: Array<ContentTypes> | null;
@@ -23972,6 +24004,7 @@ export type QueryWorkflowsQuery = {
23972
24004
  };
23973
24005
  ingestion?: {
23974
24006
  __typename?: 'IngestionWorkflowStage';
24007
+ enableEmailCollections?: boolean | null;
23975
24008
  if?: {
23976
24009
  __typename?: 'IngestionContentFilter';
23977
24010
  types?: Array<ContentTypes> | null;
@@ -24228,6 +24261,7 @@ export type UpdateWorkflowMutation = {
24228
24261
  state: EntityState;
24229
24262
  ingestion?: {
24230
24263
  __typename?: 'IngestionWorkflowStage';
24264
+ enableEmailCollections?: boolean | null;
24231
24265
  if?: {
24232
24266
  __typename?: 'IngestionContentFilter';
24233
24267
  types?: Array<ContentTypes> | null;
@@ -24483,6 +24517,7 @@ export type UpsertWorkflowMutation = {
24483
24517
  state: EntityState;
24484
24518
  ingestion?: {
24485
24519
  __typename?: 'IngestionWorkflowStage';
24520
+ enableEmailCollections?: boolean | null;
24486
24521
  if?: {
24487
24522
  __typename?: 'IngestionContentFilter';
24488
24523
  types?: Array<ContentTypes> | null;
@@ -210,6 +210,8 @@ var CollectionTypes;
210
210
  (function (CollectionTypes) {
211
211
  /** Content collection */
212
212
  CollectionTypes["Collection"] = "COLLECTION";
213
+ /** Email thread */
214
+ CollectionTypes["Thread"] = "THREAD";
213
215
  })(CollectionTypes || (exports.CollectionTypes = CollectionTypes = {}));
214
216
  /** Connector type */
215
217
  var ConnectorTypes;
@@ -874,6 +876,8 @@ var GoogleModels;
874
876
  GoogleModels["Gemini_2_0ProExperimental"] = "GEMINI_2_0_PRO_EXPERIMENTAL";
875
877
  /** Gemini 2.5 Pro (Experimental) */
876
878
  GoogleModels["Gemini_2_5ProExperimental"] = "GEMINI_2_5_PRO_EXPERIMENTAL";
879
+ /** Gemini 2.5 Pro (Preview) */
880
+ GoogleModels["Gemini_2_5ProPreview"] = "GEMINI_2_5_PRO_PREVIEW";
877
881
  })(GoogleModels || (exports.GoogleModels = GoogleModels = {}));
878
882
  /** GraphRAG strategies */
879
883
  var GraphStrategyTypes;
@@ -894,13 +898,25 @@ var GroqModels;
894
898
  GroqModels["DeepseekR1Llama_70BPreview"] = "DEEPSEEK_R1_LLAMA_70B_PREVIEW";
895
899
  /** LLaMA 3.1 8b */
896
900
  GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
897
- /** LLaMA 3.2 1b Preview */
901
+ /**
902
+ * LLaMA 3.2 1b Preview
903
+ * @deprecated Use LLaMa 3.3 or newer model
904
+ */
898
905
  GroqModels["Llama_3_2_1BPreview"] = "LLAMA_3_2_1B_PREVIEW";
899
- /** LLaMA 3.2 3b Preview */
906
+ /**
907
+ * LLaMA 3.2 3b Preview
908
+ * @deprecated Use LLaMa 3.3 or newer model
909
+ */
900
910
  GroqModels["Llama_3_2_3BPreview"] = "LLAMA_3_2_3B_PREVIEW";
901
- /** LLaMA 3.2 11b Vision Preview */
911
+ /**
912
+ * LLaMA 3.2 11b Vision Preview
913
+ * @deprecated Use LLaMa 3.3 or newer model
914
+ */
902
915
  GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
903
- /** LLaMA 3.2 90b Vision Preview */
916
+ /**
917
+ * LLaMA 3.2 90b Vision Preview
918
+ * @deprecated Use LLaMa 3.3 or newer model
919
+ */
904
920
  GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
905
921
  /** LLaMA 3.3 70b */
906
922
  GroqModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
@@ -908,6 +924,10 @@ var GroqModels;
908
924
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
909
925
  /** LLaMA 3 70b */
910
926
  GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
927
+ /** LLaMA 4 Maverick 17b */
928
+ GroqModels["Llama_4Maverick_17B"] = "LLAMA_4_MAVERICK_17B";
929
+ /** LLaMA 4 Scout 17b */
930
+ GroqModels["Llama_4Scout_17B"] = "LLAMA_4_SCOUT_17B";
911
931
  /** Mixtral 8x7b Instruct */
912
932
  GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
913
933
  })(GroqModels || (exports.GroqModels = GroqModels = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250402002",
3
+ "version": "1.0.20250407002",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",