graphlit-client 1.0.20250402002 → 1.0.20250407001

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 = {
@@ -4476,6 +4482,10 @@ export declare enum GroqModels {
4476
4482
  Llama_3_8B = "LLAMA_3_8B",
4477
4483
  /** LLaMA 3 70b */
4478
4484
  Llama_3_70B = "LLAMA_3_70B",
4485
+ /** LLaMA 4 Maverick 17b */
4486
+ Llama_4Maverick_17B = "LLAMA_4_MAVERICK_17B",
4487
+ /** LLaMA 4 Scout 17b */
4488
+ Llama_4Scout_17B = "LLAMA_4_SCOUT_17B",
4479
4489
  /** Mixtral 8x7b Instruct */
4480
4490
  Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
4481
4491
  }
@@ -4768,6 +4778,8 @@ export type IngestionWorkflowStage = {
4768
4778
  __typename?: 'IngestionWorkflowStage';
4769
4779
  /** The collections to be assigned to ingested content. */
4770
4780
  collections?: Maybe<Array<Maybe<EntityReference>>>;
4781
+ /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
4782
+ enableEmailCollections?: Maybe<Scalars['Boolean']['output']>;
4771
4783
  /** The ingestion filter. */
4772
4784
  if?: Maybe<IngestionContentFilter>;
4773
4785
  /** The observations to be assigned to ingested content. */
@@ -4777,6 +4789,8 @@ export type IngestionWorkflowStage = {
4777
4789
  export type IngestionWorkflowStageInput = {
4778
4790
  /** The collections to be assigned to ingested content. */
4779
4791
  collections?: InputMaybe<Array<InputMaybe<EntityReferenceInput>>>;
4792
+ /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
4793
+ enableEmailCollections?: InputMaybe<Scalars['Boolean']['input']>;
4780
4794
  /** The ingestion filter. */
4781
4795
  if?: InputMaybe<IngestionContentFilterInput>;
4782
4796
  /** The observations to be assigned to ingested content. */
@@ -14671,6 +14685,7 @@ export type GetContentQuery = {
14671
14685
  email?: {
14672
14686
  __typename?: 'EmailMetadata';
14673
14687
  identifier?: string | null;
14688
+ threadIdentifier?: string | null;
14674
14689
  subject?: string | null;
14675
14690
  labels?: Array<string | null> | null;
14676
14691
  sensitivity?: MailSensitivity | null;
@@ -15529,6 +15544,7 @@ export type QueryContentsQuery = {
15529
15544
  email?: {
15530
15545
  __typename?: 'EmailMetadata';
15531
15546
  identifier?: string | null;
15547
+ threadIdentifier?: string | null;
15532
15548
  subject?: string | null;
15533
15549
  labels?: Array<string | null> | null;
15534
15550
  sensitivity?: MailSensitivity | null;
@@ -23410,6 +23426,7 @@ export type CreateWorkflowMutation = {
23410
23426
  state: EntityState;
23411
23427
  ingestion?: {
23412
23428
  __typename?: 'IngestionWorkflowStage';
23429
+ enableEmailCollections?: boolean | null;
23413
23430
  if?: {
23414
23431
  __typename?: 'IngestionContentFilter';
23415
23432
  types?: Array<ContentTypes> | null;
@@ -23708,6 +23725,7 @@ export type GetWorkflowQuery = {
23708
23725
  };
23709
23726
  ingestion?: {
23710
23727
  __typename?: 'IngestionWorkflowStage';
23728
+ enableEmailCollections?: boolean | null;
23711
23729
  if?: {
23712
23730
  __typename?: 'IngestionContentFilter';
23713
23731
  types?: Array<ContentTypes> | null;
@@ -23972,6 +23990,7 @@ export type QueryWorkflowsQuery = {
23972
23990
  };
23973
23991
  ingestion?: {
23974
23992
  __typename?: 'IngestionWorkflowStage';
23993
+ enableEmailCollections?: boolean | null;
23975
23994
  if?: {
23976
23995
  __typename?: 'IngestionContentFilter';
23977
23996
  types?: Array<ContentTypes> | null;
@@ -24228,6 +24247,7 @@ export type UpdateWorkflowMutation = {
24228
24247
  state: EntityState;
24229
24248
  ingestion?: {
24230
24249
  __typename?: 'IngestionWorkflowStage';
24250
+ enableEmailCollections?: boolean | null;
24231
24251
  if?: {
24232
24252
  __typename?: 'IngestionContentFilter';
24233
24253
  types?: Array<ContentTypes> | null;
@@ -24483,6 +24503,7 @@ export type UpsertWorkflowMutation = {
24483
24503
  state: EntityState;
24484
24504
  ingestion?: {
24485
24505
  __typename?: 'IngestionWorkflowStage';
24506
+ enableEmailCollections?: boolean | null;
24486
24507
  if?: {
24487
24508
  __typename?: 'IngestionContentFilter';
24488
24509
  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;
@@ -908,6 +910,10 @@ var GroqModels;
908
910
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
909
911
  /** LLaMA 3 70b */
910
912
  GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
913
+ /** LLaMA 4 Maverick 17b */
914
+ GroqModels["Llama_4Maverick_17B"] = "LLAMA_4_MAVERICK_17B";
915
+ /** LLaMA 4 Scout 17b */
916
+ GroqModels["Llama_4Scout_17B"] = "LLAMA_4_SCOUT_17B";
911
917
  /** Mixtral 8x7b Instruct */
912
918
  GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
913
919
  })(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.20250407001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",