graphlit-client 1.0.20241125001 → 1.0.20241203001

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.
package/dist/client.d.ts CHANGED
@@ -17,7 +17,7 @@ declare class Graphlit {
17
17
  lookupProjectCredits(correlationId: string): Promise<Types.LookupCreditsQuery>;
18
18
  queryProjectUsage(startDate: Types.Scalars['DateTime'], duration: Types.Scalars['TimeSpan']): Promise<Types.QueryUsageQuery>;
19
19
  queryProjectCredits(startDate: Types.Scalars['DateTime'], duration: Types.Scalars['TimeSpan']): Promise<Types.QueryCreditsQuery>;
20
- searchWeb(text: string, service?: Types.SearchServiceTypes, limit?: number): Promise<Types.SearchWebQuery>;
20
+ searchWeb(text: string, service?: Types.SearchServiceTypes, limit?: number, correlationId?: string): Promise<Types.SearchWebQuery>;
21
21
  createAlert(alert: Types.AlertInput, correlationId?: string): Promise<Types.CreateAlertMutation>;
22
22
  updateAlert(alert: Types.AlertUpdateInput): Promise<Types.UpdateAlertMutation>;
23
23
  deleteAlert(id: string): Promise<Types.DeleteAlertMutation>;
@@ -69,6 +69,8 @@ declare class Graphlit {
69
69
  reviseText(prompt: string, text: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseTextMutation>;
70
70
  reviseContent(prompt: string, content: Types.EntityReferenceInput, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseContentMutation>;
71
71
  prompt(prompt: string, specification?: Types.EntityReferenceInput, messages?: [Types.ConversationMessageInput], correlationId?: string): Promise<Types.PromptMutation>;
72
+ formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.FormatConversationMutation>;
73
+ completeConversation(completion: string, id: string, correlationId?: string): Promise<Types.CompleteConversationMutation>;
72
74
  promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
73
75
  continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
74
76
  publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishConversationMutation>;
package/dist/client.js CHANGED
@@ -143,9 +143,9 @@ class Graphlit {
143
143
  return this.queryAndCheckError(Documents.QueryCredits, { startDate: startDate, duration: duration });
144
144
  });
145
145
  }
146
- searchWeb(text, service, limit) {
146
+ searchWeb(text, service, limit, correlationId) {
147
147
  return __awaiter(this, void 0, void 0, function* () {
148
- return this.queryAndCheckError(Documents.SearchWeb, { text: text, service: service, limit: limit });
148
+ return this.queryAndCheckError(Documents.SearchWeb, { text: text, service: service, limit: limit, correlationId: correlationId });
149
149
  });
150
150
  }
151
151
  createAlert(alert, correlationId) {
@@ -403,6 +403,16 @@ class Graphlit {
403
403
  return this.mutateAndCheckError(Documents.Prompt, { prompt: prompt, specification: specification, messages: messages, correlationId: correlationId });
404
404
  });
405
405
  }
406
+ formatConversation(prompt, id, specification, correlationId) {
407
+ return __awaiter(this, void 0, void 0, function* () {
408
+ return this.mutateAndCheckError(Documents.FormatConversation, { prompt: prompt, id: id, specification: specification, correlationId: correlationId });
409
+ });
410
+ }
411
+ completeConversation(completion, id, correlationId) {
412
+ return __awaiter(this, void 0, void 0, function* () {
413
+ return this.mutateAndCheckError(Documents.CompleteConversation, { completion: completion, id: id, correlationId: correlationId });
414
+ });
415
+ }
406
416
  promptConversation(prompt, id, specification, tools, requireTool, correlationId) {
407
417
  return __awaiter(this, void 0, void 0, function* () {
408
418
  return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, correlationId: correlationId });
@@ -49,12 +49,14 @@ export declare const SummarizeContents: import("graphql").DocumentNode;
49
49
  export declare const UpdateContent: import("graphql").DocumentNode;
50
50
  export declare const ClearConversation: import("graphql").DocumentNode;
51
51
  export declare const CloseConversation: import("graphql").DocumentNode;
52
+ export declare const CompleteConversation: import("graphql").DocumentNode;
52
53
  export declare const ContinueConversation: import("graphql").DocumentNode;
53
54
  export declare const CountConversations: import("graphql").DocumentNode;
54
55
  export declare const CreateConversation: import("graphql").DocumentNode;
55
56
  export declare const DeleteAllConversations: import("graphql").DocumentNode;
56
57
  export declare const DeleteConversation: import("graphql").DocumentNode;
57
58
  export declare const DeleteConversations: import("graphql").DocumentNode;
59
+ export declare const FormatConversation: import("graphql").DocumentNode;
58
60
  export declare const GetConversation: import("graphql").DocumentNode;
59
61
  export declare const Prompt: import("graphql").DocumentNode;
60
62
  export declare const PromptConversation: import("graphql").DocumentNode;
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.ClearConversation = exports.UpdateContent = exports.SummarizeContents = exports.QueryContentsGraph = exports.QueryContentsFacets = exports.QueryContents = exports.PublishText = exports.PublishContents = exports.IsContentDone = exports.IngestUri = exports.IngestTextBatch = exports.IngestText = exports.IngestEncodedFile = exports.IngestBatch = exports.GetContent = exports.ExtractContents = exports.DescribeImage = exports.DescribeEncodedImage = exports.DeleteContents = exports.DeleteContent = exports.DeleteAllContents = exports.CountContents = exports.UpdateCollection = exports.RemoveContentsFromCollection = exports.QueryCollections = exports.GetCollection = exports.DeleteCollections = exports.DeleteCollection = exports.DeleteAllCollections = exports.CreateCollection = exports.CountCollections = exports.AddContentsToCollections = exports.UpdateCategory = exports.QueryCategories = exports.GetCategory = exports.DeleteCategory = exports.DeleteCategories = exports.DeleteAllCategories = exports.CreateCategory = exports.CountCategories = exports.UpdateAlert = exports.QueryAlerts = exports.GetAlert = exports.EnableAlert = exports.DisableAlert = exports.DeleteAllAlerts = exports.DeleteAlerts = exports.DeleteAlert = exports.CreateAlert = exports.CountAlerts = void 0;
7
- exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = exports.CountLabels = exports.UpdateFeed = exports.QuerySharePointLibraries = exports.QuerySharePointFolders = exports.QueryOneDriveFolders = exports.QueryMicrosoftTeamsTeams = exports.QueryMicrosoftTeamsChannels = exports.QueryFeeds = exports.IsFeedDone = exports.GetSharePointConsentUri = exports.GetFeed = exports.EnableFeed = exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.CountFeeds = exports.UpdateEvent = exports.QueryEvents = exports.GetEvent = exports.DeleteEvents = exports.DeleteEvent = exports.DeleteAllEvents = exports.CreateEvent = exports.CountEvents = exports.UpdateConversation = exports.SuggestConversation = exports.ReviseText = exports.ReviseImage = exports.ReviseEncodedImage = exports.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.Prompt = exports.GetConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CloseConversation = void 0;
8
- exports.CountMedicalIndications = exports.UpdateMedicalGuideline = exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = exports.DeleteAllMedicalGuidelines = exports.CreateMedicalGuideline = exports.CountMedicalGuidelines = exports.UpdateMedicalDrugClass = exports.QueryMedicalDrugClasses = exports.GetMedicalDrugClass = exports.DeleteMedicalDrugClasses = exports.DeleteMedicalDrugClass = exports.DeleteAllMedicalDrugClasses = exports.CreateMedicalDrugClass = exports.CountMedicalDrugClasses = exports.UpdateMedicalDrug = exports.QueryMedicalDrugs = exports.GetMedicalDrug = exports.DeleteMedicalDrugs = exports.DeleteMedicalDrug = exports.DeleteAllMedicalDrugs = exports.CreateMedicalDrug = exports.CountMedicalDrugs = exports.UpdateMedicalDevice = exports.QueryMedicalDevices = exports.GetMedicalDevice = exports.DeleteMedicalDevices = exports.DeleteMedicalDevice = exports.DeleteAllMedicalDevices = exports.CreateMedicalDevice = exports.CountMedicalDevices = exports.UpdateMedicalContraindication = exports.QueryMedicalContraindications = exports.GetMedicalContraindication = exports.DeleteMedicalContraindications = exports.DeleteMedicalContraindication = exports.DeleteAllMedicalContraindications = exports.CreateMedicalContraindication = exports.CountMedicalContraindications = exports.UpdateMedicalCondition = exports.QueryMedicalConditions = exports.GetMedicalCondition = exports.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = void 0;
9
- exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = exports.CreateOrganization = exports.CountOrganizations = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateMedicalTherapy = exports.QueryMedicalTherapies = exports.GetMedicalTherapy = exports.DeleteMedicalTherapy = exports.DeleteMedicalTherapies = exports.DeleteAllMedicalTherapies = exports.CreateMedicalTherapy = exports.CountMedicalTherapies = exports.UpdateMedicalTest = exports.QueryMedicalTests = exports.GetMedicalTest = exports.DeleteMedicalTests = exports.DeleteMedicalTest = exports.DeleteAllMedicalTests = exports.CreateMedicalTest = exports.CountMedicalTests = exports.UpdateMedicalStudy = exports.QueryMedicalStudies = exports.GetMedicalStudy = exports.DeleteMedicalStudy = exports.DeleteMedicalStudies = exports.DeleteAllMedicalStudies = exports.CreateMedicalStudy = exports.CountMedicalStudies = exports.UpdateMedicalProcedure = exports.QueryMedicalProcedures = exports.GetMedicalProcedure = exports.DeleteMedicalProcedures = exports.DeleteMedicalProcedure = exports.DeleteAllMedicalProcedures = exports.CreateMedicalProcedure = exports.CountMedicalProcedures = exports.UpdateMedicalIndication = exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = void 0;
10
- exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = void 0;
11
- exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = void 0;
7
+ exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = exports.CountLabels = exports.UpdateFeed = exports.QuerySharePointLibraries = exports.QuerySharePointFolders = exports.QueryOneDriveFolders = exports.QueryMicrosoftTeamsTeams = exports.QueryMicrosoftTeamsChannels = exports.QueryFeeds = exports.IsFeedDone = exports.GetSharePointConsentUri = exports.GetFeed = exports.EnableFeed = exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.CountFeeds = exports.UpdateEvent = exports.QueryEvents = exports.GetEvent = exports.DeleteEvents = exports.DeleteEvent = exports.DeleteAllEvents = exports.CreateEvent = exports.CountEvents = exports.UpdateConversation = exports.SuggestConversation = exports.ReviseText = exports.ReviseImage = exports.ReviseEncodedImage = exports.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.Prompt = exports.GetConversation = exports.FormatConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CompleteConversation = exports.CloseConversation = void 0;
8
+ exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = exports.DeleteAllMedicalGuidelines = exports.CreateMedicalGuideline = exports.CountMedicalGuidelines = exports.UpdateMedicalDrugClass = exports.QueryMedicalDrugClasses = exports.GetMedicalDrugClass = exports.DeleteMedicalDrugClasses = exports.DeleteMedicalDrugClass = exports.DeleteAllMedicalDrugClasses = exports.CreateMedicalDrugClass = exports.CountMedicalDrugClasses = exports.UpdateMedicalDrug = exports.QueryMedicalDrugs = exports.GetMedicalDrug = exports.DeleteMedicalDrugs = exports.DeleteMedicalDrug = exports.DeleteAllMedicalDrugs = exports.CreateMedicalDrug = exports.CountMedicalDrugs = exports.UpdateMedicalDevice = exports.QueryMedicalDevices = exports.GetMedicalDevice = exports.DeleteMedicalDevices = exports.DeleteMedicalDevice = exports.DeleteAllMedicalDevices = exports.CreateMedicalDevice = exports.CountMedicalDevices = exports.UpdateMedicalContraindication = exports.QueryMedicalContraindications = exports.GetMedicalContraindication = exports.DeleteMedicalContraindications = exports.DeleteMedicalContraindication = exports.DeleteAllMedicalContraindications = exports.CreateMedicalContraindication = exports.CountMedicalContraindications = exports.UpdateMedicalCondition = exports.QueryMedicalConditions = exports.GetMedicalCondition = exports.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = exports.QueryLabels = exports.GetLabel = void 0;
9
+ exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = exports.CreateOrganization = exports.CountOrganizations = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateMedicalTherapy = exports.QueryMedicalTherapies = exports.GetMedicalTherapy = exports.DeleteMedicalTherapy = exports.DeleteMedicalTherapies = exports.DeleteAllMedicalTherapies = exports.CreateMedicalTherapy = exports.CountMedicalTherapies = exports.UpdateMedicalTest = exports.QueryMedicalTests = exports.GetMedicalTest = exports.DeleteMedicalTests = exports.DeleteMedicalTest = exports.DeleteAllMedicalTests = exports.CreateMedicalTest = exports.CountMedicalTests = exports.UpdateMedicalStudy = exports.QueryMedicalStudies = exports.GetMedicalStudy = exports.DeleteMedicalStudy = exports.DeleteMedicalStudies = exports.DeleteAllMedicalStudies = exports.CreateMedicalStudy = exports.CountMedicalStudies = exports.UpdateMedicalProcedure = exports.QueryMedicalProcedures = exports.GetMedicalProcedure = exports.DeleteMedicalProcedures = exports.DeleteMedicalProcedure = exports.DeleteAllMedicalProcedures = exports.CreateMedicalProcedure = exports.CountMedicalProcedures = exports.UpdateMedicalIndication = exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = exports.CountMedicalIndications = exports.UpdateMedicalGuideline = void 0;
10
+ exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = exports.UpdateOrganization = exports.QueryOrganizations = void 0;
11
+ exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = void 0;
12
12
  const graphql_tag_1 = __importDefault(require("graphql-tag"));
13
13
  exports.CountAlerts = (0, graphql_tag_1.default) `
14
14
  query CountAlerts($filter: AlertFilter) {
@@ -1826,6 +1826,171 @@ exports.CloseConversation = (0, graphql_tag_1.default) `
1826
1826
  }
1827
1827
  }
1828
1828
  `;
1829
+ exports.CompleteConversation = (0, graphql_tag_1.default) `
1830
+ mutation CompleteConversation($completion: String!, $id: ID!, $correlationId: String) {
1831
+ completeConversation(
1832
+ completion: $completion
1833
+ id: $id
1834
+ correlationId: $correlationId
1835
+ ) {
1836
+ conversation {
1837
+ id
1838
+ }
1839
+ message {
1840
+ role
1841
+ author
1842
+ message
1843
+ citations {
1844
+ content {
1845
+ id
1846
+ name
1847
+ state
1848
+ originalDate
1849
+ identifier
1850
+ uri
1851
+ type
1852
+ fileType
1853
+ mimeType
1854
+ format
1855
+ formatName
1856
+ fileExtension
1857
+ fileName
1858
+ fileSize
1859
+ masterUri
1860
+ imageUri
1861
+ textUri
1862
+ audioUri
1863
+ transcriptUri
1864
+ summary
1865
+ customSummary
1866
+ keywords
1867
+ bullets
1868
+ headlines
1869
+ posts
1870
+ chapters
1871
+ questions
1872
+ video {
1873
+ width
1874
+ height
1875
+ duration
1876
+ make
1877
+ model
1878
+ software
1879
+ title
1880
+ description
1881
+ keywords
1882
+ author
1883
+ }
1884
+ audio {
1885
+ keywords
1886
+ author
1887
+ series
1888
+ episode
1889
+ episodeType
1890
+ season
1891
+ publisher
1892
+ copyright
1893
+ genre
1894
+ title
1895
+ description
1896
+ bitrate
1897
+ channels
1898
+ sampleRate
1899
+ bitsPerSample
1900
+ duration
1901
+ }
1902
+ image {
1903
+ width
1904
+ height
1905
+ resolutionX
1906
+ resolutionY
1907
+ bitsPerComponent
1908
+ components
1909
+ projectionType
1910
+ orientation
1911
+ description
1912
+ make
1913
+ model
1914
+ software
1915
+ lens
1916
+ focalLength
1917
+ exposureTime
1918
+ fNumber
1919
+ iso
1920
+ heading
1921
+ pitch
1922
+ }
1923
+ document {
1924
+ title
1925
+ subject
1926
+ summary
1927
+ author
1928
+ publisher
1929
+ description
1930
+ keywords
1931
+ pageCount
1932
+ worksheetCount
1933
+ slideCount
1934
+ wordCount
1935
+ lineCount
1936
+ paragraphCount
1937
+ isEncrypted
1938
+ hasDigitalSignature
1939
+ }
1940
+ }
1941
+ index
1942
+ text
1943
+ startTime
1944
+ endTime
1945
+ pageNumber
1946
+ frameNumber
1947
+ }
1948
+ toolCalls {
1949
+ id
1950
+ name
1951
+ arguments
1952
+ }
1953
+ tokens
1954
+ throughput
1955
+ completionTime
1956
+ timestamp
1957
+ modelService
1958
+ model
1959
+ }
1960
+ messageCount
1961
+ facets {
1962
+ type
1963
+ value
1964
+ range {
1965
+ from
1966
+ to
1967
+ }
1968
+ count
1969
+ facet
1970
+ observable {
1971
+ type
1972
+ observable {
1973
+ id
1974
+ name
1975
+ }
1976
+ }
1977
+ }
1978
+ graph {
1979
+ nodes {
1980
+ id
1981
+ name
1982
+ type
1983
+ metadata
1984
+ }
1985
+ edges {
1986
+ from
1987
+ to
1988
+ relation
1989
+ }
1990
+ }
1991
+ }
1992
+ }
1993
+ `;
1829
1994
  exports.ContinueConversation = (0, graphql_tag_1.default) `
1830
1995
  mutation ContinueConversation($id: ID!, $responses: [ConversationToolResponseInput!]!, $correlationId: String) {
1831
1996
  continueConversation(
@@ -2036,6 +2201,172 @@ exports.DeleteConversations = (0, graphql_tag_1.default) `
2036
2201
  }
2037
2202
  }
2038
2203
  `;
2204
+ exports.FormatConversation = (0, graphql_tag_1.default) `
2205
+ mutation FormatConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
2206
+ formatConversation(
2207
+ prompt: $prompt
2208
+ id: $id
2209
+ specification: $specification
2210
+ correlationId: $correlationId
2211
+ ) {
2212
+ conversation {
2213
+ id
2214
+ }
2215
+ message {
2216
+ role
2217
+ author
2218
+ message
2219
+ citations {
2220
+ content {
2221
+ id
2222
+ name
2223
+ state
2224
+ originalDate
2225
+ identifier
2226
+ uri
2227
+ type
2228
+ fileType
2229
+ mimeType
2230
+ format
2231
+ formatName
2232
+ fileExtension
2233
+ fileName
2234
+ fileSize
2235
+ masterUri
2236
+ imageUri
2237
+ textUri
2238
+ audioUri
2239
+ transcriptUri
2240
+ summary
2241
+ customSummary
2242
+ keywords
2243
+ bullets
2244
+ headlines
2245
+ posts
2246
+ chapters
2247
+ questions
2248
+ video {
2249
+ width
2250
+ height
2251
+ duration
2252
+ make
2253
+ model
2254
+ software
2255
+ title
2256
+ description
2257
+ keywords
2258
+ author
2259
+ }
2260
+ audio {
2261
+ keywords
2262
+ author
2263
+ series
2264
+ episode
2265
+ episodeType
2266
+ season
2267
+ publisher
2268
+ copyright
2269
+ genre
2270
+ title
2271
+ description
2272
+ bitrate
2273
+ channels
2274
+ sampleRate
2275
+ bitsPerSample
2276
+ duration
2277
+ }
2278
+ image {
2279
+ width
2280
+ height
2281
+ resolutionX
2282
+ resolutionY
2283
+ bitsPerComponent
2284
+ components
2285
+ projectionType
2286
+ orientation
2287
+ description
2288
+ make
2289
+ model
2290
+ software
2291
+ lens
2292
+ focalLength
2293
+ exposureTime
2294
+ fNumber
2295
+ iso
2296
+ heading
2297
+ pitch
2298
+ }
2299
+ document {
2300
+ title
2301
+ subject
2302
+ summary
2303
+ author
2304
+ publisher
2305
+ description
2306
+ keywords
2307
+ pageCount
2308
+ worksheetCount
2309
+ slideCount
2310
+ wordCount
2311
+ lineCount
2312
+ paragraphCount
2313
+ isEncrypted
2314
+ hasDigitalSignature
2315
+ }
2316
+ }
2317
+ index
2318
+ text
2319
+ startTime
2320
+ endTime
2321
+ pageNumber
2322
+ frameNumber
2323
+ }
2324
+ toolCalls {
2325
+ id
2326
+ name
2327
+ arguments
2328
+ }
2329
+ tokens
2330
+ throughput
2331
+ completionTime
2332
+ timestamp
2333
+ modelService
2334
+ model
2335
+ }
2336
+ messageCount
2337
+ facets {
2338
+ type
2339
+ value
2340
+ range {
2341
+ from
2342
+ to
2343
+ }
2344
+ count
2345
+ facet
2346
+ observable {
2347
+ type
2348
+ observable {
2349
+ id
2350
+ name
2351
+ }
2352
+ }
2353
+ }
2354
+ graph {
2355
+ nodes {
2356
+ id
2357
+ name
2358
+ type
2359
+ metadata
2360
+ }
2361
+ edges {
2362
+ from
2363
+ to
2364
+ relation
2365
+ }
2366
+ }
2367
+ }
2368
+ }
2369
+ `;
2039
2370
  exports.GetConversation = (0, graphql_tag_1.default) `
2040
2371
  query GetConversation($id: ID!) {
2041
2372
  conversation(id: $id) {
@@ -5701,8 +6032,13 @@ exports.UpdateRepo = (0, graphql_tag_1.default) `
5701
6032
  }
5702
6033
  `;
5703
6034
  exports.SearchWeb = (0, graphql_tag_1.default) `
5704
- query SearchWeb($text: String!, $service: SearchServiceTypes, $limit: Int) {
5705
- searchWeb(text: $text, service: $service, limit: $limit) {
6035
+ query SearchWeb($text: String!, $service: SearchServiceTypes, $limit: Int, $correlationId: String) {
6036
+ searchWeb(
6037
+ text: $text
6038
+ service: $service
6039
+ limit: $limit
6040
+ correlationId: $correlationId
6041
+ ) {
5706
6042
  results {
5707
6043
  uri
5708
6044
  text
@@ -3828,8 +3828,13 @@ export declare enum GroqModels {
3828
3828
  Llama_3_2_11BTextPreview = "LLAMA_3_2_11B_TEXT_PREVIEW",
3829
3829
  /** LLaMA 3.2 11b Vision Preview */
3830
3830
  Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
3831
- /** LLaMA 3.2 90b Text Preview */
3831
+ /**
3832
+ * LLaMA 3.2 90b Text Preview
3833
+ * @deprecated Use Llama 3.2 90b Vision Preview instead.
3834
+ */
3832
3835
  Llama_3_2_90BTextPreview = "LLAMA_3_2_90B_TEXT_PREVIEW",
3836
+ /** LLaMA 3.2 90b Vision Preview */
3837
+ Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
3833
3838
  /** LLaMA 3 8b */
3834
3839
  Llama_3_8B = "LLAMA_3_8B",
3835
3840
  /** LLaMA 3 70b */
@@ -6521,6 +6526,8 @@ export type Mutation = {
6521
6526
  closeCollection?: Maybe<Collection>;
6522
6527
  /** Closes an existing conversation. */
6523
6528
  closeConversation?: Maybe<Conversation>;
6529
+ /** Complete a conversation with LLM assistant message. */
6530
+ completeConversation?: Maybe<PromptConversation>;
6524
6531
  /** Provide responses to called tools which continues prompted conversation. */
6525
6532
  continueConversation?: Maybe<PromptConversation>;
6526
6533
  /** Creates a new alert. */
@@ -6755,6 +6762,8 @@ export type Mutation = {
6755
6762
  enableFeed?: Maybe<Feed>;
6756
6763
  /** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
6757
6764
  extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
6765
+ /** Format a conversation LLM user prompt. */
6766
+ formatConversation?: Maybe<PromptConversation>;
6758
6767
  /** Ingests a batch of content by URI. Supports files and webpages. */
6759
6768
  ingestBatch?: Maybe<Array<Maybe<Content>>>;
6760
6769
  /** Ingests a file from Base64-encoded data. */
@@ -6891,6 +6900,11 @@ export type MutationCloseCollectionArgs = {
6891
6900
  export type MutationCloseConversationArgs = {
6892
6901
  id: Scalars['ID']['input'];
6893
6902
  };
6903
+ export type MutationCompleteConversationArgs = {
6904
+ completion: Scalars['String']['input'];
6905
+ correlationId?: InputMaybe<Scalars['String']['input']>;
6906
+ id: Scalars['ID']['input'];
6907
+ };
6894
6908
  export type MutationContinueConversationArgs = {
6895
6909
  correlationId?: InputMaybe<Scalars['String']['input']>;
6896
6910
  id: Scalars['ID']['input'];
@@ -7339,6 +7353,12 @@ export type MutationExtractContentsArgs = {
7339
7353
  specification: EntityReferenceInput;
7340
7354
  tools: Array<ToolDefinitionInput>;
7341
7355
  };
7356
+ export type MutationFormatConversationArgs = {
7357
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7358
+ id?: InputMaybe<Scalars['ID']['input']>;
7359
+ prompt: Scalars['String']['input'];
7360
+ specification?: InputMaybe<EntityReferenceInput>;
7361
+ };
7342
7362
  export type MutationIngestBatchArgs = {
7343
7363
  collections?: InputMaybe<Array<EntityReferenceInput>>;
7344
7364
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -11279,6 +11299,8 @@ export declare enum TextRoles {
11279
11299
  Heading4 = "HEADING4",
11280
11300
  /** Heading 5 */
11281
11301
  Heading5 = "HEADING5",
11302
+ /** Heading 6 */
11303
+ Heading6 = "HEADING6",
11282
11304
  /** List Item */
11283
11305
  ListItem = "LIST_ITEM",
11284
11306
  /** Page Footer */
@@ -13885,6 +13907,188 @@ export type CloseConversationMutation = {
13885
13907
  type?: ConversationTypes | null;
13886
13908
  } | null;
13887
13909
  };
13910
+ export type CompleteConversationMutationVariables = Exact<{
13911
+ completion: Scalars['String']['input'];
13912
+ id: Scalars['ID']['input'];
13913
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13914
+ }>;
13915
+ export type CompleteConversationMutation = {
13916
+ __typename?: 'Mutation';
13917
+ completeConversation?: {
13918
+ __typename?: 'PromptConversation';
13919
+ messageCount?: number | null;
13920
+ conversation?: {
13921
+ __typename?: 'EntityReference';
13922
+ id: string;
13923
+ } | null;
13924
+ message?: {
13925
+ __typename?: 'ConversationMessage';
13926
+ role: ConversationRoleTypes;
13927
+ author?: string | null;
13928
+ message?: string | null;
13929
+ tokens?: number | null;
13930
+ throughput?: number | null;
13931
+ completionTime?: any | null;
13932
+ timestamp?: any | null;
13933
+ modelService?: ModelServiceTypes | null;
13934
+ model?: string | null;
13935
+ citations?: Array<{
13936
+ __typename?: 'ConversationCitation';
13937
+ index?: number | null;
13938
+ text: string;
13939
+ startTime?: any | null;
13940
+ endTime?: any | null;
13941
+ pageNumber?: number | null;
13942
+ frameNumber?: number | null;
13943
+ content?: {
13944
+ __typename?: 'Content';
13945
+ id: string;
13946
+ name: string;
13947
+ state: EntityState;
13948
+ originalDate?: any | null;
13949
+ identifier?: string | null;
13950
+ uri?: any | null;
13951
+ type?: ContentTypes | null;
13952
+ fileType?: FileTypes | null;
13953
+ mimeType?: string | null;
13954
+ format?: string | null;
13955
+ formatName?: string | null;
13956
+ fileExtension?: string | null;
13957
+ fileName?: string | null;
13958
+ fileSize?: any | null;
13959
+ masterUri?: any | null;
13960
+ imageUri?: any | null;
13961
+ textUri?: any | null;
13962
+ audioUri?: any | null;
13963
+ transcriptUri?: any | null;
13964
+ summary?: string | null;
13965
+ customSummary?: string | null;
13966
+ keywords?: Array<string> | null;
13967
+ bullets?: Array<string> | null;
13968
+ headlines?: Array<string> | null;
13969
+ posts?: Array<string> | null;
13970
+ chapters?: Array<string> | null;
13971
+ questions?: Array<string> | null;
13972
+ video?: {
13973
+ __typename?: 'VideoMetadata';
13974
+ width?: number | null;
13975
+ height?: number | null;
13976
+ duration?: any | null;
13977
+ make?: string | null;
13978
+ model?: string | null;
13979
+ software?: string | null;
13980
+ title?: string | null;
13981
+ description?: string | null;
13982
+ keywords?: Array<string | null> | null;
13983
+ author?: string | null;
13984
+ } | null;
13985
+ audio?: {
13986
+ __typename?: 'AudioMetadata';
13987
+ keywords?: Array<string | null> | null;
13988
+ author?: string | null;
13989
+ series?: string | null;
13990
+ episode?: string | null;
13991
+ episodeType?: string | null;
13992
+ season?: string | null;
13993
+ publisher?: string | null;
13994
+ copyright?: string | null;
13995
+ genre?: string | null;
13996
+ title?: string | null;
13997
+ description?: string | null;
13998
+ bitrate?: number | null;
13999
+ channels?: number | null;
14000
+ sampleRate?: number | null;
14001
+ bitsPerSample?: number | null;
14002
+ duration?: any | null;
14003
+ } | null;
14004
+ image?: {
14005
+ __typename?: 'ImageMetadata';
14006
+ width?: number | null;
14007
+ height?: number | null;
14008
+ resolutionX?: number | null;
14009
+ resolutionY?: number | null;
14010
+ bitsPerComponent?: number | null;
14011
+ components?: number | null;
14012
+ projectionType?: ImageProjectionTypes | null;
14013
+ orientation?: OrientationTypes | null;
14014
+ description?: string | null;
14015
+ make?: string | null;
14016
+ model?: string | null;
14017
+ software?: string | null;
14018
+ lens?: string | null;
14019
+ focalLength?: number | null;
14020
+ exposureTime?: string | null;
14021
+ fNumber?: string | null;
14022
+ iso?: string | null;
14023
+ heading?: number | null;
14024
+ pitch?: number | null;
14025
+ } | null;
14026
+ document?: {
14027
+ __typename?: 'DocumentMetadata';
14028
+ title?: string | null;
14029
+ subject?: string | null;
14030
+ summary?: string | null;
14031
+ author?: string | null;
14032
+ publisher?: string | null;
14033
+ description?: string | null;
14034
+ keywords?: Array<string | null> | null;
14035
+ pageCount?: number | null;
14036
+ worksheetCount?: number | null;
14037
+ slideCount?: number | null;
14038
+ wordCount?: number | null;
14039
+ lineCount?: number | null;
14040
+ paragraphCount?: number | null;
14041
+ isEncrypted?: boolean | null;
14042
+ hasDigitalSignature?: boolean | null;
14043
+ } | null;
14044
+ } | null;
14045
+ } | null> | null;
14046
+ toolCalls?: Array<{
14047
+ __typename?: 'ConversationToolCall';
14048
+ id: string;
14049
+ name: string;
14050
+ arguments: string;
14051
+ } | null> | null;
14052
+ } | null;
14053
+ facets?: Array<{
14054
+ __typename?: 'ContentFacet';
14055
+ type?: FacetValueTypes | null;
14056
+ value?: string | null;
14057
+ count?: any | null;
14058
+ facet?: ContentFacetTypes | null;
14059
+ range?: {
14060
+ __typename?: 'StringRange';
14061
+ from?: string | null;
14062
+ to?: string | null;
14063
+ } | null;
14064
+ observable?: {
14065
+ __typename?: 'ObservableFacet';
14066
+ type?: ObservableTypes | null;
14067
+ observable?: {
14068
+ __typename?: 'NamedEntityReference';
14069
+ id: string;
14070
+ name?: string | null;
14071
+ } | null;
14072
+ } | null;
14073
+ } | null> | null;
14074
+ graph?: {
14075
+ __typename?: 'Graph';
14076
+ nodes?: Array<{
14077
+ __typename?: 'GraphNode';
14078
+ id: string;
14079
+ name: string;
14080
+ type: EntityTypes;
14081
+ metadata?: string | null;
14082
+ } | null> | null;
14083
+ edges?: Array<{
14084
+ __typename?: 'GraphEdge';
14085
+ from: string;
14086
+ to: string;
14087
+ relation?: string | null;
14088
+ } | null> | null;
14089
+ } | null;
14090
+ } | null;
14091
+ };
13888
14092
  export type ContinueConversationMutationVariables = Exact<{
13889
14093
  id: Scalars['ID']['input'];
13890
14094
  responses: Array<ConversationToolResponseInput> | ConversationToolResponseInput;
@@ -14127,6 +14331,189 @@ export type DeleteConversationsMutation = {
14127
14331
  state: EntityState;
14128
14332
  } | null> | null;
14129
14333
  };
14334
+ export type FormatConversationMutationVariables = Exact<{
14335
+ prompt: Scalars['String']['input'];
14336
+ id?: InputMaybe<Scalars['ID']['input']>;
14337
+ specification?: InputMaybe<EntityReferenceInput>;
14338
+ correlationId?: InputMaybe<Scalars['String']['input']>;
14339
+ }>;
14340
+ export type FormatConversationMutation = {
14341
+ __typename?: 'Mutation';
14342
+ formatConversation?: {
14343
+ __typename?: 'PromptConversation';
14344
+ messageCount?: number | null;
14345
+ conversation?: {
14346
+ __typename?: 'EntityReference';
14347
+ id: string;
14348
+ } | null;
14349
+ message?: {
14350
+ __typename?: 'ConversationMessage';
14351
+ role: ConversationRoleTypes;
14352
+ author?: string | null;
14353
+ message?: string | null;
14354
+ tokens?: number | null;
14355
+ throughput?: number | null;
14356
+ completionTime?: any | null;
14357
+ timestamp?: any | null;
14358
+ modelService?: ModelServiceTypes | null;
14359
+ model?: string | null;
14360
+ citations?: Array<{
14361
+ __typename?: 'ConversationCitation';
14362
+ index?: number | null;
14363
+ text: string;
14364
+ startTime?: any | null;
14365
+ endTime?: any | null;
14366
+ pageNumber?: number | null;
14367
+ frameNumber?: number | null;
14368
+ content?: {
14369
+ __typename?: 'Content';
14370
+ id: string;
14371
+ name: string;
14372
+ state: EntityState;
14373
+ originalDate?: any | null;
14374
+ identifier?: string | null;
14375
+ uri?: any | null;
14376
+ type?: ContentTypes | null;
14377
+ fileType?: FileTypes | null;
14378
+ mimeType?: string | null;
14379
+ format?: string | null;
14380
+ formatName?: string | null;
14381
+ fileExtension?: string | null;
14382
+ fileName?: string | null;
14383
+ fileSize?: any | null;
14384
+ masterUri?: any | null;
14385
+ imageUri?: any | null;
14386
+ textUri?: any | null;
14387
+ audioUri?: any | null;
14388
+ transcriptUri?: any | null;
14389
+ summary?: string | null;
14390
+ customSummary?: string | null;
14391
+ keywords?: Array<string> | null;
14392
+ bullets?: Array<string> | null;
14393
+ headlines?: Array<string> | null;
14394
+ posts?: Array<string> | null;
14395
+ chapters?: Array<string> | null;
14396
+ questions?: Array<string> | null;
14397
+ video?: {
14398
+ __typename?: 'VideoMetadata';
14399
+ width?: number | null;
14400
+ height?: number | null;
14401
+ duration?: any | null;
14402
+ make?: string | null;
14403
+ model?: string | null;
14404
+ software?: string | null;
14405
+ title?: string | null;
14406
+ description?: string | null;
14407
+ keywords?: Array<string | null> | null;
14408
+ author?: string | null;
14409
+ } | null;
14410
+ audio?: {
14411
+ __typename?: 'AudioMetadata';
14412
+ keywords?: Array<string | null> | null;
14413
+ author?: string | null;
14414
+ series?: string | null;
14415
+ episode?: string | null;
14416
+ episodeType?: string | null;
14417
+ season?: string | null;
14418
+ publisher?: string | null;
14419
+ copyright?: string | null;
14420
+ genre?: string | null;
14421
+ title?: string | null;
14422
+ description?: string | null;
14423
+ bitrate?: number | null;
14424
+ channels?: number | null;
14425
+ sampleRate?: number | null;
14426
+ bitsPerSample?: number | null;
14427
+ duration?: any | null;
14428
+ } | null;
14429
+ image?: {
14430
+ __typename?: 'ImageMetadata';
14431
+ width?: number | null;
14432
+ height?: number | null;
14433
+ resolutionX?: number | null;
14434
+ resolutionY?: number | null;
14435
+ bitsPerComponent?: number | null;
14436
+ components?: number | null;
14437
+ projectionType?: ImageProjectionTypes | null;
14438
+ orientation?: OrientationTypes | null;
14439
+ description?: string | null;
14440
+ make?: string | null;
14441
+ model?: string | null;
14442
+ software?: string | null;
14443
+ lens?: string | null;
14444
+ focalLength?: number | null;
14445
+ exposureTime?: string | null;
14446
+ fNumber?: string | null;
14447
+ iso?: string | null;
14448
+ heading?: number | null;
14449
+ pitch?: number | null;
14450
+ } | null;
14451
+ document?: {
14452
+ __typename?: 'DocumentMetadata';
14453
+ title?: string | null;
14454
+ subject?: string | null;
14455
+ summary?: string | null;
14456
+ author?: string | null;
14457
+ publisher?: string | null;
14458
+ description?: string | null;
14459
+ keywords?: Array<string | null> | null;
14460
+ pageCount?: number | null;
14461
+ worksheetCount?: number | null;
14462
+ slideCount?: number | null;
14463
+ wordCount?: number | null;
14464
+ lineCount?: number | null;
14465
+ paragraphCount?: number | null;
14466
+ isEncrypted?: boolean | null;
14467
+ hasDigitalSignature?: boolean | null;
14468
+ } | null;
14469
+ } | null;
14470
+ } | null> | null;
14471
+ toolCalls?: Array<{
14472
+ __typename?: 'ConversationToolCall';
14473
+ id: string;
14474
+ name: string;
14475
+ arguments: string;
14476
+ } | null> | null;
14477
+ } | null;
14478
+ facets?: Array<{
14479
+ __typename?: 'ContentFacet';
14480
+ type?: FacetValueTypes | null;
14481
+ value?: string | null;
14482
+ count?: any | null;
14483
+ facet?: ContentFacetTypes | null;
14484
+ range?: {
14485
+ __typename?: 'StringRange';
14486
+ from?: string | null;
14487
+ to?: string | null;
14488
+ } | null;
14489
+ observable?: {
14490
+ __typename?: 'ObservableFacet';
14491
+ type?: ObservableTypes | null;
14492
+ observable?: {
14493
+ __typename?: 'NamedEntityReference';
14494
+ id: string;
14495
+ name?: string | null;
14496
+ } | null;
14497
+ } | null;
14498
+ } | null> | null;
14499
+ graph?: {
14500
+ __typename?: 'Graph';
14501
+ nodes?: Array<{
14502
+ __typename?: 'GraphNode';
14503
+ id: string;
14504
+ name: string;
14505
+ type: EntityTypes;
14506
+ metadata?: string | null;
14507
+ } | null> | null;
14508
+ edges?: Array<{
14509
+ __typename?: 'GraphEdge';
14510
+ from: string;
14511
+ to: string;
14512
+ relation?: string | null;
14513
+ } | null> | null;
14514
+ } | null;
14515
+ } | null;
14516
+ };
14130
14517
  export type GetConversationQueryVariables = Exact<{
14131
14518
  id: Scalars['ID']['input'];
14132
14519
  }>;
@@ -18566,6 +18953,7 @@ export type SearchWebQueryVariables = Exact<{
18566
18953
  text: Scalars['String']['input'];
18567
18954
  service?: InputMaybe<SearchServiceTypes>;
18568
18955
  limit?: InputMaybe<Scalars['Int']['input']>;
18956
+ correlationId?: InputMaybe<Scalars['String']['input']>;
18569
18957
  }>;
18570
18958
  export type SearchWebQuery = {
18571
18959
  __typename?: 'Query';
@@ -776,8 +776,13 @@ var GroqModels;
776
776
  GroqModels["Llama_3_2_11BTextPreview"] = "LLAMA_3_2_11B_TEXT_PREVIEW";
777
777
  /** LLaMA 3.2 11b Vision Preview */
778
778
  GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
779
- /** LLaMA 3.2 90b Text Preview */
779
+ /**
780
+ * LLaMA 3.2 90b Text Preview
781
+ * @deprecated Use Llama 3.2 90b Vision Preview instead.
782
+ */
780
783
  GroqModels["Llama_3_2_90BTextPreview"] = "LLAMA_3_2_90B_TEXT_PREVIEW";
784
+ /** LLaMA 3.2 90b Vision Preview */
785
+ GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
781
786
  /** LLaMA 3 8b */
782
787
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
783
788
  /** LLaMA 3 70b */
@@ -1552,6 +1557,8 @@ var TextRoles;
1552
1557
  TextRoles["Heading4"] = "HEADING4";
1553
1558
  /** Heading 5 */
1554
1559
  TextRoles["Heading5"] = "HEADING5";
1560
+ /** Heading 6 */
1561
+ TextRoles["Heading6"] = "HEADING6";
1555
1562
  /** List Item */
1556
1563
  TextRoles["ListItem"] = "LIST_ITEM";
1557
1564
  /** Page Footer */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20241125001",
3
+ "version": "1.0.20241203001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",