graphlit-client 1.0.20250627002 → 1.0.20250628001

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.
@@ -90,6 +90,10 @@ export const GetAlert = gql `
90
90
  fileTypes
91
91
  formats
92
92
  fileExtensions
93
+ fileSizeRange {
94
+ from
95
+ to
96
+ }
93
97
  similarContents {
94
98
  id
95
99
  }
@@ -232,6 +236,10 @@ export const QueryAlerts = gql `
232
236
  fileTypes
233
237
  formats
234
238
  fileExtensions
239
+ fileSizeRange {
240
+ from
241
+ to
242
+ }
235
243
  similarContents {
236
244
  id
237
245
  }
@@ -4441,6 +4449,10 @@ export const GetConversation = gql `
4441
4449
  fileTypes
4442
4450
  formats
4443
4451
  fileExtensions
4452
+ fileSizeRange {
4453
+ from
4454
+ to
4455
+ }
4444
4456
  similarContents {
4445
4457
  id
4446
4458
  }
@@ -4524,6 +4536,10 @@ export const GetConversation = gql `
4524
4536
  fileTypes
4525
4537
  formats
4526
4538
  fileExtensions
4539
+ fileSizeRange {
4540
+ from
4541
+ to
4542
+ }
4527
4543
  similarContents {
4528
4544
  id
4529
4545
  }
@@ -5354,6 +5370,10 @@ export const QueryConversations = gql `
5354
5370
  fileTypes
5355
5371
  formats
5356
5372
  fileExtensions
5373
+ fileSizeRange {
5374
+ from
5375
+ to
5376
+ }
5357
5377
  similarContents {
5358
5378
  id
5359
5379
  }
@@ -5437,6 +5457,10 @@ export const QueryConversations = gql `
5437
5457
  fileTypes
5438
5458
  formats
5439
5459
  fileExtensions
5460
+ fileSizeRange {
5461
+ from
5462
+ to
5463
+ }
5440
5464
  similarContents {
5441
5465
  id
5442
5466
  }
@@ -9834,6 +9858,10 @@ export const CreateView = gql `
9834
9858
  fileTypes
9835
9859
  formats
9836
9860
  fileExtensions
9861
+ fileSizeRange {
9862
+ from
9863
+ to
9864
+ }
9837
9865
  similarContents {
9838
9866
  id
9839
9867
  }
@@ -9917,6 +9945,10 @@ export const CreateView = gql `
9917
9945
  fileTypes
9918
9946
  formats
9919
9947
  fileExtensions
9948
+ fileSizeRange {
9949
+ from
9950
+ to
9951
+ }
9920
9952
  similarContents {
9921
9953
  id
9922
9954
  }
@@ -10043,6 +10075,10 @@ export const GetView = gql `
10043
10075
  fileTypes
10044
10076
  formats
10045
10077
  fileExtensions
10078
+ fileSizeRange {
10079
+ from
10080
+ to
10081
+ }
10046
10082
  similarContents {
10047
10083
  id
10048
10084
  }
@@ -10126,6 +10162,10 @@ export const GetView = gql `
10126
10162
  fileTypes
10127
10163
  formats
10128
10164
  fileExtensions
10165
+ fileSizeRange {
10166
+ from
10167
+ to
10168
+ }
10129
10169
  similarContents {
10130
10170
  id
10131
10171
  }
@@ -10225,6 +10265,10 @@ export const QueryViews = gql `
10225
10265
  fileTypes
10226
10266
  formats
10227
10267
  fileExtensions
10268
+ fileSizeRange {
10269
+ from
10270
+ to
10271
+ }
10228
10272
  similarContents {
10229
10273
  id
10230
10274
  }
@@ -10308,6 +10352,10 @@ export const QueryViews = gql `
10308
10352
  fileTypes
10309
10353
  formats
10310
10354
  fileExtensions
10355
+ fileSizeRange {
10356
+ from
10357
+ to
10358
+ }
10311
10359
  similarContents {
10312
10360
  id
10313
10361
  }
@@ -10402,6 +10450,10 @@ export const UpdateView = gql `
10402
10450
  fileTypes
10403
10451
  formats
10404
10452
  fileExtensions
10453
+ fileSizeRange {
10454
+ from
10455
+ to
10456
+ }
10405
10457
  similarContents {
10406
10458
  id
10407
10459
  }
@@ -10485,6 +10537,10 @@ export const UpdateView = gql `
10485
10537
  fileTypes
10486
10538
  formats
10487
10539
  fileExtensions
10540
+ fileSizeRange {
10541
+ from
10542
+ to
10543
+ }
10488
10544
  similarContents {
10489
10545
  id
10490
10546
  }
@@ -10578,6 +10634,10 @@ export const UpsertView = gql `
10578
10634
  fileTypes
10579
10635
  formats
10580
10636
  fileExtensions
10637
+ fileSizeRange {
10638
+ from
10639
+ to
10640
+ }
10581
10641
  similarContents {
10582
10642
  id
10583
10643
  }
@@ -10661,6 +10721,10 @@ export const UpsertView = gql `
10661
10721
  fileTypes
10662
10722
  formats
10663
10723
  fileExtensions
10724
+ fileSizeRange {
10725
+ from
10726
+ to
10727
+ }
10664
10728
  similarContents {
10665
10729
  id
10666
10730
  }
@@ -1958,6 +1958,8 @@ export type ContentCriteria = {
1958
1958
  feeds?: Maybe<Array<EntityReference>>;
1959
1959
  /** Filter by file extensions. */
1960
1960
  fileExtensions?: Maybe<Array<Scalars['String']['output']>>;
1961
+ /** Filter by file size range. */
1962
+ fileSizeRange?: Maybe<Int64Range>;
1961
1963
  /** Filter by file types. */
1962
1964
  fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
1963
1965
  /** Filter by file formats. */
@@ -1993,8 +1995,14 @@ export type ContentCriteriaInput = {
1993
1995
  dateRange?: InputMaybe<DateRangeInput>;
1994
1996
  /** Filter by feeds. */
1995
1997
  feeds?: InputMaybe<Array<EntityReferenceInput>>;
1998
+ /** Filter by file extensions. */
1999
+ fileExtensions?: InputMaybe<Array<Scalars['String']['input']>>;
2000
+ /** Filter by file size range. */
2001
+ fileSizeRange?: InputMaybe<Int64RangeInput>;
1996
2002
  /** Filter by file types. */
1997
2003
  fileTypes?: InputMaybe<Array<FileTypes>>;
2004
+ /** Filter by file formats. */
2005
+ formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1998
2006
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
1999
2007
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2000
2008
  /** Filter by observations. */
@@ -5557,6 +5565,14 @@ export type IngestionWorkflowStageInput = {
5557
5565
  /** The observations to be assigned to ingested content. */
5558
5566
  observations?: InputMaybe<Array<InputMaybe<ObservationReferenceInput>>>;
5559
5567
  };
5568
+ /** Represents a range of long integer values. */
5569
+ export type Int64Range = {
5570
+ __typename?: 'Int64Range';
5571
+ /** Starting value of long integer range. */
5572
+ from?: Maybe<Scalars['Long']['output']>;
5573
+ /** Starting value of long integer range. */
5574
+ to?: Maybe<Scalars['Long']['output']>;
5575
+ };
5560
5576
  /** Represents a filter by range of long integer values. */
5561
5577
  export type Int64RangeFilter = {
5562
5578
  /** Starting value of long integer range. */
@@ -5564,6 +5580,13 @@ export type Int64RangeFilter = {
5564
5580
  /** Starting value of long integer range. */
5565
5581
  to?: InputMaybe<Scalars['Long']['input']>;
5566
5582
  };
5583
+ /** Represents a range of long integer values. */
5584
+ export type Int64RangeInput = {
5585
+ /** Starting value of long integer range. */
5586
+ from?: InputMaybe<Scalars['Long']['input']>;
5587
+ /** Starting value of long integer range. */
5588
+ to?: InputMaybe<Scalars['Long']['input']>;
5589
+ };
5567
5590
  /** Represents an integer result. */
5568
5591
  export type IntResult = {
5569
5592
  __typename?: 'IntResult';
@@ -14926,6 +14949,11 @@ export type GetAlertQuery = {
14926
14949
  from?: any | null;
14927
14950
  to?: any | null;
14928
14951
  } | null;
14952
+ fileSizeRange?: {
14953
+ __typename?: 'Int64Range';
14954
+ from?: any | null;
14955
+ to?: any | null;
14956
+ } | null;
14929
14957
  similarContents?: Array<{
14930
14958
  __typename?: 'EntityReference';
14931
14959
  id: string;
@@ -15109,6 +15137,11 @@ export type QueryAlertsQuery = {
15109
15137
  from?: any | null;
15110
15138
  to?: any | null;
15111
15139
  } | null;
15140
+ fileSizeRange?: {
15141
+ __typename?: 'Int64Range';
15142
+ from?: any | null;
15143
+ to?: any | null;
15144
+ } | null;
15112
15145
  similarContents?: Array<{
15113
15146
  __typename?: 'EntityReference';
15114
15147
  id: string;
@@ -19890,6 +19923,11 @@ export type GetConversationQuery = {
19890
19923
  from?: any | null;
19891
19924
  to?: any | null;
19892
19925
  } | null;
19926
+ fileSizeRange?: {
19927
+ __typename?: 'Int64Range';
19928
+ from?: any | null;
19929
+ to?: any | null;
19930
+ } | null;
19893
19931
  similarContents?: Array<{
19894
19932
  __typename?: 'EntityReference';
19895
19933
  id: string;
@@ -19998,6 +20036,11 @@ export type GetConversationQuery = {
19998
20036
  from?: any | null;
19999
20037
  to?: any | null;
20000
20038
  } | null;
20039
+ fileSizeRange?: {
20040
+ __typename?: 'Int64Range';
20041
+ from?: any | null;
20042
+ to?: any | null;
20043
+ } | null;
20001
20044
  similarContents?: Array<{
20002
20045
  __typename?: 'EntityReference';
20003
20046
  id: string;
@@ -20913,6 +20956,11 @@ export type QueryConversationsQuery = {
20913
20956
  from?: any | null;
20914
20957
  to?: any | null;
20915
20958
  } | null;
20959
+ fileSizeRange?: {
20960
+ __typename?: 'Int64Range';
20961
+ from?: any | null;
20962
+ to?: any | null;
20963
+ } | null;
20916
20964
  similarContents?: Array<{
20917
20965
  __typename?: 'EntityReference';
20918
20966
  id: string;
@@ -21021,6 +21069,11 @@ export type QueryConversationsQuery = {
21021
21069
  from?: any | null;
21022
21070
  to?: any | null;
21023
21071
  } | null;
21072
+ fileSizeRange?: {
21073
+ __typename?: 'Int64Range';
21074
+ from?: any | null;
21075
+ to?: any | null;
21076
+ } | null;
21024
21077
  similarContents?: Array<{
21025
21078
  __typename?: 'EntityReference';
21026
21079
  id: string;
@@ -26410,6 +26463,11 @@ export type CreateViewMutation = {
26410
26463
  from?: any | null;
26411
26464
  to?: any | null;
26412
26465
  } | null;
26466
+ fileSizeRange?: {
26467
+ __typename?: 'Int64Range';
26468
+ from?: any | null;
26469
+ to?: any | null;
26470
+ } | null;
26413
26471
  similarContents?: Array<{
26414
26472
  __typename?: 'EntityReference';
26415
26473
  id: string;
@@ -26518,6 +26576,11 @@ export type CreateViewMutation = {
26518
26576
  from?: any | null;
26519
26577
  to?: any | null;
26520
26578
  } | null;
26579
+ fileSizeRange?: {
26580
+ __typename?: 'Int64Range';
26581
+ from?: any | null;
26582
+ to?: any | null;
26583
+ } | null;
26521
26584
  similarContents?: Array<{
26522
26585
  __typename?: 'EntityReference';
26523
26586
  id: string;
@@ -26682,6 +26745,11 @@ export type GetViewQuery = {
26682
26745
  from?: any | null;
26683
26746
  to?: any | null;
26684
26747
  } | null;
26748
+ fileSizeRange?: {
26749
+ __typename?: 'Int64Range';
26750
+ from?: any | null;
26751
+ to?: any | null;
26752
+ } | null;
26685
26753
  similarContents?: Array<{
26686
26754
  __typename?: 'EntityReference';
26687
26755
  id: string;
@@ -26790,6 +26858,11 @@ export type GetViewQuery = {
26790
26858
  from?: any | null;
26791
26859
  to?: any | null;
26792
26860
  } | null;
26861
+ fileSizeRange?: {
26862
+ __typename?: 'Int64Range';
26863
+ from?: any | null;
26864
+ to?: any | null;
26865
+ } | null;
26793
26866
  similarContents?: Array<{
26794
26867
  __typename?: 'EntityReference';
26795
26868
  id: string;
@@ -26920,6 +26993,11 @@ export type QueryViewsQuery = {
26920
26993
  from?: any | null;
26921
26994
  to?: any | null;
26922
26995
  } | null;
26996
+ fileSizeRange?: {
26997
+ __typename?: 'Int64Range';
26998
+ from?: any | null;
26999
+ to?: any | null;
27000
+ } | null;
26923
27001
  similarContents?: Array<{
26924
27002
  __typename?: 'EntityReference';
26925
27003
  id: string;
@@ -27028,6 +27106,11 @@ export type QueryViewsQuery = {
27028
27106
  from?: any | null;
27029
27107
  to?: any | null;
27030
27108
  } | null;
27109
+ fileSizeRange?: {
27110
+ __typename?: 'Int64Range';
27111
+ from?: any | null;
27112
+ to?: any | null;
27113
+ } | null;
27031
27114
  similarContents?: Array<{
27032
27115
  __typename?: 'EntityReference';
27033
27116
  id: string;
@@ -27150,6 +27233,11 @@ export type UpdateViewMutation = {
27150
27233
  from?: any | null;
27151
27234
  to?: any | null;
27152
27235
  } | null;
27236
+ fileSizeRange?: {
27237
+ __typename?: 'Int64Range';
27238
+ from?: any | null;
27239
+ to?: any | null;
27240
+ } | null;
27153
27241
  similarContents?: Array<{
27154
27242
  __typename?: 'EntityReference';
27155
27243
  id: string;
@@ -27258,6 +27346,11 @@ export type UpdateViewMutation = {
27258
27346
  from?: any | null;
27259
27347
  to?: any | null;
27260
27348
  } | null;
27349
+ fileSizeRange?: {
27350
+ __typename?: 'Int64Range';
27351
+ from?: any | null;
27352
+ to?: any | null;
27353
+ } | null;
27261
27354
  similarContents?: Array<{
27262
27355
  __typename?: 'EntityReference';
27263
27356
  id: string;
@@ -27379,6 +27472,11 @@ export type UpsertViewMutation = {
27379
27472
  from?: any | null;
27380
27473
  to?: any | null;
27381
27474
  } | null;
27475
+ fileSizeRange?: {
27476
+ __typename?: 'Int64Range';
27477
+ from?: any | null;
27478
+ to?: any | null;
27479
+ } | null;
27382
27480
  similarContents?: Array<{
27383
27481
  __typename?: 'EntityReference';
27384
27482
  id: string;
@@ -27487,6 +27585,11 @@ export type UpsertViewMutation = {
27487
27585
  from?: any | null;
27488
27586
  to?: any | null;
27489
27587
  } | null;
27588
+ fileSizeRange?: {
27589
+ __typename?: 'Int64Range';
27590
+ from?: any | null;
27591
+ to?: any | null;
27592
+ } | null;
27490
27593
  similarContents?: Array<{
27491
27594
  __typename?: 'EntityReference';
27492
27595
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250627002",
3
+ "version": "1.0.20250628001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",