graphlit-client 1.0.20250313001 → 1.0.20250315002

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.
@@ -156,7 +156,7 @@ export type AlertFilter = {
156
156
  direction?: InputMaybe<OrderDirectionTypes>;
157
157
  /** Filter alert(s) by their unique ID. */
158
158
  id?: InputMaybe<Scalars['ID']['input']>;
159
- /** Limit the number of alert(s) to be returned. */
159
+ /** Limit the number of alert(s) to be returned. Defaults to 100. */
160
160
  limit?: InputMaybe<Scalars['Int']['input']>;
161
161
  /** Filter alert(s) by their name. */
162
162
  name?: InputMaybe<Scalars['String']['input']>;
@@ -164,7 +164,7 @@ export type AlertFilter = {
164
164
  offset?: InputMaybe<Scalars['Int']['input']>;
165
165
  /** The sort order for query results. */
166
166
  orderBy?: InputMaybe<OrderByTypes>;
167
- /** Filter alert(s) by searching for specific text. */
167
+ /** Filter alert(s) by searching for similar text. */
168
168
  search?: InputMaybe<Scalars['String']['input']>;
169
169
  /** Filter alert(s) by their states. */
170
170
  states?: InputMaybe<Array<EntityState>>;
@@ -1050,7 +1050,7 @@ export type CategoryFilter = {
1050
1050
  direction?: InputMaybe<OrderDirectionTypes>;
1051
1051
  /** Filter category(s) by their unique ID. */
1052
1052
  id?: InputMaybe<Scalars['ID']['input']>;
1053
- /** Limit the number of category(s) to be returned. */
1053
+ /** Limit the number of category(s) to be returned. Defaults to 100. */
1054
1054
  limit?: InputMaybe<Scalars['Int']['input']>;
1055
1055
  /** Filter category(s) by their name. */
1056
1056
  name?: InputMaybe<Scalars['String']['input']>;
@@ -1058,7 +1058,7 @@ export type CategoryFilter = {
1058
1058
  offset?: InputMaybe<Scalars['Int']['input']>;
1059
1059
  /** The sort order for query results. */
1060
1060
  orderBy?: InputMaybe<OrderByTypes>;
1061
- /** Filter category(s) by searching for specific text. */
1061
+ /** Filter category(s) by searching for similar text. */
1062
1062
  search?: InputMaybe<Scalars['String']['input']>;
1063
1063
  /** Filter category(s) by their states. */
1064
1064
  states?: InputMaybe<Array<EntityState>>;
@@ -1299,7 +1299,7 @@ export type CollectionFilter = {
1299
1299
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
1300
1300
  /** Filter collection(s) by their unique ID. */
1301
1301
  id?: InputMaybe<Scalars['ID']['input']>;
1302
- /** Limit the number of collection(s) to be returned. */
1302
+ /** Limit the number of collection(s) to be returned. Defaults to 100. */
1303
1303
  limit?: InputMaybe<Scalars['Int']['input']>;
1304
1304
  /** Filter collection(s) by their name. */
1305
1305
  name?: InputMaybe<Scalars['String']['input']>;
@@ -1307,7 +1307,7 @@ export type CollectionFilter = {
1307
1307
  offset?: InputMaybe<Scalars['Int']['input']>;
1308
1308
  /** The sort order for query results. */
1309
1309
  orderBy?: InputMaybe<OrderByTypes>;
1310
- /** Filter collection(s) by searching for specific text. */
1310
+ /** Filter collection(s) by searching for similar text. */
1311
1311
  search?: InputMaybe<Scalars['String']['input']>;
1312
1312
  /** Filter collection(s) by their states. */
1313
1313
  states?: InputMaybe<Array<EntityState>>;
@@ -1381,7 +1381,7 @@ export type ConnectorFilter = {
1381
1381
  direction?: InputMaybe<OrderDirectionTypes>;
1382
1382
  /** Filter connector(s) by their unique ID. */
1383
1383
  id?: InputMaybe<Scalars['ID']['input']>;
1384
- /** Limit the number of connector(s) to be returned. */
1384
+ /** Limit the number of connector(s) to be returned. Defaults to 100. */
1385
1385
  limit?: InputMaybe<Scalars['Int']['input']>;
1386
1386
  /** Filter connector(s) by their name. */
1387
1387
  name?: InputMaybe<Scalars['String']['input']>;
@@ -1389,7 +1389,7 @@ export type ConnectorFilter = {
1389
1389
  offset?: InputMaybe<Scalars['Int']['input']>;
1390
1390
  /** The sort order for query results. */
1391
1391
  orderBy?: InputMaybe<OrderByTypes>;
1392
- /** Filter connector(s) by searching for specific text. */
1392
+ /** Filter connector(s) by searching for similar text. */
1393
1393
  search?: InputMaybe<Scalars['String']['input']>;
1394
1394
  /** Filter connector(s) by their states. */
1395
1395
  states?: InputMaybe<Array<EntityState>>;
@@ -1819,15 +1819,19 @@ export type ContentFilter = {
1819
1819
  id?: InputMaybe<Scalars['ID']['input']>;
1820
1820
  /** Filter contents by their external identifier. */
1821
1821
  identifier?: InputMaybe<Scalars['String']['input']>;
1822
+ /** 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. */
1823
+ imageData?: InputMaybe<Scalars['String']['input']>;
1824
+ /** MIME type of Base64-encoded image for similarity search. */
1825
+ imageMimeType?: InputMaybe<Scalars['String']['input']>;
1822
1826
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
1823
1827
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1824
- /** Limit the number of content(s) to be returned. */
1828
+ /** Limit the number of content(s) to be returned. Defaults to 100. */
1825
1829
  limit?: InputMaybe<Scalars['Int']['input']>;
1826
1830
  /** Filter by geo-location. */
1827
1831
  location?: InputMaybe<PointFilter>;
1828
1832
  /** Filter content(s) by their name. */
1829
1833
  name?: InputMaybe<Scalars['String']['input']>;
1830
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
1834
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
1831
1835
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
1832
1836
  /** Filter by observations. */
1833
1837
  observations?: InputMaybe<Array<ObservationReferenceFilter>>;
@@ -1841,7 +1845,7 @@ export type ContentFilter = {
1841
1845
  originalDateRange?: InputMaybe<DateRangeFilter>;
1842
1846
  /** The query syntax for the search text. Defaults to Simple. */
1843
1847
  queryType?: InputMaybe<SearchQueryTypes>;
1844
- /** Filter content(s) by searching for specific text. */
1848
+ /** Filter content(s) by searching for similar text. */
1845
1849
  search?: InputMaybe<Scalars['String']['input']>;
1846
1850
  /** The type of search to be used. Defaults to Vector. */
1847
1851
  searchType?: InputMaybe<SearchTypes>;
@@ -2185,11 +2189,11 @@ export type ConversationFilter = {
2185
2189
  direction?: InputMaybe<OrderDirectionTypes>;
2186
2190
  /** Filter conversation(s) by their unique ID. */
2187
2191
  id?: InputMaybe<Scalars['ID']['input']>;
2188
- /** Limit the number of conversation(s) to be returned. */
2192
+ /** Limit the number of conversation(s) to be returned. Defaults to 100. */
2189
2193
  limit?: InputMaybe<Scalars['Int']['input']>;
2190
2194
  /** Filter conversation(s) by their name. */
2191
2195
  name?: InputMaybe<Scalars['String']['input']>;
2192
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
2196
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
2193
2197
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
2194
2198
  /** Skip the specified number of conversation(s) from the beginning of the result set. Only supported on keyword search. */
2195
2199
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -2197,7 +2201,7 @@ export type ConversationFilter = {
2197
2201
  orderBy?: InputMaybe<OrderByTypes>;
2198
2202
  /** The query syntax for the search text. Defaults to Simple. */
2199
2203
  queryType?: InputMaybe<SearchQueryTypes>;
2200
- /** Filter conversation(s) by searching for specific text. */
2204
+ /** Filter conversation(s) by searching for similar text. */
2201
2205
  search?: InputMaybe<Scalars['String']['input']>;
2202
2206
  /** The type of search to be used. Defaults to Vector. */
2203
2207
  searchType?: InputMaybe<SearchTypes>;
@@ -3125,9 +3129,7 @@ export declare enum EntityExtractionServiceTypes {
3125
3129
  * OpenAI Image
3126
3130
  * @deprecated Use MODEL_IMAGE instead.
3127
3131
  */
3128
- OpenAiImage = "OPEN_AI_IMAGE",
3129
- /** Roboflow Image */
3130
- RoboflowImage = "ROBOFLOW_IMAGE"
3132
+ OpenAiImage = "OPEN_AI_IMAGE"
3131
3133
  }
3132
3134
  /** Represents an entity reference. */
3133
3135
  export type EntityReference = {
@@ -3394,7 +3396,7 @@ export type EventFilter = {
3394
3396
  id?: InputMaybe<Scalars['ID']['input']>;
3395
3397
  /** Filter by if the event is accessible for free. */
3396
3398
  isAccessibleForFree?: InputMaybe<Scalars['Boolean']['input']>;
3397
- /** Limit the number of event(s) to be returned. */
3399
+ /** Limit the number of event(s) to be returned. Defaults to 100. */
3398
3400
  limit?: InputMaybe<Scalars['Int']['input']>;
3399
3401
  /** Filter by observable geo-location. */
3400
3402
  location?: InputMaybe<PointFilter>;
@@ -3404,7 +3406,7 @@ export type EventFilter = {
3404
3406
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
3405
3407
  /** Filter event(s) by their name. */
3406
3408
  name?: InputMaybe<Scalars['String']['input']>;
3407
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
3409
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
3408
3410
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
3409
3411
  /** Skip the specified number of event(s) from the beginning of the result set. Only supported on keyword search. */
3410
3412
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -3416,7 +3418,7 @@ export type EventFilter = {
3416
3418
  priceCurrency?: InputMaybe<Scalars['String']['input']>;
3417
3419
  /** The query syntax for the search text. Defaults to Simple. */
3418
3420
  queryType?: InputMaybe<SearchQueryTypes>;
3419
- /** Filter event(s) by searching for specific text. */
3421
+ /** Filter event(s) by searching for similar text. */
3420
3422
  search?: InputMaybe<Scalars['String']['input']>;
3421
3423
  /** The type of search to be used. Defaults to Vector. */
3422
3424
  searchType?: InputMaybe<SearchTypes>;
@@ -3683,7 +3685,7 @@ export type FeedFilter = {
3683
3685
  direction?: InputMaybe<OrderDirectionTypes>;
3684
3686
  /** Filter feed(s) by their unique ID. */
3685
3687
  id?: InputMaybe<Scalars['ID']['input']>;
3686
- /** Limit the number of feed(s) to be returned. */
3688
+ /** Limit the number of feed(s) to be returned. Defaults to 100. */
3687
3689
  limit?: InputMaybe<Scalars['Int']['input']>;
3688
3690
  /** Filter feed(s) by their name. */
3689
3691
  name?: InputMaybe<Scalars['String']['input']>;
@@ -3691,7 +3693,7 @@ export type FeedFilter = {
3691
3693
  offset?: InputMaybe<Scalars['Int']['input']>;
3692
3694
  /** The sort order for query results. */
3693
3695
  orderBy?: InputMaybe<OrderByTypes>;
3694
- /** Filter feed(s) by searching for specific text. */
3696
+ /** Filter feed(s) by searching for similar text. */
3695
3697
  search?: InputMaybe<Scalars['String']['input']>;
3696
3698
  /** Filter feed(s) by their states. */
3697
3699
  states?: InputMaybe<Array<EntityState>>;
@@ -5061,7 +5063,7 @@ export type LabelFilter = {
5061
5063
  direction?: InputMaybe<OrderDirectionTypes>;
5062
5064
  /** Filter label(s) by their unique ID. */
5063
5065
  id?: InputMaybe<Scalars['ID']['input']>;
5064
- /** Limit the number of label(s) to be returned. */
5066
+ /** Limit the number of label(s) to be returned. Defaults to 100. */
5065
5067
  limit?: InputMaybe<Scalars['Int']['input']>;
5066
5068
  /** Filter label(s) by their name. */
5067
5069
  name?: InputMaybe<Scalars['String']['input']>;
@@ -5069,7 +5071,7 @@ export type LabelFilter = {
5069
5071
  offset?: InputMaybe<Scalars['Int']['input']>;
5070
5072
  /** The sort order for query results. */
5071
5073
  orderBy?: InputMaybe<OrderByTypes>;
5072
- /** Filter label(s) by searching for specific text. */
5074
+ /** Filter label(s) by searching for similar text. */
5073
5075
  search?: InputMaybe<Scalars['String']['input']>;
5074
5076
  /** Filter label(s) by their states. */
5075
5077
  states?: InputMaybe<Array<EntityState>>;
@@ -5411,13 +5413,13 @@ export type MedicalConditionFilter = {
5411
5413
  h3?: InputMaybe<H3Filter>;
5412
5414
  /** Filter medicalcondition(s) by their unique ID. */
5413
5415
  id?: InputMaybe<Scalars['ID']['input']>;
5414
- /** Limit the number of medicalcondition(s) to be returned. */
5416
+ /** Limit the number of medicalcondition(s) to be returned. Defaults to 100. */
5415
5417
  limit?: InputMaybe<Scalars['Int']['input']>;
5416
5418
  /** Filter by observable geo-location. */
5417
5419
  location?: InputMaybe<PointFilter>;
5418
5420
  /** Filter medicalcondition(s) by their name. */
5419
5421
  name?: InputMaybe<Scalars['String']['input']>;
5420
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5422
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5421
5423
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5422
5424
  /** Skip the specified number of medicalcondition(s) from the beginning of the result set. Only supported on keyword search. */
5423
5425
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5425,7 +5427,7 @@ export type MedicalConditionFilter = {
5425
5427
  orderBy?: InputMaybe<OrderByTypes>;
5426
5428
  /** The query syntax for the search text. Defaults to Simple. */
5427
5429
  queryType?: InputMaybe<SearchQueryTypes>;
5428
- /** Filter medicalcondition(s) by searching for specific text. */
5430
+ /** Filter medicalcondition(s) by searching for similar text. */
5429
5431
  search?: InputMaybe<Scalars['String']['input']>;
5430
5432
  /** The type of search to be used. Defaults to Vector. */
5431
5433
  searchType?: InputMaybe<SearchTypes>;
@@ -5554,13 +5556,13 @@ export type MedicalContraindicationFilter = {
5554
5556
  h3?: InputMaybe<H3Filter>;
5555
5557
  /** Filter medicalcontraindication(s) by their unique ID. */
5556
5558
  id?: InputMaybe<Scalars['ID']['input']>;
5557
- /** Limit the number of medicalcontraindication(s) to be returned. */
5559
+ /** Limit the number of medicalcontraindication(s) to be returned. Defaults to 100. */
5558
5560
  limit?: InputMaybe<Scalars['Int']['input']>;
5559
5561
  /** Filter by observable geo-location. */
5560
5562
  location?: InputMaybe<PointFilter>;
5561
5563
  /** Filter medicalcontraindication(s) by their name. */
5562
5564
  name?: InputMaybe<Scalars['String']['input']>;
5563
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5565
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5564
5566
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5565
5567
  /** Skip the specified number of medicalcontraindication(s) from the beginning of the result set. Only supported on keyword search. */
5566
5568
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5568,7 +5570,7 @@ export type MedicalContraindicationFilter = {
5568
5570
  orderBy?: InputMaybe<OrderByTypes>;
5569
5571
  /** The query syntax for the search text. Defaults to Simple. */
5570
5572
  queryType?: InputMaybe<SearchQueryTypes>;
5571
- /** Filter medicalcontraindication(s) by searching for specific text. */
5573
+ /** Filter medicalcontraindication(s) by searching for similar text. */
5572
5574
  search?: InputMaybe<Scalars['String']['input']>;
5573
5575
  /** The type of search to be used. Defaults to Vector. */
5574
5576
  searchType?: InputMaybe<SearchTypes>;
@@ -5697,13 +5699,13 @@ export type MedicalDeviceFilter = {
5697
5699
  h3?: InputMaybe<H3Filter>;
5698
5700
  /** Filter medicaldevice(s) by their unique ID. */
5699
5701
  id?: InputMaybe<Scalars['ID']['input']>;
5700
- /** Limit the number of medicaldevice(s) to be returned. */
5702
+ /** Limit the number of medicaldevice(s) to be returned. Defaults to 100. */
5701
5703
  limit?: InputMaybe<Scalars['Int']['input']>;
5702
5704
  /** Filter by observable geo-location. */
5703
5705
  location?: InputMaybe<PointFilter>;
5704
5706
  /** Filter medicaldevice(s) by their name. */
5705
5707
  name?: InputMaybe<Scalars['String']['input']>;
5706
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5708
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5707
5709
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5708
5710
  /** Skip the specified number of medicaldevice(s) from the beginning of the result set. Only supported on keyword search. */
5709
5711
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5711,7 +5713,7 @@ export type MedicalDeviceFilter = {
5711
5713
  orderBy?: InputMaybe<OrderByTypes>;
5712
5714
  /** The query syntax for the search text. Defaults to Simple. */
5713
5715
  queryType?: InputMaybe<SearchQueryTypes>;
5714
- /** Filter medicaldevice(s) by searching for specific text. */
5716
+ /** Filter medicaldevice(s) by searching for similar text. */
5715
5717
  search?: InputMaybe<Scalars['String']['input']>;
5716
5718
  /** The type of search to be used. Defaults to Vector. */
5717
5719
  searchType?: InputMaybe<SearchTypes>;
@@ -5876,13 +5878,13 @@ export type MedicalDrugClassFilter = {
5876
5878
  h3?: InputMaybe<H3Filter>;
5877
5879
  /** Filter medicaldrugclass(s) by their unique ID. */
5878
5880
  id?: InputMaybe<Scalars['ID']['input']>;
5879
- /** Limit the number of medicaldrugclass(s) to be returned. */
5881
+ /** Limit the number of medicaldrugclass(s) to be returned. Defaults to 100. */
5880
5882
  limit?: InputMaybe<Scalars['Int']['input']>;
5881
5883
  /** Filter by observable geo-location. */
5882
5884
  location?: InputMaybe<PointFilter>;
5883
5885
  /** Filter medicaldrugclass(s) by their name. */
5884
5886
  name?: InputMaybe<Scalars['String']['input']>;
5885
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5887
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5886
5888
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5887
5889
  /** Skip the specified number of medicaldrugclass(s) from the beginning of the result set. Only supported on keyword search. */
5888
5890
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5890,7 +5892,7 @@ export type MedicalDrugClassFilter = {
5890
5892
  orderBy?: InputMaybe<OrderByTypes>;
5891
5893
  /** The query syntax for the search text. Defaults to Simple. */
5892
5894
  queryType?: InputMaybe<SearchQueryTypes>;
5893
- /** Filter medicaldrugclass(s) by searching for specific text. */
5895
+ /** Filter medicaldrugclass(s) by searching for similar text. */
5894
5896
  search?: InputMaybe<Scalars['String']['input']>;
5895
5897
  /** The type of search to be used. Defaults to Vector. */
5896
5898
  searchType?: InputMaybe<SearchTypes>;
@@ -5983,13 +5985,13 @@ export type MedicalDrugFilter = {
5983
5985
  h3?: InputMaybe<H3Filter>;
5984
5986
  /** Filter medicaldrug(s) by their unique ID. */
5985
5987
  id?: InputMaybe<Scalars['ID']['input']>;
5986
- /** Limit the number of medicaldrug(s) to be returned. */
5988
+ /** Limit the number of medicaldrug(s) to be returned. Defaults to 100. */
5987
5989
  limit?: InputMaybe<Scalars['Int']['input']>;
5988
5990
  /** Filter by observable geo-location. */
5989
5991
  location?: InputMaybe<PointFilter>;
5990
5992
  /** Filter medicaldrug(s) by their name. */
5991
5993
  name?: InputMaybe<Scalars['String']['input']>;
5992
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5994
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5993
5995
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5994
5996
  /** Skip the specified number of medicaldrug(s) from the beginning of the result set. Only supported on keyword search. */
5995
5997
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5997,7 +5999,7 @@ export type MedicalDrugFilter = {
5997
5999
  orderBy?: InputMaybe<OrderByTypes>;
5998
6000
  /** The query syntax for the search text. Defaults to Simple. */
5999
6001
  queryType?: InputMaybe<SearchQueryTypes>;
6000
- /** Filter medicaldrug(s) by searching for specific text. */
6002
+ /** Filter medicaldrug(s) by searching for similar text. */
6001
6003
  search?: InputMaybe<Scalars['String']['input']>;
6002
6004
  /** The type of search to be used. Defaults to Vector. */
6003
6005
  searchType?: InputMaybe<SearchTypes>;
@@ -6126,13 +6128,13 @@ export type MedicalGuidelineFilter = {
6126
6128
  h3?: InputMaybe<H3Filter>;
6127
6129
  /** Filter medicalguideline(s) by their unique ID. */
6128
6130
  id?: InputMaybe<Scalars['ID']['input']>;
6129
- /** Limit the number of medicalguideline(s) to be returned. */
6131
+ /** Limit the number of medicalguideline(s) to be returned. Defaults to 100. */
6130
6132
  limit?: InputMaybe<Scalars['Int']['input']>;
6131
6133
  /** Filter by observable geo-location. */
6132
6134
  location?: InputMaybe<PointFilter>;
6133
6135
  /** Filter medicalguideline(s) by their name. */
6134
6136
  name?: InputMaybe<Scalars['String']['input']>;
6135
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6137
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6136
6138
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6137
6139
  /** Skip the specified number of medicalguideline(s) from the beginning of the result set. Only supported on keyword search. */
6138
6140
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6140,7 +6142,7 @@ export type MedicalGuidelineFilter = {
6140
6142
  orderBy?: InputMaybe<OrderByTypes>;
6141
6143
  /** The query syntax for the search text. Defaults to Simple. */
6142
6144
  queryType?: InputMaybe<SearchQueryTypes>;
6143
- /** Filter medicalguideline(s) by searching for specific text. */
6145
+ /** Filter medicalguideline(s) by searching for similar text. */
6144
6146
  search?: InputMaybe<Scalars['String']['input']>;
6145
6147
  /** The type of search to be used. Defaults to Vector. */
6146
6148
  searchType?: InputMaybe<SearchTypes>;
@@ -6269,13 +6271,13 @@ export type MedicalIndicationFilter = {
6269
6271
  id?: InputMaybe<Scalars['ID']['input']>;
6270
6272
  /** Filter by similar medical indications. */
6271
6273
  indications?: InputMaybe<Array<EntityReferenceFilter>>;
6272
- /** Limit the number of medicalindication(s) to be returned. */
6274
+ /** Limit the number of medicalindication(s) to be returned. Defaults to 100. */
6273
6275
  limit?: InputMaybe<Scalars['Int']['input']>;
6274
6276
  /** Filter by observable geo-location. */
6275
6277
  location?: InputMaybe<PointFilter>;
6276
6278
  /** Filter medicalindication(s) by their name. */
6277
6279
  name?: InputMaybe<Scalars['String']['input']>;
6278
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6280
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6279
6281
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6280
6282
  /** Skip the specified number of medicalindication(s) from the beginning of the result set. Only supported on keyword search. */
6281
6283
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6283,7 +6285,7 @@ export type MedicalIndicationFilter = {
6283
6285
  orderBy?: InputMaybe<OrderByTypes>;
6284
6286
  /** The query syntax for the search text. Defaults to Simple. */
6285
6287
  queryType?: InputMaybe<SearchQueryTypes>;
6286
- /** Filter medicalindication(s) by searching for specific text. */
6288
+ /** Filter medicalindication(s) by searching for similar text. */
6287
6289
  search?: InputMaybe<Scalars['String']['input']>;
6288
6290
  /** The type of search to be used. Defaults to Vector. */
6289
6291
  searchType?: InputMaybe<SearchTypes>;
@@ -6410,13 +6412,13 @@ export type MedicalProcedureFilter = {
6410
6412
  h3?: InputMaybe<H3Filter>;
6411
6413
  /** Filter medicalprocedure(s) by their unique ID. */
6412
6414
  id?: InputMaybe<Scalars['ID']['input']>;
6413
- /** Limit the number of medicalprocedure(s) to be returned. */
6415
+ /** Limit the number of medicalprocedure(s) to be returned. Defaults to 100. */
6414
6416
  limit?: InputMaybe<Scalars['Int']['input']>;
6415
6417
  /** Filter by observable geo-location. */
6416
6418
  location?: InputMaybe<PointFilter>;
6417
6419
  /** Filter medicalprocedure(s) by their name. */
6418
6420
  name?: InputMaybe<Scalars['String']['input']>;
6419
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6421
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6420
6422
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6421
6423
  /** Skip the specified number of medicalprocedure(s) from the beginning of the result set. Only supported on keyword search. */
6422
6424
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6426,7 +6428,7 @@ export type MedicalProcedureFilter = {
6426
6428
  procedures?: InputMaybe<Array<EntityReferenceFilter>>;
6427
6429
  /** The query syntax for the search text. Defaults to Simple. */
6428
6430
  queryType?: InputMaybe<SearchQueryTypes>;
6429
- /** Filter medicalprocedure(s) by searching for specific text. */
6431
+ /** Filter medicalprocedure(s) by searching for similar text. */
6430
6432
  search?: InputMaybe<Scalars['String']['input']>;
6431
6433
  /** The type of search to be used. Defaults to Vector. */
6432
6434
  searchType?: InputMaybe<SearchTypes>;
@@ -6555,13 +6557,13 @@ export type MedicalStudyFilter = {
6555
6557
  h3?: InputMaybe<H3Filter>;
6556
6558
  /** Filter medicalstudy(s) by their unique ID. */
6557
6559
  id?: InputMaybe<Scalars['ID']['input']>;
6558
- /** Limit the number of medicalstudy(s) to be returned. */
6560
+ /** Limit the number of medicalstudy(s) to be returned. Defaults to 100. */
6559
6561
  limit?: InputMaybe<Scalars['Int']['input']>;
6560
6562
  /** Filter by observable geo-location. */
6561
6563
  location?: InputMaybe<PointFilter>;
6562
6564
  /** Filter medicalstudy(s) by their name. */
6563
6565
  name?: InputMaybe<Scalars['String']['input']>;
6564
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6566
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6565
6567
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6566
6568
  /** Skip the specified number of medicalstudy(s) from the beginning of the result set. Only supported on keyword search. */
6567
6569
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6569,7 +6571,7 @@ export type MedicalStudyFilter = {
6569
6571
  orderBy?: InputMaybe<OrderByTypes>;
6570
6572
  /** The query syntax for the search text. Defaults to Simple. */
6571
6573
  queryType?: InputMaybe<SearchQueryTypes>;
6572
- /** Filter medicalstudy(s) by searching for specific text. */
6574
+ /** Filter medicalstudy(s) by searching for similar text. */
6573
6575
  search?: InputMaybe<Scalars['String']['input']>;
6574
6576
  /** The type of search to be used. Defaults to Vector. */
6575
6577
  searchType?: InputMaybe<SearchTypes>;
@@ -6704,13 +6706,13 @@ export type MedicalTestFilter = {
6704
6706
  h3?: InputMaybe<H3Filter>;
6705
6707
  /** Filter medicaltest(s) by their unique ID. */
6706
6708
  id?: InputMaybe<Scalars['ID']['input']>;
6707
- /** Limit the number of medicaltest(s) to be returned. */
6709
+ /** Limit the number of medicaltest(s) to be returned. Defaults to 100. */
6708
6710
  limit?: InputMaybe<Scalars['Int']['input']>;
6709
6711
  /** Filter by observable geo-location. */
6710
6712
  location?: InputMaybe<PointFilter>;
6711
6713
  /** Filter medicaltest(s) by their name. */
6712
6714
  name?: InputMaybe<Scalars['String']['input']>;
6713
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6715
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6714
6716
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6715
6717
  /** Skip the specified number of medicaltest(s) from the beginning of the result set. Only supported on keyword search. */
6716
6718
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6718,7 +6720,7 @@ export type MedicalTestFilter = {
6718
6720
  orderBy?: InputMaybe<OrderByTypes>;
6719
6721
  /** The query syntax for the search text. Defaults to Simple. */
6720
6722
  queryType?: InputMaybe<SearchQueryTypes>;
6721
- /** Filter medicaltest(s) by searching for specific text. */
6723
+ /** Filter medicaltest(s) by searching for similar text. */
6722
6724
  search?: InputMaybe<Scalars['String']['input']>;
6723
6725
  /** The type of search to be used. Defaults to Vector. */
6724
6726
  searchType?: InputMaybe<SearchTypes>;
@@ -6847,13 +6849,13 @@ export type MedicalTherapyFilter = {
6847
6849
  h3?: InputMaybe<H3Filter>;
6848
6850
  /** Filter medicaltherapy(s) by their unique ID. */
6849
6851
  id?: InputMaybe<Scalars['ID']['input']>;
6850
- /** Limit the number of medicaltherapy(s) to be returned. */
6852
+ /** Limit the number of medicaltherapy(s) to be returned. Defaults to 100. */
6851
6853
  limit?: InputMaybe<Scalars['Int']['input']>;
6852
6854
  /** Filter by observable geo-location. */
6853
6855
  location?: InputMaybe<PointFilter>;
6854
6856
  /** Filter medicaltherapy(s) by their name. */
6855
6857
  name?: InputMaybe<Scalars['String']['input']>;
6856
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6858
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6857
6859
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6858
6860
  /** Skip the specified number of medicaltherapy(s) from the beginning of the result set. Only supported on keyword search. */
6859
6861
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6861,7 +6863,7 @@ export type MedicalTherapyFilter = {
6861
6863
  orderBy?: InputMaybe<OrderByTypes>;
6862
6864
  /** The query syntax for the search text. Defaults to Simple. */
6863
6865
  queryType?: InputMaybe<SearchQueryTypes>;
6864
- /** Filter medicaltherapy(s) by searching for specific text. */
6866
+ /** Filter medicaltherapy(s) by searching for similar text. */
6865
6867
  search?: InputMaybe<Scalars['String']['input']>;
6866
6868
  /** The type of search to be used. Defaults to Vector. */
6867
6869
  searchType?: InputMaybe<SearchTypes>;
@@ -6952,7 +6954,7 @@ export type MetadataFilter = {
6952
6954
  direction?: InputMaybe<OrderDirectionTypes>;
6953
6955
  /** Filter metadata(s) by their unique ID. */
6954
6956
  id?: InputMaybe<Scalars['ID']['input']>;
6955
- /** Limit the number of metadata(s) to be returned. */
6957
+ /** Limit the number of metadata(s) to be returned. Defaults to 100. */
6956
6958
  limit?: InputMaybe<Scalars['Int']['input']>;
6957
6959
  /** Filter by metadata types. */
6958
6960
  metadataTypes?: InputMaybe<Array<InputMaybe<MetadataTypes>>>;
@@ -6962,7 +6964,7 @@ export type MetadataFilter = {
6962
6964
  offset?: InputMaybe<Scalars['Int']['input']>;
6963
6965
  /** The sort order for query results. */
6964
6966
  orderBy?: InputMaybe<OrderByTypes>;
6965
- /** Filter metadata(s) by searching for specific text. */
6967
+ /** Filter metadata(s) by searching for similar text. */
6966
6968
  search?: InputMaybe<Scalars['String']['input']>;
6967
6969
  /** Filter metadata(s) by their states. */
6968
6970
  states?: InputMaybe<Array<EntityState>>;
@@ -7817,6 +7819,14 @@ export type Mutation = {
7817
7819
  updateUser?: Maybe<User>;
7818
7820
  /** Updates an existing content workflow. */
7819
7821
  updateWorkflow?: Maybe<Workflow>;
7822
+ /** Upserts a category. */
7823
+ upsertCategory?: Maybe<Category>;
7824
+ /** Upserts a label. */
7825
+ upsertLabel?: Maybe<Label>;
7826
+ /** Upserts an LLM specification. */
7827
+ upsertSpecification?: Maybe<Specification>;
7828
+ /** Upserts a content workflow. */
7829
+ upsertWorkflow?: Maybe<Workflow>;
7820
7830
  };
7821
7831
  export type MutationAddCollectionContentsArgs = {
7822
7832
  contents: Array<EntityReferenceInput>;
@@ -8633,6 +8643,18 @@ export type MutationUpdateUserArgs = {
8633
8643
  export type MutationUpdateWorkflowArgs = {
8634
8644
  workflow: WorkflowUpdateInput;
8635
8645
  };
8646
+ export type MutationUpsertCategoryArgs = {
8647
+ category: CategoryInput;
8648
+ };
8649
+ export type MutationUpsertLabelArgs = {
8650
+ label: LabelInput;
8651
+ };
8652
+ export type MutationUpsertSpecificationArgs = {
8653
+ specification: SpecificationInput;
8654
+ };
8655
+ export type MutationUpsertWorkflowArgs = {
8656
+ workflow: WorkflowInput;
8657
+ };
8636
8658
  /** Represents a named entity reference. */
8637
8659
  export type NamedEntityReference = {
8638
8660
  __typename?: 'NamedEntityReference';
@@ -9280,13 +9302,13 @@ export type OrganizationFilter = {
9280
9302
  h3?: InputMaybe<H3Filter>;
9281
9303
  /** Filter organization(s) by their unique ID. */
9282
9304
  id?: InputMaybe<Scalars['ID']['input']>;
9283
- /** Limit the number of organization(s) to be returned. */
9305
+ /** Limit the number of organization(s) to be returned. Defaults to 100. */
9284
9306
  limit?: InputMaybe<Scalars['Int']['input']>;
9285
9307
  /** Filter by observable geo-location. */
9286
9308
  location?: InputMaybe<PointFilter>;
9287
9309
  /** Filter organization(s) by their name. */
9288
9310
  name?: InputMaybe<Scalars['String']['input']>;
9289
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
9311
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
9290
9312
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
9291
9313
  /** Skip the specified number of organization(s) from the beginning of the result set. Only supported on keyword search. */
9292
9314
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -9296,7 +9318,7 @@ export type OrganizationFilter = {
9296
9318
  organizations?: InputMaybe<Array<EntityReferenceFilter>>;
9297
9319
  /** The query syntax for the search text. Defaults to Simple. */
9298
9320
  queryType?: InputMaybe<SearchQueryTypes>;
9299
- /** Filter organization(s) by searching for specific text. */
9321
+ /** Filter organization(s) by searching for similar text. */
9300
9322
  search?: InputMaybe<Scalars['String']['input']>;
9301
9323
  /** The type of search to be used. Defaults to Vector. */
9302
9324
  searchType?: InputMaybe<SearchTypes>;
@@ -9527,13 +9549,13 @@ export type PersonFilter = {
9527
9549
  h3?: InputMaybe<H3Filter>;
9528
9550
  /** Filter person(s) by their unique ID. */
9529
9551
  id?: InputMaybe<Scalars['ID']['input']>;
9530
- /** Limit the number of person(s) to be returned. */
9552
+ /** Limit the number of person(s) to be returned. Defaults to 100. */
9531
9553
  limit?: InputMaybe<Scalars['Int']['input']>;
9532
9554
  /** Filter by observable geo-location. */
9533
9555
  location?: InputMaybe<PointFilter>;
9534
9556
  /** Filter person(s) by their name. */
9535
9557
  name?: InputMaybe<Scalars['String']['input']>;
9536
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
9558
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
9537
9559
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
9538
9560
  /** Skip the specified number of person(s) from the beginning of the result set. Only supported on keyword search. */
9539
9561
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -9545,7 +9567,7 @@ export type PersonFilter = {
9545
9567
  phoneNumber?: InputMaybe<Scalars['String']['input']>;
9546
9568
  /** The query syntax for the search text. Defaults to Simple. */
9547
9569
  queryType?: InputMaybe<SearchQueryTypes>;
9548
- /** Filter person(s) by searching for specific text. */
9570
+ /** Filter person(s) by searching for similar text. */
9549
9571
  search?: InputMaybe<Scalars['String']['input']>;
9550
9572
  /** The type of search to be used. Defaults to Vector. */
9551
9573
  searchType?: InputMaybe<SearchTypes>;
@@ -9726,13 +9748,13 @@ export type PlaceFilter = {
9726
9748
  h3?: InputMaybe<H3Filter>;
9727
9749
  /** Filter place(s) by their unique ID. */
9728
9750
  id?: InputMaybe<Scalars['ID']['input']>;
9729
- /** Limit the number of place(s) to be returned. */
9751
+ /** Limit the number of place(s) to be returned. Defaults to 100. */
9730
9752
  limit?: InputMaybe<Scalars['Int']['input']>;
9731
9753
  /** Filter by observable geo-location. */
9732
9754
  location?: InputMaybe<PointFilter>;
9733
9755
  /** Filter place(s) by their name. */
9734
9756
  name?: InputMaybe<Scalars['String']['input']>;
9735
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
9757
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
9736
9758
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
9737
9759
  /** Skip the specified number of place(s) from the beginning of the result set. Only supported on keyword search. */
9738
9760
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -9742,7 +9764,7 @@ export type PlaceFilter = {
9742
9764
  places?: InputMaybe<Array<EntityReferenceFilter>>;
9743
9765
  /** The query syntax for the search text. Defaults to Simple. */
9744
9766
  queryType?: InputMaybe<SearchQueryTypes>;
9745
- /** Filter place(s) by searching for specific text. */
9767
+ /** Filter place(s) by searching for similar text. */
9746
9768
  search?: InputMaybe<Scalars['String']['input']>;
9747
9769
  /** The type of search to be used. Defaults to Vector. */
9748
9770
  searchType?: InputMaybe<SearchTypes>;
@@ -9989,7 +10011,7 @@ export type ProductFilter = {
9989
10011
  h3?: InputMaybe<H3Filter>;
9990
10012
  /** Filter product(s) by their unique ID. */
9991
10013
  id?: InputMaybe<Scalars['ID']['input']>;
9992
- /** Limit the number of product(s) to be returned. */
10014
+ /** Limit the number of product(s) to be returned. Defaults to 100. */
9993
10015
  limit?: InputMaybe<Scalars['Int']['input']>;
9994
10016
  /** Filter by observable geo-location. */
9995
10017
  location?: InputMaybe<PointFilter>;
@@ -9999,7 +10021,7 @@ export type ProductFilter = {
9999
10021
  model?: InputMaybe<Scalars['String']['input']>;
10000
10022
  /** Filter product(s) by their name. */
10001
10023
  name?: InputMaybe<Scalars['String']['input']>;
10002
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
10024
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
10003
10025
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
10004
10026
  /** Skip the specified number of product(s) from the beginning of the result set. Only supported on keyword search. */
10005
10027
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -10013,7 +10035,7 @@ export type ProductFilter = {
10013
10035
  queryType?: InputMaybe<SearchQueryTypes>;
10014
10036
  /** Filter by release date range. */
10015
10037
  releaseDateRange?: InputMaybe<DateRangeFilter>;
10016
- /** Filter product(s) by searching for specific text. */
10038
+ /** Filter product(s) by searching for similar text. */
10017
10039
  search?: InputMaybe<Scalars['String']['input']>;
10018
10040
  /** The type of search to be used. Defaults to Vector. */
10019
10041
  searchType?: InputMaybe<SearchTypes>;
@@ -10184,7 +10206,7 @@ export type ProjectFilter = {
10184
10206
  direction?: InputMaybe<OrderDirectionTypes>;
10185
10207
  /** Filter project(s) by their unique ID. */
10186
10208
  id?: InputMaybe<Scalars['ID']['input']>;
10187
- /** Limit the number of project(s) to be returned. */
10209
+ /** Limit the number of project(s) to be returned. Defaults to 100. */
10188
10210
  limit?: InputMaybe<Scalars['Int']['input']>;
10189
10211
  /** Filter project(s) by their name. */
10190
10212
  name?: InputMaybe<Scalars['String']['input']>;
@@ -10192,7 +10214,7 @@ export type ProjectFilter = {
10192
10214
  offset?: InputMaybe<Scalars['Int']['input']>;
10193
10215
  /** The sort order for query results. */
10194
10216
  orderBy?: InputMaybe<OrderByTypes>;
10195
- /** Filter project(s) by searching for specific text. */
10217
+ /** Filter project(s) by searching for similar text. */
10196
10218
  search?: InputMaybe<Scalars['String']['input']>;
10197
10219
  /** Filter project(s) by their states. */
10198
10220
  states?: InputMaybe<Array<EntityState>>;
@@ -10632,6 +10654,8 @@ export type Query = {
10632
10654
  events?: Maybe<EventResults>;
10633
10655
  /** Lookup a feed given its ID. */
10634
10656
  feed?: Maybe<Feed>;
10657
+ /** Returns whether any feed exists based on the provided filter criteria. */
10658
+ feedExists?: Maybe<BooleanResult>;
10635
10659
  /** Retrieves feeds based on the provided filter criteria. */
10636
10660
  feeds?: Maybe<FeedResults>;
10637
10661
  /** Returns if ingested content has finished (or errored). */
@@ -10746,6 +10770,8 @@ export type Query = {
10746
10770
  softwares?: Maybe<SoftwareResults>;
10747
10771
  /** Lookup a specification given its ID. */
10748
10772
  specification?: Maybe<Specification>;
10773
+ /** Returns whether any specification exists based on the provided filter criteria. */
10774
+ specificationExists?: Maybe<BooleanResult>;
10749
10775
  /** Retrieves specifications based on the provided filter criteria. */
10750
10776
  specifications?: Maybe<SpecificationResults>;
10751
10777
  /** Retrieves project usage. */
@@ -10758,6 +10784,8 @@ export type Query = {
10758
10784
  users?: Maybe<UserResults>;
10759
10785
  /** Lookup a workflow given its ID. */
10760
10786
  workflow?: Maybe<Workflow>;
10787
+ /** Returns whether any workflow exists based on the provided filter criteria. */
10788
+ workflowExists?: Maybe<BooleanResult>;
10761
10789
  /** Retrieves workflows based on the provided filter criteria. */
10762
10790
  workflows?: Maybe<WorkflowResults>;
10763
10791
  };
@@ -10941,6 +10969,10 @@ export type QueryFeedArgs = {
10941
10969
  correlationId?: InputMaybe<Scalars['String']['input']>;
10942
10970
  id: Scalars['ID']['input'];
10943
10971
  };
10972
+ export type QueryFeedExistsArgs = {
10973
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10974
+ filter?: InputMaybe<FeedFilter>;
10975
+ };
10944
10976
  export type QueryFeedsArgs = {
10945
10977
  correlationId?: InputMaybe<Scalars['String']['input']>;
10946
10978
  filter?: InputMaybe<FeedFilter>;
@@ -11183,6 +11215,10 @@ export type QuerySpecificationArgs = {
11183
11215
  correlationId?: InputMaybe<Scalars['String']['input']>;
11184
11216
  id: Scalars['ID']['input'];
11185
11217
  };
11218
+ export type QuerySpecificationExistsArgs = {
11219
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11220
+ filter?: InputMaybe<SpecificationFilter>;
11221
+ };
11186
11222
  export type QuerySpecificationsArgs = {
11187
11223
  correlationId?: InputMaybe<Scalars['String']['input']>;
11188
11224
  filter?: InputMaybe<SpecificationFilter>;
@@ -11209,6 +11245,10 @@ export type QueryWorkflowArgs = {
11209
11245
  correlationId?: InputMaybe<Scalars['String']['input']>;
11210
11246
  id: Scalars['ID']['input'];
11211
11247
  };
11248
+ export type QueryWorkflowExistsArgs = {
11249
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11250
+ filter?: InputMaybe<WorkflowFilter>;
11251
+ };
11212
11252
  export type QueryWorkflowsArgs = {
11213
11253
  correlationId?: InputMaybe<Scalars['String']['input']>;
11214
11254
  filter?: InputMaybe<WorkflowFilter>;
@@ -11492,13 +11532,13 @@ export type RepoFilter = {
11492
11532
  h3?: InputMaybe<H3Filter>;
11493
11533
  /** Filter repo(s) by their unique ID. */
11494
11534
  id?: InputMaybe<Scalars['ID']['input']>;
11495
- /** Limit the number of repo(s) to be returned. */
11535
+ /** Limit the number of repo(s) to be returned. Defaults to 100. */
11496
11536
  limit?: InputMaybe<Scalars['Int']['input']>;
11497
11537
  /** Filter by observable geo-location. */
11498
11538
  location?: InputMaybe<PointFilter>;
11499
11539
  /** Filter repo(s) by their name. */
11500
11540
  name?: InputMaybe<Scalars['String']['input']>;
11501
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
11541
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
11502
11542
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
11503
11543
  /** Skip the specified number of repo(s) from the beginning of the result set. Only supported on keyword search. */
11504
11544
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -11508,7 +11548,7 @@ export type RepoFilter = {
11508
11548
  queryType?: InputMaybe<SearchQueryTypes>;
11509
11549
  /** Filter by similar code repositories. */
11510
11550
  repos?: InputMaybe<Array<EntityReferenceFilter>>;
11511
- /** Filter repo(s) by searching for specific text. */
11551
+ /** Filter repo(s) by searching for similar text. */
11512
11552
  search?: InputMaybe<Scalars['String']['input']>;
11513
11553
  /** The type of search to be used. Defaults to Vector. */
11514
11554
  searchType?: InputMaybe<SearchTypes>;
@@ -11717,6 +11757,8 @@ export declare enum SearchQueryTypes {
11717
11757
  export declare enum SearchServiceTypes {
11718
11758
  /** Exa search feed service */
11719
11759
  Exa = "EXA",
11760
+ /** Podscan search feed service */
11761
+ Podscan = "PODSCAN",
11720
11762
  /** Tavily search feed service */
11721
11763
  Tavily = "TAVILY"
11722
11764
  }
@@ -12107,13 +12149,13 @@ export type SoftwareFilter = {
12107
12149
  h3?: InputMaybe<H3Filter>;
12108
12150
  /** Filter software(s) by their unique ID. */
12109
12151
  id?: InputMaybe<Scalars['ID']['input']>;
12110
- /** Limit the number of software(s) to be returned. */
12152
+ /** Limit the number of software(s) to be returned. Defaults to 100. */
12111
12153
  limit?: InputMaybe<Scalars['Int']['input']>;
12112
12154
  /** Filter by observable geo-location. */
12113
12155
  location?: InputMaybe<PointFilter>;
12114
12156
  /** Filter software(s) by their name. */
12115
12157
  name?: InputMaybe<Scalars['String']['input']>;
12116
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
12158
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
12117
12159
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
12118
12160
  /** Skip the specified number of software(s) from the beginning of the result set. Only supported on keyword search. */
12119
12161
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -12121,7 +12163,7 @@ export type SoftwareFilter = {
12121
12163
  orderBy?: InputMaybe<OrderByTypes>;
12122
12164
  /** The query syntax for the search text. Defaults to Simple. */
12123
12165
  queryType?: InputMaybe<SearchQueryTypes>;
12124
- /** Filter software(s) by searching for specific text. */
12166
+ /** Filter software(s) by searching for similar text. */
12125
12167
  search?: InputMaybe<Scalars['String']['input']>;
12126
12168
  /** The type of search to be used. Defaults to Vector. */
12127
12169
  searchType?: InputMaybe<SearchTypes>;
@@ -12207,7 +12249,7 @@ export type Specification = {
12207
12249
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
12208
12250
  /** The name of the specification. */
12209
12251
  name: Scalars['String']['output'];
12210
- /** The number of similar items to be returned from content search. Defaults to 1000. */
12252
+ /** The number of similar items to be returned from content search. Defaults to 100. */
12211
12253
  numberSimilar?: Maybe<Scalars['Int']['output']>;
12212
12254
  /** The OpenAI model properties. */
12213
12255
  openAI?: Maybe<OpenAiModelProperties>;
@@ -12252,7 +12294,7 @@ export type SpecificationFilter = {
12252
12294
  direction?: InputMaybe<OrderDirectionTypes>;
12253
12295
  /** Filter specification(s) by their unique ID. */
12254
12296
  id?: InputMaybe<Scalars['ID']['input']>;
12255
- /** Limit the number of specification(s) to be returned. */
12297
+ /** Limit the number of specification(s) to be returned. Defaults to 100. */
12256
12298
  limit?: InputMaybe<Scalars['Int']['input']>;
12257
12299
  /** Filter specification(s) by their name. */
12258
12300
  name?: InputMaybe<Scalars['String']['input']>;
@@ -12260,7 +12302,7 @@ export type SpecificationFilter = {
12260
12302
  offset?: InputMaybe<Scalars['Int']['input']>;
12261
12303
  /** The sort order for query results. */
12262
12304
  orderBy?: InputMaybe<OrderByTypes>;
12263
- /** Filter specification(s) by searching for specific text. */
12305
+ /** Filter specification(s) by searching for similar text. */
12264
12306
  search?: InputMaybe<Scalars['String']['input']>;
12265
12307
  /** Filter by LLM service types. */
12266
12308
  serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
@@ -12299,7 +12341,7 @@ export type SpecificationInput = {
12299
12341
  mistral?: InputMaybe<MistralModelPropertiesInput>;
12300
12342
  /** The name of the specification. */
12301
12343
  name: Scalars['String']['input'];
12302
- /** The number of similar items to be returned from content search. Defaults to 1000. */
12344
+ /** The number of similar items to be returned from content search. Defaults to 100. */
12303
12345
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
12304
12346
  /** The OpenAI model properties. */
12305
12347
  openAI?: InputMaybe<OpenAiModelPropertiesInput>;
@@ -12379,7 +12421,7 @@ export type SpecificationUpdateInput = {
12379
12421
  mistral?: InputMaybe<MistralModelPropertiesUpdateInput>;
12380
12422
  /** The name of the specification. */
12381
12423
  name?: InputMaybe<Scalars['String']['input']>;
12382
- /** The number of similar items to be returned from content search. Defaults to 1000. */
12424
+ /** The number of similar items to be returned from content search. Defaults to 100. */
12383
12425
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
12384
12426
  /** The OpenAI model properties. */
12385
12427
  openAI?: InputMaybe<OpenAiModelPropertiesUpdateInput>;
@@ -12842,7 +12884,7 @@ export type UserFilter = {
12842
12884
  id?: InputMaybe<Scalars['ID']['input']>;
12843
12885
  /** Filter users by their external identifier. */
12844
12886
  identifier?: InputMaybe<Scalars['String']['input']>;
12845
- /** Limit the number of user(s) to be returned. */
12887
+ /** Limit the number of user(s) to be returned. Defaults to 100. */
12846
12888
  limit?: InputMaybe<Scalars['Int']['input']>;
12847
12889
  /** Filter user(s) by their name. */
12848
12890
  name?: InputMaybe<Scalars['String']['input']>;
@@ -12850,7 +12892,7 @@ export type UserFilter = {
12850
12892
  offset?: InputMaybe<Scalars['Int']['input']>;
12851
12893
  /** The sort order for query results. */
12852
12894
  orderBy?: InputMaybe<OrderByTypes>;
12853
- /** Filter user(s) by searching for specific text. */
12895
+ /** Filter user(s) by searching for similar text. */
12854
12896
  search?: InputMaybe<Scalars['String']['input']>;
12855
12897
  /** Filter user(s) by their states. */
12856
12898
  states?: InputMaybe<Array<EntityState>>;
@@ -13041,9 +13083,9 @@ export type WebSearchResult = {
13041
13083
  score?: Maybe<Scalars['Float']['output']>;
13042
13084
  /** The relevant web page text. */
13043
13085
  text?: Maybe<Scalars['String']['output']>;
13044
- /** The web page title. */
13086
+ /** The content title. */
13045
13087
  title?: Maybe<Scalars['String']['output']>;
13046
- /** The web page URI. */
13088
+ /** The web search result URI, may be a web page or podcast episode. */
13047
13089
  uri: Scalars['URL']['output'];
13048
13090
  };
13049
13091
  /** Represents web search results. */
@@ -13107,7 +13149,7 @@ export type WorkflowFilter = {
13107
13149
  direction?: InputMaybe<OrderDirectionTypes>;
13108
13150
  /** Filter workflow(s) by their unique ID. */
13109
13151
  id?: InputMaybe<Scalars['ID']['input']>;
13110
- /** Limit the number of workflow(s) to be returned. */
13152
+ /** Limit the number of workflow(s) to be returned. Defaults to 100. */
13111
13153
  limit?: InputMaybe<Scalars['Int']['input']>;
13112
13154
  /** Filter workflow(s) by their name. */
13113
13155
  name?: InputMaybe<Scalars['String']['input']>;
@@ -13115,7 +13157,7 @@ export type WorkflowFilter = {
13115
13157
  offset?: InputMaybe<Scalars['Int']['input']>;
13116
13158
  /** The sort order for query results. */
13117
13159
  orderBy?: InputMaybe<OrderByTypes>;
13118
- /** Filter workflow(s) by searching for specific text. */
13160
+ /** Filter workflow(s) by searching for similar text. */
13119
13161
  search?: InputMaybe<Scalars['String']['input']>;
13120
13162
  /** Filter workflow(s) by their states. */
13121
13163
  states?: InputMaybe<Array<EntityState>>;
@@ -13795,6 +13837,17 @@ export type UpdateCategoryMutation = {
13795
13837
  name: string;
13796
13838
  } | null;
13797
13839
  };
13840
+ export type UpsertCategoryMutationVariables = Exact<{
13841
+ category: CategoryInput;
13842
+ }>;
13843
+ export type UpsertCategoryMutation = {
13844
+ __typename?: 'Mutation';
13845
+ upsertCategory?: {
13846
+ __typename?: 'Category';
13847
+ id: string;
13848
+ name: string;
13849
+ } | null;
13850
+ };
13798
13851
  export type AddContentsToCollectionsMutationVariables = Exact<{
13799
13852
  contents: Array<EntityReferenceInput> | EntityReferenceInput;
13800
13853
  collections: Array<EntityReferenceInput> | EntityReferenceInput;
@@ -14353,7 +14406,6 @@ export type GetContentQuery = {
14353
14406
  id: string;
14354
14407
  name: string;
14355
14408
  creationDate: any;
14356
- relevance?: number | null;
14357
14409
  state: EntityState;
14358
14410
  originalDate?: any | null;
14359
14411
  finishedDate?: any | null;
@@ -15220,7 +15272,6 @@ export type QueryContentsQuery = {
15220
15272
  uri?: any | null;
15221
15273
  description?: string | null;
15222
15274
  identifier?: string | null;
15223
- markdown?: string | null;
15224
15275
  type?: ContentTypes | null;
15225
15276
  fileType?: FileTypes | null;
15226
15277
  mimeType?: string | null;
@@ -15387,16 +15438,6 @@ export type QueryContentsQuery = {
15387
15438
  __typename?: 'LanguageMetadata';
15388
15439
  languages?: Array<string | null> | null;
15389
15440
  } | null;
15390
- parent?: {
15391
- __typename?: 'Content';
15392
- id: string;
15393
- name: string;
15394
- } | null;
15395
- children?: Array<{
15396
- __typename?: 'Content';
15397
- id: string;
15398
- name: string;
15399
- } | null> | null;
15400
15441
  feed?: {
15401
15442
  __typename?: 'Feed';
15402
15443
  id: string;
@@ -15504,332 +15545,46 @@ export type QueryContentsFacetsQuery = {
15504
15545
  __typename?: 'Query';
15505
15546
  contents?: {
15506
15547
  __typename?: 'ContentResults';
15507
- results?: Array<{
15508
- __typename?: 'Content';
15509
- id: string;
15510
- name: string;
15511
- creationDate: any;
15512
- relevance?: number | null;
15513
- state: EntityState;
15514
- originalDate?: any | null;
15515
- finishedDate?: any | null;
15516
- workflowDuration?: any | null;
15517
- uri?: any | null;
15518
- description?: string | null;
15519
- identifier?: string | null;
15520
- markdown?: string | null;
15521
- type?: ContentTypes | null;
15522
- fileType?: FileTypes | null;
15523
- mimeType?: string | null;
15524
- fileName?: string | null;
15525
- fileSize?: any | null;
15526
- masterUri?: any | null;
15527
- imageUri?: any | null;
15528
- textUri?: any | null;
15529
- audioUri?: any | null;
15530
- transcriptUri?: any | null;
15531
- summary?: string | null;
15532
- customSummary?: string | null;
15533
- keywords?: Array<string> | null;
15534
- bullets?: Array<string> | null;
15535
- headlines?: Array<string> | null;
15536
- posts?: Array<string> | null;
15537
- chapters?: Array<string> | null;
15538
- questions?: Array<string> | null;
15539
- error?: string | null;
15540
- owner: {
15541
- __typename?: 'Owner';
15542
- id: string;
15543
- };
15544
- address?: {
15545
- __typename?: 'Address';
15546
- streetAddress?: string | null;
15547
- city?: string | null;
15548
- region?: string | null;
15549
- country?: string | null;
15550
- postalCode?: string | null;
15551
- } | null;
15552
- location?: {
15553
- __typename?: 'Point';
15554
- latitude?: number | null;
15555
- longitude?: number | null;
15556
- } | null;
15557
- video?: {
15558
- __typename?: 'VideoMetadata';
15559
- width?: number | null;
15560
- height?: number | null;
15561
- duration?: any | null;
15562
- make?: string | null;
15563
- model?: string | null;
15564
- software?: string | null;
15565
- title?: string | null;
15566
- description?: string | null;
15567
- keywords?: Array<string | null> | null;
15568
- author?: string | null;
15569
- } | null;
15570
- audio?: {
15571
- __typename?: 'AudioMetadata';
15572
- keywords?: Array<string | null> | null;
15573
- author?: string | null;
15574
- series?: string | null;
15575
- episode?: string | null;
15576
- episodeType?: string | null;
15577
- season?: string | null;
15578
- publisher?: string | null;
15579
- copyright?: string | null;
15580
- genre?: string | null;
15581
- title?: string | null;
15582
- description?: string | null;
15583
- bitrate?: number | null;
15584
- channels?: number | null;
15585
- sampleRate?: number | null;
15586
- bitsPerSample?: number | null;
15587
- duration?: any | null;
15588
- } | null;
15589
- image?: {
15590
- __typename?: 'ImageMetadata';
15591
- width?: number | null;
15592
- height?: number | null;
15593
- resolutionX?: number | null;
15594
- resolutionY?: number | null;
15595
- bitsPerComponent?: number | null;
15596
- components?: number | null;
15597
- projectionType?: ImageProjectionTypes | null;
15598
- orientation?: OrientationTypes | null;
15599
- description?: string | null;
15600
- make?: string | null;
15601
- model?: string | null;
15602
- software?: string | null;
15603
- lens?: string | null;
15604
- focalLength?: number | null;
15605
- exposureTime?: string | null;
15606
- fNumber?: string | null;
15607
- iso?: string | null;
15608
- heading?: number | null;
15609
- pitch?: number | null;
15610
- } | null;
15611
- document?: {
15612
- __typename?: 'DocumentMetadata';
15613
- title?: string | null;
15614
- subject?: string | null;
15615
- summary?: string | null;
15616
- author?: string | null;
15617
- publisher?: string | null;
15618
- description?: string | null;
15619
- keywords?: Array<string | null> | null;
15620
- pageCount?: number | null;
15621
- worksheetCount?: number | null;
15622
- slideCount?: number | null;
15623
- wordCount?: number | null;
15624
- lineCount?: number | null;
15625
- paragraphCount?: number | null;
15626
- isEncrypted?: boolean | null;
15627
- hasDigitalSignature?: boolean | null;
15548
+ facets?: Array<{
15549
+ __typename?: 'ContentFacet';
15550
+ facet?: ContentFacetTypes | null;
15551
+ count?: any | null;
15552
+ type?: FacetValueTypes | null;
15553
+ value?: string | null;
15554
+ range?: {
15555
+ __typename?: 'StringRange';
15556
+ from?: string | null;
15557
+ to?: string | null;
15628
15558
  } | null;
15629
- email?: {
15630
- __typename?: 'EmailMetadata';
15631
- identifier?: string | null;
15632
- subject?: string | null;
15633
- labels?: Array<string | null> | null;
15634
- sensitivity?: MailSensitivity | null;
15635
- priority?: MailPriority | null;
15636
- importance?: MailImportance | null;
15637
- from?: Array<{
15638
- __typename?: 'PersonReference';
15639
- name?: string | null;
15640
- email?: string | null;
15641
- givenName?: string | null;
15642
- familyName?: string | null;
15643
- } | null> | null;
15644
- to?: Array<{
15645
- __typename?: 'PersonReference';
15646
- name?: string | null;
15647
- email?: string | null;
15648
- givenName?: string | null;
15649
- familyName?: string | null;
15650
- } | null> | null;
15651
- cc?: Array<{
15652
- __typename?: 'PersonReference';
15653
- name?: string | null;
15654
- email?: string | null;
15655
- givenName?: string | null;
15656
- familyName?: string | null;
15657
- } | null> | null;
15658
- bcc?: Array<{
15659
- __typename?: 'PersonReference';
15559
+ observable?: {
15560
+ __typename?: 'ObservableFacet';
15561
+ type?: ObservableTypes | null;
15562
+ observable?: {
15563
+ __typename?: 'NamedEntityReference';
15564
+ id: string;
15660
15565
  name?: string | null;
15661
- email?: string | null;
15662
- givenName?: string | null;
15663
- familyName?: string | null;
15664
- } | null> | null;
15665
- } | null;
15666
- issue?: {
15667
- __typename?: 'IssueMetadata';
15668
- identifier?: string | null;
15669
- title?: string | null;
15670
- project?: string | null;
15671
- team?: string | null;
15672
- status?: string | null;
15673
- priority?: string | null;
15674
- type?: string | null;
15675
- labels?: Array<string | null> | null;
15676
- } | null;
15677
- package?: {
15678
- __typename?: 'PackageMetadata';
15679
- fileCount?: number | null;
15680
- folderCount?: number | null;
15681
- isEncrypted?: boolean | null;
15682
- } | null;
15683
- language?: {
15684
- __typename?: 'LanguageMetadata';
15685
- languages?: Array<string | null> | null;
15686
- } | null;
15687
- parent?: {
15688
- __typename?: 'Content';
15689
- id: string;
15690
- name: string;
15566
+ } | null;
15691
15567
  } | null;
15692
- children?: Array<{
15693
- __typename?: 'Content';
15568
+ } | null> | null;
15569
+ } | null;
15570
+ };
15571
+ export type QueryContentsGraphQueryVariables = Exact<{
15572
+ filter?: InputMaybe<ContentFilter>;
15573
+ graph?: InputMaybe<ContentGraphInput>;
15574
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15575
+ }>;
15576
+ export type QueryContentsGraphQuery = {
15577
+ __typename?: 'Query';
15578
+ contents?: {
15579
+ __typename?: 'ContentResults';
15580
+ graph?: {
15581
+ __typename?: 'Graph';
15582
+ nodes?: Array<{
15583
+ __typename?: 'GraphNode';
15694
15584
  id: string;
15695
15585
  name: string;
15696
- } | null> | null;
15697
- feed?: {
15698
- __typename?: 'Feed';
15699
- id: string;
15700
- name: string;
15701
- } | null;
15702
- collections?: Array<{
15703
- __typename?: 'Collection';
15704
- id: string;
15705
- name: string;
15706
- } | null> | null;
15707
- links?: Array<{
15708
- __typename?: 'LinkReference';
15709
- uri?: any | null;
15710
- linkType?: LinkTypes | null;
15711
- }> | null;
15712
- observations?: Array<{
15713
- __typename?: 'Observation';
15714
- id: string;
15715
- type: ObservableTypes;
15716
- relatedType?: ObservableTypes | null;
15717
- relation?: string | null;
15718
- state: EntityState;
15719
- observable: {
15720
- __typename?: 'NamedEntityReference';
15721
- id: string;
15722
- name?: string | null;
15723
- };
15724
- related?: {
15725
- __typename?: 'NamedEntityReference';
15726
- id: string;
15727
- name?: string | null;
15728
- } | null;
15729
- occurrences?: Array<{
15730
- __typename?: 'ObservationOccurrence';
15731
- type?: OccurrenceTypes | null;
15732
- confidence?: number | null;
15733
- startTime?: any | null;
15734
- endTime?: any | null;
15735
- pageIndex?: number | null;
15736
- boundingBox?: {
15737
- __typename?: 'BoundingBox';
15738
- left?: number | null;
15739
- top?: number | null;
15740
- width?: number | null;
15741
- height?: number | null;
15742
- } | null;
15743
- } | null> | null;
15744
- } | null> | null;
15745
- workflow?: {
15746
- __typename?: 'Workflow';
15747
- id: string;
15748
- name: string;
15749
- } | null;
15750
- pages?: Array<{
15751
- __typename?: 'TextPage';
15752
- index?: number | null;
15753
- text?: string | null;
15754
- relevance?: number | null;
15755
- images?: Array<{
15756
- __typename?: 'ImageChunk';
15757
- id?: string | null;
15758
- mimeType?: string | null;
15759
- data?: string | null;
15760
- left?: number | null;
15761
- right?: number | null;
15762
- top?: number | null;
15763
- bottom?: number | null;
15764
- } | null> | null;
15765
- chunks?: Array<{
15766
- __typename?: 'TextChunk';
15767
- index?: number | null;
15768
- pageIndex?: number | null;
15769
- rowIndex?: number | null;
15770
- columnIndex?: number | null;
15771
- confidence?: number | null;
15772
- text?: string | null;
15773
- role?: TextRoles | null;
15774
- language?: string | null;
15775
- relevance?: number | null;
15776
- } | null> | null;
15777
- }> | null;
15778
- segments?: Array<{
15779
- __typename?: 'TextSegment';
15780
- startTime?: any | null;
15781
- endTime?: any | null;
15782
- text?: string | null;
15783
- relevance?: number | null;
15784
- }> | null;
15785
- frames?: Array<{
15786
- __typename?: 'TextFrame';
15787
- index?: number | null;
15788
- description?: string | null;
15789
- text?: string | null;
15790
- relevance?: number | null;
15791
- }> | null;
15792
- } | null> | null;
15793
- facets?: Array<{
15794
- __typename?: 'ContentFacet';
15795
- facet?: ContentFacetTypes | null;
15796
- count?: any | null;
15797
- type?: FacetValueTypes | null;
15798
- value?: string | null;
15799
- range?: {
15800
- __typename?: 'StringRange';
15801
- from?: string | null;
15802
- to?: string | null;
15803
- } | null;
15804
- observable?: {
15805
- __typename?: 'ObservableFacet';
15806
- type?: ObservableTypes | null;
15807
- observable?: {
15808
- __typename?: 'NamedEntityReference';
15809
- id: string;
15810
- name?: string | null;
15811
- } | null;
15812
- } | null;
15813
- } | null> | null;
15814
- } | null;
15815
- };
15816
- export type QueryContentsGraphQueryVariables = Exact<{
15817
- filter?: InputMaybe<ContentFilter>;
15818
- graph?: InputMaybe<ContentGraphInput>;
15819
- correlationId?: InputMaybe<Scalars['String']['input']>;
15820
- }>;
15821
- export type QueryContentsGraphQuery = {
15822
- __typename?: 'Query';
15823
- contents?: {
15824
- __typename?: 'ContentResults';
15825
- graph?: {
15826
- __typename?: 'Graph';
15827
- nodes?: Array<{
15828
- __typename?: 'GraphNode';
15829
- id: string;
15830
- name: string;
15831
- type: EntityTypes;
15832
- metadata?: string | null;
15586
+ type: EntityTypes;
15587
+ metadata?: string | null;
15833
15588
  } | null> | null;
15834
15589
  edges?: Array<{
15835
15590
  __typename?: 'GraphEdge';
@@ -19482,6 +19237,17 @@ export type EnableFeedMutation = {
19482
19237
  state: EntityState;
19483
19238
  } | null;
19484
19239
  };
19240
+ export type FeedExistsQueryVariables = Exact<{
19241
+ filter?: InputMaybe<FeedFilter>;
19242
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19243
+ }>;
19244
+ export type FeedExistsQuery = {
19245
+ __typename?: 'Query';
19246
+ feedExists?: {
19247
+ __typename?: 'BooleanResult';
19248
+ result?: boolean | null;
19249
+ } | null;
19250
+ };
19485
19251
  export type GetFeedQueryVariables = Exact<{
19486
19252
  id: Scalars['ID']['input'];
19487
19253
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -20256,6 +20022,17 @@ export type UpdateLabelMutation = {
20256
20022
  name: string;
20257
20023
  } | null;
20258
20024
  };
20025
+ export type UpsertLabelMutationVariables = Exact<{
20026
+ label: LabelInput;
20027
+ }>;
20028
+ export type UpsertLabelMutation = {
20029
+ __typename?: 'Mutation';
20030
+ upsertLabel?: {
20031
+ __typename?: 'Label';
20032
+ id: string;
20033
+ name: string;
20034
+ } | null;
20035
+ };
20259
20036
  export type CountMedicalConditionsQueryVariables = Exact<{
20260
20037
  filter?: InputMaybe<MedicalConditionFilter>;
20261
20038
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -23172,6 +22949,17 @@ export type QuerySpecificationsQuery = {
23172
22949
  } | null> | null;
23173
22950
  } | null;
23174
22951
  };
22952
+ export type SpecificationExistsQueryVariables = Exact<{
22953
+ filter?: InputMaybe<SpecificationFilter>;
22954
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22955
+ }>;
22956
+ export type SpecificationExistsQuery = {
22957
+ __typename?: 'Query';
22958
+ specificationExists?: {
22959
+ __typename?: 'BooleanResult';
22960
+ result?: boolean | null;
22961
+ } | null;
22962
+ };
23175
22963
  export type UpdateSpecificationMutationVariables = Exact<{
23176
22964
  specification: SpecificationUpdateInput;
23177
22965
  }>;
@@ -23186,6 +22974,20 @@ export type UpdateSpecificationMutation = {
23186
22974
  serviceType?: ModelServiceTypes | null;
23187
22975
  } | null;
23188
22976
  };
22977
+ export type UpsertSpecificationMutationVariables = Exact<{
22978
+ specification: SpecificationInput;
22979
+ }>;
22980
+ export type UpsertSpecificationMutation = {
22981
+ __typename?: 'Mutation';
22982
+ upsertSpecification?: {
22983
+ __typename?: 'Specification';
22984
+ id: string;
22985
+ name: string;
22986
+ state: EntityState;
22987
+ type?: SpecificationTypes | null;
22988
+ serviceType?: ModelServiceTypes | null;
22989
+ } | null;
22990
+ };
23189
22991
  export type CountUsersQueryVariables = Exact<{
23190
22992
  filter?: InputMaybe<UserFilter>;
23191
22993
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -24426,3 +24228,260 @@ export type UpdateWorkflowMutation = {
24426
24228
  } | null> | null;
24427
24229
  } | null;
24428
24230
  };
24231
+ export type UpsertWorkflowMutationVariables = Exact<{
24232
+ workflow: WorkflowInput;
24233
+ }>;
24234
+ export type UpsertWorkflowMutation = {
24235
+ __typename?: 'Mutation';
24236
+ upsertWorkflow?: {
24237
+ __typename?: 'Workflow';
24238
+ id: string;
24239
+ name: string;
24240
+ state: EntityState;
24241
+ ingestion?: {
24242
+ __typename?: 'IngestionWorkflowStage';
24243
+ if?: {
24244
+ __typename?: 'IngestionContentFilter';
24245
+ types?: Array<ContentTypes> | null;
24246
+ fileTypes?: Array<FileTypes> | null;
24247
+ allowedPaths?: Array<string> | null;
24248
+ excludedPaths?: Array<string> | null;
24249
+ } | null;
24250
+ collections?: Array<{
24251
+ __typename?: 'EntityReference';
24252
+ id: string;
24253
+ } | null> | null;
24254
+ observations?: Array<{
24255
+ __typename?: 'ObservationReference';
24256
+ type: ObservableTypes;
24257
+ observable: {
24258
+ __typename?: 'NamedEntityReference';
24259
+ id: string;
24260
+ name?: string | null;
24261
+ };
24262
+ } | null> | null;
24263
+ } | null;
24264
+ indexing?: {
24265
+ __typename?: 'IndexingWorkflowStage';
24266
+ jobs?: Array<{
24267
+ __typename?: 'IndexingWorkflowJob';
24268
+ connector?: {
24269
+ __typename?: 'ContentIndexingConnector';
24270
+ type?: ContentIndexingServiceTypes | null;
24271
+ contentType?: ContentTypes | null;
24272
+ fileType?: FileTypes | null;
24273
+ } | null;
24274
+ } | null> | null;
24275
+ } | null;
24276
+ preparation?: {
24277
+ __typename?: 'PreparationWorkflowStage';
24278
+ enableUnblockedCapture?: boolean | null;
24279
+ disableSmartCapture?: boolean | null;
24280
+ summarizations?: Array<{
24281
+ __typename?: 'SummarizationStrategy';
24282
+ type: SummarizationTypes;
24283
+ tokens?: number | null;
24284
+ items?: number | null;
24285
+ prompt?: string | null;
24286
+ specification?: {
24287
+ __typename?: 'EntityReference';
24288
+ id: string;
24289
+ } | null;
24290
+ } | null> | null;
24291
+ jobs?: Array<{
24292
+ __typename?: 'PreparationWorkflowJob';
24293
+ connector?: {
24294
+ __typename?: 'FilePreparationConnector';
24295
+ type: FilePreparationServiceTypes;
24296
+ fileTypes?: Array<FileTypes> | null;
24297
+ azureDocument?: {
24298
+ __typename?: 'AzureDocumentPreparationProperties';
24299
+ version?: AzureDocumentIntelligenceVersions | null;
24300
+ model?: AzureDocumentIntelligenceModels | null;
24301
+ endpoint?: any | null;
24302
+ key?: string | null;
24303
+ } | null;
24304
+ deepgram?: {
24305
+ __typename?: 'DeepgramAudioPreparationProperties';
24306
+ model?: DeepgramModels | null;
24307
+ key?: string | null;
24308
+ enableRedaction?: boolean | null;
24309
+ enableSpeakerDiarization?: boolean | null;
24310
+ detectLanguage?: boolean | null;
24311
+ language?: string | null;
24312
+ } | null;
24313
+ assemblyAI?: {
24314
+ __typename?: 'AssemblyAIAudioPreparationProperties';
24315
+ model?: AssemblyAiModels | null;
24316
+ key?: string | null;
24317
+ enableRedaction?: boolean | null;
24318
+ enableSpeakerDiarization?: boolean | null;
24319
+ detectLanguage?: boolean | null;
24320
+ language?: string | null;
24321
+ } | null;
24322
+ document?: {
24323
+ __typename?: 'DocumentPreparationProperties';
24324
+ includeImages?: boolean | null;
24325
+ } | null;
24326
+ email?: {
24327
+ __typename?: 'EmailPreparationProperties';
24328
+ includeAttachments?: boolean | null;
24329
+ } | null;
24330
+ modelDocument?: {
24331
+ __typename?: 'ModelDocumentPreparationProperties';
24332
+ specification?: {
24333
+ __typename?: 'EntityReference';
24334
+ id: string;
24335
+ } | null;
24336
+ } | null;
24337
+ mistral?: {
24338
+ __typename?: 'MistralDocumentPreparationProperties';
24339
+ key?: string | null;
24340
+ } | null;
24341
+ } | null;
24342
+ } | null> | null;
24343
+ } | null;
24344
+ extraction?: {
24345
+ __typename?: 'ExtractionWorkflowStage';
24346
+ jobs?: Array<{
24347
+ __typename?: 'ExtractionWorkflowJob';
24348
+ connector?: {
24349
+ __typename?: 'EntityExtractionConnector';
24350
+ type: EntityExtractionServiceTypes;
24351
+ contentTypes?: Array<ContentTypes> | null;
24352
+ fileTypes?: Array<FileTypes> | null;
24353
+ extractedTypes?: Array<ObservableTypes> | null;
24354
+ extractedCount?: number | null;
24355
+ azureText?: {
24356
+ __typename?: 'AzureTextExtractionProperties';
24357
+ confidenceThreshold?: number | null;
24358
+ enablePII?: boolean | null;
24359
+ } | null;
24360
+ azureImage?: {
24361
+ __typename?: 'AzureImageExtractionProperties';
24362
+ confidenceThreshold?: number | null;
24363
+ } | null;
24364
+ modelImage?: {
24365
+ __typename?: 'ModelImageExtractionProperties';
24366
+ specification?: {
24367
+ __typename?: 'EntityReference';
24368
+ id: string;
24369
+ } | null;
24370
+ } | null;
24371
+ modelText?: {
24372
+ __typename?: 'ModelTextExtractionProperties';
24373
+ specification?: {
24374
+ __typename?: 'EntityReference';
24375
+ id: string;
24376
+ } | null;
24377
+ } | null;
24378
+ } | null;
24379
+ } | null> | null;
24380
+ } | null;
24381
+ classification?: {
24382
+ __typename?: 'ClassificationWorkflowStage';
24383
+ jobs?: Array<{
24384
+ __typename?: 'ClassificationWorkflowJob';
24385
+ connector?: {
24386
+ __typename?: 'ContentClassificationConnector';
24387
+ type: ContentClassificationServiceTypes;
24388
+ contentType?: ContentTypes | null;
24389
+ fileType?: FileTypes | null;
24390
+ model?: {
24391
+ __typename?: 'ModelContentClassificationProperties';
24392
+ specification?: {
24393
+ __typename?: 'EntityReference';
24394
+ id: string;
24395
+ } | null;
24396
+ rules?: Array<{
24397
+ __typename?: 'PromptClassificationRule';
24398
+ then?: string | null;
24399
+ if?: string | null;
24400
+ } | null> | null;
24401
+ } | null;
24402
+ regex?: {
24403
+ __typename?: 'RegexContentClassificationProperties';
24404
+ rules?: Array<{
24405
+ __typename?: 'RegexClassificationRule';
24406
+ then?: string | null;
24407
+ type?: RegexSourceTypes | null;
24408
+ path?: string | null;
24409
+ matches?: string | null;
24410
+ } | null> | null;
24411
+ } | null;
24412
+ } | null;
24413
+ } | null> | null;
24414
+ } | null;
24415
+ enrichment?: {
24416
+ __typename?: 'EnrichmentWorkflowStage';
24417
+ link?: {
24418
+ __typename?: 'LinkStrategy';
24419
+ enableCrawling?: boolean | null;
24420
+ allowedDomains?: Array<string> | null;
24421
+ excludedDomains?: Array<string> | null;
24422
+ allowedPaths?: Array<string> | null;
24423
+ excludedPaths?: Array<string> | null;
24424
+ allowedLinks?: Array<LinkTypes> | null;
24425
+ excludedLinks?: Array<LinkTypes> | null;
24426
+ allowedFiles?: Array<FileTypes> | null;
24427
+ excludedFiles?: Array<FileTypes> | null;
24428
+ allowContentDomain?: boolean | null;
24429
+ maximumLinks?: number | null;
24430
+ } | null;
24431
+ jobs?: Array<{
24432
+ __typename?: 'EnrichmentWorkflowJob';
24433
+ connector?: {
24434
+ __typename?: 'EntityEnrichmentConnector';
24435
+ type?: EntityEnrichmentServiceTypes | null;
24436
+ enrichedTypes?: Array<ObservableTypes | null> | null;
24437
+ fhir?: {
24438
+ __typename?: 'FHIREnrichmentProperties';
24439
+ endpoint?: any | null;
24440
+ } | null;
24441
+ diffbot?: {
24442
+ __typename?: 'DiffbotEnrichmentProperties';
24443
+ key?: any | null;
24444
+ } | null;
24445
+ } | null;
24446
+ } | null> | null;
24447
+ } | null;
24448
+ storage?: {
24449
+ __typename?: 'StorageWorkflowStage';
24450
+ policy?: {
24451
+ __typename?: 'StoragePolicy';
24452
+ type?: StoragePolicyTypes | null;
24453
+ allowDuplicates?: boolean | null;
24454
+ } | null;
24455
+ } | null;
24456
+ actions?: Array<{
24457
+ __typename?: 'WorkflowAction';
24458
+ connector?: {
24459
+ __typename?: 'IntegrationConnector';
24460
+ type: IntegrationServiceTypes;
24461
+ uri?: string | null;
24462
+ slack?: {
24463
+ __typename?: 'SlackIntegrationProperties';
24464
+ token: string;
24465
+ channel: string;
24466
+ } | null;
24467
+ email?: {
24468
+ __typename?: 'EmailIntegrationProperties';
24469
+ from: string;
24470
+ subject: string;
24471
+ to: Array<string>;
24472
+ } | null;
24473
+ } | null;
24474
+ } | null> | null;
24475
+ } | null;
24476
+ };
24477
+ export type WorkflowExistsQueryVariables = Exact<{
24478
+ filter?: InputMaybe<WorkflowFilter>;
24479
+ correlationId?: InputMaybe<Scalars['String']['input']>;
24480
+ }>;
24481
+ export type WorkflowExistsQuery = {
24482
+ __typename?: 'Query';
24483
+ workflowExists?: {
24484
+ __typename?: 'BooleanResult';
24485
+ result?: boolean | null;
24486
+ } | null;
24487
+ };