graphlit-client 1.0.20250315002 → 1.0.20250327001

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.
package/README.md CHANGED
@@ -7,7 +7,7 @@ The Graphlit Client for Node.js enables straightforward interactions with the Gr
7
7
 
8
8
  Before you begin, ensure you have the following:
9
9
 
10
- - Node.js installed on your system (recommended version 14.x or higher).
10
+ - Node.js installed on your system (recommended version 18.x or higher).
11
11
  - An active account on the [Graphlit Platform](https://portal.graphlit.dev) with access to the API settings dashboard.
12
12
 
13
13
  ## Installation
@@ -99,6 +99,8 @@ exports.GetAlert = (0, graphql_tag_1.default) `
99
99
  createdInLast
100
100
  types
101
101
  fileTypes
102
+ formats
103
+ fileExtensions
102
104
  contents {
103
105
  id
104
106
  }
@@ -223,6 +225,8 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
223
225
  createdInLast
224
226
  types
225
227
  fileTypes
228
+ formats
229
+ fileExtensions
226
230
  contents {
227
231
  id
228
232
  }
@@ -3390,6 +3394,8 @@ exports.GetConversation = (0, graphql_tag_1.default) `
3390
3394
  createdInLast
3391
3395
  types
3392
3396
  fileTypes
3397
+ formats
3398
+ fileExtensions
3393
3399
  contents {
3394
3400
  id
3395
3401
  }
@@ -3468,6 +3474,8 @@ exports.GetConversation = (0, graphql_tag_1.default) `
3468
3474
  createdInLast
3469
3475
  types
3470
3476
  fileTypes
3477
+ formats
3478
+ fileExtensions
3471
3479
  contents {
3472
3480
  id
3473
3481
  }
@@ -4259,6 +4267,8 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
4259
4267
  createdInLast
4260
4268
  types
4261
4269
  fileTypes
4270
+ formats
4271
+ fileExtensions
4262
4272
  contents {
4263
4273
  id
4264
4274
  }
@@ -4337,6 +4347,8 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
4337
4347
  createdInLast
4338
4348
  types
4339
4349
  fileTypes
4350
+ formats
4351
+ fileExtensions
4340
4352
  contents {
4341
4353
  id
4342
4354
  }
@@ -5388,6 +5400,14 @@ exports.GetFeed = (0, graphql_tag_1.default) `
5388
5400
  channelIdentifier
5389
5401
  playlistIdentifier
5390
5402
  }
5403
+ twitter {
5404
+ readLimit
5405
+ token
5406
+ type
5407
+ userName
5408
+ query
5409
+ includeAttachments
5410
+ }
5391
5411
  slack {
5392
5412
  readLimit
5393
5413
  type
@@ -5633,6 +5653,14 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
5633
5653
  channelIdentifier
5634
5654
  playlistIdentifier
5635
5655
  }
5656
+ twitter {
5657
+ readLimit
5658
+ token
5659
+ type
5660
+ userName
5661
+ query
5662
+ includeAttachments
5663
+ }
5636
5664
  slack {
5637
5665
  readLimit
5638
5666
  type
@@ -8357,6 +8385,8 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
8357
8385
  if {
8358
8386
  types
8359
8387
  fileTypes
8388
+ formats
8389
+ fileExtensions
8360
8390
  allowedPaths
8361
8391
  excludedPaths
8362
8392
  }
@@ -8583,6 +8613,8 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
8583
8613
  if {
8584
8614
  types
8585
8615
  fileTypes
8616
+ formats
8617
+ fileExtensions
8586
8618
  allowedPaths
8587
8619
  excludedPaths
8588
8620
  }
@@ -8782,6 +8814,8 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
8782
8814
  if {
8783
8815
  types
8784
8816
  fileTypes
8817
+ formats
8818
+ fileExtensions
8785
8819
  allowedPaths
8786
8820
  excludedPaths
8787
8821
  }
@@ -8976,6 +9010,8 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
8976
9010
  if {
8977
9011
  types
8978
9012
  fileTypes
9013
+ formats
9014
+ fileExtensions
8979
9015
  allowedPaths
8980
9016
  excludedPaths
8981
9017
  }
@@ -9169,6 +9205,8 @@ exports.UpsertWorkflow = (0, graphql_tag_1.default) `
9169
9205
  if {
9170
9206
  types
9171
9207
  fileTypes
9208
+ formats
9209
+ fileExtensions
9172
9210
  allowedPaths
9173
9211
  excludedPaths
9174
9212
  }
@@ -1628,8 +1628,12 @@ export type ContentCriteria = {
1628
1628
  dateRange?: Maybe<DateRange>;
1629
1629
  /** Filter by feeds. */
1630
1630
  feeds?: Maybe<Array<EntityReference>>;
1631
+ /** Filter by file extensions. */
1632
+ fileExtensions?: Maybe<Array<Scalars['String']['output']>>;
1631
1633
  /** Filter by file types. */
1632
1634
  fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
1635
+ /** Filter by file formats. */
1636
+ formats?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1633
1637
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
1634
1638
  inLast?: Maybe<Scalars['TimeSpan']['output']>;
1635
1639
  /** Filter by observations. */
@@ -3632,6 +3636,8 @@ export type Feed = {
3632
3636
  slack?: Maybe<SlackFeedProperties>;
3633
3637
  /** The state of the feed (i.e. created, finished). */
3634
3638
  state: EntityState;
3639
+ /** The Twitter feed properties. */
3640
+ twitter?: Maybe<TwitterFeedProperties>;
3635
3641
  /** The feed type. */
3636
3642
  type: FeedTypes;
3637
3643
  /** The web feed properties. */
@@ -3730,6 +3736,8 @@ export type FeedInput = {
3730
3736
  site?: InputMaybe<SiteFeedPropertiesInput>;
3731
3737
  /** The Slack feed properties. */
3732
3738
  slack?: InputMaybe<SlackFeedPropertiesInput>;
3739
+ /** The Twitter feed properties. */
3740
+ twitter?: InputMaybe<TwitterFeedPropertiesInput>;
3733
3741
  /** The feed type. */
3734
3742
  type: FeedTypes;
3735
3743
  /** The web feed properties. */
@@ -3836,6 +3844,8 @@ export declare enum FeedTypes {
3836
3844
  Site = "SITE",
3837
3845
  /** Slack channel feed */
3838
3846
  Slack = "SLACK",
3847
+ /** Twitter/X feed */
3848
+ Twitter = "TWITTER",
3839
3849
  /** Web feed */
3840
3850
  Web = "WEB",
3841
3851
  /** YouTube audio feed */
@@ -3875,6 +3885,8 @@ export type FeedUpdateInput = {
3875
3885
  site?: InputMaybe<SiteFeedPropertiesUpdateInput>;
3876
3886
  /** The Slack feed properties. */
3877
3887
  slack?: InputMaybe<SlackFeedPropertiesUpdateInput>;
3888
+ /** The Twitter feed properties. */
3889
+ twitter?: InputMaybe<TwitterFeedPropertiesUpdateInput>;
3878
3890
  /** The feed type. */
3879
3891
  type?: InputMaybe<FeedTypes>;
3880
3892
  /** The web feed properties. */
@@ -4309,8 +4321,13 @@ export declare enum GoogleModels {
4309
4321
  Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
4310
4322
  /** Gemini 2.0 Flash Thinking (Experimental) */
4311
4323
  Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL",
4312
- /** Gemini 2.0 Pro (Experimental) */
4313
- Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL"
4324
+ /**
4325
+ * Gemini 2.0 Pro (Experimental)
4326
+ * @deprecated Use Gemini 2.5 Pro (Experimental) instead.
4327
+ */
4328
+ Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL",
4329
+ /** Gemini 2.5 Pro (Experimental) */
4330
+ Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL"
4314
4331
  }
4315
4332
  /** Represents a knowledge graph. */
4316
4333
  export type Graph = {
@@ -4722,8 +4739,12 @@ export type IngestionContentFilter = {
4722
4739
  allowedPaths?: Maybe<Array<Scalars['String']['output']>>;
4723
4740
  /** The list of regular expressions for excluded URL paths, i.e. "^/internal/private/.*". */
4724
4741
  excludedPaths?: Maybe<Array<Scalars['String']['output']>>;
4742
+ /** Filter by file extensions. */
4743
+ fileExtensions?: Maybe<Array<Scalars['String']['output']>>;
4725
4744
  /** Filter by file types. */
4726
4745
  fileTypes?: Maybe<Array<FileTypes>>;
4746
+ /** Filter by file formats. */
4747
+ formats?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
4727
4748
  /** Filter by content types. */
4728
4749
  types?: Maybe<Array<ContentTypes>>;
4729
4750
  };
@@ -4733,8 +4754,12 @@ export type IngestionContentFilterInput = {
4733
4754
  allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
4734
4755
  /** The list of regular expressions for excluded URL paths, i.e. "^/internal/private/.*". */
4735
4756
  excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
4757
+ /** Filter by file extensions. */
4758
+ fileExtensions?: InputMaybe<Array<Scalars['String']['input']>>;
4736
4759
  /** Filter by file types. */
4737
4760
  fileTypes?: InputMaybe<Array<FileTypes>>;
4761
+ /** Filter by file formats. */
4762
+ formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
4738
4763
  /** Filter by content types. */
4739
4764
  types?: InputMaybe<Array<ContentTypes>>;
4740
4765
  };
@@ -12787,6 +12812,57 @@ export declare enum TrelloTypes {
12787
12812
  /** Trello Card */
12788
12813
  Card = "CARD"
12789
12814
  }
12815
+ /** Represents Twitter feed properties. */
12816
+ export type TwitterFeedProperties = {
12817
+ __typename?: 'TwitterFeedProperties';
12818
+ /** Should the Twitter feed include attachments. */
12819
+ includeAttachments?: Maybe<Scalars['Boolean']['output']>;
12820
+ /** Search query for Twitter API, ex: '(from:twitterdev -is:retweet) OR #twitterdev'. */
12821
+ query?: Maybe<Scalars['String']['output']>;
12822
+ /** The limit of items to be read from feed, defaults to 100. */
12823
+ readLimit?: Maybe<Scalars['Int']['output']>;
12824
+ /** The Twitter bearer token. */
12825
+ token: Scalars['String']['output'];
12826
+ /** Twitter listing type, i.e. posts, mentions, recent search. Defaults to posts by username. */
12827
+ type?: Maybe<TwitterListingTypes>;
12828
+ /** Twitter username. */
12829
+ userName?: Maybe<Scalars['String']['output']>;
12830
+ };
12831
+ /** Represents Twitter feed properties. */
12832
+ export type TwitterFeedPropertiesInput = {
12833
+ /** Should the Twitter feed include attachments. */
12834
+ includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
12835
+ /** Search query for Twitter API, ex: '(from:twitterdev -is:retweet) OR #twitterdev'. */
12836
+ query?: InputMaybe<Scalars['String']['input']>;
12837
+ /** The limit of items to be read from feed, defaults to 100. */
12838
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
12839
+ /** The Twitter bearer token. */
12840
+ token: Scalars['String']['input'];
12841
+ /** Twitter listing type, i.e. posts, mentions, recent search. Defaults to posts by username. */
12842
+ type?: InputMaybe<TwitterListingTypes>;
12843
+ /** Twitter username. */
12844
+ userName?: InputMaybe<Scalars['String']['input']>;
12845
+ };
12846
+ /** Represents Twitter feed properties. */
12847
+ export type TwitterFeedPropertiesUpdateInput = {
12848
+ /** Should the Twitter feed include attachments. */
12849
+ includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
12850
+ /** Search query for Twitter API, ex: '(from:twitterdev -is:retweet) OR #twitterdev'. */
12851
+ query?: InputMaybe<Scalars['String']['input']>;
12852
+ /** The limit of items to be read from feed, defaults to 100. */
12853
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
12854
+ /** The Twitter bearer token. */
12855
+ token?: InputMaybe<Scalars['String']['input']>;
12856
+ /** Twitter listing type, i.e. posts, mentions, recent search. Defaults to posts by username. */
12857
+ type?: InputMaybe<TwitterListingTypes>;
12858
+ /** Twitter username. */
12859
+ userName?: InputMaybe<Scalars['String']['input']>;
12860
+ };
12861
+ export declare enum TwitterListingTypes {
12862
+ Mentions = "MENTIONS",
12863
+ Posts = "POSTS",
12864
+ RecentSearch = "RECENT_SEARCH"
12865
+ }
12790
12866
  /** Unit types */
12791
12867
  export declare enum UnitTypes {
12792
12868
  /** Angstrom */
@@ -13429,6 +13505,8 @@ export type GetAlertQuery = {
13429
13505
  createdInLast?: any | null;
13430
13506
  types?: Array<ContentTypes> | null;
13431
13507
  fileTypes?: Array<FileTypes | null> | null;
13508
+ formats?: Array<string | null> | null;
13509
+ fileExtensions?: Array<string> | null;
13432
13510
  dateRange?: {
13433
13511
  __typename?: 'DateRange';
13434
13512
  from?: any | null;
@@ -13590,6 +13668,8 @@ export type QueryAlertsQuery = {
13590
13668
  createdInLast?: any | null;
13591
13669
  types?: Array<ContentTypes> | null;
13592
13670
  fileTypes?: Array<FileTypes | null> | null;
13671
+ formats?: Array<string | null> | null;
13672
+ fileExtensions?: Array<string> | null;
13593
13673
  dateRange?: {
13594
13674
  __typename?: 'DateRange';
13595
13675
  from?: any | null;
@@ -17181,6 +17261,8 @@ export type GetConversationQuery = {
17181
17261
  createdInLast?: any | null;
17182
17262
  types?: Array<ContentTypes> | null;
17183
17263
  fileTypes?: Array<FileTypes | null> | null;
17264
+ formats?: Array<string | null> | null;
17265
+ fileExtensions?: Array<string> | null;
17184
17266
  dateRange?: {
17185
17267
  __typename?: 'DateRange';
17186
17268
  from?: any | null;
@@ -17283,6 +17365,8 @@ export type GetConversationQuery = {
17283
17365
  createdInLast?: any | null;
17284
17366
  types?: Array<ContentTypes> | null;
17285
17367
  fileTypes?: Array<FileTypes | null> | null;
17368
+ formats?: Array<string | null> | null;
17369
+ fileExtensions?: Array<string> | null;
17286
17370
  dateRange?: {
17287
17371
  __typename?: 'DateRange';
17288
17372
  from?: any | null;
@@ -18155,6 +18239,8 @@ export type QueryConversationsQuery = {
18155
18239
  createdInLast?: any | null;
18156
18240
  types?: Array<ContentTypes> | null;
18157
18241
  fileTypes?: Array<FileTypes | null> | null;
18242
+ formats?: Array<string | null> | null;
18243
+ fileExtensions?: Array<string> | null;
18158
18244
  dateRange?: {
18159
18245
  __typename?: 'DateRange';
18160
18246
  from?: any | null;
@@ -18257,6 +18343,8 @@ export type QueryConversationsQuery = {
18257
18343
  createdInLast?: any | null;
18258
18344
  types?: Array<ContentTypes> | null;
18259
18345
  fileTypes?: Array<FileTypes | null> | null;
18346
+ formats?: Array<string | null> | null;
18347
+ fileExtensions?: Array<string> | null;
18260
18348
  dateRange?: {
18261
18349
  __typename?: 'DateRange';
18262
18350
  from?: any | null;
@@ -19479,6 +19567,15 @@ export type GetFeedQuery = {
19479
19567
  channelIdentifier?: string | null;
19480
19568
  playlistIdentifier?: string | null;
19481
19569
  } | null;
19570
+ twitter?: {
19571
+ __typename?: 'TwitterFeedProperties';
19572
+ readLimit?: number | null;
19573
+ token: string;
19574
+ type?: TwitterListingTypes | null;
19575
+ userName?: string | null;
19576
+ query?: string | null;
19577
+ includeAttachments?: boolean | null;
19578
+ } | null;
19482
19579
  slack?: {
19483
19580
  __typename?: 'SlackFeedProperties';
19484
19581
  readLimit?: number | null;
@@ -19770,6 +19867,15 @@ export type QueryFeedsQuery = {
19770
19867
  channelIdentifier?: string | null;
19771
19868
  playlistIdentifier?: string | null;
19772
19869
  } | null;
19870
+ twitter?: {
19871
+ __typename?: 'TwitterFeedProperties';
19872
+ readLimit?: number | null;
19873
+ token: string;
19874
+ type?: TwitterListingTypes | null;
19875
+ userName?: string | null;
19876
+ query?: string | null;
19877
+ includeAttachments?: boolean | null;
19878
+ } | null;
19773
19879
  slack?: {
19774
19880
  __typename?: 'SlackFeedProperties';
19775
19881
  readLimit?: number | null;
@@ -23207,6 +23313,8 @@ export type CreateWorkflowMutation = {
23207
23313
  __typename?: 'IngestionContentFilter';
23208
23314
  types?: Array<ContentTypes> | null;
23209
23315
  fileTypes?: Array<FileTypes> | null;
23316
+ formats?: Array<string | null> | null;
23317
+ fileExtensions?: Array<string> | null;
23210
23318
  allowedPaths?: Array<string> | null;
23211
23319
  excludedPaths?: Array<string> | null;
23212
23320
  } | null;
@@ -23496,6 +23604,8 @@ export type GetWorkflowQuery = {
23496
23604
  __typename?: 'IngestionContentFilter';
23497
23605
  types?: Array<ContentTypes> | null;
23498
23606
  fileTypes?: Array<FileTypes> | null;
23607
+ formats?: Array<string | null> | null;
23608
+ fileExtensions?: Array<string> | null;
23499
23609
  allowedPaths?: Array<string> | null;
23500
23610
  excludedPaths?: Array<string> | null;
23501
23611
  } | null;
@@ -23751,6 +23861,8 @@ export type QueryWorkflowsQuery = {
23751
23861
  __typename?: 'IngestionContentFilter';
23752
23862
  types?: Array<ContentTypes> | null;
23753
23863
  fileTypes?: Array<FileTypes> | null;
23864
+ formats?: Array<string | null> | null;
23865
+ fileExtensions?: Array<string> | null;
23754
23866
  allowedPaths?: Array<string> | null;
23755
23867
  excludedPaths?: Array<string> | null;
23756
23868
  } | null;
@@ -23998,6 +24110,8 @@ export type UpdateWorkflowMutation = {
23998
24110
  __typename?: 'IngestionContentFilter';
23999
24111
  types?: Array<ContentTypes> | null;
24000
24112
  fileTypes?: Array<FileTypes> | null;
24113
+ formats?: Array<string | null> | null;
24114
+ fileExtensions?: Array<string> | null;
24001
24115
  allowedPaths?: Array<string> | null;
24002
24116
  excludedPaths?: Array<string> | null;
24003
24117
  } | null;
@@ -24244,6 +24358,8 @@ export type UpsertWorkflowMutation = {
24244
24358
  __typename?: 'IngestionContentFilter';
24245
24359
  types?: Array<ContentTypes> | null;
24246
24360
  fileTypes?: Array<FileTypes> | null;
24361
+ formats?: Array<string | null> | null;
24362
+ fileExtensions?: Array<string> | null;
24247
24363
  allowedPaths?: Array<string> | null;
24248
24364
  excludedPaths?: Array<string> | null;
24249
24365
  } | null;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentSourceTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.ContentClassificationServiceTypes = exports.ConnectorTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.AuthenticationServiceTypes = exports.AssemblyAiModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
4
  exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.RegexSourceTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiReasoningEffortLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = void 0;
5
- exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TrelloTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = void 0;
5
+ exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TwitterListingTypes = exports.TrelloTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = void 0;
6
6
  /** Alert type */
7
7
  var AlertTypes;
8
8
  (function (AlertTypes) {
@@ -775,6 +775,8 @@ var FeedTypes;
775
775
  FeedTypes["Site"] = "SITE";
776
776
  /** Slack channel feed */
777
777
  FeedTypes["Slack"] = "SLACK";
778
+ /** Twitter/X feed */
779
+ FeedTypes["Twitter"] = "TWITTER";
778
780
  /** Web feed */
779
781
  FeedTypes["Web"] = "WEB";
780
782
  /** YouTube audio feed */
@@ -865,8 +867,13 @@ var GoogleModels;
865
867
  GoogleModels["Gemini_2_0FlashExperimental"] = "GEMINI_2_0_FLASH_EXPERIMENTAL";
866
868
  /** Gemini 2.0 Flash Thinking (Experimental) */
867
869
  GoogleModels["Gemini_2_0FlashThinkingExperimental"] = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL";
868
- /** Gemini 2.0 Pro (Experimental) */
870
+ /**
871
+ * Gemini 2.0 Pro (Experimental)
872
+ * @deprecated Use Gemini 2.5 Pro (Experimental) instead.
873
+ */
869
874
  GoogleModels["Gemini_2_0ProExperimental"] = "GEMINI_2_0_PRO_EXPERIMENTAL";
875
+ /** Gemini 2.5 Pro (Experimental) */
876
+ GoogleModels["Gemini_2_5ProExperimental"] = "GEMINI_2_5_PRO_EXPERIMENTAL";
870
877
  })(GoogleModels || (exports.GoogleModels = GoogleModels = {}));
871
878
  /** GraphRAG strategies */
872
879
  var GraphStrategyTypes;
@@ -1822,6 +1829,12 @@ var TrelloTypes;
1822
1829
  /** Trello Card */
1823
1830
  TrelloTypes["Card"] = "CARD";
1824
1831
  })(TrelloTypes || (exports.TrelloTypes = TrelloTypes = {}));
1832
+ var TwitterListingTypes;
1833
+ (function (TwitterListingTypes) {
1834
+ TwitterListingTypes["Mentions"] = "MENTIONS";
1835
+ TwitterListingTypes["Posts"] = "POSTS";
1836
+ TwitterListingTypes["RecentSearch"] = "RECENT_SEARCH";
1837
+ })(TwitterListingTypes || (exports.TwitterListingTypes = TwitterListingTypes = {}));
1825
1838
  /** Unit types */
1826
1839
  var UnitTypes;
1827
1840
  (function (UnitTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250315002",
3
+ "version": "1.0.20250327001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",