graphlit-client 1.0.20250925002 → 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.
package/dist/client.d.ts CHANGED
@@ -212,6 +212,7 @@ declare class Graphlit {
212
212
  deleteFeed(id: string): Promise<Types.DeleteFeedMutation>;
213
213
  deleteFeeds(ids: string[], isSynchronous?: boolean): Promise<Types.DeleteFeedsMutation>;
214
214
  deleteAllFeeds(filter?: Types.FeedFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllFeedsMutation>;
215
+ triggerFeed(id: string): Promise<Types.TriggerFeedMutation>;
215
216
  enableFeed(id: string): Promise<Types.EnableFeedMutation>;
216
217
  disableFeed(id: string): Promise<Types.DeleteFeedMutation>;
217
218
  getFeed(id: string): Promise<Types.GetFeedQuery>;
package/dist/client.js CHANGED
@@ -1031,6 +1031,9 @@ class Graphlit {
1031
1031
  correlationId: correlationId,
1032
1032
  });
1033
1033
  }
1034
+ async triggerFeed(id) {
1035
+ return this.mutateAndCheckError(Documents.TriggerFeed, { id: id });
1036
+ }
1034
1037
  async enableFeed(id) {
1035
1038
  return this.mutateAndCheckError(Documents.EnableFeed, { id: id });
1036
1039
  }
@@ -123,6 +123,7 @@ export declare const QueryOneDriveFolders: import("graphql").DocumentNode;
123
123
  export declare const QuerySharePointFolders: import("graphql").DocumentNode;
124
124
  export declare const QuerySharePointLibraries: import("graphql").DocumentNode;
125
125
  export declare const QuerySlackChannels: import("graphql").DocumentNode;
126
+ export declare const TriggerFeed: import("graphql").DocumentNode;
126
127
  export declare const UpdateFeed: import("graphql").DocumentNode;
127
128
  export declare const CountLabels: import("graphql").DocumentNode;
128
129
  export declare const CreateLabel: import("graphql").DocumentNode;
@@ -164,6 +164,10 @@ export const GetAlert = gql `
164
164
  states
165
165
  }
166
166
  }
167
+ hasObservations
168
+ hasFeeds
169
+ hasCollections
170
+ hasWorkflows
167
171
  }
168
172
  integration {
169
173
  type
@@ -330,6 +334,10 @@ export const QueryAlerts = gql `
330
334
  states
331
335
  }
332
336
  }
337
+ hasObservations
338
+ hasFeeds
339
+ hasCollections
340
+ hasWorkflows
333
341
  }
334
342
  integration {
335
343
  type
@@ -1140,6 +1148,7 @@ export const GetContent = gql `
1140
1148
  description
1141
1149
  identifier
1142
1150
  markdown
1151
+ html
1143
1152
  address {
1144
1153
  streetAddress
1145
1154
  city
@@ -1871,6 +1880,7 @@ export const LookupContents = gql `
1871
1880
  description
1872
1881
  identifier
1873
1882
  markdown
1883
+ html
1874
1884
  address {
1875
1885
  streetAddress
1876
1886
  city
@@ -2492,12 +2502,6 @@ export const QueryContents = gql `
2492
2502
  transcriptUri
2493
2503
  summary
2494
2504
  customSummary
2495
- keywords
2496
- bullets
2497
- headlines
2498
- posts
2499
- chapters
2500
- questions
2501
2505
  quotes
2502
2506
  video {
2503
2507
  width
@@ -2669,10 +2673,6 @@ export const QueryContents = gql `
2669
2673
  id
2670
2674
  name
2671
2675
  }
2672
- links {
2673
- uri
2674
- linkType
2675
- }
2676
2676
  workflow {
2677
2677
  id
2678
2678
  name
@@ -2807,12 +2807,6 @@ export const QueryContentsObservations = gql `
2807
2807
  transcriptUri
2808
2808
  summary
2809
2809
  customSummary
2810
- keywords
2811
- bullets
2812
- headlines
2813
- posts
2814
- chapters
2815
- questions
2816
2810
  quotes
2817
2811
  video {
2818
2812
  width
@@ -2984,10 +2978,6 @@ export const QueryContentsObservations = gql `
2984
2978
  id
2985
2979
  name
2986
2980
  }
2987
- links {
2988
- uri
2989
- linkType
2990
- }
2991
2981
  workflow {
2992
2982
  id
2993
2983
  name
@@ -4657,6 +4647,10 @@ export const GetConversation = gql `
4657
4647
  states
4658
4648
  }
4659
4649
  }
4650
+ hasObservations
4651
+ hasFeeds
4652
+ hasCollections
4653
+ hasWorkflows
4660
4654
  }
4661
4655
  augmentedFilter {
4662
4656
  dateRange {
@@ -4744,6 +4738,10 @@ export const GetConversation = gql `
4744
4738
  states
4745
4739
  }
4746
4740
  }
4741
+ hasObservations
4742
+ hasFeeds
4743
+ hasCollections
4744
+ hasWorkflows
4747
4745
  }
4748
4746
  }
4749
4747
  }
@@ -5588,6 +5586,10 @@ export const QueryConversations = gql `
5588
5586
  states
5589
5587
  }
5590
5588
  }
5589
+ hasObservations
5590
+ hasFeeds
5591
+ hasCollections
5592
+ hasWorkflows
5591
5593
  }
5592
5594
  augmentedFilter {
5593
5595
  dateRange {
@@ -5675,6 +5677,10 @@ export const QueryConversations = gql `
5675
5677
  states
5676
5678
  }
5677
5679
  }
5680
+ hasObservations
5681
+ hasFeeds
5682
+ hasCollections
5683
+ hasWorkflows
5678
5684
  }
5679
5685
  }
5680
5686
  }
@@ -7278,6 +7284,14 @@ export const QuerySlackChannels = gql `
7278
7284
  }
7279
7285
  }
7280
7286
  `;
7287
+ export const TriggerFeed = gql `
7288
+ mutation TriggerFeed($id: ID!) {
7289
+ triggerFeed(id: $id) {
7290
+ id
7291
+ state
7292
+ }
7293
+ }
7294
+ `;
7281
7295
  export const UpdateFeed = gql `
7282
7296
  mutation UpdateFeed($feed: FeedUpdateInput!) {
7283
7297
  updateFeed(feed: $feed) {
@@ -10175,6 +10189,10 @@ export const CreateView = gql `
10175
10189
  states
10176
10190
  }
10177
10191
  }
10192
+ hasObservations
10193
+ hasFeeds
10194
+ hasCollections
10195
+ hasWorkflows
10178
10196
  }
10179
10197
  augmentedFilter {
10180
10198
  dateRange {
@@ -10262,6 +10280,10 @@ export const CreateView = gql `
10262
10280
  states
10263
10281
  }
10264
10282
  }
10283
+ hasObservations
10284
+ hasFeeds
10285
+ hasCollections
10286
+ hasWorkflows
10265
10287
  }
10266
10288
  }
10267
10289
  }
@@ -10392,6 +10414,10 @@ export const GetView = gql `
10392
10414
  states
10393
10415
  }
10394
10416
  }
10417
+ hasObservations
10418
+ hasFeeds
10419
+ hasCollections
10420
+ hasWorkflows
10395
10421
  }
10396
10422
  augmentedFilter {
10397
10423
  dateRange {
@@ -10479,6 +10505,10 @@ export const GetView = gql `
10479
10505
  states
10480
10506
  }
10481
10507
  }
10508
+ hasObservations
10509
+ hasFeeds
10510
+ hasCollections
10511
+ hasWorkflows
10482
10512
  }
10483
10513
  }
10484
10514
  }
@@ -10582,6 +10612,10 @@ export const QueryViews = gql `
10582
10612
  states
10583
10613
  }
10584
10614
  }
10615
+ hasObservations
10616
+ hasFeeds
10617
+ hasCollections
10618
+ hasWorkflows
10585
10619
  }
10586
10620
  augmentedFilter {
10587
10621
  dateRange {
@@ -10669,6 +10703,10 @@ export const QueryViews = gql `
10669
10703
  states
10670
10704
  }
10671
10705
  }
10706
+ hasObservations
10707
+ hasFeeds
10708
+ hasCollections
10709
+ hasWorkflows
10672
10710
  }
10673
10711
  }
10674
10712
  }
@@ -10767,6 +10805,10 @@ export const UpdateView = gql `
10767
10805
  states
10768
10806
  }
10769
10807
  }
10808
+ hasObservations
10809
+ hasFeeds
10810
+ hasCollections
10811
+ hasWorkflows
10770
10812
  }
10771
10813
  augmentedFilter {
10772
10814
  dateRange {
@@ -10854,6 +10896,10 @@ export const UpdateView = gql `
10854
10896
  states
10855
10897
  }
10856
10898
  }
10899
+ hasObservations
10900
+ hasFeeds
10901
+ hasCollections
10902
+ hasWorkflows
10857
10903
  }
10858
10904
  }
10859
10905
  }
@@ -10951,6 +10997,10 @@ export const UpsertView = gql `
10951
10997
  states
10952
10998
  }
10953
10999
  }
11000
+ hasObservations
11001
+ hasFeeds
11002
+ hasCollections
11003
+ hasWorkflows
10954
11004
  }
10955
11005
  augmentedFilter {
10956
11006
  dateRange {
@@ -11038,6 +11088,10 @@ export const UpsertView = gql `
11038
11088
  states
11039
11089
  }
11040
11090
  }
11091
+ hasObservations
11092
+ hasFeeds
11093
+ hasCollections
11094
+ hasWorkflows
11041
11095
  }
11042
11096
  }
11043
11097
  }
@@ -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. */
@@ -2037,6 +2039,14 @@ export type ContentCriteria = {
2037
2039
  fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
2038
2040
  /** Filter by file formats. */
2039
2041
  formats?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2042
+ /** Filter by presence or absence of associated collections. */
2043
+ hasCollections?: Maybe<Scalars['Boolean']['output']>;
2044
+ /** Filter by presence or absence of associated feeds. */
2045
+ hasFeeds?: Maybe<Scalars['Boolean']['output']>;
2046
+ /** Filter by presence or absence of observations. */
2047
+ hasObservations?: Maybe<Scalars['Boolean']['output']>;
2048
+ /** Filter by presence or absence of associated workflows. */
2049
+ hasWorkflows?: Maybe<Scalars['Boolean']['output']>;
2040
2050
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
2041
2051
  inLast?: Maybe<Scalars['TimeSpan']['output']>;
2042
2052
  /** Filter by observations. */
@@ -2076,6 +2086,14 @@ export type ContentCriteriaInput = {
2076
2086
  fileTypes?: InputMaybe<Array<FileTypes>>;
2077
2087
  /** Filter by file formats. */
2078
2088
  formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2089
+ /** Filter by presence or absence of associated collections. */
2090
+ hasCollections?: InputMaybe<Scalars['Boolean']['input']>;
2091
+ /** Filter by presence or absence of associated feeds. */
2092
+ hasFeeds?: InputMaybe<Scalars['Boolean']['input']>;
2093
+ /** Filter by presence or absence of observations. */
2094
+ hasObservations?: InputMaybe<Scalars['Boolean']['input']>;
2095
+ /** Filter by presence or absence of associated workflows. */
2096
+ hasWorkflows?: InputMaybe<Scalars['Boolean']['input']>;
2079
2097
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
2080
2098
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2081
2099
  /** Filter by observations. */
@@ -2234,6 +2252,14 @@ export type ContentFilter = {
2234
2252
  formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2235
2253
  /** Filter by H3 index. */
2236
2254
  h3?: InputMaybe<H3Filter>;
2255
+ /** Filter by presence or absence of associated collections. */
2256
+ hasCollections?: InputMaybe<Scalars['Boolean']['input']>;
2257
+ /** Filter by presence or absence of associated feeds. */
2258
+ hasFeeds?: InputMaybe<Scalars['Boolean']['input']>;
2259
+ /** Filter by presence or absence of observations. */
2260
+ hasObservations?: InputMaybe<Scalars['Boolean']['input']>;
2261
+ /** Filter by presence or absence of associated workflows. */
2262
+ hasWorkflows?: InputMaybe<Scalars['Boolean']['input']>;
2237
2263
  /** Filter content(s) by their unique ID. */
2238
2264
  id?: InputMaybe<Scalars['ID']['input']>;
2239
2265
  /** Filter contents by their external identifier. */
@@ -5280,7 +5306,11 @@ export declare enum GoogleModels {
5280
5306
  */
5281
5307
  Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
5282
5308
  /** Gemini 2.5 Pro (Preview) */
5283
- Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW"
5309
+ Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW",
5310
+ /** Gemini Flash (Latest) */
5311
+ GeminiFlashLatest = "GEMINI_FLASH_LATEST",
5312
+ /** Gemini Flash Lite (Latest) */
5313
+ GeminiFlashLiteLatest = "GEMINI_FLASH_LITE_LATEST"
5284
5314
  }
5285
5315
  /** Represents a knowledge graph. */
5286
5316
  export type Graph = {
@@ -5411,43 +5441,58 @@ export type GroqModelPropertiesUpdateInput = {
5411
5441
  export declare enum GroqModels {
5412
5442
  /** Developer-specified model */
5413
5443
  Custom = "CUSTOM",
5414
- /** Deepseek R1 Distill Llama 70b Preview */
5444
+ /**
5445
+ * Deepseek R1 Distill Llama 70b Preview
5446
+ * @deprecated Has been deprecated, select a different model
5447
+ */
5415
5448
  DeepseekR1Llama_70BPreview = "DEEPSEEK_R1_LLAMA_70B_PREVIEW",
5416
5449
  /** Kimi K2 32b */
5417
5450
  KimiK2_32B = "KIMI_K2_32B",
5418
- /** LLaMA 3.1 8b */
5451
+ /**
5452
+ * LLaMA 3.1 8b
5453
+ * @deprecated Use LLaMa 4 or newer model
5454
+ */
5419
5455
  Llama_3_1_8B = "LLAMA_3_1_8B",
5420
5456
  /**
5421
5457
  * LLaMA 3.2 1b Preview
5422
- * @deprecated Use LLaMa 3.3 or newer model
5458
+ * @deprecated Use LLaMa 4 or newer model
5423
5459
  */
5424
5460
  Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
5425
5461
  /**
5426
5462
  * LLaMA 3.2 3b Preview
5427
- * @deprecated Use LLaMa 3.3 or newer model
5463
+ * @deprecated Use LLaMa 4 or newer model
5428
5464
  */
5429
5465
  Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
5430
5466
  /**
5431
5467
  * LLaMA 3.2 11b Vision Preview
5432
- * @deprecated Use LLaMa 3.3 or newer model
5468
+ * @deprecated Use LLaMa 4 or newer model
5433
5469
  */
5434
5470
  Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
5435
5471
  /**
5436
5472
  * LLaMA 3.2 90b Vision Preview
5437
- * @deprecated Use LLaMa 3.3 or newer model
5473
+ * @deprecated Use LLaMa 4 or newer model
5438
5474
  */
5439
5475
  Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
5440
5476
  /** LLaMA 3.3 70b */
5441
5477
  Llama_3_3_70B = "LLAMA_3_3_70B",
5442
- /** LLaMA 3 8b */
5478
+ /**
5479
+ * LLaMA 3 8b
5480
+ * @deprecated Use LLaMa 4 or newer model
5481
+ */
5443
5482
  Llama_3_8B = "LLAMA_3_8B",
5444
- /** LLaMA 3 70b */
5483
+ /**
5484
+ * LLaMA 3 70b
5485
+ * @deprecated Use LLaMa 4 or newer model
5486
+ */
5445
5487
  Llama_3_70B = "LLAMA_3_70B",
5446
5488
  /** LLaMA 4 Maverick 17b */
5447
5489
  Llama_4Maverick_17B = "LLAMA_4_MAVERICK_17B",
5448
5490
  /** LLaMA 4 Scout 17b */
5449
5491
  Llama_4Scout_17B = "LLAMA_4_SCOUT_17B",
5450
- /** Mixtral 8x7b Instruct */
5492
+ /**
5493
+ * Mixtral 8x7b Instruct
5494
+ * @deprecated Has been deprecated, select a different model
5495
+ */
5451
5496
  Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT",
5452
5497
  /** Qwen 3 32b */
5453
5498
  Qwen_3_32B = "QWEN_3_32B"
@@ -8992,6 +9037,8 @@ export type Mutation = {
8992
9037
  summarizeContents?: Maybe<Array<Maybe<PromptSummarization>>>;
8993
9038
  /** Summarizes text. */
8994
9039
  summarizeText?: Maybe<PromptSummarization>;
9040
+ /** Triggers immediate processing of a recurring feed. */
9041
+ triggerFeed?: Maybe<Feed>;
8995
9042
  /** Undo an existing conversation. */
8996
9043
  undoConversation?: Maybe<Conversation>;
8997
9044
  /** Updates an existing alert. */
@@ -9849,6 +9896,9 @@ export type MutationSummarizeTextArgs = {
9849
9896
  text: Scalars['String']['input'];
9850
9897
  textType?: InputMaybe<TextTypes>;
9851
9898
  };
9899
+ export type MutationTriggerFeedArgs = {
9900
+ id: Scalars['ID']['input'];
9901
+ };
9852
9902
  export type MutationUndoConversationArgs = {
9853
9903
  id: Scalars['ID']['input'];
9854
9904
  };
@@ -15395,6 +15445,10 @@ export type GetAlertQuery = {
15395
15445
  fileTypes?: Array<FileTypes | null> | null;
15396
15446
  formats?: Array<string | null> | null;
15397
15447
  fileExtensions?: Array<string> | null;
15448
+ hasObservations?: boolean | null;
15449
+ hasFeeds?: boolean | null;
15450
+ hasCollections?: boolean | null;
15451
+ hasWorkflows?: boolean | null;
15398
15452
  dateRange?: {
15399
15453
  __typename?: 'DateRange';
15400
15454
  from?: any | null;
@@ -15608,6 +15662,10 @@ export type QueryAlertsQuery = {
15608
15662
  fileTypes?: Array<FileTypes | null> | null;
15609
15663
  formats?: Array<string | null> | null;
15610
15664
  fileExtensions?: Array<string> | null;
15665
+ hasObservations?: boolean | null;
15666
+ hasFeeds?: boolean | null;
15667
+ hasCollections?: boolean | null;
15668
+ hasWorkflows?: boolean | null;
15611
15669
  dateRange?: {
15612
15670
  __typename?: 'DateRange';
15613
15671
  from?: any | null;
@@ -16687,6 +16745,7 @@ export type GetContentQuery = {
16687
16745
  description?: string | null;
16688
16746
  identifier?: string | null;
16689
16747
  markdown?: string | null;
16748
+ html?: string | null;
16690
16749
  boundary?: string | null;
16691
16750
  epsgCode?: number | null;
16692
16751
  path?: string | null;
@@ -17512,6 +17571,7 @@ export type LookupContentsQuery = {
17512
17571
  description?: string | null;
17513
17572
  identifier?: string | null;
17514
17573
  markdown?: string | null;
17574
+ html?: string | null;
17515
17575
  boundary?: string | null;
17516
17576
  epsgCode?: number | null;
17517
17577
  path?: string | null;
@@ -18180,12 +18240,6 @@ export type QueryContentsQuery = {
18180
18240
  transcriptUri?: any | null;
18181
18241
  summary?: string | null;
18182
18242
  customSummary?: string | null;
18183
- keywords?: Array<string> | null;
18184
- bullets?: Array<string> | null;
18185
- headlines?: Array<string> | null;
18186
- posts?: Array<string> | null;
18187
- chapters?: Array<string> | null;
18188
- questions?: Array<string> | null;
18189
18243
  quotes?: Array<string> | null;
18190
18244
  error?: string | null;
18191
18245
  owner: {
@@ -18393,11 +18447,6 @@ export type QueryContentsQuery = {
18393
18447
  id: string;
18394
18448
  name: string;
18395
18449
  } | null;
18396
- links?: Array<{
18397
- __typename?: 'LinkReference';
18398
- uri?: any | null;
18399
- linkType?: LinkTypes | null;
18400
- }> | null;
18401
18450
  workflow?: {
18402
18451
  __typename?: 'Workflow';
18403
18452
  id: string;
@@ -18545,12 +18594,6 @@ export type QueryContentsObservationsQuery = {
18545
18594
  transcriptUri?: any | null;
18546
18595
  summary?: string | null;
18547
18596
  customSummary?: string | null;
18548
- keywords?: Array<string> | null;
18549
- bullets?: Array<string> | null;
18550
- headlines?: Array<string> | null;
18551
- posts?: Array<string> | null;
18552
- chapters?: Array<string> | null;
18553
- questions?: Array<string> | null;
18554
18597
  quotes?: Array<string> | null;
18555
18598
  error?: string | null;
18556
18599
  markdown?: string | null;
@@ -18759,11 +18802,6 @@ export type QueryContentsObservationsQuery = {
18759
18802
  id: string;
18760
18803
  name: string;
18761
18804
  } | null;
18762
- links?: Array<{
18763
- __typename?: 'LinkReference';
18764
- uri?: any | null;
18765
- linkType?: LinkTypes | null;
18766
- }> | null;
18767
18805
  workflow?: {
18768
18806
  __typename?: 'Workflow';
18769
18807
  id: string;
@@ -20522,6 +20560,10 @@ export type GetConversationQuery = {
20522
20560
  fileTypes?: Array<FileTypes | null> | null;
20523
20561
  formats?: Array<string | null> | null;
20524
20562
  fileExtensions?: Array<string> | null;
20563
+ hasObservations?: boolean | null;
20564
+ hasFeeds?: boolean | null;
20565
+ hasCollections?: boolean | null;
20566
+ hasWorkflows?: boolean | null;
20525
20567
  dateRange?: {
20526
20568
  __typename?: 'DateRange';
20527
20569
  from?: any | null;
@@ -20635,6 +20677,10 @@ export type GetConversationQuery = {
20635
20677
  fileTypes?: Array<FileTypes | null> | null;
20636
20678
  formats?: Array<string | null> | null;
20637
20679
  fileExtensions?: Array<string> | null;
20680
+ hasObservations?: boolean | null;
20681
+ hasFeeds?: boolean | null;
20682
+ hasCollections?: boolean | null;
20683
+ hasWorkflows?: boolean | null;
20638
20684
  dateRange?: {
20639
20685
  __typename?: 'DateRange';
20640
20686
  from?: any | null;
@@ -21565,6 +21611,10 @@ export type QueryConversationsQuery = {
21565
21611
  fileTypes?: Array<FileTypes | null> | null;
21566
21612
  formats?: Array<string | null> | null;
21567
21613
  fileExtensions?: Array<string> | null;
21614
+ hasObservations?: boolean | null;
21615
+ hasFeeds?: boolean | null;
21616
+ hasCollections?: boolean | null;
21617
+ hasWorkflows?: boolean | null;
21568
21618
  dateRange?: {
21569
21619
  __typename?: 'DateRange';
21570
21620
  from?: any | null;
@@ -21678,6 +21728,10 @@ export type QueryConversationsQuery = {
21678
21728
  fileTypes?: Array<FileTypes | null> | null;
21679
21729
  formats?: Array<string | null> | null;
21680
21730
  fileExtensions?: Array<string> | null;
21731
+ hasObservations?: boolean | null;
21732
+ hasFeeds?: boolean | null;
21733
+ hasCollections?: boolean | null;
21734
+ hasWorkflows?: boolean | null;
21681
21735
  dateRange?: {
21682
21736
  __typename?: 'DateRange';
21683
21737
  from?: any | null;
@@ -23648,6 +23702,17 @@ export type QuerySlackChannelsQuery = {
23648
23702
  results?: Array<string> | null;
23649
23703
  } | null;
23650
23704
  };
23705
+ export type TriggerFeedMutationVariables = Exact<{
23706
+ id: Scalars['ID']['input'];
23707
+ }>;
23708
+ export type TriggerFeedMutation = {
23709
+ __typename?: 'Mutation';
23710
+ triggerFeed?: {
23711
+ __typename?: 'Feed';
23712
+ id: string;
23713
+ state: EntityState;
23714
+ } | null;
23715
+ };
23651
23716
  export type UpdateFeedMutationVariables = Exact<{
23652
23717
  feed: FeedUpdateInput;
23653
23718
  }>;
@@ -27179,6 +27244,10 @@ export type CreateViewMutation = {
27179
27244
  fileTypes?: Array<FileTypes | null> | null;
27180
27245
  formats?: Array<string | null> | null;
27181
27246
  fileExtensions?: Array<string> | null;
27247
+ hasObservations?: boolean | null;
27248
+ hasFeeds?: boolean | null;
27249
+ hasCollections?: boolean | null;
27250
+ hasWorkflows?: boolean | null;
27182
27251
  dateRange?: {
27183
27252
  __typename?: 'DateRange';
27184
27253
  from?: any | null;
@@ -27292,6 +27361,10 @@ export type CreateViewMutation = {
27292
27361
  fileTypes?: Array<FileTypes | null> | null;
27293
27362
  formats?: Array<string | null> | null;
27294
27363
  fileExtensions?: Array<string> | null;
27364
+ hasObservations?: boolean | null;
27365
+ hasFeeds?: boolean | null;
27366
+ hasCollections?: boolean | null;
27367
+ hasWorkflows?: boolean | null;
27295
27368
  dateRange?: {
27296
27369
  __typename?: 'DateRange';
27297
27370
  from?: any | null;
@@ -27461,6 +27534,10 @@ export type GetViewQuery = {
27461
27534
  fileTypes?: Array<FileTypes | null> | null;
27462
27535
  formats?: Array<string | null> | null;
27463
27536
  fileExtensions?: Array<string> | null;
27537
+ hasObservations?: boolean | null;
27538
+ hasFeeds?: boolean | null;
27539
+ hasCollections?: boolean | null;
27540
+ hasWorkflows?: boolean | null;
27464
27541
  dateRange?: {
27465
27542
  __typename?: 'DateRange';
27466
27543
  from?: any | null;
@@ -27574,6 +27651,10 @@ export type GetViewQuery = {
27574
27651
  fileTypes?: Array<FileTypes | null> | null;
27575
27652
  formats?: Array<string | null> | null;
27576
27653
  fileExtensions?: Array<string> | null;
27654
+ hasObservations?: boolean | null;
27655
+ hasFeeds?: boolean | null;
27656
+ hasCollections?: boolean | null;
27657
+ hasWorkflows?: boolean | null;
27577
27658
  dateRange?: {
27578
27659
  __typename?: 'DateRange';
27579
27660
  from?: any | null;
@@ -27709,6 +27790,10 @@ export type QueryViewsQuery = {
27709
27790
  fileTypes?: Array<FileTypes | null> | null;
27710
27791
  formats?: Array<string | null> | null;
27711
27792
  fileExtensions?: Array<string> | null;
27793
+ hasObservations?: boolean | null;
27794
+ hasFeeds?: boolean | null;
27795
+ hasCollections?: boolean | null;
27796
+ hasWorkflows?: boolean | null;
27712
27797
  dateRange?: {
27713
27798
  __typename?: 'DateRange';
27714
27799
  from?: any | null;
@@ -27822,6 +27907,10 @@ export type QueryViewsQuery = {
27822
27907
  fileTypes?: Array<FileTypes | null> | null;
27823
27908
  formats?: Array<string | null> | null;
27824
27909
  fileExtensions?: Array<string> | null;
27910
+ hasObservations?: boolean | null;
27911
+ hasFeeds?: boolean | null;
27912
+ hasCollections?: boolean | null;
27913
+ hasWorkflows?: boolean | null;
27825
27914
  dateRange?: {
27826
27915
  __typename?: 'DateRange';
27827
27916
  from?: any | null;
@@ -27949,6 +28038,10 @@ export type UpdateViewMutation = {
27949
28038
  fileTypes?: Array<FileTypes | null> | null;
27950
28039
  formats?: Array<string | null> | null;
27951
28040
  fileExtensions?: Array<string> | null;
28041
+ hasObservations?: boolean | null;
28042
+ hasFeeds?: boolean | null;
28043
+ hasCollections?: boolean | null;
28044
+ hasWorkflows?: boolean | null;
27952
28045
  dateRange?: {
27953
28046
  __typename?: 'DateRange';
27954
28047
  from?: any | null;
@@ -28062,6 +28155,10 @@ export type UpdateViewMutation = {
28062
28155
  fileTypes?: Array<FileTypes | null> | null;
28063
28156
  formats?: Array<string | null> | null;
28064
28157
  fileExtensions?: Array<string> | null;
28158
+ hasObservations?: boolean | null;
28159
+ hasFeeds?: boolean | null;
28160
+ hasCollections?: boolean | null;
28161
+ hasWorkflows?: boolean | null;
28065
28162
  dateRange?: {
28066
28163
  __typename?: 'DateRange';
28067
28164
  from?: any | null;
@@ -28188,6 +28285,10 @@ export type UpsertViewMutation = {
28188
28285
  fileTypes?: Array<FileTypes | null> | null;
28189
28286
  formats?: Array<string | null> | null;
28190
28287
  fileExtensions?: Array<string> | null;
28288
+ hasObservations?: boolean | null;
28289
+ hasFeeds?: boolean | null;
28290
+ hasCollections?: boolean | null;
28291
+ hasWorkflows?: boolean | null;
28191
28292
  dateRange?: {
28192
28293
  __typename?: 'DateRange';
28193
28294
  from?: any | null;
@@ -28301,6 +28402,10 @@ export type UpsertViewMutation = {
28301
28402
  fileTypes?: Array<FileTypes | null> | null;
28302
28403
  formats?: Array<string | null> | null;
28303
28404
  fileExtensions?: Array<string> | null;
28405
+ hasObservations?: boolean | null;
28406
+ hasFeeds?: boolean | null;
28407
+ hasCollections?: boolean | null;
28408
+ hasWorkflows?: boolean | null;
28304
28409
  dateRange?: {
28305
28410
  __typename?: 'DateRange';
28306
28411
  from?: any | null;
@@ -1111,6 +1111,10 @@ export var GoogleModels;
1111
1111
  GoogleModels["Gemini_2_5ProExperimental"] = "GEMINI_2_5_PRO_EXPERIMENTAL";
1112
1112
  /** Gemini 2.5 Pro (Preview) */
1113
1113
  GoogleModels["Gemini_2_5ProPreview"] = "GEMINI_2_5_PRO_PREVIEW";
1114
+ /** Gemini Flash (Latest) */
1115
+ GoogleModels["GeminiFlashLatest"] = "GEMINI_FLASH_LATEST";
1116
+ /** Gemini Flash Lite (Latest) */
1117
+ GoogleModels["GeminiFlashLiteLatest"] = "GEMINI_FLASH_LITE_LATEST";
1114
1118
  })(GoogleModels || (GoogleModels = {}));
1115
1119
  /** GraphRAG strategies */
1116
1120
  export var GraphStrategyTypes;
@@ -1127,43 +1131,58 @@ export var GroqModels;
1127
1131
  (function (GroqModels) {
1128
1132
  /** Developer-specified model */
1129
1133
  GroqModels["Custom"] = "CUSTOM";
1130
- /** Deepseek R1 Distill Llama 70b Preview */
1134
+ /**
1135
+ * Deepseek R1 Distill Llama 70b Preview
1136
+ * @deprecated Has been deprecated, select a different model
1137
+ */
1131
1138
  GroqModels["DeepseekR1Llama_70BPreview"] = "DEEPSEEK_R1_LLAMA_70B_PREVIEW";
1132
1139
  /** Kimi K2 32b */
1133
1140
  GroqModels["KimiK2_32B"] = "KIMI_K2_32B";
1134
- /** LLaMA 3.1 8b */
1141
+ /**
1142
+ * LLaMA 3.1 8b
1143
+ * @deprecated Use LLaMa 4 or newer model
1144
+ */
1135
1145
  GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
1136
1146
  /**
1137
1147
  * LLaMA 3.2 1b Preview
1138
- * @deprecated Use LLaMa 3.3 or newer model
1148
+ * @deprecated Use LLaMa 4 or newer model
1139
1149
  */
1140
1150
  GroqModels["Llama_3_2_1BPreview"] = "LLAMA_3_2_1B_PREVIEW";
1141
1151
  /**
1142
1152
  * LLaMA 3.2 3b Preview
1143
- * @deprecated Use LLaMa 3.3 or newer model
1153
+ * @deprecated Use LLaMa 4 or newer model
1144
1154
  */
1145
1155
  GroqModels["Llama_3_2_3BPreview"] = "LLAMA_3_2_3B_PREVIEW";
1146
1156
  /**
1147
1157
  * LLaMA 3.2 11b Vision Preview
1148
- * @deprecated Use LLaMa 3.3 or newer model
1158
+ * @deprecated Use LLaMa 4 or newer model
1149
1159
  */
1150
1160
  GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
1151
1161
  /**
1152
1162
  * LLaMA 3.2 90b Vision Preview
1153
- * @deprecated Use LLaMa 3.3 or newer model
1163
+ * @deprecated Use LLaMa 4 or newer model
1154
1164
  */
1155
1165
  GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
1156
1166
  /** LLaMA 3.3 70b */
1157
1167
  GroqModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
1158
- /** LLaMA 3 8b */
1168
+ /**
1169
+ * LLaMA 3 8b
1170
+ * @deprecated Use LLaMa 4 or newer model
1171
+ */
1159
1172
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
1160
- /** LLaMA 3 70b */
1173
+ /**
1174
+ * LLaMA 3 70b
1175
+ * @deprecated Use LLaMa 4 or newer model
1176
+ */
1161
1177
  GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
1162
1178
  /** LLaMA 4 Maverick 17b */
1163
1179
  GroqModels["Llama_4Maverick_17B"] = "LLAMA_4_MAVERICK_17B";
1164
1180
  /** LLaMA 4 Scout 17b */
1165
1181
  GroqModels["Llama_4Scout_17B"] = "LLAMA_4_SCOUT_17B";
1166
- /** Mixtral 8x7b Instruct */
1182
+ /**
1183
+ * Mixtral 8x7b Instruct
1184
+ * @deprecated Has been deprecated, select a different model
1185
+ */
1167
1186
  GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
1168
1187
  /** Qwen 3 32b */
1169
1188
  GroqModels["Qwen_3_32B"] = "QWEN_3_32B";
@@ -97,6 +97,9 @@ const GOOGLE_MODEL_MAP = {
97
97
  [Types.GoogleModels.Gemini_2_5FlashLite]: "gemini-2.5-flash-lite",
98
98
  [Types.GoogleModels.Gemini_2_5Flash]: "gemini-2.5-flash",
99
99
  [Types.GoogleModels.Gemini_2_5Pro]: "gemini-2.5-pro",
100
+ // Gemini Latest models
101
+ [Types.GoogleModels.GeminiFlashLatest]: "gemini-flash-latest",
102
+ [Types.GoogleModels.GeminiFlashLiteLatest]: "gemini-flash-lite-latest",
100
103
  };
101
104
  // Groq model mappings
102
105
  const GROQ_MODEL_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250925002",
3
+ "version": "1.0.20250928001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",