graphlit-client 1.0.20250925002 → 1.0.20250927001

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
@@ -2492,12 +2500,6 @@ export const QueryContents = gql `
2492
2500
  transcriptUri
2493
2501
  summary
2494
2502
  customSummary
2495
- keywords
2496
- bullets
2497
- headlines
2498
- posts
2499
- chapters
2500
- questions
2501
2503
  quotes
2502
2504
  video {
2503
2505
  width
@@ -2669,10 +2671,6 @@ export const QueryContents = gql `
2669
2671
  id
2670
2672
  name
2671
2673
  }
2672
- links {
2673
- uri
2674
- linkType
2675
- }
2676
2674
  workflow {
2677
2675
  id
2678
2676
  name
@@ -2807,12 +2805,6 @@ export const QueryContentsObservations = gql `
2807
2805
  transcriptUri
2808
2806
  summary
2809
2807
  customSummary
2810
- keywords
2811
- bullets
2812
- headlines
2813
- posts
2814
- chapters
2815
- questions
2816
2808
  quotes
2817
2809
  video {
2818
2810
  width
@@ -2984,10 +2976,6 @@ export const QueryContentsObservations = gql `
2984
2976
  id
2985
2977
  name
2986
2978
  }
2987
- links {
2988
- uri
2989
- linkType
2990
- }
2991
2979
  workflow {
2992
2980
  id
2993
2981
  name
@@ -4657,6 +4645,10 @@ export const GetConversation = gql `
4657
4645
  states
4658
4646
  }
4659
4647
  }
4648
+ hasObservations
4649
+ hasFeeds
4650
+ hasCollections
4651
+ hasWorkflows
4660
4652
  }
4661
4653
  augmentedFilter {
4662
4654
  dateRange {
@@ -4744,6 +4736,10 @@ export const GetConversation = gql `
4744
4736
  states
4745
4737
  }
4746
4738
  }
4739
+ hasObservations
4740
+ hasFeeds
4741
+ hasCollections
4742
+ hasWorkflows
4747
4743
  }
4748
4744
  }
4749
4745
  }
@@ -5588,6 +5584,10 @@ export const QueryConversations = gql `
5588
5584
  states
5589
5585
  }
5590
5586
  }
5587
+ hasObservations
5588
+ hasFeeds
5589
+ hasCollections
5590
+ hasWorkflows
5591
5591
  }
5592
5592
  augmentedFilter {
5593
5593
  dateRange {
@@ -5675,6 +5675,10 @@ export const QueryConversations = gql `
5675
5675
  states
5676
5676
  }
5677
5677
  }
5678
+ hasObservations
5679
+ hasFeeds
5680
+ hasCollections
5681
+ hasWorkflows
5678
5682
  }
5679
5683
  }
5680
5684
  }
@@ -7278,6 +7282,14 @@ export const QuerySlackChannels = gql `
7278
7282
  }
7279
7283
  }
7280
7284
  `;
7285
+ export const TriggerFeed = gql `
7286
+ mutation TriggerFeed($id: ID!) {
7287
+ triggerFeed(id: $id) {
7288
+ id
7289
+ state
7290
+ }
7291
+ }
7292
+ `;
7281
7293
  export const UpdateFeed = gql `
7282
7294
  mutation UpdateFeed($feed: FeedUpdateInput!) {
7283
7295
  updateFeed(feed: $feed) {
@@ -10175,6 +10187,10 @@ export const CreateView = gql `
10175
10187
  states
10176
10188
  }
10177
10189
  }
10190
+ hasObservations
10191
+ hasFeeds
10192
+ hasCollections
10193
+ hasWorkflows
10178
10194
  }
10179
10195
  augmentedFilter {
10180
10196
  dateRange {
@@ -10262,6 +10278,10 @@ export const CreateView = gql `
10262
10278
  states
10263
10279
  }
10264
10280
  }
10281
+ hasObservations
10282
+ hasFeeds
10283
+ hasCollections
10284
+ hasWorkflows
10265
10285
  }
10266
10286
  }
10267
10287
  }
@@ -10392,6 +10412,10 @@ export const GetView = gql `
10392
10412
  states
10393
10413
  }
10394
10414
  }
10415
+ hasObservations
10416
+ hasFeeds
10417
+ hasCollections
10418
+ hasWorkflows
10395
10419
  }
10396
10420
  augmentedFilter {
10397
10421
  dateRange {
@@ -10479,6 +10503,10 @@ export const GetView = gql `
10479
10503
  states
10480
10504
  }
10481
10505
  }
10506
+ hasObservations
10507
+ hasFeeds
10508
+ hasCollections
10509
+ hasWorkflows
10482
10510
  }
10483
10511
  }
10484
10512
  }
@@ -10582,6 +10610,10 @@ export const QueryViews = gql `
10582
10610
  states
10583
10611
  }
10584
10612
  }
10613
+ hasObservations
10614
+ hasFeeds
10615
+ hasCollections
10616
+ hasWorkflows
10585
10617
  }
10586
10618
  augmentedFilter {
10587
10619
  dateRange {
@@ -10669,6 +10701,10 @@ export const QueryViews = gql `
10669
10701
  states
10670
10702
  }
10671
10703
  }
10704
+ hasObservations
10705
+ hasFeeds
10706
+ hasCollections
10707
+ hasWorkflows
10672
10708
  }
10673
10709
  }
10674
10710
  }
@@ -10767,6 +10803,10 @@ export const UpdateView = gql `
10767
10803
  states
10768
10804
  }
10769
10805
  }
10806
+ hasObservations
10807
+ hasFeeds
10808
+ hasCollections
10809
+ hasWorkflows
10770
10810
  }
10771
10811
  augmentedFilter {
10772
10812
  dateRange {
@@ -10854,6 +10894,10 @@ export const UpdateView = gql `
10854
10894
  states
10855
10895
  }
10856
10896
  }
10897
+ hasObservations
10898
+ hasFeeds
10899
+ hasCollections
10900
+ hasWorkflows
10857
10901
  }
10858
10902
  }
10859
10903
  }
@@ -10951,6 +10995,10 @@ export const UpsertView = gql `
10951
10995
  states
10952
10996
  }
10953
10997
  }
10998
+ hasObservations
10999
+ hasFeeds
11000
+ hasCollections
11001
+ hasWorkflows
10954
11002
  }
10955
11003
  augmentedFilter {
10956
11004
  dateRange {
@@ -11038,6 +11086,10 @@ export const UpsertView = gql `
11038
11086
  states
11039
11087
  }
11040
11088
  }
11089
+ hasObservations
11090
+ hasFeeds
11091
+ hasCollections
11092
+ hasWorkflows
11041
11093
  }
11042
11094
  }
11043
11095
  }
@@ -2037,6 +2037,14 @@ export type ContentCriteria = {
2037
2037
  fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
2038
2038
  /** Filter by file formats. */
2039
2039
  formats?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2040
+ /** Filter by presence or absence of associated collections. */
2041
+ hasCollections?: Maybe<Scalars['Boolean']['output']>;
2042
+ /** Filter by presence or absence of associated feeds. */
2043
+ hasFeeds?: Maybe<Scalars['Boolean']['output']>;
2044
+ /** Filter by presence or absence of observations. */
2045
+ hasObservations?: Maybe<Scalars['Boolean']['output']>;
2046
+ /** Filter by presence or absence of associated workflows. */
2047
+ hasWorkflows?: Maybe<Scalars['Boolean']['output']>;
2040
2048
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
2041
2049
  inLast?: Maybe<Scalars['TimeSpan']['output']>;
2042
2050
  /** Filter by observations. */
@@ -2076,6 +2084,14 @@ export type ContentCriteriaInput = {
2076
2084
  fileTypes?: InputMaybe<Array<FileTypes>>;
2077
2085
  /** Filter by file formats. */
2078
2086
  formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2087
+ /** Filter by presence or absence of associated collections. */
2088
+ hasCollections?: InputMaybe<Scalars['Boolean']['input']>;
2089
+ /** Filter by presence or absence of associated feeds. */
2090
+ hasFeeds?: InputMaybe<Scalars['Boolean']['input']>;
2091
+ /** Filter by presence or absence of observations. */
2092
+ hasObservations?: InputMaybe<Scalars['Boolean']['input']>;
2093
+ /** Filter by presence or absence of associated workflows. */
2094
+ hasWorkflows?: InputMaybe<Scalars['Boolean']['input']>;
2079
2095
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
2080
2096
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2081
2097
  /** Filter by observations. */
@@ -2234,6 +2250,14 @@ export type ContentFilter = {
2234
2250
  formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2235
2251
  /** Filter by H3 index. */
2236
2252
  h3?: InputMaybe<H3Filter>;
2253
+ /** Filter by presence or absence of associated collections. */
2254
+ hasCollections?: InputMaybe<Scalars['Boolean']['input']>;
2255
+ /** Filter by presence or absence of associated feeds. */
2256
+ hasFeeds?: InputMaybe<Scalars['Boolean']['input']>;
2257
+ /** Filter by presence or absence of observations. */
2258
+ hasObservations?: InputMaybe<Scalars['Boolean']['input']>;
2259
+ /** Filter by presence or absence of associated workflows. */
2260
+ hasWorkflows?: InputMaybe<Scalars['Boolean']['input']>;
2237
2261
  /** Filter content(s) by their unique ID. */
2238
2262
  id?: InputMaybe<Scalars['ID']['input']>;
2239
2263
  /** Filter contents by their external identifier. */
@@ -5280,7 +5304,11 @@ export declare enum GoogleModels {
5280
5304
  */
5281
5305
  Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
5282
5306
  /** Gemini 2.5 Pro (Preview) */
5283
- Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW"
5307
+ Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW",
5308
+ /** Gemini Flash (Latest) */
5309
+ GeminiFlashLatest = "GEMINI_FLASH_LATEST",
5310
+ /** Gemini Flash Lite (Latest) */
5311
+ GeminiFlashLiteLatest = "GEMINI_FLASH_LITE_LATEST"
5284
5312
  }
5285
5313
  /** Represents a knowledge graph. */
5286
5314
  export type Graph = {
@@ -8992,6 +9020,8 @@ export type Mutation = {
8992
9020
  summarizeContents?: Maybe<Array<Maybe<PromptSummarization>>>;
8993
9021
  /** Summarizes text. */
8994
9022
  summarizeText?: Maybe<PromptSummarization>;
9023
+ /** Triggers immediate processing of a recurring feed. */
9024
+ triggerFeed?: Maybe<Feed>;
8995
9025
  /** Undo an existing conversation. */
8996
9026
  undoConversation?: Maybe<Conversation>;
8997
9027
  /** Updates an existing alert. */
@@ -9849,6 +9879,9 @@ export type MutationSummarizeTextArgs = {
9849
9879
  text: Scalars['String']['input'];
9850
9880
  textType?: InputMaybe<TextTypes>;
9851
9881
  };
9882
+ export type MutationTriggerFeedArgs = {
9883
+ id: Scalars['ID']['input'];
9884
+ };
9852
9885
  export type MutationUndoConversationArgs = {
9853
9886
  id: Scalars['ID']['input'];
9854
9887
  };
@@ -15395,6 +15428,10 @@ export type GetAlertQuery = {
15395
15428
  fileTypes?: Array<FileTypes | null> | null;
15396
15429
  formats?: Array<string | null> | null;
15397
15430
  fileExtensions?: Array<string> | null;
15431
+ hasObservations?: boolean | null;
15432
+ hasFeeds?: boolean | null;
15433
+ hasCollections?: boolean | null;
15434
+ hasWorkflows?: boolean | null;
15398
15435
  dateRange?: {
15399
15436
  __typename?: 'DateRange';
15400
15437
  from?: any | null;
@@ -15608,6 +15645,10 @@ export type QueryAlertsQuery = {
15608
15645
  fileTypes?: Array<FileTypes | null> | null;
15609
15646
  formats?: Array<string | null> | null;
15610
15647
  fileExtensions?: Array<string> | null;
15648
+ hasObservations?: boolean | null;
15649
+ hasFeeds?: boolean | null;
15650
+ hasCollections?: boolean | null;
15651
+ hasWorkflows?: boolean | null;
15611
15652
  dateRange?: {
15612
15653
  __typename?: 'DateRange';
15613
15654
  from?: any | null;
@@ -18180,12 +18221,6 @@ export type QueryContentsQuery = {
18180
18221
  transcriptUri?: any | null;
18181
18222
  summary?: string | null;
18182
18223
  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
18224
  quotes?: Array<string> | null;
18190
18225
  error?: string | null;
18191
18226
  owner: {
@@ -18393,11 +18428,6 @@ export type QueryContentsQuery = {
18393
18428
  id: string;
18394
18429
  name: string;
18395
18430
  } | null;
18396
- links?: Array<{
18397
- __typename?: 'LinkReference';
18398
- uri?: any | null;
18399
- linkType?: LinkTypes | null;
18400
- }> | null;
18401
18431
  workflow?: {
18402
18432
  __typename?: 'Workflow';
18403
18433
  id: string;
@@ -18545,12 +18575,6 @@ export type QueryContentsObservationsQuery = {
18545
18575
  transcriptUri?: any | null;
18546
18576
  summary?: string | null;
18547
18577
  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
18578
  quotes?: Array<string> | null;
18555
18579
  error?: string | null;
18556
18580
  markdown?: string | null;
@@ -18759,11 +18783,6 @@ export type QueryContentsObservationsQuery = {
18759
18783
  id: string;
18760
18784
  name: string;
18761
18785
  } | null;
18762
- links?: Array<{
18763
- __typename?: 'LinkReference';
18764
- uri?: any | null;
18765
- linkType?: LinkTypes | null;
18766
- }> | null;
18767
18786
  workflow?: {
18768
18787
  __typename?: 'Workflow';
18769
18788
  id: string;
@@ -20522,6 +20541,10 @@ export type GetConversationQuery = {
20522
20541
  fileTypes?: Array<FileTypes | null> | null;
20523
20542
  formats?: Array<string | null> | null;
20524
20543
  fileExtensions?: Array<string> | null;
20544
+ hasObservations?: boolean | null;
20545
+ hasFeeds?: boolean | null;
20546
+ hasCollections?: boolean | null;
20547
+ hasWorkflows?: boolean | null;
20525
20548
  dateRange?: {
20526
20549
  __typename?: 'DateRange';
20527
20550
  from?: any | null;
@@ -20635,6 +20658,10 @@ export type GetConversationQuery = {
20635
20658
  fileTypes?: Array<FileTypes | null> | null;
20636
20659
  formats?: Array<string | null> | null;
20637
20660
  fileExtensions?: Array<string> | null;
20661
+ hasObservations?: boolean | null;
20662
+ hasFeeds?: boolean | null;
20663
+ hasCollections?: boolean | null;
20664
+ hasWorkflows?: boolean | null;
20638
20665
  dateRange?: {
20639
20666
  __typename?: 'DateRange';
20640
20667
  from?: any | null;
@@ -21565,6 +21592,10 @@ export type QueryConversationsQuery = {
21565
21592
  fileTypes?: Array<FileTypes | null> | null;
21566
21593
  formats?: Array<string | null> | null;
21567
21594
  fileExtensions?: Array<string> | null;
21595
+ hasObservations?: boolean | null;
21596
+ hasFeeds?: boolean | null;
21597
+ hasCollections?: boolean | null;
21598
+ hasWorkflows?: boolean | null;
21568
21599
  dateRange?: {
21569
21600
  __typename?: 'DateRange';
21570
21601
  from?: any | null;
@@ -21678,6 +21709,10 @@ export type QueryConversationsQuery = {
21678
21709
  fileTypes?: Array<FileTypes | null> | null;
21679
21710
  formats?: Array<string | null> | null;
21680
21711
  fileExtensions?: Array<string> | null;
21712
+ hasObservations?: boolean | null;
21713
+ hasFeeds?: boolean | null;
21714
+ hasCollections?: boolean | null;
21715
+ hasWorkflows?: boolean | null;
21681
21716
  dateRange?: {
21682
21717
  __typename?: 'DateRange';
21683
21718
  from?: any | null;
@@ -23648,6 +23683,17 @@ export type QuerySlackChannelsQuery = {
23648
23683
  results?: Array<string> | null;
23649
23684
  } | null;
23650
23685
  };
23686
+ export type TriggerFeedMutationVariables = Exact<{
23687
+ id: Scalars['ID']['input'];
23688
+ }>;
23689
+ export type TriggerFeedMutation = {
23690
+ __typename?: 'Mutation';
23691
+ triggerFeed?: {
23692
+ __typename?: 'Feed';
23693
+ id: string;
23694
+ state: EntityState;
23695
+ } | null;
23696
+ };
23651
23697
  export type UpdateFeedMutationVariables = Exact<{
23652
23698
  feed: FeedUpdateInput;
23653
23699
  }>;
@@ -27179,6 +27225,10 @@ export type CreateViewMutation = {
27179
27225
  fileTypes?: Array<FileTypes | null> | null;
27180
27226
  formats?: Array<string | null> | null;
27181
27227
  fileExtensions?: Array<string> | null;
27228
+ hasObservations?: boolean | null;
27229
+ hasFeeds?: boolean | null;
27230
+ hasCollections?: boolean | null;
27231
+ hasWorkflows?: boolean | null;
27182
27232
  dateRange?: {
27183
27233
  __typename?: 'DateRange';
27184
27234
  from?: any | null;
@@ -27292,6 +27342,10 @@ export type CreateViewMutation = {
27292
27342
  fileTypes?: Array<FileTypes | null> | null;
27293
27343
  formats?: Array<string | null> | null;
27294
27344
  fileExtensions?: Array<string> | null;
27345
+ hasObservations?: boolean | null;
27346
+ hasFeeds?: boolean | null;
27347
+ hasCollections?: boolean | null;
27348
+ hasWorkflows?: boolean | null;
27295
27349
  dateRange?: {
27296
27350
  __typename?: 'DateRange';
27297
27351
  from?: any | null;
@@ -27461,6 +27515,10 @@ export type GetViewQuery = {
27461
27515
  fileTypes?: Array<FileTypes | null> | null;
27462
27516
  formats?: Array<string | null> | null;
27463
27517
  fileExtensions?: Array<string> | null;
27518
+ hasObservations?: boolean | null;
27519
+ hasFeeds?: boolean | null;
27520
+ hasCollections?: boolean | null;
27521
+ hasWorkflows?: boolean | null;
27464
27522
  dateRange?: {
27465
27523
  __typename?: 'DateRange';
27466
27524
  from?: any | null;
@@ -27574,6 +27632,10 @@ export type GetViewQuery = {
27574
27632
  fileTypes?: Array<FileTypes | null> | null;
27575
27633
  formats?: Array<string | null> | null;
27576
27634
  fileExtensions?: Array<string> | null;
27635
+ hasObservations?: boolean | null;
27636
+ hasFeeds?: boolean | null;
27637
+ hasCollections?: boolean | null;
27638
+ hasWorkflows?: boolean | null;
27577
27639
  dateRange?: {
27578
27640
  __typename?: 'DateRange';
27579
27641
  from?: any | null;
@@ -27709,6 +27771,10 @@ export type QueryViewsQuery = {
27709
27771
  fileTypes?: Array<FileTypes | null> | null;
27710
27772
  formats?: Array<string | null> | null;
27711
27773
  fileExtensions?: Array<string> | null;
27774
+ hasObservations?: boolean | null;
27775
+ hasFeeds?: boolean | null;
27776
+ hasCollections?: boolean | null;
27777
+ hasWorkflows?: boolean | null;
27712
27778
  dateRange?: {
27713
27779
  __typename?: 'DateRange';
27714
27780
  from?: any | null;
@@ -27822,6 +27888,10 @@ export type QueryViewsQuery = {
27822
27888
  fileTypes?: Array<FileTypes | null> | null;
27823
27889
  formats?: Array<string | null> | null;
27824
27890
  fileExtensions?: Array<string> | null;
27891
+ hasObservations?: boolean | null;
27892
+ hasFeeds?: boolean | null;
27893
+ hasCollections?: boolean | null;
27894
+ hasWorkflows?: boolean | null;
27825
27895
  dateRange?: {
27826
27896
  __typename?: 'DateRange';
27827
27897
  from?: any | null;
@@ -27949,6 +28019,10 @@ export type UpdateViewMutation = {
27949
28019
  fileTypes?: Array<FileTypes | null> | null;
27950
28020
  formats?: Array<string | null> | null;
27951
28021
  fileExtensions?: Array<string> | null;
28022
+ hasObservations?: boolean | null;
28023
+ hasFeeds?: boolean | null;
28024
+ hasCollections?: boolean | null;
28025
+ hasWorkflows?: boolean | null;
27952
28026
  dateRange?: {
27953
28027
  __typename?: 'DateRange';
27954
28028
  from?: any | null;
@@ -28062,6 +28136,10 @@ export type UpdateViewMutation = {
28062
28136
  fileTypes?: Array<FileTypes | null> | null;
28063
28137
  formats?: Array<string | null> | null;
28064
28138
  fileExtensions?: Array<string> | null;
28139
+ hasObservations?: boolean | null;
28140
+ hasFeeds?: boolean | null;
28141
+ hasCollections?: boolean | null;
28142
+ hasWorkflows?: boolean | null;
28065
28143
  dateRange?: {
28066
28144
  __typename?: 'DateRange';
28067
28145
  from?: any | null;
@@ -28188,6 +28266,10 @@ export type UpsertViewMutation = {
28188
28266
  fileTypes?: Array<FileTypes | null> | null;
28189
28267
  formats?: Array<string | null> | null;
28190
28268
  fileExtensions?: Array<string> | null;
28269
+ hasObservations?: boolean | null;
28270
+ hasFeeds?: boolean | null;
28271
+ hasCollections?: boolean | null;
28272
+ hasWorkflows?: boolean | null;
28191
28273
  dateRange?: {
28192
28274
  __typename?: 'DateRange';
28193
28275
  from?: any | null;
@@ -28301,6 +28383,10 @@ export type UpsertViewMutation = {
28301
28383
  fileTypes?: Array<FileTypes | null> | null;
28302
28384
  formats?: Array<string | null> | null;
28303
28385
  fileExtensions?: Array<string> | null;
28386
+ hasObservations?: boolean | null;
28387
+ hasFeeds?: boolean | null;
28388
+ hasCollections?: boolean | null;
28389
+ hasWorkflows?: boolean | null;
28304
28390
  dateRange?: {
28305
28391
  __typename?: 'DateRange';
28306
28392
  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;
@@ -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.20250927001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",