graphlit-client 1.0.20250420001 → 1.0.20250426001

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -101,6 +101,9 @@ exports.GetAlert = (0, graphql_tag_1.default) `
101
101
  fileTypes
102
102
  formats
103
103
  fileExtensions
104
+ similarContents {
105
+ id
106
+ }
104
107
  contents {
105
108
  id
106
109
  }
@@ -191,6 +194,9 @@ exports.GetAlert = (0, graphql_tag_1.default) `
191
194
  model
192
195
  voice
193
196
  }
197
+ openAIImage {
198
+ model
199
+ }
194
200
  }
195
201
  summarySpecification {
196
202
  id
@@ -233,6 +239,9 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
233
239
  fileTypes
234
240
  formats
235
241
  fileExtensions
242
+ similarContents {
243
+ id
244
+ }
236
245
  contents {
237
246
  id
238
247
  }
@@ -323,6 +332,9 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
323
332
  model
324
333
  voice
325
334
  }
335
+ openAIImage {
336
+ model
337
+ }
326
338
  }
327
339
  summarySpecification {
328
340
  id
@@ -3461,6 +3473,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
3461
3473
  fileTypes
3462
3474
  formats
3463
3475
  fileExtensions
3476
+ similarContents {
3477
+ id
3478
+ }
3464
3479
  contents {
3465
3480
  id
3466
3481
  }
@@ -3541,6 +3556,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
3541
3556
  fileTypes
3542
3557
  formats
3543
3558
  fileExtensions
3559
+ similarContents {
3560
+ id
3561
+ }
3544
3562
  contents {
3545
3563
  id
3546
3564
  }
@@ -4334,6 +4352,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
4334
4352
  fileTypes
4335
4353
  formats
4336
4354
  fileExtensions
4355
+ similarContents {
4356
+ id
4357
+ }
4337
4358
  contents {
4338
4359
  id
4339
4360
  }
@@ -4414,6 +4435,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
4414
4435
  fileTypes
4415
4436
  formats
4416
4437
  fileExtensions
4438
+ similarContents {
4439
+ id
4440
+ }
4417
4441
  contents {
4418
4442
  id
4419
4443
  }
@@ -7387,6 +7411,7 @@ exports.LookupCredits = (0, graphql_tag_1.default) `
7387
7411
  computeRatio
7388
7412
  embeddingRatio
7389
7413
  completionRatio
7414
+ generationRatio
7390
7415
  ingestionRatio
7391
7416
  indexingRatio
7392
7417
  preparationRatio
@@ -7445,6 +7470,7 @@ exports.QueryCredits = (0, graphql_tag_1.default) `
7445
7470
  computeRatio
7446
7471
  embeddingRatio
7447
7472
  completionRatio
7473
+ generationRatio
7448
7474
  ingestionRatio
7449
7475
  indexingRatio
7450
7476
  preparationRatio
@@ -844,7 +844,7 @@ export type AzureOpenAiModelProperties = {
844
844
  probability?: Maybe<Scalars['Float']['output']>;
845
845
  /** The model temperature. */
846
846
  temperature?: Maybe<Scalars['Float']['output']>;
847
- /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
847
+ /** The number of tokens which can provided to the OpenAI-compatible model, if using developer's own account. */
848
848
  tokenLimit?: Maybe<Scalars['Int']['output']>;
849
849
  };
850
850
  /** Represents Azure OpenAI model properties. */
@@ -1620,7 +1620,7 @@ export type ContentCriteria = {
1620
1620
  and?: Maybe<Array<ContentCriteriaLevel>>;
1621
1621
  /** Filter by collections. */
1622
1622
  collections?: Maybe<Array<EntityReference>>;
1623
- /** Filter by similar contents. */
1623
+ /** Filter by contents. */
1624
1624
  contents?: Maybe<Array<EntityReference>>;
1625
1625
  /** Filter by creation date recent timespan. For example, a timespan of one day will return content created in the last 24 hours. */
1626
1626
  createdInLast?: Maybe<Scalars['TimeSpan']['output']>;
@@ -1642,6 +1642,8 @@ export type ContentCriteria = {
1642
1642
  observations?: Maybe<Array<ObservationCriteria>>;
1643
1643
  /** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
1644
1644
  or?: Maybe<Array<ContentCriteriaLevel>>;
1645
+ /** Filter by similar contents. */
1646
+ similarContents?: Maybe<Array<EntityReference>>;
1645
1647
  /** Filter by content types. */
1646
1648
  types?: Maybe<Array<ContentTypes>>;
1647
1649
  /** Filter by users. Only applies to project scope. */
@@ -1655,7 +1657,7 @@ export type ContentCriteriaInput = {
1655
1657
  and?: InputMaybe<Array<ContentCriteriaLevelInput>>;
1656
1658
  /** Filter by collections. */
1657
1659
  collections?: InputMaybe<Array<EntityReferenceInput>>;
1658
- /** Filter by similar contents. */
1660
+ /** Filter by contents. */
1659
1661
  contents?: InputMaybe<Array<EntityReferenceInput>>;
1660
1662
  /** Filter by creation date recent timespan. For example, a timespan of one day will return content created in the last 24 hours. */
1661
1663
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
@@ -1673,6 +1675,8 @@ export type ContentCriteriaInput = {
1673
1675
  observations?: InputMaybe<Array<ObservationCriteriaInput>>;
1674
1676
  /** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
1675
1677
  or?: InputMaybe<Array<ContentCriteriaLevelInput>>;
1678
+ /** Filter by similar contents. */
1679
+ similarContents?: InputMaybe<Array<EntityReferenceInput>>;
1676
1680
  /** Filter by content types. */
1677
1681
  types?: InputMaybe<Array<ContentTypes>>;
1678
1682
  /** Filter by workflows. */
@@ -1799,7 +1803,7 @@ export type ContentFilter = {
1799
1803
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1800
1804
  /** Filter by collections. */
1801
1805
  collections?: InputMaybe<Array<EntityReferenceFilter>>;
1802
- /** Filter by similar contents. */
1806
+ /** Filter by contents. */
1803
1807
  contents?: InputMaybe<Array<EntityReferenceFilter>>;
1804
1808
  /** Filter by creation date recent timespan. For example, a timespan of one day will return content(s) created in the last 24 hours. */
1805
1809
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
@@ -1825,7 +1829,7 @@ export type ContentFilter = {
1825
1829
  id?: InputMaybe<Scalars['ID']['input']>;
1826
1830
  /** Filter contents by their external identifier. */
1827
1831
  identifier?: InputMaybe<Scalars['String']['input']>;
1828
- /** Filter content(s) by searching for similar Base64-encoded image. Accepts Base64-encoded image as string, which is used to generate image embeddings for similarity search. */
1832
+ /** Filter by searching for similar Base64-encoded image. Accepts Base64-encoded image as string, which is used to generate image embeddings for similarity search. */
1829
1833
  imageData?: InputMaybe<Scalars['String']['input']>;
1830
1834
  /** MIME type of Base64-encoded image for similarity search. */
1831
1835
  imageMimeType?: InputMaybe<Scalars['String']['input']>;
@@ -1855,6 +1859,8 @@ export type ContentFilter = {
1855
1859
  search?: InputMaybe<Scalars['String']['input']>;
1856
1860
  /** The type of search to be used. Defaults to Vector. */
1857
1861
  searchType?: InputMaybe<SearchTypes>;
1862
+ /** Filter by similar contents. */
1863
+ similarContents?: InputMaybe<Array<EntityReferenceFilter>>;
1858
1864
  /** Filter content(s) by their states. */
1859
1865
  states?: InputMaybe<Array<EntityState>>;
1860
1866
  /** Filter by content types. */
@@ -1927,45 +1933,59 @@ export type ContentInput = {
1927
1933
  /** Represents a content publishing connector. */
1928
1934
  export type ContentPublishingConnector = {
1929
1935
  __typename?: 'ContentPublishingConnector';
1930
- /** The specific properties for ElevenLabs publishing. */
1936
+ /** The specific properties for ElevenLabs Audio publishing. */
1931
1937
  elevenLabs?: Maybe<ElevenLabsPublishingProperties>;
1932
1938
  /** The content publishing format, i.e. MP3, Markdown. */
1933
1939
  format: ContentPublishingFormats;
1940
+ /** The specific properties for OpenAI Image publishing. */
1941
+ openAIImage?: Maybe<OpenAiImagePublishingProperties>;
1934
1942
  /** The content publishing service type. */
1935
1943
  type: ContentPublishingServiceTypes;
1936
1944
  };
1937
1945
  /** Represents a content publishing connector. */
1938
1946
  export type ContentPublishingConnectorInput = {
1939
- /** The specific properties for ElevenLabs publishing. */
1947
+ /** The specific properties for ElevenLabs Audio publishing. */
1940
1948
  elevenLabs?: InputMaybe<ElevenLabsPublishingPropertiesInput>;
1941
1949
  /** The content publishing format, i.e. MP3, Markdown. */
1942
1950
  format: ContentPublishingFormats;
1951
+ /** The specific properties for OpenAI Image publishing. */
1952
+ openAIImage?: InputMaybe<OpenAiImagePublishingPropertiesInput>;
1943
1953
  /** The content publishing service type. */
1944
1954
  type: ContentPublishingServiceTypes;
1945
1955
  };
1946
1956
  /** Represents a content publishing connector. */
1947
1957
  export type ContentPublishingConnectorUpdateInput = {
1948
- /** The specific properties for ElevenLabs publishing. */
1958
+ /** The specific properties for ElevenLabs Audio publishing. */
1949
1959
  elevenLabs?: InputMaybe<ElevenLabsPublishingPropertiesInput>;
1950
1960
  /** The content publishing format, i.e. MP3, Markdown. */
1951
1961
  format?: InputMaybe<ContentPublishingFormats>;
1962
+ /** The specific properties for OpenAI Image publishing. */
1963
+ openAIImage?: InputMaybe<OpenAiImagePublishingPropertiesInput>;
1952
1964
  /** The content publishing service type. */
1953
1965
  type?: InputMaybe<ContentPublishingServiceTypes>;
1954
1966
  };
1955
1967
  export declare enum ContentPublishingFormats {
1956
1968
  /** HTML */
1957
1969
  Html = "HTML",
1970
+ /** JPEG */
1971
+ Jpeg = "JPEG",
1958
1972
  /** Markdown */
1959
1973
  Markdown = "MARKDOWN",
1960
1974
  /** MP3 */
1961
1975
  Mp3 = "MP3",
1976
+ /** PNG */
1977
+ Png = "PNG",
1962
1978
  /** Plain Text */
1963
- Text = "TEXT"
1979
+ Text = "TEXT",
1980
+ /** WEBP */
1981
+ Webp = "WEBP"
1964
1982
  }
1965
1983
  /** Content publishing service type */
1966
1984
  export declare enum ContentPublishingServiceTypes {
1967
1985
  /** ElevenLabs Audio publishing */
1968
1986
  ElevenLabsAudio = "ELEVEN_LABS_AUDIO",
1987
+ /** OpenAI Image publishing */
1988
+ OpenAiImage = "OPEN_AI_IMAGE",
1969
1989
  /** Text publishing */
1970
1990
  Text = "TEXT"
1971
1991
  }
@@ -2187,7 +2207,7 @@ export type ConversationDetails = {
2187
2207
  };
2188
2208
  /** Represents a filter for conversations. */
2189
2209
  export type ConversationFilter = {
2190
- /** Filter by similar conversations. */
2210
+ /** Filter by conversations. */
2191
2211
  conversations?: InputMaybe<Array<EntityReferenceFilter>>;
2192
2212
  /** Filter by creation date recent timespan. For example, a timespan of one day will return conversation(s) created in the last 24 hours. */
2193
2213
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
@@ -2213,6 +2233,8 @@ export type ConversationFilter = {
2213
2233
  search?: InputMaybe<Scalars['String']['input']>;
2214
2234
  /** The type of search to be used. Defaults to Vector. */
2215
2235
  searchType?: InputMaybe<SearchTypes>;
2236
+ /** Filter by similar conversations. */
2237
+ similarConversations?: InputMaybe<Array<EntityReferenceFilter>>;
2216
2238
  /** Filter conversation(s) by their states. */
2217
2239
  states?: InputMaybe<Array<EntityState>>;
2218
2240
  /** Filter by conversation types. */
@@ -2860,7 +2882,7 @@ export declare enum ElevenLabsModels {
2860
2882
  */
2861
2883
  TurboV2_5 = "TURBO_V2_5"
2862
2884
  }
2863
- /** Represents the ElevenLabs publishing properties. */
2885
+ /** Represents the ElevenLabs Audio publishing properties. */
2864
2886
  export type ElevenLabsPublishingProperties = {
2865
2887
  __typename?: 'ElevenLabsPublishingProperties';
2866
2888
  /** The ElevenLabs model. */
@@ -2868,7 +2890,7 @@ export type ElevenLabsPublishingProperties = {
2868
2890
  /** The ElevenLabs voice identifier. */
2869
2891
  voice?: Maybe<Scalars['String']['output']>;
2870
2892
  };
2871
- /** Represents the ElevenLabs publishing properties. */
2893
+ /** Represents the ElevenLabs Audio publishing properties. */
2872
2894
  export type ElevenLabsPublishingPropertiesInput = {
2873
2895
  /** The ElevenLabs model. */
2874
2896
  model?: InputMaybe<ElevenLabsModels>;
@@ -3400,8 +3422,6 @@ export type EventFilter = {
3400
3422
  direction?: InputMaybe<OrderDirectionTypes>;
3401
3423
  /** Filter by event end date range. */
3402
3424
  endDateRange?: InputMaybe<DateRangeFilter>;
3403
- /** Filter by similar events. */
3404
- events?: InputMaybe<Array<EntityReferenceFilter>>;
3405
3425
  /** Filter by observable H3 index. */
3406
3426
  h3?: InputMaybe<H3Filter>;
3407
3427
  /** Filter event(s) by their unique ID. */
@@ -3434,6 +3454,8 @@ export type EventFilter = {
3434
3454
  search?: InputMaybe<Scalars['String']['input']>;
3435
3455
  /** The type of search to be used. Defaults to Vector. */
3436
3456
  searchType?: InputMaybe<SearchTypes>;
3457
+ /** Filter by similar events. */
3458
+ similarEvents?: InputMaybe<Array<EntityReferenceFilter>>;
3437
3459
  /** Filter by event start date range. */
3438
3460
  startDateRange?: InputMaybe<DateRangeFilter>;
3439
3461
  /** Filter event(s) by their states. */
@@ -5494,8 +5516,6 @@ export type MedicalConditionFilter = {
5494
5516
  address?: InputMaybe<AddressFilter>;
5495
5517
  /** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
5496
5518
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
5497
- /** Filter by similar medical conditions. */
5498
- conditions?: InputMaybe<Array<EntityReferenceFilter>>;
5499
5519
  /** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcondition(s) created in the last 24 hours. */
5500
5520
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5501
5521
  /** Filter medicalcondition(s) by their creation date range. */
@@ -5524,6 +5544,8 @@ export type MedicalConditionFilter = {
5524
5544
  search?: InputMaybe<Scalars['String']['input']>;
5525
5545
  /** The type of search to be used. Defaults to Vector. */
5526
5546
  searchType?: InputMaybe<SearchTypes>;
5547
+ /** Filter by similar medical conditions. */
5548
+ similarConditions?: InputMaybe<Array<EntityReferenceFilter>>;
5527
5549
  /** Filter medicalcondition(s) by their states. */
5528
5550
  states?: InputMaybe<Array<EntityState>>;
5529
5551
  };
@@ -5637,8 +5659,6 @@ export type MedicalContraindicationFilter = {
5637
5659
  address?: InputMaybe<AddressFilter>;
5638
5660
  /** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
5639
5661
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
5640
- /** Filter by similar medical contraindications. */
5641
- contraindications?: InputMaybe<Array<EntityReferenceFilter>>;
5642
5662
  /** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) created in the last 24 hours. */
5643
5663
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5644
5664
  /** Filter medicalcontraindication(s) by their creation date range. */
@@ -5667,6 +5687,8 @@ export type MedicalContraindicationFilter = {
5667
5687
  search?: InputMaybe<Scalars['String']['input']>;
5668
5688
  /** The type of search to be used. Defaults to Vector. */
5669
5689
  searchType?: InputMaybe<SearchTypes>;
5690
+ /** Filter by similar medical contraindications. */
5691
+ similarContraindications?: InputMaybe<Array<EntityReferenceFilter>>;
5670
5692
  /** Filter medicalcontraindication(s) by their states. */
5671
5693
  states?: InputMaybe<Array<EntityState>>;
5672
5694
  };
@@ -5784,8 +5806,6 @@ export type MedicalDeviceFilter = {
5784
5806
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5785
5807
  /** Filter medicaldevice(s) by their creation date range. */
5786
5808
  creationDateRange?: InputMaybe<DateRangeFilter>;
5787
- /** Filter by similar medical devices. */
5788
- devices?: InputMaybe<Array<EntityReferenceFilter>>;
5789
5809
  /** The sort direction for query results. */
5790
5810
  direction?: InputMaybe<OrderDirectionTypes>;
5791
5811
  /** Filter by observable H3 index. */
@@ -5810,6 +5830,8 @@ export type MedicalDeviceFilter = {
5810
5830
  search?: InputMaybe<Scalars['String']['input']>;
5811
5831
  /** The type of search to be used. Defaults to Vector. */
5812
5832
  searchType?: InputMaybe<SearchTypes>;
5833
+ /** Filter by similar medical devices. */
5834
+ similarDevices?: InputMaybe<Array<EntityReferenceFilter>>;
5813
5835
  /** Filter medicaldevice(s) by their states. */
5814
5836
  states?: InputMaybe<Array<EntityState>>;
5815
5837
  };
@@ -5959,8 +5981,6 @@ export type MedicalDrugClassFilter = {
5959
5981
  address?: InputMaybe<AddressFilter>;
5960
5982
  /** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
5961
5983
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
5962
- /** Filter by similar medical drug classes. */
5963
- classes?: InputMaybe<Array<EntityReferenceFilter>>;
5964
5984
  /** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) created in the last 24 hours. */
5965
5985
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
5966
5986
  /** Filter medicaldrugclass(s) by their creation date range. */
@@ -5989,6 +6009,8 @@ export type MedicalDrugClassFilter = {
5989
6009
  search?: InputMaybe<Scalars['String']['input']>;
5990
6010
  /** The type of search to be used. Defaults to Vector. */
5991
6011
  searchType?: InputMaybe<SearchTypes>;
6012
+ /** Filter by similar medical drug classes. */
6013
+ similarClasses?: InputMaybe<Array<EntityReferenceFilter>>;
5992
6014
  /** Filter medicaldrugclass(s) by their states. */
5993
6015
  states?: InputMaybe<Array<EntityState>>;
5994
6016
  };
@@ -6072,8 +6094,6 @@ export type MedicalDrugFilter = {
6072
6094
  creationDateRange?: InputMaybe<DateRangeFilter>;
6073
6095
  /** The sort direction for query results. */
6074
6096
  direction?: InputMaybe<OrderDirectionTypes>;
6075
- /** Filter by similar medical drugs. */
6076
- drugs?: InputMaybe<Array<EntityReferenceFilter>>;
6077
6097
  /** Filter by observable H3 index. */
6078
6098
  h3?: InputMaybe<H3Filter>;
6079
6099
  /** Filter medicaldrug(s) by their unique ID. */
@@ -6096,6 +6116,8 @@ export type MedicalDrugFilter = {
6096
6116
  search?: InputMaybe<Scalars['String']['input']>;
6097
6117
  /** The type of search to be used. Defaults to Vector. */
6098
6118
  searchType?: InputMaybe<SearchTypes>;
6119
+ /** Filter by similar medical drugs. */
6120
+ similarDrugs?: InputMaybe<Array<EntityReferenceFilter>>;
6099
6121
  /** Filter medicaldrug(s) by their states. */
6100
6122
  states?: InputMaybe<Array<EntityState>>;
6101
6123
  };
@@ -6215,8 +6237,6 @@ export type MedicalGuidelineFilter = {
6215
6237
  creationDateRange?: InputMaybe<DateRangeFilter>;
6216
6238
  /** The sort direction for query results. */
6217
6239
  direction?: InputMaybe<OrderDirectionTypes>;
6218
- /** Filter by similar medical guidelines. */
6219
- guidelines?: InputMaybe<Array<EntityReferenceFilter>>;
6220
6240
  /** Filter by observable H3 index. */
6221
6241
  h3?: InputMaybe<H3Filter>;
6222
6242
  /** Filter medicalguideline(s) by their unique ID. */
@@ -6239,6 +6259,8 @@ export type MedicalGuidelineFilter = {
6239
6259
  search?: InputMaybe<Scalars['String']['input']>;
6240
6260
  /** The type of search to be used. Defaults to Vector. */
6241
6261
  searchType?: InputMaybe<SearchTypes>;
6262
+ /** Filter by similar medical guidelines. */
6263
+ similarGuidelines?: InputMaybe<Array<EntityReferenceFilter>>;
6242
6264
  /** Filter medicalguideline(s) by their states. */
6243
6265
  states?: InputMaybe<Array<EntityState>>;
6244
6266
  };
@@ -6362,8 +6384,6 @@ export type MedicalIndicationFilter = {
6362
6384
  h3?: InputMaybe<H3Filter>;
6363
6385
  /** Filter medicalindication(s) by their unique ID. */
6364
6386
  id?: InputMaybe<Scalars['ID']['input']>;
6365
- /** Filter by similar medical indications. */
6366
- indications?: InputMaybe<Array<EntityReferenceFilter>>;
6367
6387
  /** Limit the number of medicalindication(s) to be returned. Defaults to 100. */
6368
6388
  limit?: InputMaybe<Scalars['Int']['input']>;
6369
6389
  /** Filter by observable geo-location. */
@@ -6382,6 +6402,8 @@ export type MedicalIndicationFilter = {
6382
6402
  search?: InputMaybe<Scalars['String']['input']>;
6383
6403
  /** The type of search to be used. Defaults to Vector. */
6384
6404
  searchType?: InputMaybe<SearchTypes>;
6405
+ /** Filter by similar medical indications. */
6406
+ similarIndications?: InputMaybe<Array<EntityReferenceFilter>>;
6385
6407
  /** Filter medicalindication(s) by their states. */
6386
6408
  states?: InputMaybe<Array<EntityState>>;
6387
6409
  };
@@ -6517,14 +6539,14 @@ export type MedicalProcedureFilter = {
6517
6539
  offset?: InputMaybe<Scalars['Int']['input']>;
6518
6540
  /** The sort order for query results. */
6519
6541
  orderBy?: InputMaybe<OrderByTypes>;
6520
- /** Filter by similar medical procedures. */
6521
- procedures?: InputMaybe<Array<EntityReferenceFilter>>;
6522
6542
  /** The query syntax for the search text. Defaults to Simple. */
6523
6543
  queryType?: InputMaybe<SearchQueryTypes>;
6524
6544
  /** Filter medicalprocedure(s) by searching for similar text. */
6525
6545
  search?: InputMaybe<Scalars['String']['input']>;
6526
6546
  /** The type of search to be used. Defaults to Vector. */
6527
6547
  searchType?: InputMaybe<SearchTypes>;
6548
+ /** Filter by similar medical procedures. */
6549
+ similarProcedures?: InputMaybe<Array<EntityReferenceFilter>>;
6528
6550
  /** Filter medicalprocedure(s) by their states. */
6529
6551
  states?: InputMaybe<Array<EntityState>>;
6530
6552
  };
@@ -6668,10 +6690,10 @@ export type MedicalStudyFilter = {
6668
6690
  search?: InputMaybe<Scalars['String']['input']>;
6669
6691
  /** The type of search to be used. Defaults to Vector. */
6670
6692
  searchType?: InputMaybe<SearchTypes>;
6693
+ /** Filter by similar medical studies. */
6694
+ similarStudies?: InputMaybe<Array<EntityReferenceFilter>>;
6671
6695
  /** Filter medicalstudy(s) by their states. */
6672
6696
  states?: InputMaybe<Array<EntityState>>;
6673
- /** Filter by similar medical studies. */
6674
- studies?: InputMaybe<Array<EntityReferenceFilter>>;
6675
6697
  };
6676
6698
  /** Represents a medical study. */
6677
6699
  export type MedicalStudyInput = {
@@ -6817,10 +6839,10 @@ export type MedicalTestFilter = {
6817
6839
  search?: InputMaybe<Scalars['String']['input']>;
6818
6840
  /** The type of search to be used. Defaults to Vector. */
6819
6841
  searchType?: InputMaybe<SearchTypes>;
6842
+ /** Filter by similar medical tests. */
6843
+ similarTests?: InputMaybe<Array<EntityReferenceFilter>>;
6820
6844
  /** Filter medicaltest(s) by their states. */
6821
6845
  states?: InputMaybe<Array<EntityState>>;
6822
- /** Filter by similar medical tests. */
6823
- tests?: InputMaybe<Array<EntityReferenceFilter>>;
6824
6846
  };
6825
6847
  /** Represents a medical test. */
6826
6848
  export type MedicalTestInput = {
@@ -6960,10 +6982,10 @@ export type MedicalTherapyFilter = {
6960
6982
  search?: InputMaybe<Scalars['String']['input']>;
6961
6983
  /** The type of search to be used. Defaults to Vector. */
6962
6984
  searchType?: InputMaybe<SearchTypes>;
6985
+ /** Filter by similar medical therapies. */
6986
+ similarTherapies?: InputMaybe<Array<EntityReferenceFilter>>;
6963
6987
  /** Filter medicaltherapy(s) by their states. */
6964
6988
  states?: InputMaybe<Array<EntityState>>;
6965
- /** Filter by similar medical therapies. */
6966
- therapies?: InputMaybe<Array<EntityReferenceFilter>>;
6967
6989
  };
6968
6990
  /** Represents a medical therapy. */
6969
6991
  export type MedicalTherapyInput = {
@@ -9091,6 +9113,24 @@ export type OpenAiImageExtractionProperties = {
9091
9113
  /** The OpenAI vision detail mode. */
9092
9114
  detailLevel?: Maybe<OpenAiVisionDetailLevels>;
9093
9115
  };
9116
+ /** OpenAI Image model type */
9117
+ export declare enum OpenAiImageModels {
9118
+ /** Developer-specified model */
9119
+ Custom = "CUSTOM",
9120
+ /** GPT Image-1 */
9121
+ GptImage_1 = "GPT_IMAGE_1"
9122
+ }
9123
+ /** Represents the OpenAI Image publishing properties. */
9124
+ export type OpenAiImagePublishingProperties = {
9125
+ __typename?: 'OpenAIImagePublishingProperties';
9126
+ /** The OpenAI Image model. */
9127
+ model?: Maybe<OpenAiImageModels>;
9128
+ };
9129
+ /** Represents the OpenAI Image publishing properties. */
9130
+ export type OpenAiImagePublishingPropertiesInput = {
9131
+ /** The OpenAI Image model. */
9132
+ model?: InputMaybe<OpenAiImageModels>;
9133
+ };
9094
9134
  /** Represents OpenAI model properties. */
9095
9135
  export type OpenAiModelProperties = {
9096
9136
  __typename?: 'OpenAIModelProperties';
@@ -9114,7 +9154,7 @@ export type OpenAiModelProperties = {
9114
9154
  reasoningEffort?: Maybe<OpenAiReasoningEffortLevels>;
9115
9155
  /** The model temperature. */
9116
9156
  temperature?: Maybe<Scalars['Float']['output']>;
9117
- /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
9157
+ /** The number of tokens which can provided to the OpenAI-compatible model, if using developer's own account. */
9118
9158
  tokenLimit?: Maybe<Scalars['Int']['output']>;
9119
9159
  };
9120
9160
  /** Represents OpenAI model properties. */
@@ -9139,7 +9179,7 @@ export type OpenAiModelPropertiesInput = {
9139
9179
  reasoningEffort?: InputMaybe<OpenAiReasoningEffortLevels>;
9140
9180
  /** The model temperature. */
9141
9181
  temperature?: InputMaybe<Scalars['Float']['input']>;
9142
- /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
9182
+ /** The number of tokens which can provided to the OpenAI-compatible model, if using developer's own account. */
9143
9183
  tokenLimit?: InputMaybe<Scalars['Int']['input']>;
9144
9184
  };
9145
9185
  /** Represents OpenAI model properties. */
@@ -9164,7 +9204,7 @@ export type OpenAiModelPropertiesUpdateInput = {
9164
9204
  reasoningEffort?: InputMaybe<OpenAiReasoningEffortLevels>;
9165
9205
  /** The model temperature. */
9166
9206
  temperature?: InputMaybe<Scalars['Float']['input']>;
9167
- /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
9207
+ /** The number of tokens which can provided to the OpenAI-compatible model, if using developer's own account. */
9168
9208
  tokenLimit?: InputMaybe<Scalars['Int']['input']>;
9169
9209
  };
9170
9210
  /** OpenAI model type */
@@ -9452,14 +9492,14 @@ export type OrganizationFilter = {
9452
9492
  offset?: InputMaybe<Scalars['Int']['input']>;
9453
9493
  /** The sort order for query results. */
9454
9494
  orderBy?: InputMaybe<OrderByTypes>;
9455
- /** Filter by similar organizations. */
9456
- organizations?: InputMaybe<Array<EntityReferenceFilter>>;
9457
9495
  /** The query syntax for the search text. Defaults to Simple. */
9458
9496
  queryType?: InputMaybe<SearchQueryTypes>;
9459
9497
  /** Filter organization(s) by searching for similar text. */
9460
9498
  search?: InputMaybe<Scalars['String']['input']>;
9461
9499
  /** The type of search to be used. Defaults to Vector. */
9462
9500
  searchType?: InputMaybe<SearchTypes>;
9501
+ /** Filter by similar organizations. */
9502
+ similarOrganizations?: InputMaybe<Array<EntityReferenceFilter>>;
9463
9503
  /** Filter organization(s) by their states. */
9464
9504
  states?: InputMaybe<Array<EntityState>>;
9465
9505
  /** Filter by organization URI. */
@@ -9699,8 +9739,6 @@ export type PersonFilter = {
9699
9739
  offset?: InputMaybe<Scalars['Int']['input']>;
9700
9740
  /** The sort order for query results. */
9701
9741
  orderBy?: InputMaybe<OrderByTypes>;
9702
- /** Filter by similar persons. */
9703
- persons?: InputMaybe<Array<EntityReferenceFilter>>;
9704
9742
  /** Filter by the phone number of the person. */
9705
9743
  phoneNumber?: InputMaybe<Scalars['String']['input']>;
9706
9744
  /** The query syntax for the search text. Defaults to Simple. */
@@ -9709,6 +9747,8 @@ export type PersonFilter = {
9709
9747
  search?: InputMaybe<Scalars['String']['input']>;
9710
9748
  /** The type of search to be used. Defaults to Vector. */
9711
9749
  searchType?: InputMaybe<SearchTypes>;
9750
+ /** Filter by similar persons. */
9751
+ similarPersons?: InputMaybe<Array<EntityReferenceFilter>>;
9712
9752
  /** Filter person(s) by their states. */
9713
9753
  states?: InputMaybe<Array<EntityState>>;
9714
9754
  /** Filter by person URI. */
@@ -9898,14 +9938,14 @@ export type PlaceFilter = {
9898
9938
  offset?: InputMaybe<Scalars['Int']['input']>;
9899
9939
  /** The sort order for query results. */
9900
9940
  orderBy?: InputMaybe<OrderByTypes>;
9901
- /** Filter by similar places. */
9902
- places?: InputMaybe<Array<EntityReferenceFilter>>;
9903
9941
  /** The query syntax for the search text. Defaults to Simple. */
9904
9942
  queryType?: InputMaybe<SearchQueryTypes>;
9905
9943
  /** Filter place(s) by searching for similar text. */
9906
9944
  search?: InputMaybe<Scalars['String']['input']>;
9907
9945
  /** The type of search to be used. Defaults to Vector. */
9908
9946
  searchType?: InputMaybe<SearchTypes>;
9947
+ /** Filter by similar places. */
9948
+ similarPlaces?: InputMaybe<Array<EntityReferenceFilter>>;
9909
9949
  /** Filter place(s) by their states. */
9910
9950
  states?: InputMaybe<Array<EntityState>>;
9911
9951
  };
@@ -10167,8 +10207,6 @@ export type ProductFilter = {
10167
10207
  orderBy?: InputMaybe<OrderByTypes>;
10168
10208
  /** Filter by production date range. */
10169
10209
  productionDateRange?: InputMaybe<DateRangeFilter>;
10170
- /** Filter by similar products. */
10171
- products?: InputMaybe<Array<EntityReferenceFilter>>;
10172
10210
  /** The query syntax for the search text. Defaults to Simple. */
10173
10211
  queryType?: InputMaybe<SearchQueryTypes>;
10174
10212
  /** Filter by release date range. */
@@ -10177,6 +10215,8 @@ export type ProductFilter = {
10177
10215
  search?: InputMaybe<Scalars['String']['input']>;
10178
10216
  /** The type of search to be used. Defaults to Vector. */
10179
10217
  searchType?: InputMaybe<SearchTypes>;
10218
+ /** Filter by similar products. */
10219
+ similarProducts?: InputMaybe<Array<EntityReferenceFilter>>;
10180
10220
  /** Filter by product SKU. */
10181
10221
  sku?: InputMaybe<Scalars['String']['input']>;
10182
10222
  /** Filter product(s) by their states. */
@@ -10319,6 +10359,8 @@ export type ProjectCredits = {
10319
10359
  enrichmentRatio?: Maybe<Scalars['Decimal']['output']>;
10320
10360
  /** The content extraction ratio of credits. */
10321
10361
  extractionRatio?: Maybe<Scalars['Decimal']['output']>;
10362
+ /** The LLM generation ratio of credits. */
10363
+ generationRatio?: Maybe<Scalars['Decimal']['output']>;
10322
10364
  /** The content indexing ratio of credits. */
10323
10365
  indexingRatio?: Maybe<Scalars['Decimal']['output']>;
10324
10366
  /** The content ingestion ratio of credits. */
@@ -11697,12 +11739,12 @@ export type RepoFilter = {
11697
11739
  orderBy?: InputMaybe<OrderByTypes>;
11698
11740
  /** The query syntax for the search text. Defaults to Simple. */
11699
11741
  queryType?: InputMaybe<SearchQueryTypes>;
11700
- /** Filter by similar code repositories. */
11701
- repos?: InputMaybe<Array<EntityReferenceFilter>>;
11702
11742
  /** Filter repo(s) by searching for similar text. */
11703
11743
  search?: InputMaybe<Scalars['String']['input']>;
11704
11744
  /** The type of search to be used. Defaults to Vector. */
11705
11745
  searchType?: InputMaybe<SearchTypes>;
11746
+ /** Filter by similar code repositories. */
11747
+ similarRepos?: InputMaybe<Array<EntityReferenceFilter>>;
11706
11748
  /** Filter repo(s) by their states. */
11707
11749
  states?: InputMaybe<Array<EntityState>>;
11708
11750
  };
@@ -12319,7 +12361,7 @@ export type SoftwareFilter = {
12319
12361
  /** The type of search to be used. Defaults to Vector. */
12320
12362
  searchType?: InputMaybe<SearchTypes>;
12321
12363
  /** Filter by similar software. */
12322
- softwares?: InputMaybe<Array<EntityReferenceFilter>>;
12364
+ similarSoftwares?: InputMaybe<Array<EntityReferenceFilter>>;
12323
12365
  /** Filter software(s) by their states. */
12324
12366
  states?: InputMaybe<Array<EntityState>>;
12325
12367
  };
@@ -13666,6 +13708,10 @@ export type GetAlertQuery = {
13666
13708
  from?: any | null;
13667
13709
  to?: any | null;
13668
13710
  } | null;
13711
+ similarContents?: Array<{
13712
+ __typename?: 'EntityReference';
13713
+ id: string;
13714
+ }> | null;
13669
13715
  contents?: Array<{
13670
13716
  __typename?: 'EntityReference';
13671
13717
  id: string;
@@ -13783,6 +13829,10 @@ export type GetAlertQuery = {
13783
13829
  model?: ElevenLabsModels | null;
13784
13830
  voice?: string | null;
13785
13831
  } | null;
13832
+ openAIImage?: {
13833
+ __typename?: 'OpenAIImagePublishingProperties';
13834
+ model?: OpenAiImageModels | null;
13835
+ } | null;
13786
13836
  };
13787
13837
  summarySpecification?: {
13788
13838
  __typename?: 'EntityReference';
@@ -13836,6 +13886,10 @@ export type QueryAlertsQuery = {
13836
13886
  from?: any | null;
13837
13887
  to?: any | null;
13838
13888
  } | null;
13889
+ similarContents?: Array<{
13890
+ __typename?: 'EntityReference';
13891
+ id: string;
13892
+ }> | null;
13839
13893
  contents?: Array<{
13840
13894
  __typename?: 'EntityReference';
13841
13895
  id: string;
@@ -13953,6 +14007,10 @@ export type QueryAlertsQuery = {
13953
14007
  model?: ElevenLabsModels | null;
13954
14008
  voice?: string | null;
13955
14009
  } | null;
14010
+ openAIImage?: {
14011
+ __typename?: 'OpenAIImagePublishingProperties';
14012
+ model?: OpenAiImageModels | null;
14013
+ } | null;
13956
14014
  };
13957
14015
  summarySpecification?: {
13958
14016
  __typename?: 'EntityReference';
@@ -17496,6 +17554,10 @@ export type GetConversationQuery = {
17496
17554
  from?: any | null;
17497
17555
  to?: any | null;
17498
17556
  } | null;
17557
+ similarContents?: Array<{
17558
+ __typename?: 'EntityReference';
17559
+ id: string;
17560
+ }> | null;
17499
17561
  contents?: Array<{
17500
17562
  __typename?: 'EntityReference';
17501
17563
  id: string;
@@ -17600,6 +17662,10 @@ export type GetConversationQuery = {
17600
17662
  from?: any | null;
17601
17663
  to?: any | null;
17602
17664
  } | null;
17665
+ similarContents?: Array<{
17666
+ __typename?: 'EntityReference';
17667
+ id: string;
17668
+ }> | null;
17603
17669
  contents?: Array<{
17604
17670
  __typename?: 'EntityReference';
17605
17671
  id: string;
@@ -18474,6 +18540,10 @@ export type QueryConversationsQuery = {
18474
18540
  from?: any | null;
18475
18541
  to?: any | null;
18476
18542
  } | null;
18543
+ similarContents?: Array<{
18544
+ __typename?: 'EntityReference';
18545
+ id: string;
18546
+ }> | null;
18477
18547
  contents?: Array<{
18478
18548
  __typename?: 'EntityReference';
18479
18549
  id: string;
@@ -18578,6 +18648,10 @@ export type QueryConversationsQuery = {
18578
18648
  from?: any | null;
18579
18649
  to?: any | null;
18580
18650
  } | null;
18651
+ similarContents?: Array<{
18652
+ __typename?: 'EntityReference';
18653
+ id: string;
18654
+ }> | null;
18581
18655
  contents?: Array<{
18582
18656
  __typename?: 'EntityReference';
18583
18657
  id: string;
@@ -22267,6 +22341,7 @@ export type LookupCreditsQuery = {
22267
22341
  computeRatio?: any | null;
22268
22342
  embeddingRatio?: any | null;
22269
22343
  completionRatio?: any | null;
22344
+ generationRatio?: any | null;
22270
22345
  ingestionRatio?: any | null;
22271
22346
  indexingRatio?: any | null;
22272
22347
  preparationRatio?: any | null;
@@ -22332,6 +22407,7 @@ export type QueryCreditsQuery = {
22332
22407
  computeRatio?: any | null;
22333
22408
  embeddingRatio?: any | null;
22334
22409
  completionRatio?: any | null;
22410
+ generationRatio?: any | null;
22335
22411
  ingestionRatio?: any | null;
22336
22412
  indexingRatio?: any | null;
22337
22413
  preparationRatio?: any | null;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.GoogleDriveAuthenticationTypes = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentSourceTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.ContentClassificationServiceTypes = exports.ConnectorTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.AuthenticationServiceTypes = exports.AssemblyAiModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
- exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.RegexSourceTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiReasoningEffortLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = void 0;
5
- exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TwitterListingTypes = exports.TrelloTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = void 0;
4
+ exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.RegexSourceTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiReasoningEffortLevels = exports.OpenAiModels = exports.OpenAiImageModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = void 0;
5
+ exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TwitterListingTypes = exports.TrelloTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = void 0;
6
6
  /** Alert type */
7
7
  var AlertTypes;
8
8
  (function (AlertTypes) {
@@ -302,18 +302,26 @@ var ContentPublishingFormats;
302
302
  (function (ContentPublishingFormats) {
303
303
  /** HTML */
304
304
  ContentPublishingFormats["Html"] = "HTML";
305
+ /** JPEG */
306
+ ContentPublishingFormats["Jpeg"] = "JPEG";
305
307
  /** Markdown */
306
308
  ContentPublishingFormats["Markdown"] = "MARKDOWN";
307
309
  /** MP3 */
308
310
  ContentPublishingFormats["Mp3"] = "MP3";
311
+ /** PNG */
312
+ ContentPublishingFormats["Png"] = "PNG";
309
313
  /** Plain Text */
310
314
  ContentPublishingFormats["Text"] = "TEXT";
315
+ /** WEBP */
316
+ ContentPublishingFormats["Webp"] = "WEBP";
311
317
  })(ContentPublishingFormats || (exports.ContentPublishingFormats = ContentPublishingFormats = {}));
312
318
  /** Content publishing service type */
313
319
  var ContentPublishingServiceTypes;
314
320
  (function (ContentPublishingServiceTypes) {
315
321
  /** ElevenLabs Audio publishing */
316
322
  ContentPublishingServiceTypes["ElevenLabsAudio"] = "ELEVEN_LABS_AUDIO";
323
+ /** OpenAI Image publishing */
324
+ ContentPublishingServiceTypes["OpenAiImage"] = "OPEN_AI_IMAGE";
317
325
  /** Text publishing */
318
326
  ContentPublishingServiceTypes["Text"] = "TEXT";
319
327
  })(ContentPublishingServiceTypes || (exports.ContentPublishingServiceTypes = ContentPublishingServiceTypes = {}));
@@ -1335,6 +1343,14 @@ var OccurrenceTypes;
1335
1343
  OccurrenceTypes["Text"] = "TEXT";
1336
1344
  OccurrenceTypes["Time"] = "TIME";
1337
1345
  })(OccurrenceTypes || (exports.OccurrenceTypes = OccurrenceTypes = {}));
1346
+ /** OpenAI Image model type */
1347
+ var OpenAiImageModels;
1348
+ (function (OpenAiImageModels) {
1349
+ /** Developer-specified model */
1350
+ OpenAiImageModels["Custom"] = "CUSTOM";
1351
+ /** GPT Image-1 */
1352
+ OpenAiImageModels["GptImage_1"] = "GPT_IMAGE_1";
1353
+ })(OpenAiImageModels || (exports.OpenAiImageModels = OpenAiImageModels = {}));
1338
1354
  /** OpenAI model type */
1339
1355
  var OpenAiModels;
1340
1356
  (function (OpenAiModels) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250420001",
3
+ "version": "1.0.20250426001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",