graphlit-client 1.0.20241110001 → 1.0.20241116001

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
@@ -36,6 +36,8 @@ declare class Graphlit {
36
36
  removeContentsFromCollection(contents: Types.EntityReferenceInput[], collection: Types.EntityReferenceInput): Promise<Types.RemoveContentsFromCollectionMutation>;
37
37
  getCollection(id: string): Promise<Types.GetCollectionQuery>;
38
38
  queryCollections(filter?: Types.CollectionFilter): Promise<Types.QueryCollectionsQuery>;
39
+ describeImage(prompt: string, uri: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.DescribeImageMutation>;
40
+ describeEncodedImage(prompt: string, mimeType: string, data: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.DescribeEncodedImageMutation>;
39
41
  ingestBatch(uris: [string], workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.IngestBatchMutation>;
40
42
  ingestUri(uri: string, name?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.IngestUriMutation>;
41
43
  ingestText(name: string, text: string, textType?: Types.TextTypes, uri?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.IngestTextMutation>;
@@ -62,6 +64,7 @@ declare class Graphlit {
62
64
  closeConversation(id: string): Promise<Types.CloseConversationMutation>;
63
65
  getConversation(id: string): Promise<Types.GetConversationQuery>;
64
66
  queryConversations(filter?: Types.ConversationFilter): Promise<Types.QueryConversationsQuery>;
67
+ reviseText(prompt: string, text: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseTextMutation>;
65
68
  reviseContent(prompt: string, content: Types.EntityReferenceInput, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseContentMutation>;
66
69
  promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
67
70
  continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
package/dist/client.js CHANGED
@@ -238,6 +238,16 @@ class Graphlit {
238
238
  return this.queryAndCheckError(Documents.QueryCollections, { filter: filter });
239
239
  });
240
240
  }
241
+ describeImage(prompt, uri, specification, correlationId) {
242
+ return __awaiter(this, void 0, void 0, function* () {
243
+ return this.mutateAndCheckError(Documents.DescribeImage, { prompt: prompt, uri: uri, specification: specification, correlationId: correlationId });
244
+ });
245
+ }
246
+ describeEncodedImage(prompt, mimeType, data, specification, correlationId) {
247
+ return __awaiter(this, void 0, void 0, function* () {
248
+ return this.mutateAndCheckError(Documents.DescribeEncodedImage, { prompt: prompt, mimeType: mimeType, data: data, specification: specification, correlationId: correlationId });
249
+ });
250
+ }
241
251
  ingestBatch(uris, workflow, collections, correlationId) {
242
252
  return __awaiter(this, void 0, void 0, function* () {
243
253
  return this.mutateAndCheckError(Documents.IngestBatch, { uris: uris, workflow: workflow, collections: collections, correlationId: correlationId });
@@ -368,6 +378,11 @@ class Graphlit {
368
378
  return this.queryAndCheckError(Documents.QueryConversations, { filter: filter });
369
379
  });
370
380
  }
381
+ reviseText(prompt, text, id, specification, correlationId) {
382
+ return __awaiter(this, void 0, void 0, function* () {
383
+ return this.mutateAndCheckError(Documents.ReviseText, { prompt: prompt, text: text, id: id, specification: specification, correlationId: correlationId });
384
+ });
385
+ }
371
386
  reviseContent(prompt, content, id, specification, correlationId) {
372
387
  return __awaiter(this, void 0, void 0, function* () {
373
388
  return this.mutateAndCheckError(Documents.ReviseContent, { prompt: prompt, content: content, id: id, specification: specification, correlationId: correlationId });
@@ -30,6 +30,8 @@ export declare const CountContents: import("graphql").DocumentNode;
30
30
  export declare const DeleteAllContents: import("graphql").DocumentNode;
31
31
  export declare const DeleteContent: import("graphql").DocumentNode;
32
32
  export declare const DeleteContents: import("graphql").DocumentNode;
33
+ export declare const DescribeEncodedImage: import("graphql").DocumentNode;
34
+ export declare const DescribeImage: import("graphql").DocumentNode;
33
35
  export declare const ExtractContents: import("graphql").DocumentNode;
34
36
  export declare const GetContent: import("graphql").DocumentNode;
35
37
  export declare const IngestBatch: import("graphql").DocumentNode;
@@ -58,6 +60,7 @@ export declare const PromptConversation: import("graphql").DocumentNode;
58
60
  export declare const PublishConversation: import("graphql").DocumentNode;
59
61
  export declare const QueryConversations: import("graphql").DocumentNode;
60
62
  export declare const ReviseContent: import("graphql").DocumentNode;
63
+ export declare const ReviseText: import("graphql").DocumentNode;
61
64
  export declare const SuggestConversation: import("graphql").DocumentNode;
62
65
  export declare const UpdateConversation: import("graphql").DocumentNode;
63
66
  export declare const CountEvents: import("graphql").DocumentNode;
@@ -3,12 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ContinueConversation = exports.CloseConversation = 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.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.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = 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.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.GetConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = void 0;
8
- exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = 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 = void 0;
9
- exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = 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 = void 0;
10
- exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = 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 = void 0;
11
- exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = void 0;
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.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = 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.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.GetConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CloseConversation = void 0;
8
+ exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = 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 = void 0;
9
+ exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = 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 = void 0;
10
+ exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = 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 = 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 = 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) {
@@ -530,6 +530,267 @@ exports.DeleteContents = (0, graphql_tag_1.default) `
530
530
  }
531
531
  }
532
532
  `;
533
+ exports.DescribeEncodedImage = (0, graphql_tag_1.default) `
534
+ mutation DescribeEncodedImage($prompt: String!, $mimeType: String!, $data: String!, $specification: EntityReferenceInput, $correlationId: String) {
535
+ describeEncodedImage(
536
+ prompt: $prompt
537
+ mimeType: $mimeType
538
+ data: $data
539
+ specification: $specification
540
+ correlationId: $correlationId
541
+ ) {
542
+ role
543
+ author
544
+ message
545
+ citations {
546
+ content {
547
+ id
548
+ name
549
+ state
550
+ originalDate
551
+ identifier
552
+ uri
553
+ type
554
+ fileType
555
+ mimeType
556
+ format
557
+ formatName
558
+ fileExtension
559
+ fileName
560
+ fileSize
561
+ masterUri
562
+ imageUri
563
+ textUri
564
+ audioUri
565
+ transcriptUri
566
+ summary
567
+ customSummary
568
+ keywords
569
+ bullets
570
+ headlines
571
+ posts
572
+ chapters
573
+ questions
574
+ video {
575
+ width
576
+ height
577
+ duration
578
+ make
579
+ model
580
+ software
581
+ title
582
+ description
583
+ keywords
584
+ author
585
+ }
586
+ audio {
587
+ keywords
588
+ author
589
+ series
590
+ episode
591
+ episodeType
592
+ season
593
+ publisher
594
+ copyright
595
+ genre
596
+ title
597
+ description
598
+ bitrate
599
+ channels
600
+ sampleRate
601
+ bitsPerSample
602
+ duration
603
+ }
604
+ image {
605
+ width
606
+ height
607
+ resolutionX
608
+ resolutionY
609
+ bitsPerComponent
610
+ components
611
+ projectionType
612
+ orientation
613
+ description
614
+ make
615
+ model
616
+ software
617
+ lens
618
+ focalLength
619
+ exposureTime
620
+ fNumber
621
+ iso
622
+ heading
623
+ pitch
624
+ }
625
+ document {
626
+ title
627
+ subject
628
+ summary
629
+ author
630
+ publisher
631
+ description
632
+ keywords
633
+ pageCount
634
+ worksheetCount
635
+ slideCount
636
+ wordCount
637
+ lineCount
638
+ paragraphCount
639
+ isEncrypted
640
+ hasDigitalSignature
641
+ }
642
+ }
643
+ index
644
+ text
645
+ startTime
646
+ endTime
647
+ pageNumber
648
+ frameNumber
649
+ }
650
+ toolCalls {
651
+ id
652
+ name
653
+ arguments
654
+ }
655
+ tokens
656
+ throughput
657
+ completionTime
658
+ timestamp
659
+ modelService
660
+ model
661
+ }
662
+ }
663
+ `;
664
+ exports.DescribeImage = (0, graphql_tag_1.default) `
665
+ mutation DescribeImage($prompt: String!, $uri: URL!, $specification: EntityReferenceInput, $correlationId: String) {
666
+ describeImage(
667
+ prompt: $prompt
668
+ uri: $uri
669
+ specification: $specification
670
+ correlationId: $correlationId
671
+ ) {
672
+ role
673
+ author
674
+ message
675
+ citations {
676
+ content {
677
+ id
678
+ name
679
+ state
680
+ originalDate
681
+ identifier
682
+ uri
683
+ type
684
+ fileType
685
+ mimeType
686
+ format
687
+ formatName
688
+ fileExtension
689
+ fileName
690
+ fileSize
691
+ masterUri
692
+ imageUri
693
+ textUri
694
+ audioUri
695
+ transcriptUri
696
+ summary
697
+ customSummary
698
+ keywords
699
+ bullets
700
+ headlines
701
+ posts
702
+ chapters
703
+ questions
704
+ video {
705
+ width
706
+ height
707
+ duration
708
+ make
709
+ model
710
+ software
711
+ title
712
+ description
713
+ keywords
714
+ author
715
+ }
716
+ audio {
717
+ keywords
718
+ author
719
+ series
720
+ episode
721
+ episodeType
722
+ season
723
+ publisher
724
+ copyright
725
+ genre
726
+ title
727
+ description
728
+ bitrate
729
+ channels
730
+ sampleRate
731
+ bitsPerSample
732
+ duration
733
+ }
734
+ image {
735
+ width
736
+ height
737
+ resolutionX
738
+ resolutionY
739
+ bitsPerComponent
740
+ components
741
+ projectionType
742
+ orientation
743
+ description
744
+ make
745
+ model
746
+ software
747
+ lens
748
+ focalLength
749
+ exposureTime
750
+ fNumber
751
+ iso
752
+ heading
753
+ pitch
754
+ }
755
+ document {
756
+ title
757
+ subject
758
+ summary
759
+ author
760
+ publisher
761
+ description
762
+ keywords
763
+ pageCount
764
+ worksheetCount
765
+ slideCount
766
+ wordCount
767
+ lineCount
768
+ paragraphCount
769
+ isEncrypted
770
+ hasDigitalSignature
771
+ }
772
+ }
773
+ index
774
+ text
775
+ startTime
776
+ endTime
777
+ pageNumber
778
+ frameNumber
779
+ }
780
+ toolCalls {
781
+ id
782
+ name
783
+ arguments
784
+ }
785
+ tokens
786
+ throughput
787
+ completionTime
788
+ timestamp
789
+ modelService
790
+ model
791
+ }
792
+ }
793
+ `;
533
794
  exports.ExtractContents = (0, graphql_tag_1.default) `
534
795
  mutation ExtractContents($prompt: String!, $filter: ContentFilter, $specification: EntityReferenceInput!, $tools: [ToolDefinitionInput!]!, $correlationId: String) {
535
796
  extractContents(
@@ -2659,6 +2920,143 @@ exports.ReviseContent = (0, graphql_tag_1.default) `
2659
2920
  }
2660
2921
  }
2661
2922
  `;
2923
+ exports.ReviseText = (0, graphql_tag_1.default) `
2924
+ mutation ReviseText($prompt: String!, $text: String!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
2925
+ reviseText(
2926
+ prompt: $prompt
2927
+ text: $text
2928
+ id: $id
2929
+ specification: $specification
2930
+ correlationId: $correlationId
2931
+ ) {
2932
+ conversation {
2933
+ id
2934
+ }
2935
+ message {
2936
+ role
2937
+ author
2938
+ message
2939
+ citations {
2940
+ content {
2941
+ id
2942
+ name
2943
+ state
2944
+ originalDate
2945
+ identifier
2946
+ uri
2947
+ type
2948
+ fileType
2949
+ mimeType
2950
+ format
2951
+ formatName
2952
+ fileExtension
2953
+ fileName
2954
+ fileSize
2955
+ masterUri
2956
+ imageUri
2957
+ textUri
2958
+ audioUri
2959
+ transcriptUri
2960
+ summary
2961
+ customSummary
2962
+ keywords
2963
+ bullets
2964
+ headlines
2965
+ posts
2966
+ chapters
2967
+ questions
2968
+ video {
2969
+ width
2970
+ height
2971
+ duration
2972
+ make
2973
+ model
2974
+ software
2975
+ title
2976
+ description
2977
+ keywords
2978
+ author
2979
+ }
2980
+ audio {
2981
+ keywords
2982
+ author
2983
+ series
2984
+ episode
2985
+ episodeType
2986
+ season
2987
+ publisher
2988
+ copyright
2989
+ genre
2990
+ title
2991
+ description
2992
+ bitrate
2993
+ channels
2994
+ sampleRate
2995
+ bitsPerSample
2996
+ duration
2997
+ }
2998
+ image {
2999
+ width
3000
+ height
3001
+ resolutionX
3002
+ resolutionY
3003
+ bitsPerComponent
3004
+ components
3005
+ projectionType
3006
+ orientation
3007
+ description
3008
+ make
3009
+ model
3010
+ software
3011
+ lens
3012
+ focalLength
3013
+ exposureTime
3014
+ fNumber
3015
+ iso
3016
+ heading
3017
+ pitch
3018
+ }
3019
+ document {
3020
+ title
3021
+ subject
3022
+ summary
3023
+ author
3024
+ publisher
3025
+ description
3026
+ keywords
3027
+ pageCount
3028
+ worksheetCount
3029
+ slideCount
3030
+ wordCount
3031
+ lineCount
3032
+ paragraphCount
3033
+ isEncrypted
3034
+ hasDigitalSignature
3035
+ }
3036
+ }
3037
+ index
3038
+ text
3039
+ startTime
3040
+ endTime
3041
+ pageNumber
3042
+ frameNumber
3043
+ }
3044
+ toolCalls {
3045
+ id
3046
+ name
3047
+ arguments
3048
+ }
3049
+ tokens
3050
+ throughput
3051
+ completionTime
3052
+ timestamp
3053
+ modelService
3054
+ model
3055
+ }
3056
+ messageCount
3057
+ }
3058
+ }
3059
+ `;
2662
3060
  exports.SuggestConversation = (0, graphql_tag_1.default) `
2663
3061
  mutation SuggestConversation($id: ID!, $count: Int, $prompt: String, $correlationId: String) {
2664
3062
  suggestConversation(
@@ -6739,6 +6739,10 @@ export type Mutation = {
6739
6739
  deleteWorkflow?: Maybe<Workflow>;
6740
6740
  /** Deletes multiple workflows given their IDs. */
6741
6741
  deleteWorkflows?: Maybe<Array<Maybe<Workflow>>>;
6742
+ /** Describes Base64-encoded image using LLM via prompt. */
6743
+ describeEncodedImage?: Maybe<ConversationMessage>;
6744
+ /** Describes image using LLM via prompt. */
6745
+ describeImage?: Maybe<ConversationMessage>;
6742
6746
  /** Disables an alert. */
6743
6747
  disableAlert?: Maybe<Alert>;
6744
6748
  /** Disables a feed. */
@@ -6795,6 +6799,8 @@ export type Mutation = {
6795
6799
  restartContent?: Maybe<Content>;
6796
6800
  /** Revise content via prompted conversation. */
6797
6801
  reviseContent?: Maybe<ReviseContent>;
6802
+ /** Revise text via prompted conversation. */
6803
+ reviseText?: Maybe<ReviseContent>;
6798
6804
  /** Suggest prompts for a conversation. */
6799
6805
  suggestConversation?: Maybe<PromptSuggestion>;
6800
6806
  /** Summarizes contents based on the provided filter criteria. */
@@ -7293,6 +7299,19 @@ export type MutationDeleteWorkflowsArgs = {
7293
7299
  ids: Array<Scalars['ID']['input']>;
7294
7300
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
7295
7301
  };
7302
+ export type MutationDescribeEncodedImageArgs = {
7303
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7304
+ data: Scalars['String']['input'];
7305
+ mimeType: Scalars['String']['input'];
7306
+ prompt: Scalars['String']['input'];
7307
+ specification?: InputMaybe<EntityReferenceInput>;
7308
+ };
7309
+ export type MutationDescribeImageArgs = {
7310
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7311
+ prompt: Scalars['String']['input'];
7312
+ specification?: InputMaybe<EntityReferenceInput>;
7313
+ uri: Scalars['URL']['input'];
7314
+ };
7296
7315
  export type MutationDisableAlertArgs = {
7297
7316
  id: Scalars['ID']['input'];
7298
7317
  };
@@ -7443,6 +7462,13 @@ export type MutationReviseContentArgs = {
7443
7462
  prompt: Scalars['String']['input'];
7444
7463
  specification?: InputMaybe<EntityReferenceInput>;
7445
7464
  };
7465
+ export type MutationReviseTextArgs = {
7466
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7467
+ id?: InputMaybe<Scalars['ID']['input']>;
7468
+ prompt: Scalars['String']['input'];
7469
+ specification?: InputMaybe<EntityReferenceInput>;
7470
+ text: Scalars['String']['input'];
7471
+ };
7446
7472
  export type MutationSuggestConversationArgs = {
7447
7473
  correlationId?: InputMaybe<Scalars['String']['input']>;
7448
7474
  count?: InputMaybe<Scalars['Int']['input']>;
@@ -12350,6 +12376,283 @@ export type DeleteContentsMutation = {
12350
12376
  state: EntityState;
12351
12377
  } | null> | null;
12352
12378
  };
12379
+ export type DescribeEncodedImageMutationVariables = Exact<{
12380
+ prompt: Scalars['String']['input'];
12381
+ mimeType: Scalars['String']['input'];
12382
+ data: Scalars['String']['input'];
12383
+ specification?: InputMaybe<EntityReferenceInput>;
12384
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12385
+ }>;
12386
+ export type DescribeEncodedImageMutation = {
12387
+ __typename?: 'Mutation';
12388
+ describeEncodedImage?: {
12389
+ __typename?: 'ConversationMessage';
12390
+ role: ConversationRoleTypes;
12391
+ author?: string | null;
12392
+ message?: string | null;
12393
+ tokens?: number | null;
12394
+ throughput?: number | null;
12395
+ completionTime?: any | null;
12396
+ timestamp?: any | null;
12397
+ modelService?: ModelServiceTypes | null;
12398
+ model?: string | null;
12399
+ citations?: Array<{
12400
+ __typename?: 'ConversationCitation';
12401
+ index?: number | null;
12402
+ text: string;
12403
+ startTime?: any | null;
12404
+ endTime?: any | null;
12405
+ pageNumber?: number | null;
12406
+ frameNumber?: number | null;
12407
+ content?: {
12408
+ __typename?: 'Content';
12409
+ id: string;
12410
+ name: string;
12411
+ state: EntityState;
12412
+ originalDate?: any | null;
12413
+ identifier?: string | null;
12414
+ uri?: any | null;
12415
+ type?: ContentTypes | null;
12416
+ fileType?: FileTypes | null;
12417
+ mimeType?: string | null;
12418
+ format?: string | null;
12419
+ formatName?: string | null;
12420
+ fileExtension?: string | null;
12421
+ fileName?: string | null;
12422
+ fileSize?: any | null;
12423
+ masterUri?: any | null;
12424
+ imageUri?: any | null;
12425
+ textUri?: any | null;
12426
+ audioUri?: any | null;
12427
+ transcriptUri?: any | null;
12428
+ summary?: string | null;
12429
+ customSummary?: string | null;
12430
+ keywords?: Array<string> | null;
12431
+ bullets?: Array<string> | null;
12432
+ headlines?: Array<string> | null;
12433
+ posts?: Array<string> | null;
12434
+ chapters?: Array<string> | null;
12435
+ questions?: Array<string> | null;
12436
+ video?: {
12437
+ __typename?: 'VideoMetadata';
12438
+ width?: number | null;
12439
+ height?: number | null;
12440
+ duration?: any | null;
12441
+ make?: string | null;
12442
+ model?: string | null;
12443
+ software?: string | null;
12444
+ title?: string | null;
12445
+ description?: string | null;
12446
+ keywords?: Array<string | null> | null;
12447
+ author?: string | null;
12448
+ } | null;
12449
+ audio?: {
12450
+ __typename?: 'AudioMetadata';
12451
+ keywords?: Array<string | null> | null;
12452
+ author?: string | null;
12453
+ series?: string | null;
12454
+ episode?: string | null;
12455
+ episodeType?: string | null;
12456
+ season?: string | null;
12457
+ publisher?: string | null;
12458
+ copyright?: string | null;
12459
+ genre?: string | null;
12460
+ title?: string | null;
12461
+ description?: string | null;
12462
+ bitrate?: number | null;
12463
+ channels?: number | null;
12464
+ sampleRate?: number | null;
12465
+ bitsPerSample?: number | null;
12466
+ duration?: any | null;
12467
+ } | null;
12468
+ image?: {
12469
+ __typename?: 'ImageMetadata';
12470
+ width?: number | null;
12471
+ height?: number | null;
12472
+ resolutionX?: number | null;
12473
+ resolutionY?: number | null;
12474
+ bitsPerComponent?: number | null;
12475
+ components?: number | null;
12476
+ projectionType?: ImageProjectionTypes | null;
12477
+ orientation?: OrientationTypes | null;
12478
+ description?: string | null;
12479
+ make?: string | null;
12480
+ model?: string | null;
12481
+ software?: string | null;
12482
+ lens?: string | null;
12483
+ focalLength?: number | null;
12484
+ exposureTime?: string | null;
12485
+ fNumber?: string | null;
12486
+ iso?: string | null;
12487
+ heading?: number | null;
12488
+ pitch?: number | null;
12489
+ } | null;
12490
+ document?: {
12491
+ __typename?: 'DocumentMetadata';
12492
+ title?: string | null;
12493
+ subject?: string | null;
12494
+ summary?: string | null;
12495
+ author?: string | null;
12496
+ publisher?: string | null;
12497
+ description?: string | null;
12498
+ keywords?: Array<string | null> | null;
12499
+ pageCount?: number | null;
12500
+ worksheetCount?: number | null;
12501
+ slideCount?: number | null;
12502
+ wordCount?: number | null;
12503
+ lineCount?: number | null;
12504
+ paragraphCount?: number | null;
12505
+ isEncrypted?: boolean | null;
12506
+ hasDigitalSignature?: boolean | null;
12507
+ } | null;
12508
+ } | null;
12509
+ } | null> | null;
12510
+ toolCalls?: Array<{
12511
+ __typename?: 'ConversationToolCall';
12512
+ id: string;
12513
+ name: string;
12514
+ arguments: string;
12515
+ } | null> | null;
12516
+ } | null;
12517
+ };
12518
+ export type DescribeImageMutationVariables = Exact<{
12519
+ prompt: Scalars['String']['input'];
12520
+ uri: Scalars['URL']['input'];
12521
+ specification?: InputMaybe<EntityReferenceInput>;
12522
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12523
+ }>;
12524
+ export type DescribeImageMutation = {
12525
+ __typename?: 'Mutation';
12526
+ describeImage?: {
12527
+ __typename?: 'ConversationMessage';
12528
+ role: ConversationRoleTypes;
12529
+ author?: string | null;
12530
+ message?: string | null;
12531
+ tokens?: number | null;
12532
+ throughput?: number | null;
12533
+ completionTime?: any | null;
12534
+ timestamp?: any | null;
12535
+ modelService?: ModelServiceTypes | null;
12536
+ model?: string | null;
12537
+ citations?: Array<{
12538
+ __typename?: 'ConversationCitation';
12539
+ index?: number | null;
12540
+ text: string;
12541
+ startTime?: any | null;
12542
+ endTime?: any | null;
12543
+ pageNumber?: number | null;
12544
+ frameNumber?: number | null;
12545
+ content?: {
12546
+ __typename?: 'Content';
12547
+ id: string;
12548
+ name: string;
12549
+ state: EntityState;
12550
+ originalDate?: any | null;
12551
+ identifier?: string | null;
12552
+ uri?: any | null;
12553
+ type?: ContentTypes | null;
12554
+ fileType?: FileTypes | null;
12555
+ mimeType?: string | null;
12556
+ format?: string | null;
12557
+ formatName?: string | null;
12558
+ fileExtension?: string | null;
12559
+ fileName?: string | null;
12560
+ fileSize?: any | null;
12561
+ masterUri?: any | null;
12562
+ imageUri?: any | null;
12563
+ textUri?: any | null;
12564
+ audioUri?: any | null;
12565
+ transcriptUri?: any | null;
12566
+ summary?: string | null;
12567
+ customSummary?: string | null;
12568
+ keywords?: Array<string> | null;
12569
+ bullets?: Array<string> | null;
12570
+ headlines?: Array<string> | null;
12571
+ posts?: Array<string> | null;
12572
+ chapters?: Array<string> | null;
12573
+ questions?: Array<string> | null;
12574
+ video?: {
12575
+ __typename?: 'VideoMetadata';
12576
+ width?: number | null;
12577
+ height?: number | null;
12578
+ duration?: any | null;
12579
+ make?: string | null;
12580
+ model?: string | null;
12581
+ software?: string | null;
12582
+ title?: string | null;
12583
+ description?: string | null;
12584
+ keywords?: Array<string | null> | null;
12585
+ author?: string | null;
12586
+ } | null;
12587
+ audio?: {
12588
+ __typename?: 'AudioMetadata';
12589
+ keywords?: Array<string | null> | null;
12590
+ author?: string | null;
12591
+ series?: string | null;
12592
+ episode?: string | null;
12593
+ episodeType?: string | null;
12594
+ season?: string | null;
12595
+ publisher?: string | null;
12596
+ copyright?: string | null;
12597
+ genre?: string | null;
12598
+ title?: string | null;
12599
+ description?: string | null;
12600
+ bitrate?: number | null;
12601
+ channels?: number | null;
12602
+ sampleRate?: number | null;
12603
+ bitsPerSample?: number | null;
12604
+ duration?: any | null;
12605
+ } | null;
12606
+ image?: {
12607
+ __typename?: 'ImageMetadata';
12608
+ width?: number | null;
12609
+ height?: number | null;
12610
+ resolutionX?: number | null;
12611
+ resolutionY?: number | null;
12612
+ bitsPerComponent?: number | null;
12613
+ components?: number | null;
12614
+ projectionType?: ImageProjectionTypes | null;
12615
+ orientation?: OrientationTypes | null;
12616
+ description?: string | null;
12617
+ make?: string | null;
12618
+ model?: string | null;
12619
+ software?: string | null;
12620
+ lens?: string | null;
12621
+ focalLength?: number | null;
12622
+ exposureTime?: string | null;
12623
+ fNumber?: string | null;
12624
+ iso?: string | null;
12625
+ heading?: number | null;
12626
+ pitch?: number | null;
12627
+ } | null;
12628
+ document?: {
12629
+ __typename?: 'DocumentMetadata';
12630
+ title?: string | null;
12631
+ subject?: string | null;
12632
+ summary?: string | null;
12633
+ author?: string | null;
12634
+ publisher?: string | null;
12635
+ description?: string | null;
12636
+ keywords?: Array<string | null> | null;
12637
+ pageCount?: number | null;
12638
+ worksheetCount?: number | null;
12639
+ slideCount?: number | null;
12640
+ wordCount?: number | null;
12641
+ lineCount?: number | null;
12642
+ paragraphCount?: number | null;
12643
+ isEncrypted?: boolean | null;
12644
+ hasDigitalSignature?: boolean | null;
12645
+ } | null;
12646
+ } | null;
12647
+ } | null> | null;
12648
+ toolCalls?: Array<{
12649
+ __typename?: 'ConversationToolCall';
12650
+ id: string;
12651
+ name: string;
12652
+ arguments: string;
12653
+ } | null> | null;
12654
+ } | null;
12655
+ };
12353
12656
  export type ExtractContentsMutationVariables = Exact<{
12354
12657
  prompt: Scalars['String']['input'];
12355
12658
  filter?: InputMaybe<ContentFilter>;
@@ -14795,6 +15098,153 @@ export type ReviseContentMutation = {
14795
15098
  } | null;
14796
15099
  } | null;
14797
15100
  };
15101
+ export type ReviseTextMutationVariables = Exact<{
15102
+ prompt: Scalars['String']['input'];
15103
+ text: Scalars['String']['input'];
15104
+ id?: InputMaybe<Scalars['ID']['input']>;
15105
+ specification?: InputMaybe<EntityReferenceInput>;
15106
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15107
+ }>;
15108
+ export type ReviseTextMutation = {
15109
+ __typename?: 'Mutation';
15110
+ reviseText?: {
15111
+ __typename?: 'ReviseContent';
15112
+ messageCount?: number | null;
15113
+ conversation?: {
15114
+ __typename?: 'EntityReference';
15115
+ id: string;
15116
+ } | null;
15117
+ message?: {
15118
+ __typename?: 'ConversationMessage';
15119
+ role: ConversationRoleTypes;
15120
+ author?: string | null;
15121
+ message?: string | null;
15122
+ tokens?: number | null;
15123
+ throughput?: number | null;
15124
+ completionTime?: any | null;
15125
+ timestamp?: any | null;
15126
+ modelService?: ModelServiceTypes | null;
15127
+ model?: string | null;
15128
+ citations?: Array<{
15129
+ __typename?: 'ConversationCitation';
15130
+ index?: number | null;
15131
+ text: string;
15132
+ startTime?: any | null;
15133
+ endTime?: any | null;
15134
+ pageNumber?: number | null;
15135
+ frameNumber?: number | null;
15136
+ content?: {
15137
+ __typename?: 'Content';
15138
+ id: string;
15139
+ name: string;
15140
+ state: EntityState;
15141
+ originalDate?: any | null;
15142
+ identifier?: string | null;
15143
+ uri?: any | null;
15144
+ type?: ContentTypes | null;
15145
+ fileType?: FileTypes | null;
15146
+ mimeType?: string | null;
15147
+ format?: string | null;
15148
+ formatName?: string | null;
15149
+ fileExtension?: string | null;
15150
+ fileName?: string | null;
15151
+ fileSize?: any | null;
15152
+ masterUri?: any | null;
15153
+ imageUri?: any | null;
15154
+ textUri?: any | null;
15155
+ audioUri?: any | null;
15156
+ transcriptUri?: any | null;
15157
+ summary?: string | null;
15158
+ customSummary?: string | null;
15159
+ keywords?: Array<string> | null;
15160
+ bullets?: Array<string> | null;
15161
+ headlines?: Array<string> | null;
15162
+ posts?: Array<string> | null;
15163
+ chapters?: Array<string> | null;
15164
+ questions?: Array<string> | null;
15165
+ video?: {
15166
+ __typename?: 'VideoMetadata';
15167
+ width?: number | null;
15168
+ height?: number | null;
15169
+ duration?: any | null;
15170
+ make?: string | null;
15171
+ model?: string | null;
15172
+ software?: string | null;
15173
+ title?: string | null;
15174
+ description?: string | null;
15175
+ keywords?: Array<string | null> | null;
15176
+ author?: string | null;
15177
+ } | null;
15178
+ audio?: {
15179
+ __typename?: 'AudioMetadata';
15180
+ keywords?: Array<string | null> | null;
15181
+ author?: string | null;
15182
+ series?: string | null;
15183
+ episode?: string | null;
15184
+ episodeType?: string | null;
15185
+ season?: string | null;
15186
+ publisher?: string | null;
15187
+ copyright?: string | null;
15188
+ genre?: string | null;
15189
+ title?: string | null;
15190
+ description?: string | null;
15191
+ bitrate?: number | null;
15192
+ channels?: number | null;
15193
+ sampleRate?: number | null;
15194
+ bitsPerSample?: number | null;
15195
+ duration?: any | null;
15196
+ } | null;
15197
+ image?: {
15198
+ __typename?: 'ImageMetadata';
15199
+ width?: number | null;
15200
+ height?: number | null;
15201
+ resolutionX?: number | null;
15202
+ resolutionY?: number | null;
15203
+ bitsPerComponent?: number | null;
15204
+ components?: number | null;
15205
+ projectionType?: ImageProjectionTypes | null;
15206
+ orientation?: OrientationTypes | null;
15207
+ description?: string | null;
15208
+ make?: string | null;
15209
+ model?: string | null;
15210
+ software?: string | null;
15211
+ lens?: string | null;
15212
+ focalLength?: number | null;
15213
+ exposureTime?: string | null;
15214
+ fNumber?: string | null;
15215
+ iso?: string | null;
15216
+ heading?: number | null;
15217
+ pitch?: number | null;
15218
+ } | null;
15219
+ document?: {
15220
+ __typename?: 'DocumentMetadata';
15221
+ title?: string | null;
15222
+ subject?: string | null;
15223
+ summary?: string | null;
15224
+ author?: string | null;
15225
+ publisher?: string | null;
15226
+ description?: string | null;
15227
+ keywords?: Array<string | null> | null;
15228
+ pageCount?: number | null;
15229
+ worksheetCount?: number | null;
15230
+ slideCount?: number | null;
15231
+ wordCount?: number | null;
15232
+ lineCount?: number | null;
15233
+ paragraphCount?: number | null;
15234
+ isEncrypted?: boolean | null;
15235
+ hasDigitalSignature?: boolean | null;
15236
+ } | null;
15237
+ } | null;
15238
+ } | null> | null;
15239
+ toolCalls?: Array<{
15240
+ __typename?: 'ConversationToolCall';
15241
+ id: string;
15242
+ name: string;
15243
+ arguments: string;
15244
+ } | null> | null;
15245
+ } | null;
15246
+ } | null;
15247
+ };
14798
15248
  export type SuggestConversationMutationVariables = Exact<{
14799
15249
  id: Scalars['ID']['input'];
14800
15250
  count?: InputMaybe<Scalars['Int']['input']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20241110001",
3
+ "version": "1.0.20241116001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",