graphlit-client 1.0.20250423001 → 1.0.20250426001

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.
@@ -101,6 +101,9 @@ exports.GetAlert = (0, graphql_tag_1.default) `
101
101
  fileTypes
102
102
  formats
103
103
  fileExtensions
104
+ similarContents {
105
+ id
106
+ }
104
107
  contents {
105
108
  id
106
109
  }
@@ -236,6 +239,9 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
236
239
  fileTypes
237
240
  formats
238
241
  fileExtensions
242
+ similarContents {
243
+ id
244
+ }
239
245
  contents {
240
246
  id
241
247
  }
@@ -3467,6 +3473,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
3467
3473
  fileTypes
3468
3474
  formats
3469
3475
  fileExtensions
3476
+ similarContents {
3477
+ id
3478
+ }
3470
3479
  contents {
3471
3480
  id
3472
3481
  }
@@ -3547,6 +3556,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
3547
3556
  fileTypes
3548
3557
  formats
3549
3558
  fileExtensions
3559
+ similarContents {
3560
+ id
3561
+ }
3550
3562
  contents {
3551
3563
  id
3552
3564
  }
@@ -4340,6 +4352,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
4340
4352
  fileTypes
4341
4353
  formats
4342
4354
  fileExtensions
4355
+ similarContents {
4356
+ id
4357
+ }
4343
4358
  contents {
4344
4359
  id
4345
4360
  }
@@ -4420,6 +4435,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
4420
4435
  fileTypes
4421
4436
  formats
4422
4437
  fileExtensions
4438
+ similarContents {
4439
+ id
4440
+ }
4423
4441
  contents {
4424
4442
  id
4425
4443
  }
@@ -1620,7 +1620,7 @@ export type ContentCriteria = {
1620
1620
  and?: Maybe<Array<ContentCriteriaLevel>>;
1621
1621
  /** Filter by collections. */
1622
1622
  collections?: Maybe<Array<EntityReference>>;
1623
- /** Filter by similar contents. */
1623
+ /** Filter by contents. */
1624
1624
  contents?: Maybe<Array<EntityReference>>;
1625
1625
  /** Filter by creation date recent timespan. For example, a timespan of one day will return content created in the last 24 hours. */
1626
1626
  createdInLast?: Maybe<Scalars['TimeSpan']['output']>;
@@ -1642,6 +1642,8 @@ export type ContentCriteria = {
1642
1642
  observations?: Maybe<Array<ObservationCriteria>>;
1643
1643
  /** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
1644
1644
  or?: Maybe<Array<ContentCriteriaLevel>>;
1645
+ /** Filter by similar contents. */
1646
+ similarContents?: Maybe<Array<EntityReference>>;
1645
1647
  /** Filter by content types. */
1646
1648
  types?: Maybe<Array<ContentTypes>>;
1647
1649
  /** Filter by users. Only applies to project scope. */
@@ -1655,7 +1657,7 @@ export type ContentCriteriaInput = {
1655
1657
  and?: InputMaybe<Array<ContentCriteriaLevelInput>>;
1656
1658
  /** Filter by collections. */
1657
1659
  collections?: InputMaybe<Array<EntityReferenceInput>>;
1658
- /** Filter by similar contents. */
1660
+ /** Filter by contents. */
1659
1661
  contents?: InputMaybe<Array<EntityReferenceInput>>;
1660
1662
  /** Filter by creation date recent timespan. For example, a timespan of one day will return content created in the last 24 hours. */
1661
1663
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
@@ -1673,6 +1675,8 @@ export type ContentCriteriaInput = {
1673
1675
  observations?: InputMaybe<Array<ObservationCriteriaInput>>;
1674
1676
  /** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
1675
1677
  or?: InputMaybe<Array<ContentCriteriaLevelInput>>;
1678
+ /** Filter by similar contents. */
1679
+ similarContents?: InputMaybe<Array<EntityReferenceInput>>;
1676
1680
  /** Filter by content types. */
1677
1681
  types?: InputMaybe<Array<ContentTypes>>;
1678
1682
  /** Filter by workflows. */
@@ -1799,7 +1803,7 @@ export type ContentFilter = {
1799
1803
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1800
1804
  /** Filter by collections. */
1801
1805
  collections?: InputMaybe<Array<EntityReferenceFilter>>;
1802
- /** Filter by similar contents. */
1806
+ /** Filter by contents. */
1803
1807
  contents?: InputMaybe<Array<EntityReferenceFilter>>;
1804
1808
  /** Filter by creation date recent timespan. For example, a timespan of one day will return content(s) created in the last 24 hours. */
1805
1809
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
@@ -1825,7 +1829,7 @@ export type ContentFilter = {
1825
1829
  id?: InputMaybe<Scalars['ID']['input']>;
1826
1830
  /** Filter contents by their external identifier. */
1827
1831
  identifier?: InputMaybe<Scalars['String']['input']>;
1828
- /** Filter content(s) by searching for similar Base64-encoded image. Accepts Base64-encoded image as string, which is used to generate image embeddings for similarity search. */
1832
+ /** Filter by searching for similar Base64-encoded image. Accepts Base64-encoded image as string, which is used to generate image embeddings for similarity search. */
1829
1833
  imageData?: InputMaybe<Scalars['String']['input']>;
1830
1834
  /** MIME type of Base64-encoded image for similarity search. */
1831
1835
  imageMimeType?: InputMaybe<Scalars['String']['input']>;
@@ -1855,6 +1859,8 @@ export type ContentFilter = {
1855
1859
  search?: InputMaybe<Scalars['String']['input']>;
1856
1860
  /** The type of search to be used. Defaults to Vector. */
1857
1861
  searchType?: InputMaybe<SearchTypes>;
1862
+ /** Filter by similar contents. */
1863
+ similarContents?: InputMaybe<Array<EntityReferenceFilter>>;
1858
1864
  /** Filter content(s) by their states. */
1859
1865
  states?: InputMaybe<Array<EntityState>>;
1860
1866
  /** Filter by content types. */
@@ -2201,7 +2207,7 @@ export type ConversationDetails = {
2201
2207
  };
2202
2208
  /** Represents a filter for conversations. */
2203
2209
  export type ConversationFilter = {
2204
- /** Filter by similar conversations. */
2210
+ /** Filter by conversations. */
2205
2211
  conversations?: InputMaybe<Array<EntityReferenceFilter>>;
2206
2212
  /** Filter by creation date recent timespan. For example, a timespan of one day will return conversation(s) created in the last 24 hours. */
2207
2213
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
@@ -2227,6 +2233,8 @@ export type ConversationFilter = {
2227
2233
  search?: InputMaybe<Scalars['String']['input']>;
2228
2234
  /** The type of search to be used. Defaults to Vector. */
2229
2235
  searchType?: InputMaybe<SearchTypes>;
2236
+ /** Filter by similar conversations. */
2237
+ similarConversations?: InputMaybe<Array<EntityReferenceFilter>>;
2230
2238
  /** Filter conversation(s) by their states. */
2231
2239
  states?: InputMaybe<Array<EntityState>>;
2232
2240
  /** Filter by conversation types. */
@@ -3414,8 +3422,6 @@ export type EventFilter = {
3414
3422
  direction?: InputMaybe<OrderDirectionTypes>;
3415
3423
  /** Filter by event end date range. */
3416
3424
  endDateRange?: InputMaybe<DateRangeFilter>;
3417
- /** Filter by similar events. */
3418
- events?: InputMaybe<Array<EntityReferenceFilter>>;
3419
3425
  /** Filter by observable H3 index. */
3420
3426
  h3?: InputMaybe<H3Filter>;
3421
3427
  /** Filter event(s) by their unique ID. */
@@ -3448,6 +3454,8 @@ export type EventFilter = {
3448
3454
  search?: InputMaybe<Scalars['String']['input']>;
3449
3455
  /** The type of search to be used. Defaults to Vector. */
3450
3456
  searchType?: InputMaybe<SearchTypes>;
3457
+ /** Filter by similar events. */
3458
+ similarEvents?: InputMaybe<Array<EntityReferenceFilter>>;
3451
3459
  /** Filter by event start date range. */
3452
3460
  startDateRange?: InputMaybe<DateRangeFilter>;
3453
3461
  /** Filter event(s) by their states. */
@@ -5508,8 +5516,6 @@ export type MedicalConditionFilter = {
5508
5516
  address?: InputMaybe<AddressFilter>;
5509
5517
  /** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
5510
5518
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
5511
- /** Filter by similar medical conditions. */
5512
- conditions?: InputMaybe<Array<EntityReferenceFilter>>;
5513
5519
  /** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcondition(s) created in the last 24 hours. */
5514
5520
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5515
5521
  /** Filter medicalcondition(s) by their creation date range. */
@@ -5538,6 +5544,8 @@ export type MedicalConditionFilter = {
5538
5544
  search?: InputMaybe<Scalars['String']['input']>;
5539
5545
  /** The type of search to be used. Defaults to Vector. */
5540
5546
  searchType?: InputMaybe<SearchTypes>;
5547
+ /** Filter by similar medical conditions. */
5548
+ similarConditions?: InputMaybe<Array<EntityReferenceFilter>>;
5541
5549
  /** Filter medicalcondition(s) by their states. */
5542
5550
  states?: InputMaybe<Array<EntityState>>;
5543
5551
  };
@@ -5651,8 +5659,6 @@ export type MedicalContraindicationFilter = {
5651
5659
  address?: InputMaybe<AddressFilter>;
5652
5660
  /** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
5653
5661
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
5654
- /** Filter by similar medical contraindications. */
5655
- contraindications?: InputMaybe<Array<EntityReferenceFilter>>;
5656
5662
  /** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) created in the last 24 hours. */
5657
5663
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5658
5664
  /** Filter medicalcontraindication(s) by their creation date range. */
@@ -5681,6 +5687,8 @@ export type MedicalContraindicationFilter = {
5681
5687
  search?: InputMaybe<Scalars['String']['input']>;
5682
5688
  /** The type of search to be used. Defaults to Vector. */
5683
5689
  searchType?: InputMaybe<SearchTypes>;
5690
+ /** Filter by similar medical contraindications. */
5691
+ similarContraindications?: InputMaybe<Array<EntityReferenceFilter>>;
5684
5692
  /** Filter medicalcontraindication(s) by their states. */
5685
5693
  states?: InputMaybe<Array<EntityState>>;
5686
5694
  };
@@ -5798,8 +5806,6 @@ export type MedicalDeviceFilter = {
5798
5806
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5799
5807
  /** Filter medicaldevice(s) by their creation date range. */
5800
5808
  creationDateRange?: InputMaybe<DateRangeFilter>;
5801
- /** Filter by similar medical devices. */
5802
- devices?: InputMaybe<Array<EntityReferenceFilter>>;
5803
5809
  /** The sort direction for query results. */
5804
5810
  direction?: InputMaybe<OrderDirectionTypes>;
5805
5811
  /** Filter by observable H3 index. */
@@ -5824,6 +5830,8 @@ export type MedicalDeviceFilter = {
5824
5830
  search?: InputMaybe<Scalars['String']['input']>;
5825
5831
  /** The type of search to be used. Defaults to Vector. */
5826
5832
  searchType?: InputMaybe<SearchTypes>;
5833
+ /** Filter by similar medical devices. */
5834
+ similarDevices?: InputMaybe<Array<EntityReferenceFilter>>;
5827
5835
  /** Filter medicaldevice(s) by their states. */
5828
5836
  states?: InputMaybe<Array<EntityState>>;
5829
5837
  };
@@ -5973,8 +5981,6 @@ export type MedicalDrugClassFilter = {
5973
5981
  address?: InputMaybe<AddressFilter>;
5974
5982
  /** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
5975
5983
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
5976
- /** Filter by similar medical drug classes. */
5977
- classes?: InputMaybe<Array<EntityReferenceFilter>>;
5978
5984
  /** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) created in the last 24 hours. */
5979
5985
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5980
5986
  /** Filter medicaldrugclass(s) by their creation date range. */
@@ -6003,6 +6009,8 @@ export type MedicalDrugClassFilter = {
6003
6009
  search?: InputMaybe<Scalars['String']['input']>;
6004
6010
  /** The type of search to be used. Defaults to Vector. */
6005
6011
  searchType?: InputMaybe<SearchTypes>;
6012
+ /** Filter by similar medical drug classes. */
6013
+ similarClasses?: InputMaybe<Array<EntityReferenceFilter>>;
6006
6014
  /** Filter medicaldrugclass(s) by their states. */
6007
6015
  states?: InputMaybe<Array<EntityState>>;
6008
6016
  };
@@ -6086,8 +6094,6 @@ export type MedicalDrugFilter = {
6086
6094
  creationDateRange?: InputMaybe<DateRangeFilter>;
6087
6095
  /** The sort direction for query results. */
6088
6096
  direction?: InputMaybe<OrderDirectionTypes>;
6089
- /** Filter by similar medical drugs. */
6090
- drugs?: InputMaybe<Array<EntityReferenceFilter>>;
6091
6097
  /** Filter by observable H3 index. */
6092
6098
  h3?: InputMaybe<H3Filter>;
6093
6099
  /** Filter medicaldrug(s) by their unique ID. */
@@ -6110,6 +6116,8 @@ export type MedicalDrugFilter = {
6110
6116
  search?: InputMaybe<Scalars['String']['input']>;
6111
6117
  /** The type of search to be used. Defaults to Vector. */
6112
6118
  searchType?: InputMaybe<SearchTypes>;
6119
+ /** Filter by similar medical drugs. */
6120
+ similarDrugs?: InputMaybe<Array<EntityReferenceFilter>>;
6113
6121
  /** Filter medicaldrug(s) by their states. */
6114
6122
  states?: InputMaybe<Array<EntityState>>;
6115
6123
  };
@@ -6229,8 +6237,6 @@ export type MedicalGuidelineFilter = {
6229
6237
  creationDateRange?: InputMaybe<DateRangeFilter>;
6230
6238
  /** The sort direction for query results. */
6231
6239
  direction?: InputMaybe<OrderDirectionTypes>;
6232
- /** Filter by similar medical guidelines. */
6233
- guidelines?: InputMaybe<Array<EntityReferenceFilter>>;
6234
6240
  /** Filter by observable H3 index. */
6235
6241
  h3?: InputMaybe<H3Filter>;
6236
6242
  /** Filter medicalguideline(s) by their unique ID. */
@@ -6253,6 +6259,8 @@ export type MedicalGuidelineFilter = {
6253
6259
  search?: InputMaybe<Scalars['String']['input']>;
6254
6260
  /** The type of search to be used. Defaults to Vector. */
6255
6261
  searchType?: InputMaybe<SearchTypes>;
6262
+ /** Filter by similar medical guidelines. */
6263
+ similarGuidelines?: InputMaybe<Array<EntityReferenceFilter>>;
6256
6264
  /** Filter medicalguideline(s) by their states. */
6257
6265
  states?: InputMaybe<Array<EntityState>>;
6258
6266
  };
@@ -6376,8 +6384,6 @@ export type MedicalIndicationFilter = {
6376
6384
  h3?: InputMaybe<H3Filter>;
6377
6385
  /** Filter medicalindication(s) by their unique ID. */
6378
6386
  id?: InputMaybe<Scalars['ID']['input']>;
6379
- /** Filter by similar medical indications. */
6380
- indications?: InputMaybe<Array<EntityReferenceFilter>>;
6381
6387
  /** Limit the number of medicalindication(s) to be returned. Defaults to 100. */
6382
6388
  limit?: InputMaybe<Scalars['Int']['input']>;
6383
6389
  /** Filter by observable geo-location. */
@@ -6396,6 +6402,8 @@ export type MedicalIndicationFilter = {
6396
6402
  search?: InputMaybe<Scalars['String']['input']>;
6397
6403
  /** The type of search to be used. Defaults to Vector. */
6398
6404
  searchType?: InputMaybe<SearchTypes>;
6405
+ /** Filter by similar medical indications. */
6406
+ similarIndications?: InputMaybe<Array<EntityReferenceFilter>>;
6399
6407
  /** Filter medicalindication(s) by their states. */
6400
6408
  states?: InputMaybe<Array<EntityState>>;
6401
6409
  };
@@ -6531,14 +6539,14 @@ export type MedicalProcedureFilter = {
6531
6539
  offset?: InputMaybe<Scalars['Int']['input']>;
6532
6540
  /** The sort order for query results. */
6533
6541
  orderBy?: InputMaybe<OrderByTypes>;
6534
- /** Filter by similar medical procedures. */
6535
- procedures?: InputMaybe<Array<EntityReferenceFilter>>;
6536
6542
  /** The query syntax for the search text. Defaults to Simple. */
6537
6543
  queryType?: InputMaybe<SearchQueryTypes>;
6538
6544
  /** Filter medicalprocedure(s) by searching for similar text. */
6539
6545
  search?: InputMaybe<Scalars['String']['input']>;
6540
6546
  /** The type of search to be used. Defaults to Vector. */
6541
6547
  searchType?: InputMaybe<SearchTypes>;
6548
+ /** Filter by similar medical procedures. */
6549
+ similarProcedures?: InputMaybe<Array<EntityReferenceFilter>>;
6542
6550
  /** Filter medicalprocedure(s) by their states. */
6543
6551
  states?: InputMaybe<Array<EntityState>>;
6544
6552
  };
@@ -6682,10 +6690,10 @@ export type MedicalStudyFilter = {
6682
6690
  search?: InputMaybe<Scalars['String']['input']>;
6683
6691
  /** The type of search to be used. Defaults to Vector. */
6684
6692
  searchType?: InputMaybe<SearchTypes>;
6693
+ /** Filter by similar medical studies. */
6694
+ similarStudies?: InputMaybe<Array<EntityReferenceFilter>>;
6685
6695
  /** Filter medicalstudy(s) by their states. */
6686
6696
  states?: InputMaybe<Array<EntityState>>;
6687
- /** Filter by similar medical studies. */
6688
- studies?: InputMaybe<Array<EntityReferenceFilter>>;
6689
6697
  };
6690
6698
  /** Represents a medical study. */
6691
6699
  export type MedicalStudyInput = {
@@ -6831,10 +6839,10 @@ export type MedicalTestFilter = {
6831
6839
  search?: InputMaybe<Scalars['String']['input']>;
6832
6840
  /** The type of search to be used. Defaults to Vector. */
6833
6841
  searchType?: InputMaybe<SearchTypes>;
6842
+ /** Filter by similar medical tests. */
6843
+ similarTests?: InputMaybe<Array<EntityReferenceFilter>>;
6834
6844
  /** Filter medicaltest(s) by their states. */
6835
6845
  states?: InputMaybe<Array<EntityState>>;
6836
- /** Filter by similar medical tests. */
6837
- tests?: InputMaybe<Array<EntityReferenceFilter>>;
6838
6846
  };
6839
6847
  /** Represents a medical test. */
6840
6848
  export type MedicalTestInput = {
@@ -6974,10 +6982,10 @@ export type MedicalTherapyFilter = {
6974
6982
  search?: InputMaybe<Scalars['String']['input']>;
6975
6983
  /** The type of search to be used. Defaults to Vector. */
6976
6984
  searchType?: InputMaybe<SearchTypes>;
6985
+ /** Filter by similar medical therapies. */
6986
+ similarTherapies?: InputMaybe<Array<EntityReferenceFilter>>;
6977
6987
  /** Filter medicaltherapy(s) by their states. */
6978
6988
  states?: InputMaybe<Array<EntityState>>;
6979
- /** Filter by similar medical therapies. */
6980
- therapies?: InputMaybe<Array<EntityReferenceFilter>>;
6981
6989
  };
6982
6990
  /** Represents a medical therapy. */
6983
6991
  export type MedicalTherapyInput = {
@@ -9484,14 +9492,14 @@ export type OrganizationFilter = {
9484
9492
  offset?: InputMaybe<Scalars['Int']['input']>;
9485
9493
  /** The sort order for query results. */
9486
9494
  orderBy?: InputMaybe<OrderByTypes>;
9487
- /** Filter by similar organizations. */
9488
- organizations?: InputMaybe<Array<EntityReferenceFilter>>;
9489
9495
  /** The query syntax for the search text. Defaults to Simple. */
9490
9496
  queryType?: InputMaybe<SearchQueryTypes>;
9491
9497
  /** Filter organization(s) by searching for similar text. */
9492
9498
  search?: InputMaybe<Scalars['String']['input']>;
9493
9499
  /** The type of search to be used. Defaults to Vector. */
9494
9500
  searchType?: InputMaybe<SearchTypes>;
9501
+ /** Filter by similar organizations. */
9502
+ similarOrganizations?: InputMaybe<Array<EntityReferenceFilter>>;
9495
9503
  /** Filter organization(s) by their states. */
9496
9504
  states?: InputMaybe<Array<EntityState>>;
9497
9505
  /** Filter by organization URI. */
@@ -9731,8 +9739,6 @@ export type PersonFilter = {
9731
9739
  offset?: InputMaybe<Scalars['Int']['input']>;
9732
9740
  /** The sort order for query results. */
9733
9741
  orderBy?: InputMaybe<OrderByTypes>;
9734
- /** Filter by similar persons. */
9735
- persons?: InputMaybe<Array<EntityReferenceFilter>>;
9736
9742
  /** Filter by the phone number of the person. */
9737
9743
  phoneNumber?: InputMaybe<Scalars['String']['input']>;
9738
9744
  /** The query syntax for the search text. Defaults to Simple. */
@@ -9741,6 +9747,8 @@ export type PersonFilter = {
9741
9747
  search?: InputMaybe<Scalars['String']['input']>;
9742
9748
  /** The type of search to be used. Defaults to Vector. */
9743
9749
  searchType?: InputMaybe<SearchTypes>;
9750
+ /** Filter by similar persons. */
9751
+ similarPersons?: InputMaybe<Array<EntityReferenceFilter>>;
9744
9752
  /** Filter person(s) by their states. */
9745
9753
  states?: InputMaybe<Array<EntityState>>;
9746
9754
  /** Filter by person URI. */
@@ -9930,14 +9938,14 @@ export type PlaceFilter = {
9930
9938
  offset?: InputMaybe<Scalars['Int']['input']>;
9931
9939
  /** The sort order for query results. */
9932
9940
  orderBy?: InputMaybe<OrderByTypes>;
9933
- /** Filter by similar places. */
9934
- places?: InputMaybe<Array<EntityReferenceFilter>>;
9935
9941
  /** The query syntax for the search text. Defaults to Simple. */
9936
9942
  queryType?: InputMaybe<SearchQueryTypes>;
9937
9943
  /** Filter place(s) by searching for similar text. */
9938
9944
  search?: InputMaybe<Scalars['String']['input']>;
9939
9945
  /** The type of search to be used. Defaults to Vector. */
9940
9946
  searchType?: InputMaybe<SearchTypes>;
9947
+ /** Filter by similar places. */
9948
+ similarPlaces?: InputMaybe<Array<EntityReferenceFilter>>;
9941
9949
  /** Filter place(s) by their states. */
9942
9950
  states?: InputMaybe<Array<EntityState>>;
9943
9951
  };
@@ -10199,8 +10207,6 @@ export type ProductFilter = {
10199
10207
  orderBy?: InputMaybe<OrderByTypes>;
10200
10208
  /** Filter by production date range. */
10201
10209
  productionDateRange?: InputMaybe<DateRangeFilter>;
10202
- /** Filter by similar products. */
10203
- products?: InputMaybe<Array<EntityReferenceFilter>>;
10204
10210
  /** The query syntax for the search text. Defaults to Simple. */
10205
10211
  queryType?: InputMaybe<SearchQueryTypes>;
10206
10212
  /** Filter by release date range. */
@@ -10209,6 +10215,8 @@ export type ProductFilter = {
10209
10215
  search?: InputMaybe<Scalars['String']['input']>;
10210
10216
  /** The type of search to be used. Defaults to Vector. */
10211
10217
  searchType?: InputMaybe<SearchTypes>;
10218
+ /** Filter by similar products. */
10219
+ similarProducts?: InputMaybe<Array<EntityReferenceFilter>>;
10212
10220
  /** Filter by product SKU. */
10213
10221
  sku?: InputMaybe<Scalars['String']['input']>;
10214
10222
  /** Filter product(s) by their states. */
@@ -11731,12 +11739,12 @@ export type RepoFilter = {
11731
11739
  orderBy?: InputMaybe<OrderByTypes>;
11732
11740
  /** The query syntax for the search text. Defaults to Simple. */
11733
11741
  queryType?: InputMaybe<SearchQueryTypes>;
11734
- /** Filter by similar code repositories. */
11735
- repos?: InputMaybe<Array<EntityReferenceFilter>>;
11736
11742
  /** Filter repo(s) by searching for similar text. */
11737
11743
  search?: InputMaybe<Scalars['String']['input']>;
11738
11744
  /** The type of search to be used. Defaults to Vector. */
11739
11745
  searchType?: InputMaybe<SearchTypes>;
11746
+ /** Filter by similar code repositories. */
11747
+ similarRepos?: InputMaybe<Array<EntityReferenceFilter>>;
11740
11748
  /** Filter repo(s) by their states. */
11741
11749
  states?: InputMaybe<Array<EntityState>>;
11742
11750
  };
@@ -12353,7 +12361,7 @@ export type SoftwareFilter = {
12353
12361
  /** The type of search to be used. Defaults to Vector. */
12354
12362
  searchType?: InputMaybe<SearchTypes>;
12355
12363
  /** Filter by similar software. */
12356
- softwares?: InputMaybe<Array<EntityReferenceFilter>>;
12364
+ similarSoftwares?: InputMaybe<Array<EntityReferenceFilter>>;
12357
12365
  /** Filter software(s) by their states. */
12358
12366
  states?: InputMaybe<Array<EntityState>>;
12359
12367
  };
@@ -13700,6 +13708,10 @@ export type GetAlertQuery = {
13700
13708
  from?: any | null;
13701
13709
  to?: any | null;
13702
13710
  } | null;
13711
+ similarContents?: Array<{
13712
+ __typename?: 'EntityReference';
13713
+ id: string;
13714
+ }> | null;
13703
13715
  contents?: Array<{
13704
13716
  __typename?: 'EntityReference';
13705
13717
  id: string;
@@ -13874,6 +13886,10 @@ export type QueryAlertsQuery = {
13874
13886
  from?: any | null;
13875
13887
  to?: any | null;
13876
13888
  } | null;
13889
+ similarContents?: Array<{
13890
+ __typename?: 'EntityReference';
13891
+ id: string;
13892
+ }> | null;
13877
13893
  contents?: Array<{
13878
13894
  __typename?: 'EntityReference';
13879
13895
  id: string;
@@ -17538,6 +17554,10 @@ export type GetConversationQuery = {
17538
17554
  from?: any | null;
17539
17555
  to?: any | null;
17540
17556
  } | null;
17557
+ similarContents?: Array<{
17558
+ __typename?: 'EntityReference';
17559
+ id: string;
17560
+ }> | null;
17541
17561
  contents?: Array<{
17542
17562
  __typename?: 'EntityReference';
17543
17563
  id: string;
@@ -17642,6 +17662,10 @@ export type GetConversationQuery = {
17642
17662
  from?: any | null;
17643
17663
  to?: any | null;
17644
17664
  } | null;
17665
+ similarContents?: Array<{
17666
+ __typename?: 'EntityReference';
17667
+ id: string;
17668
+ }> | null;
17645
17669
  contents?: Array<{
17646
17670
  __typename?: 'EntityReference';
17647
17671
  id: string;
@@ -18516,6 +18540,10 @@ export type QueryConversationsQuery = {
18516
18540
  from?: any | null;
18517
18541
  to?: any | null;
18518
18542
  } | null;
18543
+ similarContents?: Array<{
18544
+ __typename?: 'EntityReference';
18545
+ id: string;
18546
+ }> | null;
18519
18547
  contents?: Array<{
18520
18548
  __typename?: 'EntityReference';
18521
18549
  id: string;
@@ -18620,6 +18648,10 @@ export type QueryConversationsQuery = {
18620
18648
  from?: any | null;
18621
18649
  to?: any | null;
18622
18650
  } | null;
18651
+ similarContents?: Array<{
18652
+ __typename?: 'EntityReference';
18653
+ id: string;
18654
+ }> | null;
18623
18655
  contents?: Array<{
18624
18656
  __typename?: 'EntityReference';
18625
18657
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250423001",
3
+ "version": "1.0.20250426001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",