graphlit-client 1.0.20250313001 → 1.0.20250315001

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,17 @@ 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 image. Accepts Base64-encoded image, which is used to generate image embeddings for similarity search. */
1823
+ image?: InputMaybe<Scalars['String']['input']>;
1822
1824
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
1823
1825
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1824
- /** Limit the number of content(s) to be returned. */
1826
+ /** Limit the number of content(s) to be returned. Defaults to 100. */
1825
1827
  limit?: InputMaybe<Scalars['Int']['input']>;
1826
1828
  /** Filter by geo-location. */
1827
1829
  location?: InputMaybe<PointFilter>;
1828
1830
  /** Filter content(s) by their name. */
1829
1831
  name?: InputMaybe<Scalars['String']['input']>;
1830
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
1832
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
1831
1833
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
1832
1834
  /** Filter by observations. */
1833
1835
  observations?: InputMaybe<Array<ObservationReferenceFilter>>;
@@ -1841,7 +1843,7 @@ export type ContentFilter = {
1841
1843
  originalDateRange?: InputMaybe<DateRangeFilter>;
1842
1844
  /** The query syntax for the search text. Defaults to Simple. */
1843
1845
  queryType?: InputMaybe<SearchQueryTypes>;
1844
- /** Filter content(s) by searching for specific text. */
1846
+ /** Filter content(s) by searching for similar text. */
1845
1847
  search?: InputMaybe<Scalars['String']['input']>;
1846
1848
  /** The type of search to be used. Defaults to Vector. */
1847
1849
  searchType?: InputMaybe<SearchTypes>;
@@ -2185,11 +2187,11 @@ export type ConversationFilter = {
2185
2187
  direction?: InputMaybe<OrderDirectionTypes>;
2186
2188
  /** Filter conversation(s) by their unique ID. */
2187
2189
  id?: InputMaybe<Scalars['ID']['input']>;
2188
- /** Limit the number of conversation(s) to be returned. */
2190
+ /** Limit the number of conversation(s) to be returned. Defaults to 100. */
2189
2191
  limit?: InputMaybe<Scalars['Int']['input']>;
2190
2192
  /** Filter conversation(s) by their name. */
2191
2193
  name?: InputMaybe<Scalars['String']['input']>;
2192
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
2194
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
2193
2195
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
2194
2196
  /** Skip the specified number of conversation(s) from the beginning of the result set. Only supported on keyword search. */
2195
2197
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -2197,7 +2199,7 @@ export type ConversationFilter = {
2197
2199
  orderBy?: InputMaybe<OrderByTypes>;
2198
2200
  /** The query syntax for the search text. Defaults to Simple. */
2199
2201
  queryType?: InputMaybe<SearchQueryTypes>;
2200
- /** Filter conversation(s) by searching for specific text. */
2202
+ /** Filter conversation(s) by searching for similar text. */
2201
2203
  search?: InputMaybe<Scalars['String']['input']>;
2202
2204
  /** The type of search to be used. Defaults to Vector. */
2203
2205
  searchType?: InputMaybe<SearchTypes>;
@@ -3125,9 +3127,7 @@ export declare enum EntityExtractionServiceTypes {
3125
3127
  * OpenAI Image
3126
3128
  * @deprecated Use MODEL_IMAGE instead.
3127
3129
  */
3128
- OpenAiImage = "OPEN_AI_IMAGE",
3129
- /** Roboflow Image */
3130
- RoboflowImage = "ROBOFLOW_IMAGE"
3130
+ OpenAiImage = "OPEN_AI_IMAGE"
3131
3131
  }
3132
3132
  /** Represents an entity reference. */
3133
3133
  export type EntityReference = {
@@ -3394,7 +3394,7 @@ export type EventFilter = {
3394
3394
  id?: InputMaybe<Scalars['ID']['input']>;
3395
3395
  /** Filter by if the event is accessible for free. */
3396
3396
  isAccessibleForFree?: InputMaybe<Scalars['Boolean']['input']>;
3397
- /** Limit the number of event(s) to be returned. */
3397
+ /** Limit the number of event(s) to be returned. Defaults to 100. */
3398
3398
  limit?: InputMaybe<Scalars['Int']['input']>;
3399
3399
  /** Filter by observable geo-location. */
3400
3400
  location?: InputMaybe<PointFilter>;
@@ -3404,7 +3404,7 @@ export type EventFilter = {
3404
3404
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
3405
3405
  /** Filter event(s) by their name. */
3406
3406
  name?: InputMaybe<Scalars['String']['input']>;
3407
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
3407
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
3408
3408
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
3409
3409
  /** Skip the specified number of event(s) from the beginning of the result set. Only supported on keyword search. */
3410
3410
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -3416,7 +3416,7 @@ export type EventFilter = {
3416
3416
  priceCurrency?: InputMaybe<Scalars['String']['input']>;
3417
3417
  /** The query syntax for the search text. Defaults to Simple. */
3418
3418
  queryType?: InputMaybe<SearchQueryTypes>;
3419
- /** Filter event(s) by searching for specific text. */
3419
+ /** Filter event(s) by searching for similar text. */
3420
3420
  search?: InputMaybe<Scalars['String']['input']>;
3421
3421
  /** The type of search to be used. Defaults to Vector. */
3422
3422
  searchType?: InputMaybe<SearchTypes>;
@@ -3683,7 +3683,7 @@ export type FeedFilter = {
3683
3683
  direction?: InputMaybe<OrderDirectionTypes>;
3684
3684
  /** Filter feed(s) by their unique ID. */
3685
3685
  id?: InputMaybe<Scalars['ID']['input']>;
3686
- /** Limit the number of feed(s) to be returned. */
3686
+ /** Limit the number of feed(s) to be returned. Defaults to 100. */
3687
3687
  limit?: InputMaybe<Scalars['Int']['input']>;
3688
3688
  /** Filter feed(s) by their name. */
3689
3689
  name?: InputMaybe<Scalars['String']['input']>;
@@ -3691,7 +3691,7 @@ export type FeedFilter = {
3691
3691
  offset?: InputMaybe<Scalars['Int']['input']>;
3692
3692
  /** The sort order for query results. */
3693
3693
  orderBy?: InputMaybe<OrderByTypes>;
3694
- /** Filter feed(s) by searching for specific text. */
3694
+ /** Filter feed(s) by searching for similar text. */
3695
3695
  search?: InputMaybe<Scalars['String']['input']>;
3696
3696
  /** Filter feed(s) by their states. */
3697
3697
  states?: InputMaybe<Array<EntityState>>;
@@ -5061,7 +5061,7 @@ export type LabelFilter = {
5061
5061
  direction?: InputMaybe<OrderDirectionTypes>;
5062
5062
  /** Filter label(s) by their unique ID. */
5063
5063
  id?: InputMaybe<Scalars['ID']['input']>;
5064
- /** Limit the number of label(s) to be returned. */
5064
+ /** Limit the number of label(s) to be returned. Defaults to 100. */
5065
5065
  limit?: InputMaybe<Scalars['Int']['input']>;
5066
5066
  /** Filter label(s) by their name. */
5067
5067
  name?: InputMaybe<Scalars['String']['input']>;
@@ -5069,7 +5069,7 @@ export type LabelFilter = {
5069
5069
  offset?: InputMaybe<Scalars['Int']['input']>;
5070
5070
  /** The sort order for query results. */
5071
5071
  orderBy?: InputMaybe<OrderByTypes>;
5072
- /** Filter label(s) by searching for specific text. */
5072
+ /** Filter label(s) by searching for similar text. */
5073
5073
  search?: InputMaybe<Scalars['String']['input']>;
5074
5074
  /** Filter label(s) by their states. */
5075
5075
  states?: InputMaybe<Array<EntityState>>;
@@ -5411,13 +5411,13 @@ export type MedicalConditionFilter = {
5411
5411
  h3?: InputMaybe<H3Filter>;
5412
5412
  /** Filter medicalcondition(s) by their unique ID. */
5413
5413
  id?: InputMaybe<Scalars['ID']['input']>;
5414
- /** Limit the number of medicalcondition(s) to be returned. */
5414
+ /** Limit the number of medicalcondition(s) to be returned. Defaults to 100. */
5415
5415
  limit?: InputMaybe<Scalars['Int']['input']>;
5416
5416
  /** Filter by observable geo-location. */
5417
5417
  location?: InputMaybe<PointFilter>;
5418
5418
  /** Filter medicalcondition(s) by their name. */
5419
5419
  name?: InputMaybe<Scalars['String']['input']>;
5420
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5420
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5421
5421
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5422
5422
  /** Skip the specified number of medicalcondition(s) from the beginning of the result set. Only supported on keyword search. */
5423
5423
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5425,7 +5425,7 @@ export type MedicalConditionFilter = {
5425
5425
  orderBy?: InputMaybe<OrderByTypes>;
5426
5426
  /** The query syntax for the search text. Defaults to Simple. */
5427
5427
  queryType?: InputMaybe<SearchQueryTypes>;
5428
- /** Filter medicalcondition(s) by searching for specific text. */
5428
+ /** Filter medicalcondition(s) by searching for similar text. */
5429
5429
  search?: InputMaybe<Scalars['String']['input']>;
5430
5430
  /** The type of search to be used. Defaults to Vector. */
5431
5431
  searchType?: InputMaybe<SearchTypes>;
@@ -5554,13 +5554,13 @@ export type MedicalContraindicationFilter = {
5554
5554
  h3?: InputMaybe<H3Filter>;
5555
5555
  /** Filter medicalcontraindication(s) by their unique ID. */
5556
5556
  id?: InputMaybe<Scalars['ID']['input']>;
5557
- /** Limit the number of medicalcontraindication(s) to be returned. */
5557
+ /** Limit the number of medicalcontraindication(s) to be returned. Defaults to 100. */
5558
5558
  limit?: InputMaybe<Scalars['Int']['input']>;
5559
5559
  /** Filter by observable geo-location. */
5560
5560
  location?: InputMaybe<PointFilter>;
5561
5561
  /** Filter medicalcontraindication(s) by their name. */
5562
5562
  name?: InputMaybe<Scalars['String']['input']>;
5563
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5563
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5564
5564
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5565
5565
  /** Skip the specified number of medicalcontraindication(s) from the beginning of the result set. Only supported on keyword search. */
5566
5566
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5568,7 +5568,7 @@ export type MedicalContraindicationFilter = {
5568
5568
  orderBy?: InputMaybe<OrderByTypes>;
5569
5569
  /** The query syntax for the search text. Defaults to Simple. */
5570
5570
  queryType?: InputMaybe<SearchQueryTypes>;
5571
- /** Filter medicalcontraindication(s) by searching for specific text. */
5571
+ /** Filter medicalcontraindication(s) by searching for similar text. */
5572
5572
  search?: InputMaybe<Scalars['String']['input']>;
5573
5573
  /** The type of search to be used. Defaults to Vector. */
5574
5574
  searchType?: InputMaybe<SearchTypes>;
@@ -5697,13 +5697,13 @@ export type MedicalDeviceFilter = {
5697
5697
  h3?: InputMaybe<H3Filter>;
5698
5698
  /** Filter medicaldevice(s) by their unique ID. */
5699
5699
  id?: InputMaybe<Scalars['ID']['input']>;
5700
- /** Limit the number of medicaldevice(s) to be returned. */
5700
+ /** Limit the number of medicaldevice(s) to be returned. Defaults to 100. */
5701
5701
  limit?: InputMaybe<Scalars['Int']['input']>;
5702
5702
  /** Filter by observable geo-location. */
5703
5703
  location?: InputMaybe<PointFilter>;
5704
5704
  /** Filter medicaldevice(s) by their name. */
5705
5705
  name?: InputMaybe<Scalars['String']['input']>;
5706
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5706
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5707
5707
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5708
5708
  /** Skip the specified number of medicaldevice(s) from the beginning of the result set. Only supported on keyword search. */
5709
5709
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5711,7 +5711,7 @@ export type MedicalDeviceFilter = {
5711
5711
  orderBy?: InputMaybe<OrderByTypes>;
5712
5712
  /** The query syntax for the search text. Defaults to Simple. */
5713
5713
  queryType?: InputMaybe<SearchQueryTypes>;
5714
- /** Filter medicaldevice(s) by searching for specific text. */
5714
+ /** Filter medicaldevice(s) by searching for similar text. */
5715
5715
  search?: InputMaybe<Scalars['String']['input']>;
5716
5716
  /** The type of search to be used. Defaults to Vector. */
5717
5717
  searchType?: InputMaybe<SearchTypes>;
@@ -5876,13 +5876,13 @@ export type MedicalDrugClassFilter = {
5876
5876
  h3?: InputMaybe<H3Filter>;
5877
5877
  /** Filter medicaldrugclass(s) by their unique ID. */
5878
5878
  id?: InputMaybe<Scalars['ID']['input']>;
5879
- /** Limit the number of medicaldrugclass(s) to be returned. */
5879
+ /** Limit the number of medicaldrugclass(s) to be returned. Defaults to 100. */
5880
5880
  limit?: InputMaybe<Scalars['Int']['input']>;
5881
5881
  /** Filter by observable geo-location. */
5882
5882
  location?: InputMaybe<PointFilter>;
5883
5883
  /** Filter medicaldrugclass(s) by their name. */
5884
5884
  name?: InputMaybe<Scalars['String']['input']>;
5885
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5885
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5886
5886
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5887
5887
  /** Skip the specified number of medicaldrugclass(s) from the beginning of the result set. Only supported on keyword search. */
5888
5888
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5890,7 +5890,7 @@ export type MedicalDrugClassFilter = {
5890
5890
  orderBy?: InputMaybe<OrderByTypes>;
5891
5891
  /** The query syntax for the search text. Defaults to Simple. */
5892
5892
  queryType?: InputMaybe<SearchQueryTypes>;
5893
- /** Filter medicaldrugclass(s) by searching for specific text. */
5893
+ /** Filter medicaldrugclass(s) by searching for similar text. */
5894
5894
  search?: InputMaybe<Scalars['String']['input']>;
5895
5895
  /** The type of search to be used. Defaults to Vector. */
5896
5896
  searchType?: InputMaybe<SearchTypes>;
@@ -5983,13 +5983,13 @@ export type MedicalDrugFilter = {
5983
5983
  h3?: InputMaybe<H3Filter>;
5984
5984
  /** Filter medicaldrug(s) by their unique ID. */
5985
5985
  id?: InputMaybe<Scalars['ID']['input']>;
5986
- /** Limit the number of medicaldrug(s) to be returned. */
5986
+ /** Limit the number of medicaldrug(s) to be returned. Defaults to 100. */
5987
5987
  limit?: InputMaybe<Scalars['Int']['input']>;
5988
5988
  /** Filter by observable geo-location. */
5989
5989
  location?: InputMaybe<PointFilter>;
5990
5990
  /** Filter medicaldrug(s) by their name. */
5991
5991
  name?: InputMaybe<Scalars['String']['input']>;
5992
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5992
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
5993
5993
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5994
5994
  /** Skip the specified number of medicaldrug(s) from the beginning of the result set. Only supported on keyword search. */
5995
5995
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -5997,7 +5997,7 @@ export type MedicalDrugFilter = {
5997
5997
  orderBy?: InputMaybe<OrderByTypes>;
5998
5998
  /** The query syntax for the search text. Defaults to Simple. */
5999
5999
  queryType?: InputMaybe<SearchQueryTypes>;
6000
- /** Filter medicaldrug(s) by searching for specific text. */
6000
+ /** Filter medicaldrug(s) by searching for similar text. */
6001
6001
  search?: InputMaybe<Scalars['String']['input']>;
6002
6002
  /** The type of search to be used. Defaults to Vector. */
6003
6003
  searchType?: InputMaybe<SearchTypes>;
@@ -6126,13 +6126,13 @@ export type MedicalGuidelineFilter = {
6126
6126
  h3?: InputMaybe<H3Filter>;
6127
6127
  /** Filter medicalguideline(s) by their unique ID. */
6128
6128
  id?: InputMaybe<Scalars['ID']['input']>;
6129
- /** Limit the number of medicalguideline(s) to be returned. */
6129
+ /** Limit the number of medicalguideline(s) to be returned. Defaults to 100. */
6130
6130
  limit?: InputMaybe<Scalars['Int']['input']>;
6131
6131
  /** Filter by observable geo-location. */
6132
6132
  location?: InputMaybe<PointFilter>;
6133
6133
  /** Filter medicalguideline(s) by their name. */
6134
6134
  name?: InputMaybe<Scalars['String']['input']>;
6135
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6135
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6136
6136
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6137
6137
  /** Skip the specified number of medicalguideline(s) from the beginning of the result set. Only supported on keyword search. */
6138
6138
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6140,7 +6140,7 @@ export type MedicalGuidelineFilter = {
6140
6140
  orderBy?: InputMaybe<OrderByTypes>;
6141
6141
  /** The query syntax for the search text. Defaults to Simple. */
6142
6142
  queryType?: InputMaybe<SearchQueryTypes>;
6143
- /** Filter medicalguideline(s) by searching for specific text. */
6143
+ /** Filter medicalguideline(s) by searching for similar text. */
6144
6144
  search?: InputMaybe<Scalars['String']['input']>;
6145
6145
  /** The type of search to be used. Defaults to Vector. */
6146
6146
  searchType?: InputMaybe<SearchTypes>;
@@ -6269,13 +6269,13 @@ export type MedicalIndicationFilter = {
6269
6269
  id?: InputMaybe<Scalars['ID']['input']>;
6270
6270
  /** Filter by similar medical indications. */
6271
6271
  indications?: InputMaybe<Array<EntityReferenceFilter>>;
6272
- /** Limit the number of medicalindication(s) to be returned. */
6272
+ /** Limit the number of medicalindication(s) to be returned. Defaults to 100. */
6273
6273
  limit?: InputMaybe<Scalars['Int']['input']>;
6274
6274
  /** Filter by observable geo-location. */
6275
6275
  location?: InputMaybe<PointFilter>;
6276
6276
  /** Filter medicalindication(s) by their name. */
6277
6277
  name?: InputMaybe<Scalars['String']['input']>;
6278
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6278
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6279
6279
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6280
6280
  /** Skip the specified number of medicalindication(s) from the beginning of the result set. Only supported on keyword search. */
6281
6281
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6283,7 +6283,7 @@ export type MedicalIndicationFilter = {
6283
6283
  orderBy?: InputMaybe<OrderByTypes>;
6284
6284
  /** The query syntax for the search text. Defaults to Simple. */
6285
6285
  queryType?: InputMaybe<SearchQueryTypes>;
6286
- /** Filter medicalindication(s) by searching for specific text. */
6286
+ /** Filter medicalindication(s) by searching for similar text. */
6287
6287
  search?: InputMaybe<Scalars['String']['input']>;
6288
6288
  /** The type of search to be used. Defaults to Vector. */
6289
6289
  searchType?: InputMaybe<SearchTypes>;
@@ -6410,13 +6410,13 @@ export type MedicalProcedureFilter = {
6410
6410
  h3?: InputMaybe<H3Filter>;
6411
6411
  /** Filter medicalprocedure(s) by their unique ID. */
6412
6412
  id?: InputMaybe<Scalars['ID']['input']>;
6413
- /** Limit the number of medicalprocedure(s) to be returned. */
6413
+ /** Limit the number of medicalprocedure(s) to be returned. Defaults to 100. */
6414
6414
  limit?: InputMaybe<Scalars['Int']['input']>;
6415
6415
  /** Filter by observable geo-location. */
6416
6416
  location?: InputMaybe<PointFilter>;
6417
6417
  /** Filter medicalprocedure(s) by their name. */
6418
6418
  name?: InputMaybe<Scalars['String']['input']>;
6419
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6419
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6420
6420
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6421
6421
  /** Skip the specified number of medicalprocedure(s) from the beginning of the result set. Only supported on keyword search. */
6422
6422
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6426,7 +6426,7 @@ export type MedicalProcedureFilter = {
6426
6426
  procedures?: InputMaybe<Array<EntityReferenceFilter>>;
6427
6427
  /** The query syntax for the search text. Defaults to Simple. */
6428
6428
  queryType?: InputMaybe<SearchQueryTypes>;
6429
- /** Filter medicalprocedure(s) by searching for specific text. */
6429
+ /** Filter medicalprocedure(s) by searching for similar text. */
6430
6430
  search?: InputMaybe<Scalars['String']['input']>;
6431
6431
  /** The type of search to be used. Defaults to Vector. */
6432
6432
  searchType?: InputMaybe<SearchTypes>;
@@ -6555,13 +6555,13 @@ export type MedicalStudyFilter = {
6555
6555
  h3?: InputMaybe<H3Filter>;
6556
6556
  /** Filter medicalstudy(s) by their unique ID. */
6557
6557
  id?: InputMaybe<Scalars['ID']['input']>;
6558
- /** Limit the number of medicalstudy(s) to be returned. */
6558
+ /** Limit the number of medicalstudy(s) to be returned. Defaults to 100. */
6559
6559
  limit?: InputMaybe<Scalars['Int']['input']>;
6560
6560
  /** Filter by observable geo-location. */
6561
6561
  location?: InputMaybe<PointFilter>;
6562
6562
  /** Filter medicalstudy(s) by their name. */
6563
6563
  name?: InputMaybe<Scalars['String']['input']>;
6564
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6564
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6565
6565
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6566
6566
  /** Skip the specified number of medicalstudy(s) from the beginning of the result set. Only supported on keyword search. */
6567
6567
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6569,7 +6569,7 @@ export type MedicalStudyFilter = {
6569
6569
  orderBy?: InputMaybe<OrderByTypes>;
6570
6570
  /** The query syntax for the search text. Defaults to Simple. */
6571
6571
  queryType?: InputMaybe<SearchQueryTypes>;
6572
- /** Filter medicalstudy(s) by searching for specific text. */
6572
+ /** Filter medicalstudy(s) by searching for similar text. */
6573
6573
  search?: InputMaybe<Scalars['String']['input']>;
6574
6574
  /** The type of search to be used. Defaults to Vector. */
6575
6575
  searchType?: InputMaybe<SearchTypes>;
@@ -6704,13 +6704,13 @@ export type MedicalTestFilter = {
6704
6704
  h3?: InputMaybe<H3Filter>;
6705
6705
  /** Filter medicaltest(s) by their unique ID. */
6706
6706
  id?: InputMaybe<Scalars['ID']['input']>;
6707
- /** Limit the number of medicaltest(s) to be returned. */
6707
+ /** Limit the number of medicaltest(s) to be returned. Defaults to 100. */
6708
6708
  limit?: InputMaybe<Scalars['Int']['input']>;
6709
6709
  /** Filter by observable geo-location. */
6710
6710
  location?: InputMaybe<PointFilter>;
6711
6711
  /** Filter medicaltest(s) by their name. */
6712
6712
  name?: InputMaybe<Scalars['String']['input']>;
6713
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6713
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6714
6714
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6715
6715
  /** Skip the specified number of medicaltest(s) from the beginning of the result set. Only supported on keyword search. */
6716
6716
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6718,7 +6718,7 @@ export type MedicalTestFilter = {
6718
6718
  orderBy?: InputMaybe<OrderByTypes>;
6719
6719
  /** The query syntax for the search text. Defaults to Simple. */
6720
6720
  queryType?: InputMaybe<SearchQueryTypes>;
6721
- /** Filter medicaltest(s) by searching for specific text. */
6721
+ /** Filter medicaltest(s) by searching for similar text. */
6722
6722
  search?: InputMaybe<Scalars['String']['input']>;
6723
6723
  /** The type of search to be used. Defaults to Vector. */
6724
6724
  searchType?: InputMaybe<SearchTypes>;
@@ -6847,13 +6847,13 @@ export type MedicalTherapyFilter = {
6847
6847
  h3?: InputMaybe<H3Filter>;
6848
6848
  /** Filter medicaltherapy(s) by their unique ID. */
6849
6849
  id?: InputMaybe<Scalars['ID']['input']>;
6850
- /** Limit the number of medicaltherapy(s) to be returned. */
6850
+ /** Limit the number of medicaltherapy(s) to be returned. Defaults to 100. */
6851
6851
  limit?: InputMaybe<Scalars['Int']['input']>;
6852
6852
  /** Filter by observable geo-location. */
6853
6853
  location?: InputMaybe<PointFilter>;
6854
6854
  /** Filter medicaltherapy(s) by their name. */
6855
6855
  name?: InputMaybe<Scalars['String']['input']>;
6856
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6856
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
6857
6857
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6858
6858
  /** Skip the specified number of medicaltherapy(s) from the beginning of the result set. Only supported on keyword search. */
6859
6859
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -6861,7 +6861,7 @@ export type MedicalTherapyFilter = {
6861
6861
  orderBy?: InputMaybe<OrderByTypes>;
6862
6862
  /** The query syntax for the search text. Defaults to Simple. */
6863
6863
  queryType?: InputMaybe<SearchQueryTypes>;
6864
- /** Filter medicaltherapy(s) by searching for specific text. */
6864
+ /** Filter medicaltherapy(s) by searching for similar text. */
6865
6865
  search?: InputMaybe<Scalars['String']['input']>;
6866
6866
  /** The type of search to be used. Defaults to Vector. */
6867
6867
  searchType?: InputMaybe<SearchTypes>;
@@ -6952,7 +6952,7 @@ export type MetadataFilter = {
6952
6952
  direction?: InputMaybe<OrderDirectionTypes>;
6953
6953
  /** Filter metadata(s) by their unique ID. */
6954
6954
  id?: InputMaybe<Scalars['ID']['input']>;
6955
- /** Limit the number of metadata(s) to be returned. */
6955
+ /** Limit the number of metadata(s) to be returned. Defaults to 100. */
6956
6956
  limit?: InputMaybe<Scalars['Int']['input']>;
6957
6957
  /** Filter by metadata types. */
6958
6958
  metadataTypes?: InputMaybe<Array<InputMaybe<MetadataTypes>>>;
@@ -6962,7 +6962,7 @@ export type MetadataFilter = {
6962
6962
  offset?: InputMaybe<Scalars['Int']['input']>;
6963
6963
  /** The sort order for query results. */
6964
6964
  orderBy?: InputMaybe<OrderByTypes>;
6965
- /** Filter metadata(s) by searching for specific text. */
6965
+ /** Filter metadata(s) by searching for similar text. */
6966
6966
  search?: InputMaybe<Scalars['String']['input']>;
6967
6967
  /** Filter metadata(s) by their states. */
6968
6968
  states?: InputMaybe<Array<EntityState>>;
@@ -7817,6 +7817,14 @@ export type Mutation = {
7817
7817
  updateUser?: Maybe<User>;
7818
7818
  /** Updates an existing content workflow. */
7819
7819
  updateWorkflow?: Maybe<Workflow>;
7820
+ /** Upserts a category. */
7821
+ upsertCategory?: Maybe<Category>;
7822
+ /** Upserts a label. */
7823
+ upsertLabel?: Maybe<Label>;
7824
+ /** Upserts an LLM specification. */
7825
+ upsertSpecification?: Maybe<Specification>;
7826
+ /** Upserts a content workflow. */
7827
+ upsertWorkflow?: Maybe<Workflow>;
7820
7828
  };
7821
7829
  export type MutationAddCollectionContentsArgs = {
7822
7830
  contents: Array<EntityReferenceInput>;
@@ -8633,6 +8641,18 @@ export type MutationUpdateUserArgs = {
8633
8641
  export type MutationUpdateWorkflowArgs = {
8634
8642
  workflow: WorkflowUpdateInput;
8635
8643
  };
8644
+ export type MutationUpsertCategoryArgs = {
8645
+ category: CategoryInput;
8646
+ };
8647
+ export type MutationUpsertLabelArgs = {
8648
+ label: LabelInput;
8649
+ };
8650
+ export type MutationUpsertSpecificationArgs = {
8651
+ specification: SpecificationInput;
8652
+ };
8653
+ export type MutationUpsertWorkflowArgs = {
8654
+ workflow: WorkflowInput;
8655
+ };
8636
8656
  /** Represents a named entity reference. */
8637
8657
  export type NamedEntityReference = {
8638
8658
  __typename?: 'NamedEntityReference';
@@ -9280,13 +9300,13 @@ export type OrganizationFilter = {
9280
9300
  h3?: InputMaybe<H3Filter>;
9281
9301
  /** Filter organization(s) by their unique ID. */
9282
9302
  id?: InputMaybe<Scalars['ID']['input']>;
9283
- /** Limit the number of organization(s) to be returned. */
9303
+ /** Limit the number of organization(s) to be returned. Defaults to 100. */
9284
9304
  limit?: InputMaybe<Scalars['Int']['input']>;
9285
9305
  /** Filter by observable geo-location. */
9286
9306
  location?: InputMaybe<PointFilter>;
9287
9307
  /** Filter organization(s) by their name. */
9288
9308
  name?: InputMaybe<Scalars['String']['input']>;
9289
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
9309
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
9290
9310
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
9291
9311
  /** Skip the specified number of organization(s) from the beginning of the result set. Only supported on keyword search. */
9292
9312
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -9296,7 +9316,7 @@ export type OrganizationFilter = {
9296
9316
  organizations?: InputMaybe<Array<EntityReferenceFilter>>;
9297
9317
  /** The query syntax for the search text. Defaults to Simple. */
9298
9318
  queryType?: InputMaybe<SearchQueryTypes>;
9299
- /** Filter organization(s) by searching for specific text. */
9319
+ /** Filter organization(s) by searching for similar text. */
9300
9320
  search?: InputMaybe<Scalars['String']['input']>;
9301
9321
  /** The type of search to be used. Defaults to Vector. */
9302
9322
  searchType?: InputMaybe<SearchTypes>;
@@ -9527,13 +9547,13 @@ export type PersonFilter = {
9527
9547
  h3?: InputMaybe<H3Filter>;
9528
9548
  /** Filter person(s) by their unique ID. */
9529
9549
  id?: InputMaybe<Scalars['ID']['input']>;
9530
- /** Limit the number of person(s) to be returned. */
9550
+ /** Limit the number of person(s) to be returned. Defaults to 100. */
9531
9551
  limit?: InputMaybe<Scalars['Int']['input']>;
9532
9552
  /** Filter by observable geo-location. */
9533
9553
  location?: InputMaybe<PointFilter>;
9534
9554
  /** Filter person(s) by their name. */
9535
9555
  name?: InputMaybe<Scalars['String']['input']>;
9536
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
9556
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
9537
9557
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
9538
9558
  /** Skip the specified number of person(s) from the beginning of the result set. Only supported on keyword search. */
9539
9559
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -9545,7 +9565,7 @@ export type PersonFilter = {
9545
9565
  phoneNumber?: InputMaybe<Scalars['String']['input']>;
9546
9566
  /** The query syntax for the search text. Defaults to Simple. */
9547
9567
  queryType?: InputMaybe<SearchQueryTypes>;
9548
- /** Filter person(s) by searching for specific text. */
9568
+ /** Filter person(s) by searching for similar text. */
9549
9569
  search?: InputMaybe<Scalars['String']['input']>;
9550
9570
  /** The type of search to be used. Defaults to Vector. */
9551
9571
  searchType?: InputMaybe<SearchTypes>;
@@ -9726,13 +9746,13 @@ export type PlaceFilter = {
9726
9746
  h3?: InputMaybe<H3Filter>;
9727
9747
  /** Filter place(s) by their unique ID. */
9728
9748
  id?: InputMaybe<Scalars['ID']['input']>;
9729
- /** Limit the number of place(s) to be returned. */
9749
+ /** Limit the number of place(s) to be returned. Defaults to 100. */
9730
9750
  limit?: InputMaybe<Scalars['Int']['input']>;
9731
9751
  /** Filter by observable geo-location. */
9732
9752
  location?: InputMaybe<PointFilter>;
9733
9753
  /** Filter place(s) by their name. */
9734
9754
  name?: InputMaybe<Scalars['String']['input']>;
9735
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
9755
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
9736
9756
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
9737
9757
  /** Skip the specified number of place(s) from the beginning of the result set. Only supported on keyword search. */
9738
9758
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -9742,7 +9762,7 @@ export type PlaceFilter = {
9742
9762
  places?: InputMaybe<Array<EntityReferenceFilter>>;
9743
9763
  /** The query syntax for the search text. Defaults to Simple. */
9744
9764
  queryType?: InputMaybe<SearchQueryTypes>;
9745
- /** Filter place(s) by searching for specific text. */
9765
+ /** Filter place(s) by searching for similar text. */
9746
9766
  search?: InputMaybe<Scalars['String']['input']>;
9747
9767
  /** The type of search to be used. Defaults to Vector. */
9748
9768
  searchType?: InputMaybe<SearchTypes>;
@@ -9989,7 +10009,7 @@ export type ProductFilter = {
9989
10009
  h3?: InputMaybe<H3Filter>;
9990
10010
  /** Filter product(s) by their unique ID. */
9991
10011
  id?: InputMaybe<Scalars['ID']['input']>;
9992
- /** Limit the number of product(s) to be returned. */
10012
+ /** Limit the number of product(s) to be returned. Defaults to 100. */
9993
10013
  limit?: InputMaybe<Scalars['Int']['input']>;
9994
10014
  /** Filter by observable geo-location. */
9995
10015
  location?: InputMaybe<PointFilter>;
@@ -9999,7 +10019,7 @@ export type ProductFilter = {
9999
10019
  model?: InputMaybe<Scalars['String']['input']>;
10000
10020
  /** Filter product(s) by their name. */
10001
10021
  name?: InputMaybe<Scalars['String']['input']>;
10002
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
10022
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
10003
10023
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
10004
10024
  /** Skip the specified number of product(s) from the beginning of the result set. Only supported on keyword search. */
10005
10025
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -10013,7 +10033,7 @@ export type ProductFilter = {
10013
10033
  queryType?: InputMaybe<SearchQueryTypes>;
10014
10034
  /** Filter by release date range. */
10015
10035
  releaseDateRange?: InputMaybe<DateRangeFilter>;
10016
- /** Filter product(s) by searching for specific text. */
10036
+ /** Filter product(s) by searching for similar text. */
10017
10037
  search?: InputMaybe<Scalars['String']['input']>;
10018
10038
  /** The type of search to be used. Defaults to Vector. */
10019
10039
  searchType?: InputMaybe<SearchTypes>;
@@ -10184,7 +10204,7 @@ export type ProjectFilter = {
10184
10204
  direction?: InputMaybe<OrderDirectionTypes>;
10185
10205
  /** Filter project(s) by their unique ID. */
10186
10206
  id?: InputMaybe<Scalars['ID']['input']>;
10187
- /** Limit the number of project(s) to be returned. */
10207
+ /** Limit the number of project(s) to be returned. Defaults to 100. */
10188
10208
  limit?: InputMaybe<Scalars['Int']['input']>;
10189
10209
  /** Filter project(s) by their name. */
10190
10210
  name?: InputMaybe<Scalars['String']['input']>;
@@ -10192,7 +10212,7 @@ export type ProjectFilter = {
10192
10212
  offset?: InputMaybe<Scalars['Int']['input']>;
10193
10213
  /** The sort order for query results. */
10194
10214
  orderBy?: InputMaybe<OrderByTypes>;
10195
- /** Filter project(s) by searching for specific text. */
10215
+ /** Filter project(s) by searching for similar text. */
10196
10216
  search?: InputMaybe<Scalars['String']['input']>;
10197
10217
  /** Filter project(s) by their states. */
10198
10218
  states?: InputMaybe<Array<EntityState>>;
@@ -10632,6 +10652,8 @@ export type Query = {
10632
10652
  events?: Maybe<EventResults>;
10633
10653
  /** Lookup a feed given its ID. */
10634
10654
  feed?: Maybe<Feed>;
10655
+ /** Returns whether any feed exists based on the provided filter criteria. */
10656
+ feedExists?: Maybe<BooleanResult>;
10635
10657
  /** Retrieves feeds based on the provided filter criteria. */
10636
10658
  feeds?: Maybe<FeedResults>;
10637
10659
  /** Returns if ingested content has finished (or errored). */
@@ -10746,6 +10768,8 @@ export type Query = {
10746
10768
  softwares?: Maybe<SoftwareResults>;
10747
10769
  /** Lookup a specification given its ID. */
10748
10770
  specification?: Maybe<Specification>;
10771
+ /** Returns whether any specification exists based on the provided filter criteria. */
10772
+ specificationExists?: Maybe<BooleanResult>;
10749
10773
  /** Retrieves specifications based on the provided filter criteria. */
10750
10774
  specifications?: Maybe<SpecificationResults>;
10751
10775
  /** Retrieves project usage. */
@@ -10758,6 +10782,8 @@ export type Query = {
10758
10782
  users?: Maybe<UserResults>;
10759
10783
  /** Lookup a workflow given its ID. */
10760
10784
  workflow?: Maybe<Workflow>;
10785
+ /** Returns whether any workflow exists based on the provided filter criteria. */
10786
+ workflowExists?: Maybe<BooleanResult>;
10761
10787
  /** Retrieves workflows based on the provided filter criteria. */
10762
10788
  workflows?: Maybe<WorkflowResults>;
10763
10789
  };
@@ -10941,6 +10967,10 @@ export type QueryFeedArgs = {
10941
10967
  correlationId?: InputMaybe<Scalars['String']['input']>;
10942
10968
  id: Scalars['ID']['input'];
10943
10969
  };
10970
+ export type QueryFeedExistsArgs = {
10971
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10972
+ filter?: InputMaybe<FeedFilter>;
10973
+ };
10944
10974
  export type QueryFeedsArgs = {
10945
10975
  correlationId?: InputMaybe<Scalars['String']['input']>;
10946
10976
  filter?: InputMaybe<FeedFilter>;
@@ -11183,6 +11213,10 @@ export type QuerySpecificationArgs = {
11183
11213
  correlationId?: InputMaybe<Scalars['String']['input']>;
11184
11214
  id: Scalars['ID']['input'];
11185
11215
  };
11216
+ export type QuerySpecificationExistsArgs = {
11217
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11218
+ filter?: InputMaybe<SpecificationFilter>;
11219
+ };
11186
11220
  export type QuerySpecificationsArgs = {
11187
11221
  correlationId?: InputMaybe<Scalars['String']['input']>;
11188
11222
  filter?: InputMaybe<SpecificationFilter>;
@@ -11209,6 +11243,10 @@ export type QueryWorkflowArgs = {
11209
11243
  correlationId?: InputMaybe<Scalars['String']['input']>;
11210
11244
  id: Scalars['ID']['input'];
11211
11245
  };
11246
+ export type QueryWorkflowExistsArgs = {
11247
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11248
+ filter?: InputMaybe<WorkflowFilter>;
11249
+ };
11212
11250
  export type QueryWorkflowsArgs = {
11213
11251
  correlationId?: InputMaybe<Scalars['String']['input']>;
11214
11252
  filter?: InputMaybe<WorkflowFilter>;
@@ -11492,13 +11530,13 @@ export type RepoFilter = {
11492
11530
  h3?: InputMaybe<H3Filter>;
11493
11531
  /** Filter repo(s) by their unique ID. */
11494
11532
  id?: InputMaybe<Scalars['ID']['input']>;
11495
- /** Limit the number of repo(s) to be returned. */
11533
+ /** Limit the number of repo(s) to be returned. Defaults to 100. */
11496
11534
  limit?: InputMaybe<Scalars['Int']['input']>;
11497
11535
  /** Filter by observable geo-location. */
11498
11536
  location?: InputMaybe<PointFilter>;
11499
11537
  /** Filter repo(s) by their name. */
11500
11538
  name?: InputMaybe<Scalars['String']['input']>;
11501
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
11539
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
11502
11540
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
11503
11541
  /** Skip the specified number of repo(s) from the beginning of the result set. Only supported on keyword search. */
11504
11542
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -11508,7 +11546,7 @@ export type RepoFilter = {
11508
11546
  queryType?: InputMaybe<SearchQueryTypes>;
11509
11547
  /** Filter by similar code repositories. */
11510
11548
  repos?: InputMaybe<Array<EntityReferenceFilter>>;
11511
- /** Filter repo(s) by searching for specific text. */
11549
+ /** Filter repo(s) by searching for similar text. */
11512
11550
  search?: InputMaybe<Scalars['String']['input']>;
11513
11551
  /** The type of search to be used. Defaults to Vector. */
11514
11552
  searchType?: InputMaybe<SearchTypes>;
@@ -11717,6 +11755,8 @@ export declare enum SearchQueryTypes {
11717
11755
  export declare enum SearchServiceTypes {
11718
11756
  /** Exa search feed service */
11719
11757
  Exa = "EXA",
11758
+ /** Podscan search feed service */
11759
+ Podscan = "PODSCAN",
11720
11760
  /** Tavily search feed service */
11721
11761
  Tavily = "TAVILY"
11722
11762
  }
@@ -12107,13 +12147,13 @@ export type SoftwareFilter = {
12107
12147
  h3?: InputMaybe<H3Filter>;
12108
12148
  /** Filter software(s) by their unique ID. */
12109
12149
  id?: InputMaybe<Scalars['ID']['input']>;
12110
- /** Limit the number of software(s) to be returned. */
12150
+ /** Limit the number of software(s) to be returned. Defaults to 100. */
12111
12151
  limit?: InputMaybe<Scalars['Int']['input']>;
12112
12152
  /** Filter by observable geo-location. */
12113
12153
  location?: InputMaybe<PointFilter>;
12114
12154
  /** Filter software(s) by their name. */
12115
12155
  name?: InputMaybe<Scalars['String']['input']>;
12116
- /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
12156
+ /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
12117
12157
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
12118
12158
  /** Skip the specified number of software(s) from the beginning of the result set. Only supported on keyword search. */
12119
12159
  offset?: InputMaybe<Scalars['Int']['input']>;
@@ -12121,7 +12161,7 @@ export type SoftwareFilter = {
12121
12161
  orderBy?: InputMaybe<OrderByTypes>;
12122
12162
  /** The query syntax for the search text. Defaults to Simple. */
12123
12163
  queryType?: InputMaybe<SearchQueryTypes>;
12124
- /** Filter software(s) by searching for specific text. */
12164
+ /** Filter software(s) by searching for similar text. */
12125
12165
  search?: InputMaybe<Scalars['String']['input']>;
12126
12166
  /** The type of search to be used. Defaults to Vector. */
12127
12167
  searchType?: InputMaybe<SearchTypes>;
@@ -12207,7 +12247,7 @@ export type Specification = {
12207
12247
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
12208
12248
  /** The name of the specification. */
12209
12249
  name: Scalars['String']['output'];
12210
- /** The number of similar items to be returned from content search. Defaults to 1000. */
12250
+ /** The number of similar items to be returned from content search. Defaults to 100. */
12211
12251
  numberSimilar?: Maybe<Scalars['Int']['output']>;
12212
12252
  /** The OpenAI model properties. */
12213
12253
  openAI?: Maybe<OpenAiModelProperties>;
@@ -12252,7 +12292,7 @@ export type SpecificationFilter = {
12252
12292
  direction?: InputMaybe<OrderDirectionTypes>;
12253
12293
  /** Filter specification(s) by their unique ID. */
12254
12294
  id?: InputMaybe<Scalars['ID']['input']>;
12255
- /** Limit the number of specification(s) to be returned. */
12295
+ /** Limit the number of specification(s) to be returned. Defaults to 100. */
12256
12296
  limit?: InputMaybe<Scalars['Int']['input']>;
12257
12297
  /** Filter specification(s) by their name. */
12258
12298
  name?: InputMaybe<Scalars['String']['input']>;
@@ -12260,7 +12300,7 @@ export type SpecificationFilter = {
12260
12300
  offset?: InputMaybe<Scalars['Int']['input']>;
12261
12301
  /** The sort order for query results. */
12262
12302
  orderBy?: InputMaybe<OrderByTypes>;
12263
- /** Filter specification(s) by searching for specific text. */
12303
+ /** Filter specification(s) by searching for similar text. */
12264
12304
  search?: InputMaybe<Scalars['String']['input']>;
12265
12305
  /** Filter by LLM service types. */
12266
12306
  serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
@@ -12299,7 +12339,7 @@ export type SpecificationInput = {
12299
12339
  mistral?: InputMaybe<MistralModelPropertiesInput>;
12300
12340
  /** The name of the specification. */
12301
12341
  name: Scalars['String']['input'];
12302
- /** The number of similar items to be returned from content search. Defaults to 1000. */
12342
+ /** The number of similar items to be returned from content search. Defaults to 100. */
12303
12343
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
12304
12344
  /** The OpenAI model properties. */
12305
12345
  openAI?: InputMaybe<OpenAiModelPropertiesInput>;
@@ -12379,7 +12419,7 @@ export type SpecificationUpdateInput = {
12379
12419
  mistral?: InputMaybe<MistralModelPropertiesUpdateInput>;
12380
12420
  /** The name of the specification. */
12381
12421
  name?: InputMaybe<Scalars['String']['input']>;
12382
- /** The number of similar items to be returned from content search. Defaults to 1000. */
12422
+ /** The number of similar items to be returned from content search. Defaults to 100. */
12383
12423
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
12384
12424
  /** The OpenAI model properties. */
12385
12425
  openAI?: InputMaybe<OpenAiModelPropertiesUpdateInput>;
@@ -12842,7 +12882,7 @@ export type UserFilter = {
12842
12882
  id?: InputMaybe<Scalars['ID']['input']>;
12843
12883
  /** Filter users by their external identifier. */
12844
12884
  identifier?: InputMaybe<Scalars['String']['input']>;
12845
- /** Limit the number of user(s) to be returned. */
12885
+ /** Limit the number of user(s) to be returned. Defaults to 100. */
12846
12886
  limit?: InputMaybe<Scalars['Int']['input']>;
12847
12887
  /** Filter user(s) by their name. */
12848
12888
  name?: InputMaybe<Scalars['String']['input']>;
@@ -12850,7 +12890,7 @@ export type UserFilter = {
12850
12890
  offset?: InputMaybe<Scalars['Int']['input']>;
12851
12891
  /** The sort order for query results. */
12852
12892
  orderBy?: InputMaybe<OrderByTypes>;
12853
- /** Filter user(s) by searching for specific text. */
12893
+ /** Filter user(s) by searching for similar text. */
12854
12894
  search?: InputMaybe<Scalars['String']['input']>;
12855
12895
  /** Filter user(s) by their states. */
12856
12896
  states?: InputMaybe<Array<EntityState>>;
@@ -13041,9 +13081,9 @@ export type WebSearchResult = {
13041
13081
  score?: Maybe<Scalars['Float']['output']>;
13042
13082
  /** The relevant web page text. */
13043
13083
  text?: Maybe<Scalars['String']['output']>;
13044
- /** The web page title. */
13084
+ /** The content title. */
13045
13085
  title?: Maybe<Scalars['String']['output']>;
13046
- /** The web page URI. */
13086
+ /** The web search result URI, may be a web page or podcast episode. */
13047
13087
  uri: Scalars['URL']['output'];
13048
13088
  };
13049
13089
  /** Represents web search results. */
@@ -13107,7 +13147,7 @@ export type WorkflowFilter = {
13107
13147
  direction?: InputMaybe<OrderDirectionTypes>;
13108
13148
  /** Filter workflow(s) by their unique ID. */
13109
13149
  id?: InputMaybe<Scalars['ID']['input']>;
13110
- /** Limit the number of workflow(s) to be returned. */
13150
+ /** Limit the number of workflow(s) to be returned. Defaults to 100. */
13111
13151
  limit?: InputMaybe<Scalars['Int']['input']>;
13112
13152
  /** Filter workflow(s) by their name. */
13113
13153
  name?: InputMaybe<Scalars['String']['input']>;
@@ -13115,7 +13155,7 @@ export type WorkflowFilter = {
13115
13155
  offset?: InputMaybe<Scalars['Int']['input']>;
13116
13156
  /** The sort order for query results. */
13117
13157
  orderBy?: InputMaybe<OrderByTypes>;
13118
- /** Filter workflow(s) by searching for specific text. */
13158
+ /** Filter workflow(s) by searching for similar text. */
13119
13159
  search?: InputMaybe<Scalars['String']['input']>;
13120
13160
  /** Filter workflow(s) by their states. */
13121
13161
  states?: InputMaybe<Array<EntityState>>;
@@ -13795,6 +13835,17 @@ export type UpdateCategoryMutation = {
13795
13835
  name: string;
13796
13836
  } | null;
13797
13837
  };
13838
+ export type UpsertCategoryMutationVariables = Exact<{
13839
+ category: CategoryInput;
13840
+ }>;
13841
+ export type UpsertCategoryMutation = {
13842
+ __typename?: 'Mutation';
13843
+ upsertCategory?: {
13844
+ __typename?: 'Category';
13845
+ id: string;
13846
+ name: string;
13847
+ } | null;
13848
+ };
13798
13849
  export type AddContentsToCollectionsMutationVariables = Exact<{
13799
13850
  contents: Array<EntityReferenceInput> | EntityReferenceInput;
13800
13851
  collections: Array<EntityReferenceInput> | EntityReferenceInput;
@@ -14353,7 +14404,6 @@ export type GetContentQuery = {
14353
14404
  id: string;
14354
14405
  name: string;
14355
14406
  creationDate: any;
14356
- relevance?: number | null;
14357
14407
  state: EntityState;
14358
14408
  originalDate?: any | null;
14359
14409
  finishedDate?: any | null;
@@ -15220,7 +15270,6 @@ export type QueryContentsQuery = {
15220
15270
  uri?: any | null;
15221
15271
  description?: string | null;
15222
15272
  identifier?: string | null;
15223
- markdown?: string | null;
15224
15273
  type?: ContentTypes | null;
15225
15274
  fileType?: FileTypes | null;
15226
15275
  mimeType?: string | null;
@@ -15387,16 +15436,6 @@ export type QueryContentsQuery = {
15387
15436
  __typename?: 'LanguageMetadata';
15388
15437
  languages?: Array<string | null> | null;
15389
15438
  } | 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
15439
  feed?: {
15401
15440
  __typename?: 'Feed';
15402
15441
  id: string;
@@ -15504,332 +15543,46 @@ export type QueryContentsFacetsQuery = {
15504
15543
  __typename?: 'Query';
15505
15544
  contents?: {
15506
15545
  __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;
15546
+ facets?: Array<{
15547
+ __typename?: 'ContentFacet';
15548
+ facet?: ContentFacetTypes | null;
15549
+ count?: any | null;
15550
+ type?: FacetValueTypes | null;
15551
+ value?: string | null;
15552
+ range?: {
15553
+ __typename?: 'StringRange';
15554
+ from?: string | null;
15555
+ to?: string | null;
15628
15556
  } | 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';
15557
+ observable?: {
15558
+ __typename?: 'ObservableFacet';
15559
+ type?: ObservableTypes | null;
15560
+ observable?: {
15561
+ __typename?: 'NamedEntityReference';
15562
+ id: string;
15660
15563
  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;
15564
+ } | null;
15691
15565
  } | null;
15692
- children?: Array<{
15693
- __typename?: 'Content';
15566
+ } | null> | null;
15567
+ } | null;
15568
+ };
15569
+ export type QueryContentsGraphQueryVariables = Exact<{
15570
+ filter?: InputMaybe<ContentFilter>;
15571
+ graph?: InputMaybe<ContentGraphInput>;
15572
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15573
+ }>;
15574
+ export type QueryContentsGraphQuery = {
15575
+ __typename?: 'Query';
15576
+ contents?: {
15577
+ __typename?: 'ContentResults';
15578
+ graph?: {
15579
+ __typename?: 'Graph';
15580
+ nodes?: Array<{
15581
+ __typename?: 'GraphNode';
15694
15582
  id: string;
15695
15583
  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;
15584
+ type: EntityTypes;
15585
+ metadata?: string | null;
15833
15586
  } | null> | null;
15834
15587
  edges?: Array<{
15835
15588
  __typename?: 'GraphEdge';
@@ -19482,6 +19235,17 @@ export type EnableFeedMutation = {
19482
19235
  state: EntityState;
19483
19236
  } | null;
19484
19237
  };
19238
+ export type FeedExistsQueryVariables = Exact<{
19239
+ filter?: InputMaybe<FeedFilter>;
19240
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19241
+ }>;
19242
+ export type FeedExistsQuery = {
19243
+ __typename?: 'Query';
19244
+ feedExists?: {
19245
+ __typename?: 'BooleanResult';
19246
+ result?: boolean | null;
19247
+ } | null;
19248
+ };
19485
19249
  export type GetFeedQueryVariables = Exact<{
19486
19250
  id: Scalars['ID']['input'];
19487
19251
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -20256,6 +20020,17 @@ export type UpdateLabelMutation = {
20256
20020
  name: string;
20257
20021
  } | null;
20258
20022
  };
20023
+ export type UpsertLabelMutationVariables = Exact<{
20024
+ label: LabelInput;
20025
+ }>;
20026
+ export type UpsertLabelMutation = {
20027
+ __typename?: 'Mutation';
20028
+ upsertLabel?: {
20029
+ __typename?: 'Label';
20030
+ id: string;
20031
+ name: string;
20032
+ } | null;
20033
+ };
20259
20034
  export type CountMedicalConditionsQueryVariables = Exact<{
20260
20035
  filter?: InputMaybe<MedicalConditionFilter>;
20261
20036
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -23172,6 +22947,17 @@ export type QuerySpecificationsQuery = {
23172
22947
  } | null> | null;
23173
22948
  } | null;
23174
22949
  };
22950
+ export type SpecificationExistsQueryVariables = Exact<{
22951
+ filter?: InputMaybe<SpecificationFilter>;
22952
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22953
+ }>;
22954
+ export type SpecificationExistsQuery = {
22955
+ __typename?: 'Query';
22956
+ specificationExists?: {
22957
+ __typename?: 'BooleanResult';
22958
+ result?: boolean | null;
22959
+ } | null;
22960
+ };
23175
22961
  export type UpdateSpecificationMutationVariables = Exact<{
23176
22962
  specification: SpecificationUpdateInput;
23177
22963
  }>;
@@ -23186,6 +22972,20 @@ export type UpdateSpecificationMutation = {
23186
22972
  serviceType?: ModelServiceTypes | null;
23187
22973
  } | null;
23188
22974
  };
22975
+ export type UpsertSpecificationMutationVariables = Exact<{
22976
+ specification: SpecificationInput;
22977
+ }>;
22978
+ export type UpsertSpecificationMutation = {
22979
+ __typename?: 'Mutation';
22980
+ upsertSpecification?: {
22981
+ __typename?: 'Specification';
22982
+ id: string;
22983
+ name: string;
22984
+ state: EntityState;
22985
+ type?: SpecificationTypes | null;
22986
+ serviceType?: ModelServiceTypes | null;
22987
+ } | null;
22988
+ };
23189
22989
  export type CountUsersQueryVariables = Exact<{
23190
22990
  filter?: InputMaybe<UserFilter>;
23191
22991
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -24426,3 +24226,260 @@ export type UpdateWorkflowMutation = {
24426
24226
  } | null> | null;
24427
24227
  } | null;
24428
24228
  };
24229
+ export type UpsertWorkflowMutationVariables = Exact<{
24230
+ workflow: WorkflowInput;
24231
+ }>;
24232
+ export type UpsertWorkflowMutation = {
24233
+ __typename?: 'Mutation';
24234
+ upsertWorkflow?: {
24235
+ __typename?: 'Workflow';
24236
+ id: string;
24237
+ name: string;
24238
+ state: EntityState;
24239
+ ingestion?: {
24240
+ __typename?: 'IngestionWorkflowStage';
24241
+ if?: {
24242
+ __typename?: 'IngestionContentFilter';
24243
+ types?: Array<ContentTypes> | null;
24244
+ fileTypes?: Array<FileTypes> | null;
24245
+ allowedPaths?: Array<string> | null;
24246
+ excludedPaths?: Array<string> | null;
24247
+ } | null;
24248
+ collections?: Array<{
24249
+ __typename?: 'EntityReference';
24250
+ id: string;
24251
+ } | null> | null;
24252
+ observations?: Array<{
24253
+ __typename?: 'ObservationReference';
24254
+ type: ObservableTypes;
24255
+ observable: {
24256
+ __typename?: 'NamedEntityReference';
24257
+ id: string;
24258
+ name?: string | null;
24259
+ };
24260
+ } | null> | null;
24261
+ } | null;
24262
+ indexing?: {
24263
+ __typename?: 'IndexingWorkflowStage';
24264
+ jobs?: Array<{
24265
+ __typename?: 'IndexingWorkflowJob';
24266
+ connector?: {
24267
+ __typename?: 'ContentIndexingConnector';
24268
+ type?: ContentIndexingServiceTypes | null;
24269
+ contentType?: ContentTypes | null;
24270
+ fileType?: FileTypes | null;
24271
+ } | null;
24272
+ } | null> | null;
24273
+ } | null;
24274
+ preparation?: {
24275
+ __typename?: 'PreparationWorkflowStage';
24276
+ enableUnblockedCapture?: boolean | null;
24277
+ disableSmartCapture?: boolean | null;
24278
+ summarizations?: Array<{
24279
+ __typename?: 'SummarizationStrategy';
24280
+ type: SummarizationTypes;
24281
+ tokens?: number | null;
24282
+ items?: number | null;
24283
+ prompt?: string | null;
24284
+ specification?: {
24285
+ __typename?: 'EntityReference';
24286
+ id: string;
24287
+ } | null;
24288
+ } | null> | null;
24289
+ jobs?: Array<{
24290
+ __typename?: 'PreparationWorkflowJob';
24291
+ connector?: {
24292
+ __typename?: 'FilePreparationConnector';
24293
+ type: FilePreparationServiceTypes;
24294
+ fileTypes?: Array<FileTypes> | null;
24295
+ azureDocument?: {
24296
+ __typename?: 'AzureDocumentPreparationProperties';
24297
+ version?: AzureDocumentIntelligenceVersions | null;
24298
+ model?: AzureDocumentIntelligenceModels | null;
24299
+ endpoint?: any | null;
24300
+ key?: string | null;
24301
+ } | null;
24302
+ deepgram?: {
24303
+ __typename?: 'DeepgramAudioPreparationProperties';
24304
+ model?: DeepgramModels | null;
24305
+ key?: string | null;
24306
+ enableRedaction?: boolean | null;
24307
+ enableSpeakerDiarization?: boolean | null;
24308
+ detectLanguage?: boolean | null;
24309
+ language?: string | null;
24310
+ } | null;
24311
+ assemblyAI?: {
24312
+ __typename?: 'AssemblyAIAudioPreparationProperties';
24313
+ model?: AssemblyAiModels | null;
24314
+ key?: string | null;
24315
+ enableRedaction?: boolean | null;
24316
+ enableSpeakerDiarization?: boolean | null;
24317
+ detectLanguage?: boolean | null;
24318
+ language?: string | null;
24319
+ } | null;
24320
+ document?: {
24321
+ __typename?: 'DocumentPreparationProperties';
24322
+ includeImages?: boolean | null;
24323
+ } | null;
24324
+ email?: {
24325
+ __typename?: 'EmailPreparationProperties';
24326
+ includeAttachments?: boolean | null;
24327
+ } | null;
24328
+ modelDocument?: {
24329
+ __typename?: 'ModelDocumentPreparationProperties';
24330
+ specification?: {
24331
+ __typename?: 'EntityReference';
24332
+ id: string;
24333
+ } | null;
24334
+ } | null;
24335
+ mistral?: {
24336
+ __typename?: 'MistralDocumentPreparationProperties';
24337
+ key?: string | null;
24338
+ } | null;
24339
+ } | null;
24340
+ } | null> | null;
24341
+ } | null;
24342
+ extraction?: {
24343
+ __typename?: 'ExtractionWorkflowStage';
24344
+ jobs?: Array<{
24345
+ __typename?: 'ExtractionWorkflowJob';
24346
+ connector?: {
24347
+ __typename?: 'EntityExtractionConnector';
24348
+ type: EntityExtractionServiceTypes;
24349
+ contentTypes?: Array<ContentTypes> | null;
24350
+ fileTypes?: Array<FileTypes> | null;
24351
+ extractedTypes?: Array<ObservableTypes> | null;
24352
+ extractedCount?: number | null;
24353
+ azureText?: {
24354
+ __typename?: 'AzureTextExtractionProperties';
24355
+ confidenceThreshold?: number | null;
24356
+ enablePII?: boolean | null;
24357
+ } | null;
24358
+ azureImage?: {
24359
+ __typename?: 'AzureImageExtractionProperties';
24360
+ confidenceThreshold?: number | null;
24361
+ } | null;
24362
+ modelImage?: {
24363
+ __typename?: 'ModelImageExtractionProperties';
24364
+ specification?: {
24365
+ __typename?: 'EntityReference';
24366
+ id: string;
24367
+ } | null;
24368
+ } | null;
24369
+ modelText?: {
24370
+ __typename?: 'ModelTextExtractionProperties';
24371
+ specification?: {
24372
+ __typename?: 'EntityReference';
24373
+ id: string;
24374
+ } | null;
24375
+ } | null;
24376
+ } | null;
24377
+ } | null> | null;
24378
+ } | null;
24379
+ classification?: {
24380
+ __typename?: 'ClassificationWorkflowStage';
24381
+ jobs?: Array<{
24382
+ __typename?: 'ClassificationWorkflowJob';
24383
+ connector?: {
24384
+ __typename?: 'ContentClassificationConnector';
24385
+ type: ContentClassificationServiceTypes;
24386
+ contentType?: ContentTypes | null;
24387
+ fileType?: FileTypes | null;
24388
+ model?: {
24389
+ __typename?: 'ModelContentClassificationProperties';
24390
+ specification?: {
24391
+ __typename?: 'EntityReference';
24392
+ id: string;
24393
+ } | null;
24394
+ rules?: Array<{
24395
+ __typename?: 'PromptClassificationRule';
24396
+ then?: string | null;
24397
+ if?: string | null;
24398
+ } | null> | null;
24399
+ } | null;
24400
+ regex?: {
24401
+ __typename?: 'RegexContentClassificationProperties';
24402
+ rules?: Array<{
24403
+ __typename?: 'RegexClassificationRule';
24404
+ then?: string | null;
24405
+ type?: RegexSourceTypes | null;
24406
+ path?: string | null;
24407
+ matches?: string | null;
24408
+ } | null> | null;
24409
+ } | null;
24410
+ } | null;
24411
+ } | null> | null;
24412
+ } | null;
24413
+ enrichment?: {
24414
+ __typename?: 'EnrichmentWorkflowStage';
24415
+ link?: {
24416
+ __typename?: 'LinkStrategy';
24417
+ enableCrawling?: boolean | null;
24418
+ allowedDomains?: Array<string> | null;
24419
+ excludedDomains?: Array<string> | null;
24420
+ allowedPaths?: Array<string> | null;
24421
+ excludedPaths?: Array<string> | null;
24422
+ allowedLinks?: Array<LinkTypes> | null;
24423
+ excludedLinks?: Array<LinkTypes> | null;
24424
+ allowedFiles?: Array<FileTypes> | null;
24425
+ excludedFiles?: Array<FileTypes> | null;
24426
+ allowContentDomain?: boolean | null;
24427
+ maximumLinks?: number | null;
24428
+ } | null;
24429
+ jobs?: Array<{
24430
+ __typename?: 'EnrichmentWorkflowJob';
24431
+ connector?: {
24432
+ __typename?: 'EntityEnrichmentConnector';
24433
+ type?: EntityEnrichmentServiceTypes | null;
24434
+ enrichedTypes?: Array<ObservableTypes | null> | null;
24435
+ fhir?: {
24436
+ __typename?: 'FHIREnrichmentProperties';
24437
+ endpoint?: any | null;
24438
+ } | null;
24439
+ diffbot?: {
24440
+ __typename?: 'DiffbotEnrichmentProperties';
24441
+ key?: any | null;
24442
+ } | null;
24443
+ } | null;
24444
+ } | null> | null;
24445
+ } | null;
24446
+ storage?: {
24447
+ __typename?: 'StorageWorkflowStage';
24448
+ policy?: {
24449
+ __typename?: 'StoragePolicy';
24450
+ type?: StoragePolicyTypes | null;
24451
+ allowDuplicates?: boolean | null;
24452
+ } | null;
24453
+ } | null;
24454
+ actions?: Array<{
24455
+ __typename?: 'WorkflowAction';
24456
+ connector?: {
24457
+ __typename?: 'IntegrationConnector';
24458
+ type: IntegrationServiceTypes;
24459
+ uri?: string | null;
24460
+ slack?: {
24461
+ __typename?: 'SlackIntegrationProperties';
24462
+ token: string;
24463
+ channel: string;
24464
+ } | null;
24465
+ email?: {
24466
+ __typename?: 'EmailIntegrationProperties';
24467
+ from: string;
24468
+ subject: string;
24469
+ to: Array<string>;
24470
+ } | null;
24471
+ } | null;
24472
+ } | null> | null;
24473
+ } | null;
24474
+ };
24475
+ export type WorkflowExistsQueryVariables = Exact<{
24476
+ filter?: InputMaybe<WorkflowFilter>;
24477
+ correlationId?: InputMaybe<Scalars['String']['input']>;
24478
+ }>;
24479
+ export type WorkflowExistsQuery = {
24480
+ __typename?: 'Query';
24481
+ workflowExists?: {
24482
+ __typename?: 'BooleanResult';
24483
+ result?: boolean | null;
24484
+ } | null;
24485
+ };