graphlit-client 1.0.20250110001 → 1.0.20250121001
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 +55 -55
- package/dist/client.js +110 -110
- package/dist/generated/graphql-documents.js +54 -0
- package/dist/generated/graphql-types.d.ts +94 -3
- package/dist/generated/graphql-types.js +10 -1
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
@@ -22,8 +22,8 @@ declare class Graphlit {
|
|
22
22
|
createAlert(alert: Types.AlertInput, correlationId?: string): Promise<Types.CreateAlertMutation>;
|
23
23
|
updateAlert(alert: Types.AlertUpdateInput): Promise<Types.UpdateAlertMutation>;
|
24
24
|
deleteAlert(id: string): Promise<Types.DeleteAlertMutation>;
|
25
|
-
deleteAlerts(): Promise<Types.DeleteAlertsMutation>;
|
26
|
-
deleteAllAlerts(): Promise<Types.DeleteAllAlertsMutation>;
|
25
|
+
deleteAlerts(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteAlertsMutation>;
|
26
|
+
deleteAllAlerts(filter?: Types.AlertFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllAlertsMutation>;
|
27
27
|
enableAlert(id: string): Promise<Types.EnableAlertMutation>;
|
28
28
|
disableAlert(id: string): Promise<Types.DisableAlertMutation>;
|
29
29
|
getAlert(id: string): Promise<Types.GetAlertQuery>;
|
@@ -31,8 +31,8 @@ declare class Graphlit {
|
|
31
31
|
createCollection(collection: Types.CollectionInput): Promise<Types.CreateCollectionMutation>;
|
32
32
|
updateCollection(collection: Types.CollectionUpdateInput): Promise<Types.UpdateCollectionMutation>;
|
33
33
|
deleteCollection(id: string): Promise<Types.DeleteCollectionMutation>;
|
34
|
-
deleteCollections(): Promise<Types.DeleteCollectionsMutation>;
|
35
|
-
deleteAllCollections(): Promise<Types.DeleteAllCollectionsMutation>;
|
34
|
+
deleteCollections(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteCollectionsMutation>;
|
35
|
+
deleteAllCollections(filter?: Types.CollectionFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllCollectionsMutation>;
|
36
36
|
addContentsToCollections(contents: Types.EntityReferenceInput[], collections: Types.EntityReferenceInput[]): Promise<Types.AddContentsToCollectionsMutation>;
|
37
37
|
removeContentsFromCollection(contents: Types.EntityReferenceInput[], collection: Types.EntityReferenceInput): Promise<Types.RemoveContentsFromCollectionMutation>;
|
38
38
|
getCollection(id: string): Promise<Types.GetCollectionQuery>;
|
@@ -47,8 +47,8 @@ declare class Graphlit {
|
|
47
47
|
ingestEncodedFile(name: string, data: string, mimeType: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], observations?: [Types.ObservationReferenceInput], correlationId?: string): Promise<Types.IngestEncodedFileMutation>;
|
48
48
|
updateContent(content: Types.ContentUpdateInput): Promise<Types.UpdateContentMutation>;
|
49
49
|
deleteContent(id: string): Promise<Types.DeleteContentMutation>;
|
50
|
-
deleteContents(): Promise<Types.DeleteContentsMutation>;
|
51
|
-
deleteAllContents(): Promise<Types.DeleteAllContentsMutation>;
|
50
|
+
deleteContents(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteContentsMutation>;
|
51
|
+
deleteAllContents(filter?: Types.ContentFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllContentsMutation>;
|
52
52
|
summarizeText(summarization: Types.SummarizationStrategyInput, text: string, textType?: Types.TextTypes, correlationId?: string): Promise<Types.SummarizeTextMutation>;
|
53
53
|
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.SummarizeContentsMutation>;
|
54
54
|
extractText(prompt: string, text: string, tools: Types.ToolDefinitionInput[], specification?: Types.EntityReferenceInput, textType?: Types.TextTypes, correlationId?: string): Promise<Types.ExtractTextMutation>;
|
@@ -63,8 +63,8 @@ declare class Graphlit {
|
|
63
63
|
createConversation(conversation: Types.ConversationInput, correlationId?: string): Promise<Types.CreateConversationMutation>;
|
64
64
|
updateConversation(conversation: Types.ConversationUpdateInput): Promise<Types.UpdateConversationMutation>;
|
65
65
|
deleteConversation(id: string): Promise<Types.DeleteConversationMutation>;
|
66
|
-
deleteConversations(): Promise<Types.DeleteConversationsMutation>;
|
67
|
-
deleteAllConversations(): Promise<Types.DeleteAllConversationsMutation>;
|
66
|
+
deleteConversations(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteConversationsMutation>;
|
67
|
+
deleteAllConversations(filter?: Types.ConversationFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllConversationsMutation>;
|
68
68
|
clearConversation(id: string): Promise<Types.ClearConversationMutation>;
|
69
69
|
closeConversation(id: string): Promise<Types.CloseConversationMutation>;
|
70
70
|
getConversation(id: string): Promise<Types.GetConversationQuery>;
|
@@ -77,15 +77,15 @@ declare class Graphlit {
|
|
77
77
|
formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, includeDetails?: boolean, correlationId?: string): Promise<Types.FormatConversationMutation>;
|
78
78
|
completeConversation(completion: string, id: string, correlationId?: string): Promise<Types.CompleteConversationMutation>;
|
79
79
|
askGraphlit(prompt: string, type?: Types.SdkTypes, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.AskGraphlitMutation>;
|
80
|
-
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, includeDetails?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
80
|
+
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, mimeType?: string, data?: string, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, includeDetails?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
81
81
|
continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
|
82
82
|
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishConversationMutation>;
|
83
83
|
suggestConversation(id: string, count?: number, correlationId?: string): Promise<Types.SuggestConversationMutation>;
|
84
84
|
createFeed(feed: Types.FeedInput, correlationId?: string): Promise<Types.CreateFeedMutation>;
|
85
85
|
updateFeed(feed: Types.FeedUpdateInput): Promise<Types.UpdateFeedMutation>;
|
86
86
|
deleteFeed(id: string): Promise<Types.DeleteFeedMutation>;
|
87
|
-
deleteFeeds(): Promise<Types.DeleteFeedsMutation>;
|
88
|
-
deleteAllFeeds(): Promise<Types.DeleteAllFeedsMutation>;
|
87
|
+
deleteFeeds(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteFeedsMutation>;
|
88
|
+
deleteAllFeeds(filter?: Types.FeedFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllFeedsMutation>;
|
89
89
|
enableFeed(id: string): Promise<Types.EnableFeedMutation>;
|
90
90
|
disableFeed(id: string): Promise<Types.DeleteFeedMutation>;
|
91
91
|
getFeed(id: string): Promise<Types.GetFeedQuery>;
|
@@ -95,16 +95,16 @@ declare class Graphlit {
|
|
95
95
|
createSpecification(specification: Types.SpecificationInput): Promise<Types.CreateSpecificationMutation>;
|
96
96
|
updateSpecification(specification: Types.SpecificationUpdateInput): Promise<Types.UpdateSpecificationMutation>;
|
97
97
|
deleteSpecification(id: string): Promise<Types.DeleteSpecificationMutation>;
|
98
|
-
deleteSpecifications(): Promise<Types.DeleteSpecificationsMutation>;
|
99
|
-
deleteAllSpecifications(): Promise<Types.DeleteAllSpecificationsMutation>;
|
98
|
+
deleteSpecifications(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteSpecificationsMutation>;
|
99
|
+
deleteAllSpecifications(filter?: Types.SpecificationFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllSpecificationsMutation>;
|
100
100
|
getSpecification(id: string): Promise<Types.GetSpecificationQuery>;
|
101
101
|
querySpecifications(filter?: Types.SpecificationFilter): Promise<Types.QuerySpecificationsQuery>;
|
102
102
|
queryModels(filter?: Types.ModelFilter): Promise<Types.QueryModelsQuery>;
|
103
103
|
createWorkflow(workflow: Types.WorkflowInput): Promise<Types.CreateWorkflowMutation>;
|
104
104
|
updateWorkflow(workflow: Types.WorkflowUpdateInput): Promise<Types.UpdateWorkflowMutation>;
|
105
105
|
deleteWorkflow(id: string): Promise<Types.DeleteWorkflowMutation>;
|
106
|
-
deleteWorkflows(): Promise<Types.DeleteWorkflowsMutation>;
|
107
|
-
deleteAllWorkflows(): Promise<Types.DeleteAllWorkflowsMutation>;
|
106
|
+
deleteWorkflows(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteWorkflowsMutation>;
|
107
|
+
deleteAllWorkflows(filter?: Types.WorkflowFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllWorkflowsMutation>;
|
108
108
|
getWorkflow(id: string): Promise<Types.GetWorkflowQuery>;
|
109
109
|
queryWorkflows(filter?: Types.WorkflowFilter): Promise<Types.QueryWorkflowsQuery>;
|
110
110
|
createUser(user: Types.UserInput): Promise<Types.CreateUserMutation>;
|
@@ -117,141 +117,141 @@ declare class Graphlit {
|
|
117
117
|
createCategory(category: Types.CategoryInput): Promise<Types.CreateCategoryMutation>;
|
118
118
|
updateCategory(category: Types.CategoryUpdateInput): Promise<Types.UpdateCategoryMutation>;
|
119
119
|
deleteCategory(id: string): Promise<Types.DeleteCategoryMutation>;
|
120
|
-
deleteCategories(): Promise<Types.DeleteCategoriesMutation>;
|
121
|
-
deleteAllCategories(): Promise<Types.DeleteAllCategoriesMutation>;
|
120
|
+
deleteCategories(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteCategoriesMutation>;
|
121
|
+
deleteAllCategories(filter?: Types.CategoryFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllCategoriesMutation>;
|
122
122
|
getCategory(id: string): Promise<Types.GetCategoryQuery>;
|
123
123
|
queryCategories(filter?: Types.CategoryFilter): Promise<Types.QueryCategoriesQuery>;
|
124
124
|
createLabel(label: Types.LabelInput): Promise<Types.CreateLabelMutation>;
|
125
125
|
updateLabel(label: Types.LabelUpdateInput): Promise<Types.UpdateLabelMutation>;
|
126
126
|
deleteLabel(id: string): Promise<Types.DeleteLabelMutation>;
|
127
|
-
deleteLabels(): Promise<Types.DeleteLabelsMutation>;
|
128
|
-
deleteAllLabels(): Promise<Types.DeleteAllLabelsMutation>;
|
127
|
+
deleteLabels(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteLabelsMutation>;
|
128
|
+
deleteAllLabels(filter?: Types.LabelFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllLabelsMutation>;
|
129
129
|
getLabel(id: string): Promise<Types.GetLabelQuery>;
|
130
130
|
queryLabels(filter?: Types.LabelFilter): Promise<Types.QueryLabelsQuery>;
|
131
131
|
createPerson(person: Types.PersonInput): Promise<Types.CreatePersonMutation>;
|
132
132
|
updatePerson(person: Types.PersonUpdateInput): Promise<Types.UpdatePersonMutation>;
|
133
133
|
deletePerson(id: string): Promise<Types.DeletePersonMutation>;
|
134
|
-
deletePersons(): Promise<Types.DeletePersonsMutation>;
|
135
|
-
deleteAllPersons(): Promise<Types.DeleteAllPersonsMutation>;
|
134
|
+
deletePersons(ids: [string], isSynchronous?: boolean): Promise<Types.DeletePersonsMutation>;
|
135
|
+
deleteAllPersons(filter?: Types.PersonFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllPersonsMutation>;
|
136
136
|
getPerson(id: string): Promise<Types.GetPersonQuery>;
|
137
137
|
queryPersons(filter?: Types.PersonFilter): Promise<Types.QueryPersonsQuery>;
|
138
138
|
createOrganization(organization: Types.OrganizationInput): Promise<Types.CreateOrganizationMutation>;
|
139
139
|
updateOrganization(organization: Types.OrganizationUpdateInput): Promise<Types.UpdateOrganizationMutation>;
|
140
140
|
deleteOrganization(id: string): Promise<Types.DeleteOrganizationMutation>;
|
141
|
-
deleteOrganizations(): Promise<Types.DeleteOrganizationsMutation>;
|
142
|
-
deleteAllOrganizations(): Promise<Types.DeleteAllOrganizationsMutation>;
|
141
|
+
deleteOrganizations(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteOrganizationsMutation>;
|
142
|
+
deleteAllOrganizations(filter?: Types.OrganizationFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllOrganizationsMutation>;
|
143
143
|
getOrganization(id: string): Promise<Types.GetOrganizationQuery>;
|
144
144
|
queryOrganizations(filter?: Types.OrganizationFilter): Promise<Types.QueryOrganizationsQuery>;
|
145
145
|
createPlace(place: Types.PlaceInput): Promise<Types.CreatePlaceMutation>;
|
146
146
|
updatePlace(place: Types.PlaceUpdateInput): Promise<Types.UpdatePlaceMutation>;
|
147
147
|
deletePlace(id: string): Promise<Types.DeletePlaceMutation>;
|
148
|
-
deletePlaces(): Promise<Types.DeletePlacesMutation>;
|
149
|
-
deleteAllPlaces(): Promise<Types.DeleteAllPlacesMutation>;
|
148
|
+
deletePlaces(ids: [string], isSynchronous?: boolean): Promise<Types.DeletePlacesMutation>;
|
149
|
+
deleteAllPlaces(filter?: Types.PlaceFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllPlacesMutation>;
|
150
150
|
getPlace(id: string): Promise<Types.GetPlaceQuery>;
|
151
151
|
queryPlaces(filter?: Types.PlaceFilter): Promise<Types.QueryPlacesQuery>;
|
152
152
|
createEvent(event: Types.EventInput): Promise<Types.CreateEventMutation>;
|
153
153
|
updateEvent(event: Types.EventUpdateInput): Promise<Types.UpdateEventMutation>;
|
154
154
|
deleteEvent(id: string): Promise<Types.DeleteEventMutation>;
|
155
|
-
deleteEvents(): Promise<Types.DeleteEventsMutation>;
|
156
|
-
deleteAllEvents(): Promise<Types.DeleteAllEventsMutation>;
|
155
|
+
deleteEvents(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteEventsMutation>;
|
156
|
+
deleteAllEvents(filter?: Types.EventFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllEventsMutation>;
|
157
157
|
getEvent(id: string): Promise<Types.GetEventQuery>;
|
158
158
|
queryEvents(filter?: Types.EventFilter): Promise<Types.QueryEventsQuery>;
|
159
159
|
createProduct(product: Types.ProductInput): Promise<Types.CreateProductMutation>;
|
160
160
|
updateProduct(product: Types.ProductUpdateInput): Promise<Types.UpdateProductMutation>;
|
161
161
|
deleteProduct(id: string): Promise<Types.DeleteProductMutation>;
|
162
|
-
deleteProducts(): Promise<Types.DeleteProductsMutation>;
|
163
|
-
deleteAllProducts(): Promise<Types.DeleteAllProductsMutation>;
|
162
|
+
deleteProducts(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteProductsMutation>;
|
163
|
+
deleteAllProducts(filter?: Types.ProductFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllProductsMutation>;
|
164
164
|
getProduct(id: string): Promise<Types.GetProductQuery>;
|
165
165
|
queryProducts(filter?: Types.ProductFilter): Promise<Types.QueryProductsQuery>;
|
166
166
|
createRepo(repo: Types.RepoInput): Promise<Types.CreateRepoMutation>;
|
167
167
|
updateRepo(repo: Types.RepoUpdateInput): Promise<Types.UpdateRepoMutation>;
|
168
168
|
deleteRepo(id: string): Promise<Types.DeleteRepoMutation>;
|
169
|
-
deleteRepos(): Promise<Types.DeleteReposMutation>;
|
170
|
-
deleteAllRepos(): Promise<Types.DeleteAllReposMutation>;
|
169
|
+
deleteRepos(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteReposMutation>;
|
170
|
+
deleteAllRepos(filter?: Types.RepoFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllReposMutation>;
|
171
171
|
getRepo(id: string): Promise<Types.GetRepoQuery>;
|
172
172
|
queryRepos(filter?: Types.RepoFilter): Promise<Types.QueryReposQuery>;
|
173
173
|
createSoftware(software: Types.SoftwareInput): Promise<Types.CreateSoftwareMutation>;
|
174
174
|
updateSoftware(software: Types.SoftwareUpdateInput): Promise<Types.UpdateSoftwareMutation>;
|
175
175
|
deleteSoftware(id: string): Promise<Types.DeleteSoftwareMutation>;
|
176
|
-
deleteSoftwares(): Promise<Types.DeleteSoftwaresMutation>;
|
177
|
-
deleteAllSoftwares(): Promise<Types.DeleteAllSoftwaresMutation>;
|
176
|
+
deleteSoftwares(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteSoftwaresMutation>;
|
177
|
+
deleteAllSoftwares(filter?: Types.SoftwareFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllSoftwaresMutation>;
|
178
178
|
getSoftware(id: string): Promise<Types.GetSoftwareQuery>;
|
179
179
|
querySoftwares(filter?: Types.SoftwareFilter): Promise<Types.QuerySoftwaresQuery>;
|
180
180
|
createMedicalCondition(MedicalCondition: Types.MedicalConditionInput): Promise<Types.CreateMedicalConditionMutation>;
|
181
181
|
updateMedicalCondition(MedicalCondition: Types.MedicalConditionUpdateInput): Promise<Types.UpdateMedicalConditionMutation>;
|
182
182
|
deleteMedicalCondition(id: string): Promise<Types.DeleteMedicalConditionMutation>;
|
183
|
-
deleteMedicalConditions(): Promise<Types.DeleteMedicalConditionsMutation>;
|
184
|
-
deleteAllMedicalConditions(): Promise<Types.DeleteAllMedicalConditionsMutation>;
|
183
|
+
deleteMedicalConditions(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalConditionsMutation>;
|
184
|
+
deleteAllMedicalConditions(filter?: Types.MedicalConditionFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalConditionsMutation>;
|
185
185
|
getMedicalCondition(id: string): Promise<Types.GetMedicalConditionQuery>;
|
186
186
|
queryMedicalConditions(filter?: Types.MedicalConditionFilter): Promise<Types.QueryMedicalConditionsQuery>;
|
187
187
|
createMedicalGuideline(MedicalGuideline: Types.MedicalGuidelineInput): Promise<Types.CreateMedicalGuidelineMutation>;
|
188
188
|
updateMedicalGuideline(MedicalGuideline: Types.MedicalGuidelineUpdateInput): Promise<Types.UpdateMedicalGuidelineMutation>;
|
189
189
|
deleteMedicalGuideline(id: string): Promise<Types.DeleteMedicalGuidelineMutation>;
|
190
|
-
deleteMedicalGuidelines(): Promise<Types.DeleteMedicalGuidelinesMutation>;
|
191
|
-
deleteAllMedicalGuidelines(): Promise<Types.DeleteAllMedicalGuidelinesMutation>;
|
190
|
+
deleteMedicalGuidelines(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalGuidelinesMutation>;
|
191
|
+
deleteAllMedicalGuidelines(filter?: Types.MedicalGuidelineFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalGuidelinesMutation>;
|
192
192
|
getMedicalGuideline(id: string): Promise<Types.GetMedicalGuidelineQuery>;
|
193
193
|
queryMedicalGuidelines(filter?: Types.MedicalGuidelineFilter): Promise<Types.QueryMedicalGuidelinesQuery>;
|
194
194
|
createMedicalDrug(MedicalDrug: Types.MedicalDrugInput): Promise<Types.CreateMedicalDrugMutation>;
|
195
195
|
updateMedicalDrug(MedicalDrug: Types.MedicalDrugUpdateInput): Promise<Types.UpdateMedicalDrugMutation>;
|
196
196
|
deleteMedicalDrug(id: string): Promise<Types.DeleteMedicalDrugMutation>;
|
197
|
-
deleteMedicalDrugs(): Promise<Types.DeleteMedicalDrugsMutation>;
|
198
|
-
deleteAllMedicalDrugs(): Promise<Types.DeleteAllMedicalDrugsMutation>;
|
197
|
+
deleteMedicalDrugs(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalDrugsMutation>;
|
198
|
+
deleteAllMedicalDrugs(filter?: Types.MedicalDrugFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalDrugsMutation>;
|
199
199
|
getMedicalDrug(id: string): Promise<Types.GetMedicalDrugQuery>;
|
200
200
|
queryMedicalDrugs(filter?: Types.MedicalDrugFilter): Promise<Types.QueryMedicalDrugsQuery>;
|
201
201
|
createMedicalIndication(MedicalIndication: Types.MedicalIndicationInput): Promise<Types.CreateMedicalIndicationMutation>;
|
202
202
|
updateMedicalIndication(MedicalIndication: Types.MedicalIndicationUpdateInput): Promise<Types.UpdateMedicalIndicationMutation>;
|
203
203
|
deleteMedicalIndication(id: string): Promise<Types.DeleteMedicalIndicationMutation>;
|
204
|
-
deleteMedicalIndications(): Promise<Types.DeleteMedicalIndicationsMutation>;
|
205
|
-
deleteAllMedicalIndications(): Promise<Types.DeleteAllMedicalIndicationsMutation>;
|
204
|
+
deleteMedicalIndications(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalIndicationsMutation>;
|
205
|
+
deleteAllMedicalIndications(filter?: Types.MedicalIndicationFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalIndicationsMutation>;
|
206
206
|
getMedicalIndication(id: string): Promise<Types.GetMedicalIndicationQuery>;
|
207
207
|
queryMedicalIndications(filter?: Types.MedicalIndicationFilter): Promise<Types.QueryMedicalIndicationsQuery>;
|
208
208
|
createMedicalContraindication(MedicalContraindication: Types.MedicalContraindicationInput): Promise<Types.CreateMedicalContraindicationMutation>;
|
209
209
|
updateMedicalContraindication(MedicalContraindication: Types.MedicalContraindicationUpdateInput): Promise<Types.UpdateMedicalContraindicationMutation>;
|
210
210
|
deleteMedicalContraindication(id: string): Promise<Types.DeleteMedicalContraindicationMutation>;
|
211
|
-
deleteMedicalContraindications(): Promise<Types.DeleteMedicalContraindicationsMutation>;
|
212
|
-
deleteAllMedicalContraindications(): Promise<Types.DeleteAllMedicalContraindicationsMutation>;
|
211
|
+
deleteMedicalContraindications(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalContraindicationsMutation>;
|
212
|
+
deleteAllMedicalContraindications(filter?: Types.MedicalContraindicationFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalContraindicationsMutation>;
|
213
213
|
getMedicalContraindication(id: string): Promise<Types.GetMedicalContraindicationQuery>;
|
214
214
|
queryMedicalContraindications(filter?: Types.MedicalContraindicationFilter): Promise<Types.QueryMedicalContraindicationsQuery>;
|
215
215
|
createMedicalTest(MedicalTest: Types.MedicalTestInput): Promise<Types.CreateMedicalTestMutation>;
|
216
216
|
updateMedicalTest(MedicalTest: Types.MedicalTestUpdateInput): Promise<Types.UpdateMedicalTestMutation>;
|
217
217
|
deleteMedicalTest(id: string): Promise<Types.DeleteMedicalTestMutation>;
|
218
|
-
deleteMedicalTests(): Promise<Types.DeleteMedicalTestsMutation>;
|
219
|
-
deleteAllMedicalTests(): Promise<Types.DeleteAllMedicalTestsMutation>;
|
218
|
+
deleteMedicalTests(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalTestsMutation>;
|
219
|
+
deleteAllMedicalTests(filter?: Types.MedicalTestFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalTestsMutation>;
|
220
220
|
getMedicalTest(id: string): Promise<Types.GetMedicalTestQuery>;
|
221
221
|
queryMedicalTests(filter?: Types.MedicalTestFilter): Promise<Types.QueryMedicalTestsQuery>;
|
222
222
|
createMedicalDevice(MedicalDevice: Types.MedicalDeviceInput): Promise<Types.CreateMedicalDeviceMutation>;
|
223
223
|
updateMedicalDevice(MedicalDevice: Types.MedicalDeviceUpdateInput): Promise<Types.UpdateMedicalDeviceMutation>;
|
224
224
|
deleteMedicalDevice(id: string): Promise<Types.DeleteMedicalDeviceMutation>;
|
225
|
-
deleteMedicalDevices(): Promise<Types.DeleteMedicalDevicesMutation>;
|
226
|
-
deleteAllMedicalDevices(): Promise<Types.DeleteAllMedicalDevicesMutation>;
|
225
|
+
deleteMedicalDevices(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalDevicesMutation>;
|
226
|
+
deleteAllMedicalDevices(filter?: Types.MedicalDeviceFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalDevicesMutation>;
|
227
227
|
getMedicalDevice(id: string): Promise<Types.GetMedicalDeviceQuery>;
|
228
228
|
queryMedicalDevices(filter?: Types.MedicalDeviceFilter): Promise<Types.QueryMedicalDevicesQuery>;
|
229
229
|
createMedicalProcedure(MedicalProcedure: Types.MedicalProcedureInput): Promise<Types.CreateMedicalProcedureMutation>;
|
230
230
|
updateMedicalProcedure(MedicalProcedure: Types.MedicalProcedureUpdateInput): Promise<Types.UpdateMedicalProcedureMutation>;
|
231
231
|
deleteMedicalProcedure(id: string): Promise<Types.DeleteMedicalProcedureMutation>;
|
232
|
-
deleteMedicalProcedures(): Promise<Types.DeleteMedicalProceduresMutation>;
|
233
|
-
deleteAllMedicalProcedures(): Promise<Types.DeleteAllMedicalProceduresMutation>;
|
232
|
+
deleteMedicalProcedures(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalProceduresMutation>;
|
233
|
+
deleteAllMedicalProcedures(filter?: Types.MedicalProcedureFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalProceduresMutation>;
|
234
234
|
getMedicalProcedure(id: string): Promise<Types.GetMedicalProcedureQuery>;
|
235
235
|
queryMedicalProcedures(filter?: Types.MedicalProcedureFilter): Promise<Types.QueryMedicalProceduresQuery>;
|
236
236
|
createMedicalStudy(MedicalStudy: Types.MedicalStudyInput): Promise<Types.CreateMedicalStudyMutation>;
|
237
237
|
updateMedicalStudy(MedicalStudy: Types.MedicalStudyUpdateInput): Promise<Types.UpdateMedicalStudyMutation>;
|
238
238
|
deleteMedicalStudy(id: string): Promise<Types.DeleteMedicalStudyMutation>;
|
239
|
-
deleteMedicalStudies(): Promise<Types.DeleteMedicalStudiesMutation>;
|
240
|
-
deleteAllMedicalStudies(): Promise<Types.DeleteAllMedicalStudiesMutation>;
|
239
|
+
deleteMedicalStudies(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalStudiesMutation>;
|
240
|
+
deleteAllMedicalStudies(filter?: Types.MedicalStudyFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalStudiesMutation>;
|
241
241
|
getMedicalStudy(id: string): Promise<Types.GetMedicalStudyQuery>;
|
242
242
|
queryMedicalStudies(filter?: Types.MedicalStudyFilter): Promise<Types.QueryMedicalStudiesQuery>;
|
243
243
|
createMedicalDrugClass(MedicalDrugClass: Types.MedicalDrugClassInput): Promise<Types.CreateMedicalDrugClassMutation>;
|
244
244
|
updateMedicalDrugClass(MedicalDrugClass: Types.MedicalDrugClassUpdateInput): Promise<Types.UpdateMedicalDrugClassMutation>;
|
245
245
|
deleteMedicalDrugClass(id: string): Promise<Types.DeleteMedicalDrugClassMutation>;
|
246
|
-
deleteMedicalDrugClasses(): Promise<Types.DeleteMedicalDrugClassesMutation>;
|
247
|
-
deleteAllMedicalDrugClasses(): Promise<Types.DeleteAllMedicalDrugClassesMutation>;
|
246
|
+
deleteMedicalDrugClasses(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalDrugClassesMutation>;
|
247
|
+
deleteAllMedicalDrugClasses(filter?: Types.MedicalDrugClassFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalDrugClassesMutation>;
|
248
248
|
getMedicalDrugClass(id: string): Promise<Types.GetMedicalDrugClassQuery>;
|
249
249
|
queryMedicalDrugClasses(filter?: Types.MedicalDrugClassFilter): Promise<Types.QueryMedicalDrugClassesQuery>;
|
250
250
|
createMedicalTherapy(MedicalTherapy: Types.MedicalTherapyInput): Promise<Types.CreateMedicalTherapyMutation>;
|
251
251
|
updateMedicalTherapy(MedicalTherapy: Types.MedicalTherapyUpdateInput): Promise<Types.UpdateMedicalTherapyMutation>;
|
252
252
|
deleteMedicalTherapy(id: string): Promise<Types.DeleteMedicalTherapyMutation>;
|
253
|
-
deleteMedicalTherapies(): Promise<Types.DeleteMedicalTherapiesMutation>;
|
254
|
-
deleteAllMedicalTherapies(): Promise<Types.DeleteAllMedicalTherapiesMutation>;
|
253
|
+
deleteMedicalTherapies(ids: [string], isSynchronous?: boolean): Promise<Types.DeleteMedicalTherapiesMutation>;
|
254
|
+
deleteAllMedicalTherapies(filter?: Types.MedicalTherapyFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllMedicalTherapiesMutation>;
|
255
255
|
getMedicalTherapy(id: string): Promise<Types.GetMedicalTherapyQuery>;
|
256
256
|
queryMedicalTherapies(filter?: Types.MedicalTherapyFilter): Promise<Types.QueryMedicalTherapiesQuery>;
|
257
257
|
createObservation(observation: Types.ObservationInput): Promise<Types.CreateObservationMutation>;
|
package/dist/client.js
CHANGED
@@ -168,14 +168,14 @@ class Graphlit {
|
|
168
168
|
return this.mutateAndCheckError(Documents.DeleteAlert, { id: id });
|
169
169
|
});
|
170
170
|
}
|
171
|
-
deleteAlerts() {
|
171
|
+
deleteAlerts(ids, isSynchronous) {
|
172
172
|
return __awaiter(this, void 0, void 0, function* () {
|
173
|
-
return this.mutateAndCheckError(Documents.DeleteAlerts);
|
173
|
+
return this.mutateAndCheckError(Documents.DeleteAlerts, { ids: ids, isSynchronous: isSynchronous });
|
174
174
|
});
|
175
175
|
}
|
176
|
-
deleteAllAlerts() {
|
176
|
+
deleteAllAlerts(filter, isSynchronous, correlationId) {
|
177
177
|
return __awaiter(this, void 0, void 0, function* () {
|
178
|
-
return this.mutateAndCheckError(Documents.DeleteAllAlerts);
|
178
|
+
return this.mutateAndCheckError(Documents.DeleteAllAlerts, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
179
179
|
});
|
180
180
|
}
|
181
181
|
enableAlert(id) {
|
@@ -213,14 +213,14 @@ class Graphlit {
|
|
213
213
|
return this.mutateAndCheckError(Documents.DeleteCollection, { id: id });
|
214
214
|
});
|
215
215
|
}
|
216
|
-
deleteCollections() {
|
216
|
+
deleteCollections(ids, isSynchronous) {
|
217
217
|
return __awaiter(this, void 0, void 0, function* () {
|
218
|
-
return this.mutateAndCheckError(Documents.DeleteCollections);
|
218
|
+
return this.mutateAndCheckError(Documents.DeleteCollections, { ids: ids, isSynchronous: isSynchronous });
|
219
219
|
});
|
220
220
|
}
|
221
|
-
deleteAllCollections() {
|
221
|
+
deleteAllCollections(filter, isSynchronous, correlationId) {
|
222
222
|
return __awaiter(this, void 0, void 0, function* () {
|
223
|
-
return this.mutateAndCheckError(Documents.DeleteAllCollections);
|
223
|
+
return this.mutateAndCheckError(Documents.DeleteAllCollections, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
224
224
|
});
|
225
225
|
}
|
226
226
|
addContentsToCollections(contents, collections) {
|
@@ -293,14 +293,14 @@ class Graphlit {
|
|
293
293
|
return this.mutateAndCheckError(Documents.DeleteContent, { id: id });
|
294
294
|
});
|
295
295
|
}
|
296
|
-
deleteContents() {
|
296
|
+
deleteContents(ids, isSynchronous) {
|
297
297
|
return __awaiter(this, void 0, void 0, function* () {
|
298
|
-
return this.mutateAndCheckError(Documents.DeleteContents);
|
298
|
+
return this.mutateAndCheckError(Documents.DeleteContents, { ids: ids, isSynchronous: isSynchronous });
|
299
299
|
});
|
300
300
|
}
|
301
|
-
deleteAllContents() {
|
301
|
+
deleteAllContents(filter, isSynchronous, correlationId) {
|
302
302
|
return __awaiter(this, void 0, void 0, function* () {
|
303
|
-
return this.mutateAndCheckError(Documents.DeleteAllContents);
|
303
|
+
return this.mutateAndCheckError(Documents.DeleteAllContents, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
304
304
|
});
|
305
305
|
}
|
306
306
|
summarizeText(summarization, text, textType, correlationId) {
|
@@ -373,14 +373,14 @@ class Graphlit {
|
|
373
373
|
return this.mutateAndCheckError(Documents.DeleteConversation, { id: id });
|
374
374
|
});
|
375
375
|
}
|
376
|
-
deleteConversations() {
|
376
|
+
deleteConversations(ids, isSynchronous) {
|
377
377
|
return __awaiter(this, void 0, void 0, function* () {
|
378
|
-
return this.mutateAndCheckError(Documents.DeleteConversations);
|
378
|
+
return this.mutateAndCheckError(Documents.DeleteConversations, { ids: ids, isSynchronous: isSynchronous });
|
379
379
|
});
|
380
380
|
}
|
381
|
-
deleteAllConversations() {
|
381
|
+
deleteAllConversations(filter, isSynchronous, correlationId) {
|
382
382
|
return __awaiter(this, void 0, void 0, function* () {
|
383
|
-
return this.mutateAndCheckError(Documents.DeleteAllConversations);
|
383
|
+
return this.mutateAndCheckError(Documents.DeleteAllConversations, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
384
384
|
});
|
385
385
|
}
|
386
386
|
clearConversation(id) {
|
@@ -443,9 +443,9 @@ class Graphlit {
|
|
443
443
|
return this.mutateAndCheckError(Documents.AskGraphlit, { prompt: prompt, type: type, id: id, specification: specification, correlationId: correlationId });
|
444
444
|
});
|
445
445
|
}
|
446
|
-
promptConversation(prompt, id, specification, tools, requireTool, includeDetails, correlationId) {
|
446
|
+
promptConversation(prompt, id, specification, mimeType, data, tools, requireTool, includeDetails, correlationId) {
|
447
447
|
return __awaiter(this, void 0, void 0, function* () {
|
448
|
-
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, includeDetails: includeDetails, correlationId: correlationId });
|
448
|
+
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, mimeType: mimeType, data: data, tools: tools, requireTool: requireTool, includeDetails: includeDetails, correlationId: correlationId });
|
449
449
|
});
|
450
450
|
}
|
451
451
|
continueConversation(id, responses, correlationId) {
|
@@ -478,14 +478,14 @@ class Graphlit {
|
|
478
478
|
return this.mutateAndCheckError(Documents.DeleteFeed, { id: id });
|
479
479
|
});
|
480
480
|
}
|
481
|
-
deleteFeeds() {
|
481
|
+
deleteFeeds(ids, isSynchronous) {
|
482
482
|
return __awaiter(this, void 0, void 0, function* () {
|
483
|
-
return this.mutateAndCheckError(Documents.DeleteFeeds);
|
483
|
+
return this.mutateAndCheckError(Documents.DeleteFeeds, { ids: ids, isSynchronous: isSynchronous });
|
484
484
|
});
|
485
485
|
}
|
486
|
-
deleteAllFeeds() {
|
486
|
+
deleteAllFeeds(filter, isSynchronous, correlationId) {
|
487
487
|
return __awaiter(this, void 0, void 0, function* () {
|
488
|
-
return this.mutateAndCheckError(Documents.DeleteAllFeeds);
|
488
|
+
return this.mutateAndCheckError(Documents.DeleteAllFeeds, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
489
489
|
});
|
490
490
|
}
|
491
491
|
enableFeed(id) {
|
@@ -533,14 +533,14 @@ class Graphlit {
|
|
533
533
|
return this.mutateAndCheckError(Documents.DeleteSpecification, { id: id });
|
534
534
|
});
|
535
535
|
}
|
536
|
-
deleteSpecifications() {
|
536
|
+
deleteSpecifications(ids, isSynchronous) {
|
537
537
|
return __awaiter(this, void 0, void 0, function* () {
|
538
|
-
return this.mutateAndCheckError(Documents.DeleteSpecifications);
|
538
|
+
return this.mutateAndCheckError(Documents.DeleteSpecifications, { ids: ids, isSynchronous: isSynchronous });
|
539
539
|
});
|
540
540
|
}
|
541
|
-
deleteAllSpecifications() {
|
541
|
+
deleteAllSpecifications(filter, isSynchronous, correlationId) {
|
542
542
|
return __awaiter(this, void 0, void 0, function* () {
|
543
|
-
return this.mutateAndCheckError(Documents.DeleteAllSpecifications);
|
543
|
+
return this.mutateAndCheckError(Documents.DeleteAllSpecifications, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
544
544
|
});
|
545
545
|
}
|
546
546
|
getSpecification(id) {
|
@@ -573,14 +573,14 @@ class Graphlit {
|
|
573
573
|
return this.mutateAndCheckError(Documents.DeleteWorkflow, { id: id });
|
574
574
|
});
|
575
575
|
}
|
576
|
-
deleteWorkflows() {
|
576
|
+
deleteWorkflows(ids, isSynchronous) {
|
577
577
|
return __awaiter(this, void 0, void 0, function* () {
|
578
|
-
return this.mutateAndCheckError(Documents.DeleteWorkflows);
|
578
|
+
return this.mutateAndCheckError(Documents.DeleteWorkflows, { ids: ids, isSynchronous: isSynchronous });
|
579
579
|
});
|
580
580
|
}
|
581
|
-
deleteAllWorkflows() {
|
581
|
+
deleteAllWorkflows(filter, isSynchronous, correlationId) {
|
582
582
|
return __awaiter(this, void 0, void 0, function* () {
|
583
|
-
return this.mutateAndCheckError(Documents.DeleteAllWorkflows);
|
583
|
+
return this.mutateAndCheckError(Documents.DeleteAllWorkflows, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
584
584
|
});
|
585
585
|
}
|
586
586
|
getWorkflow(id) {
|
@@ -643,14 +643,14 @@ class Graphlit {
|
|
643
643
|
return this.mutateAndCheckError(Documents.DeleteCategory, { id: id });
|
644
644
|
});
|
645
645
|
}
|
646
|
-
deleteCategories() {
|
646
|
+
deleteCategories(ids, isSynchronous) {
|
647
647
|
return __awaiter(this, void 0, void 0, function* () {
|
648
|
-
return this.mutateAndCheckError(Documents.DeleteCategories);
|
648
|
+
return this.mutateAndCheckError(Documents.DeleteCategories, { ids: ids, isSynchronous: isSynchronous });
|
649
649
|
});
|
650
650
|
}
|
651
|
-
deleteAllCategories() {
|
651
|
+
deleteAllCategories(filter, isSynchronous, correlationId) {
|
652
652
|
return __awaiter(this, void 0, void 0, function* () {
|
653
|
-
return this.mutateAndCheckError(Documents.DeleteAllCategories);
|
653
|
+
return this.mutateAndCheckError(Documents.DeleteAllCategories, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
654
654
|
});
|
655
655
|
}
|
656
656
|
getCategory(id) {
|
@@ -678,14 +678,14 @@ class Graphlit {
|
|
678
678
|
return this.mutateAndCheckError(Documents.DeleteLabel, { id: id });
|
679
679
|
});
|
680
680
|
}
|
681
|
-
deleteLabels() {
|
681
|
+
deleteLabels(ids, isSynchronous) {
|
682
682
|
return __awaiter(this, void 0, void 0, function* () {
|
683
|
-
return this.mutateAndCheckError(Documents.DeleteLabels);
|
683
|
+
return this.mutateAndCheckError(Documents.DeleteLabels, { ids: ids, isSynchronous: isSynchronous });
|
684
684
|
});
|
685
685
|
}
|
686
|
-
deleteAllLabels() {
|
686
|
+
deleteAllLabels(filter, isSynchronous, correlationId) {
|
687
687
|
return __awaiter(this, void 0, void 0, function* () {
|
688
|
-
return this.mutateAndCheckError(Documents.DeleteAllLabels);
|
688
|
+
return this.mutateAndCheckError(Documents.DeleteAllLabels, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
689
689
|
});
|
690
690
|
}
|
691
691
|
getLabel(id) {
|
@@ -713,14 +713,14 @@ class Graphlit {
|
|
713
713
|
return this.mutateAndCheckError(Documents.DeletePerson, { id: id });
|
714
714
|
});
|
715
715
|
}
|
716
|
-
deletePersons() {
|
716
|
+
deletePersons(ids, isSynchronous) {
|
717
717
|
return __awaiter(this, void 0, void 0, function* () {
|
718
|
-
return this.mutateAndCheckError(Documents.DeletePersons);
|
718
|
+
return this.mutateAndCheckError(Documents.DeletePersons, { ids: ids, isSynchronous: isSynchronous });
|
719
719
|
});
|
720
720
|
}
|
721
|
-
deleteAllPersons() {
|
721
|
+
deleteAllPersons(filter, isSynchronous, correlationId) {
|
722
722
|
return __awaiter(this, void 0, void 0, function* () {
|
723
|
-
return this.mutateAndCheckError(Documents.DeleteAllPersons);
|
723
|
+
return this.mutateAndCheckError(Documents.DeleteAllPersons, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
724
724
|
});
|
725
725
|
}
|
726
726
|
getPerson(id) {
|
@@ -748,14 +748,14 @@ class Graphlit {
|
|
748
748
|
return this.mutateAndCheckError(Documents.DeleteOrganization, { id: id });
|
749
749
|
});
|
750
750
|
}
|
751
|
-
deleteOrganizations() {
|
751
|
+
deleteOrganizations(ids, isSynchronous) {
|
752
752
|
return __awaiter(this, void 0, void 0, function* () {
|
753
|
-
return this.mutateAndCheckError(Documents.DeleteOrganizations);
|
753
|
+
return this.mutateAndCheckError(Documents.DeleteOrganizations, { ids: ids, isSynchronous: isSynchronous });
|
754
754
|
});
|
755
755
|
}
|
756
|
-
deleteAllOrganizations() {
|
756
|
+
deleteAllOrganizations(filter, isSynchronous, correlationId) {
|
757
757
|
return __awaiter(this, void 0, void 0, function* () {
|
758
|
-
return this.mutateAndCheckError(Documents.DeleteAllOrganizations);
|
758
|
+
return this.mutateAndCheckError(Documents.DeleteAllOrganizations, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
759
759
|
});
|
760
760
|
}
|
761
761
|
getOrganization(id) {
|
@@ -783,14 +783,14 @@ class Graphlit {
|
|
783
783
|
return this.mutateAndCheckError(Documents.DeletePlace, { id: id });
|
784
784
|
});
|
785
785
|
}
|
786
|
-
deletePlaces() {
|
786
|
+
deletePlaces(ids, isSynchronous) {
|
787
787
|
return __awaiter(this, void 0, void 0, function* () {
|
788
|
-
return this.mutateAndCheckError(Documents.DeletePlaces);
|
788
|
+
return this.mutateAndCheckError(Documents.DeletePlaces, { ids: ids, isSynchronous: isSynchronous });
|
789
789
|
});
|
790
790
|
}
|
791
|
-
deleteAllPlaces() {
|
791
|
+
deleteAllPlaces(filter, isSynchronous, correlationId) {
|
792
792
|
return __awaiter(this, void 0, void 0, function* () {
|
793
|
-
return this.mutateAndCheckError(Documents.DeleteAllPlaces);
|
793
|
+
return this.mutateAndCheckError(Documents.DeleteAllPlaces, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
794
794
|
});
|
795
795
|
}
|
796
796
|
getPlace(id) {
|
@@ -818,14 +818,14 @@ class Graphlit {
|
|
818
818
|
return this.mutateAndCheckError(Documents.DeleteEvent, { id: id });
|
819
819
|
});
|
820
820
|
}
|
821
|
-
deleteEvents() {
|
821
|
+
deleteEvents(ids, isSynchronous) {
|
822
822
|
return __awaiter(this, void 0, void 0, function* () {
|
823
|
-
return this.mutateAndCheckError(Documents.DeleteEvents);
|
823
|
+
return this.mutateAndCheckError(Documents.DeleteEvents, { ids: ids, isSynchronous: isSynchronous });
|
824
824
|
});
|
825
825
|
}
|
826
|
-
deleteAllEvents() {
|
826
|
+
deleteAllEvents(filter, isSynchronous, correlationId) {
|
827
827
|
return __awaiter(this, void 0, void 0, function* () {
|
828
|
-
return this.mutateAndCheckError(Documents.DeleteAllEvents);
|
828
|
+
return this.mutateAndCheckError(Documents.DeleteAllEvents, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
829
829
|
});
|
830
830
|
}
|
831
831
|
getEvent(id) {
|
@@ -853,14 +853,14 @@ class Graphlit {
|
|
853
853
|
return this.mutateAndCheckError(Documents.DeleteProduct, { id: id });
|
854
854
|
});
|
855
855
|
}
|
856
|
-
deleteProducts() {
|
856
|
+
deleteProducts(ids, isSynchronous) {
|
857
857
|
return __awaiter(this, void 0, void 0, function* () {
|
858
|
-
return this.mutateAndCheckError(Documents.DeleteProducts);
|
858
|
+
return this.mutateAndCheckError(Documents.DeleteProducts, { ids: ids, isSynchronous: isSynchronous });
|
859
859
|
});
|
860
860
|
}
|
861
|
-
deleteAllProducts() {
|
861
|
+
deleteAllProducts(filter, isSynchronous, correlationId) {
|
862
862
|
return __awaiter(this, void 0, void 0, function* () {
|
863
|
-
return this.mutateAndCheckError(Documents.DeleteAllProducts);
|
863
|
+
return this.mutateAndCheckError(Documents.DeleteAllProducts, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
864
864
|
});
|
865
865
|
}
|
866
866
|
getProduct(id) {
|
@@ -888,14 +888,14 @@ class Graphlit {
|
|
888
888
|
return this.mutateAndCheckError(Documents.DeleteRepo, { id: id });
|
889
889
|
});
|
890
890
|
}
|
891
|
-
deleteRepos() {
|
891
|
+
deleteRepos(ids, isSynchronous) {
|
892
892
|
return __awaiter(this, void 0, void 0, function* () {
|
893
|
-
return this.mutateAndCheckError(Documents.DeleteRepos);
|
893
|
+
return this.mutateAndCheckError(Documents.DeleteRepos, { ids: ids, isSynchronous: isSynchronous });
|
894
894
|
});
|
895
895
|
}
|
896
|
-
deleteAllRepos() {
|
896
|
+
deleteAllRepos(filter, isSynchronous, correlationId) {
|
897
897
|
return __awaiter(this, void 0, void 0, function* () {
|
898
|
-
return this.mutateAndCheckError(Documents.DeleteAllRepos);
|
898
|
+
return this.mutateAndCheckError(Documents.DeleteAllRepos, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
899
899
|
});
|
900
900
|
}
|
901
901
|
getRepo(id) {
|
@@ -923,14 +923,14 @@ class Graphlit {
|
|
923
923
|
return this.mutateAndCheckError(Documents.DeleteSoftware, { id: id });
|
924
924
|
});
|
925
925
|
}
|
926
|
-
deleteSoftwares() {
|
926
|
+
deleteSoftwares(ids, isSynchronous) {
|
927
927
|
return __awaiter(this, void 0, void 0, function* () {
|
928
|
-
return this.mutateAndCheckError(Documents.DeleteSoftwares);
|
928
|
+
return this.mutateAndCheckError(Documents.DeleteSoftwares, { ids: ids, isSynchronous: isSynchronous });
|
929
929
|
});
|
930
930
|
}
|
931
|
-
deleteAllSoftwares() {
|
931
|
+
deleteAllSoftwares(filter, isSynchronous, correlationId) {
|
932
932
|
return __awaiter(this, void 0, void 0, function* () {
|
933
|
-
return this.mutateAndCheckError(Documents.DeleteAllSoftwares);
|
933
|
+
return this.mutateAndCheckError(Documents.DeleteAllSoftwares, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
934
934
|
});
|
935
935
|
}
|
936
936
|
getSoftware(id) {
|
@@ -958,14 +958,14 @@ class Graphlit {
|
|
958
958
|
return this.mutateAndCheckError(Documents.DeleteMedicalCondition, { id: id });
|
959
959
|
});
|
960
960
|
}
|
961
|
-
deleteMedicalConditions() {
|
961
|
+
deleteMedicalConditions(ids, isSynchronous) {
|
962
962
|
return __awaiter(this, void 0, void 0, function* () {
|
963
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalConditions);
|
963
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalConditions, { ids: ids, isSynchronous: isSynchronous });
|
964
964
|
});
|
965
965
|
}
|
966
|
-
deleteAllMedicalConditions() {
|
966
|
+
deleteAllMedicalConditions(filter, isSynchronous, correlationId) {
|
967
967
|
return __awaiter(this, void 0, void 0, function* () {
|
968
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalConditions);
|
968
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalConditions, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
969
969
|
});
|
970
970
|
}
|
971
971
|
getMedicalCondition(id) {
|
@@ -993,14 +993,14 @@ class Graphlit {
|
|
993
993
|
return this.mutateAndCheckError(Documents.DeleteMedicalGuideline, { id: id });
|
994
994
|
});
|
995
995
|
}
|
996
|
-
deleteMedicalGuidelines() {
|
996
|
+
deleteMedicalGuidelines(ids, isSynchronous) {
|
997
997
|
return __awaiter(this, void 0, void 0, function* () {
|
998
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalGuidelines);
|
998
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalGuidelines, { ids: ids, isSynchronous: isSynchronous });
|
999
999
|
});
|
1000
1000
|
}
|
1001
|
-
deleteAllMedicalGuidelines() {
|
1001
|
+
deleteAllMedicalGuidelines(filter, isSynchronous, correlationId) {
|
1002
1002
|
return __awaiter(this, void 0, void 0, function* () {
|
1003
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalGuidelines);
|
1003
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalGuidelines, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1004
1004
|
});
|
1005
1005
|
}
|
1006
1006
|
getMedicalGuideline(id) {
|
@@ -1028,14 +1028,14 @@ class Graphlit {
|
|
1028
1028
|
return this.mutateAndCheckError(Documents.DeleteMedicalDrug, { id: id });
|
1029
1029
|
});
|
1030
1030
|
}
|
1031
|
-
deleteMedicalDrugs() {
|
1031
|
+
deleteMedicalDrugs(ids, isSynchronous) {
|
1032
1032
|
return __awaiter(this, void 0, void 0, function* () {
|
1033
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalDrugs);
|
1033
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalDrugs, { ids: ids, isSynchronous: isSynchronous });
|
1034
1034
|
});
|
1035
1035
|
}
|
1036
|
-
deleteAllMedicalDrugs() {
|
1036
|
+
deleteAllMedicalDrugs(filter, isSynchronous, correlationId) {
|
1037
1037
|
return __awaiter(this, void 0, void 0, function* () {
|
1038
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalDrugs);
|
1038
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalDrugs, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1039
1039
|
});
|
1040
1040
|
}
|
1041
1041
|
getMedicalDrug(id) {
|
@@ -1063,14 +1063,14 @@ class Graphlit {
|
|
1063
1063
|
return this.mutateAndCheckError(Documents.DeleteMedicalIndication, { id: id });
|
1064
1064
|
});
|
1065
1065
|
}
|
1066
|
-
deleteMedicalIndications() {
|
1066
|
+
deleteMedicalIndications(ids, isSynchronous) {
|
1067
1067
|
return __awaiter(this, void 0, void 0, function* () {
|
1068
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalIndications);
|
1068
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalIndications, { ids: ids, isSynchronous: isSynchronous });
|
1069
1069
|
});
|
1070
1070
|
}
|
1071
|
-
deleteAllMedicalIndications() {
|
1071
|
+
deleteAllMedicalIndications(filter, isSynchronous, correlationId) {
|
1072
1072
|
return __awaiter(this, void 0, void 0, function* () {
|
1073
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalIndications);
|
1073
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalIndications, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1074
1074
|
});
|
1075
1075
|
}
|
1076
1076
|
getMedicalIndication(id) {
|
@@ -1098,14 +1098,14 @@ class Graphlit {
|
|
1098
1098
|
return this.mutateAndCheckError(Documents.DeleteMedicalContraindication, { id: id });
|
1099
1099
|
});
|
1100
1100
|
}
|
1101
|
-
deleteMedicalContraindications() {
|
1101
|
+
deleteMedicalContraindications(ids, isSynchronous) {
|
1102
1102
|
return __awaiter(this, void 0, void 0, function* () {
|
1103
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalContraindications);
|
1103
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalContraindications, { ids: ids, isSynchronous: isSynchronous });
|
1104
1104
|
});
|
1105
1105
|
}
|
1106
|
-
deleteAllMedicalContraindications() {
|
1106
|
+
deleteAllMedicalContraindications(filter, isSynchronous, correlationId) {
|
1107
1107
|
return __awaiter(this, void 0, void 0, function* () {
|
1108
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalContraindications);
|
1108
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalContraindications, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1109
1109
|
});
|
1110
1110
|
}
|
1111
1111
|
getMedicalContraindication(id) {
|
@@ -1133,14 +1133,14 @@ class Graphlit {
|
|
1133
1133
|
return this.mutateAndCheckError(Documents.DeleteMedicalTest, { id: id });
|
1134
1134
|
});
|
1135
1135
|
}
|
1136
|
-
deleteMedicalTests() {
|
1136
|
+
deleteMedicalTests(ids, isSynchronous) {
|
1137
1137
|
return __awaiter(this, void 0, void 0, function* () {
|
1138
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalTests);
|
1138
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalTests, { ids: ids, isSynchronous: isSynchronous });
|
1139
1139
|
});
|
1140
1140
|
}
|
1141
|
-
deleteAllMedicalTests() {
|
1141
|
+
deleteAllMedicalTests(filter, isSynchronous, correlationId) {
|
1142
1142
|
return __awaiter(this, void 0, void 0, function* () {
|
1143
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalTests);
|
1143
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalTests, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1144
1144
|
});
|
1145
1145
|
}
|
1146
1146
|
getMedicalTest(id) {
|
@@ -1168,14 +1168,14 @@ class Graphlit {
|
|
1168
1168
|
return this.mutateAndCheckError(Documents.DeleteMedicalDevice, { id: id });
|
1169
1169
|
});
|
1170
1170
|
}
|
1171
|
-
deleteMedicalDevices() {
|
1171
|
+
deleteMedicalDevices(ids, isSynchronous) {
|
1172
1172
|
return __awaiter(this, void 0, void 0, function* () {
|
1173
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalDevices);
|
1173
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalDevices, { ids: ids, isSynchronous: isSynchronous });
|
1174
1174
|
});
|
1175
1175
|
}
|
1176
|
-
deleteAllMedicalDevices() {
|
1176
|
+
deleteAllMedicalDevices(filter, isSynchronous, correlationId) {
|
1177
1177
|
return __awaiter(this, void 0, void 0, function* () {
|
1178
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalDevices);
|
1178
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalDevices, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1179
1179
|
});
|
1180
1180
|
}
|
1181
1181
|
getMedicalDevice(id) {
|
@@ -1203,14 +1203,14 @@ class Graphlit {
|
|
1203
1203
|
return this.mutateAndCheckError(Documents.DeleteMedicalProcedure, { id: id });
|
1204
1204
|
});
|
1205
1205
|
}
|
1206
|
-
deleteMedicalProcedures() {
|
1206
|
+
deleteMedicalProcedures(ids, isSynchronous) {
|
1207
1207
|
return __awaiter(this, void 0, void 0, function* () {
|
1208
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalProcedures);
|
1208
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalProcedures, { ids: ids, isSynchronous: isSynchronous });
|
1209
1209
|
});
|
1210
1210
|
}
|
1211
|
-
deleteAllMedicalProcedures() {
|
1211
|
+
deleteAllMedicalProcedures(filter, isSynchronous, correlationId) {
|
1212
1212
|
return __awaiter(this, void 0, void 0, function* () {
|
1213
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalProcedures);
|
1213
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalProcedures, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1214
1214
|
});
|
1215
1215
|
}
|
1216
1216
|
getMedicalProcedure(id) {
|
@@ -1238,14 +1238,14 @@ class Graphlit {
|
|
1238
1238
|
return this.mutateAndCheckError(Documents.DeleteMedicalStudy, { id: id });
|
1239
1239
|
});
|
1240
1240
|
}
|
1241
|
-
deleteMedicalStudies() {
|
1241
|
+
deleteMedicalStudies(ids, isSynchronous) {
|
1242
1242
|
return __awaiter(this, void 0, void 0, function* () {
|
1243
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalStudies);
|
1243
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalStudies, { ids: ids, isSynchronous: isSynchronous });
|
1244
1244
|
});
|
1245
1245
|
}
|
1246
|
-
deleteAllMedicalStudies() {
|
1246
|
+
deleteAllMedicalStudies(filter, isSynchronous, correlationId) {
|
1247
1247
|
return __awaiter(this, void 0, void 0, function* () {
|
1248
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalStudies);
|
1248
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalStudies, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1249
1249
|
});
|
1250
1250
|
}
|
1251
1251
|
getMedicalStudy(id) {
|
@@ -1273,14 +1273,14 @@ class Graphlit {
|
|
1273
1273
|
return this.mutateAndCheckError(Documents.DeleteMedicalDrugClass, { id: id });
|
1274
1274
|
});
|
1275
1275
|
}
|
1276
|
-
deleteMedicalDrugClasses() {
|
1276
|
+
deleteMedicalDrugClasses(ids, isSynchronous) {
|
1277
1277
|
return __awaiter(this, void 0, void 0, function* () {
|
1278
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalDrugClasses);
|
1278
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalDrugClasses, { ids: ids, isSynchronous: isSynchronous });
|
1279
1279
|
});
|
1280
1280
|
}
|
1281
|
-
deleteAllMedicalDrugClasses() {
|
1281
|
+
deleteAllMedicalDrugClasses(filter, isSynchronous, correlationId) {
|
1282
1282
|
return __awaiter(this, void 0, void 0, function* () {
|
1283
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalDrugClasses);
|
1283
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalDrugClasses, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1284
1284
|
});
|
1285
1285
|
}
|
1286
1286
|
getMedicalDrugClass(id) {
|
@@ -1308,14 +1308,14 @@ class Graphlit {
|
|
1308
1308
|
return this.mutateAndCheckError(Documents.DeleteMedicalTherapy, { id: id });
|
1309
1309
|
});
|
1310
1310
|
}
|
1311
|
-
deleteMedicalTherapies() {
|
1311
|
+
deleteMedicalTherapies(ids, isSynchronous) {
|
1312
1312
|
return __awaiter(this, void 0, void 0, function* () {
|
1313
|
-
return this.mutateAndCheckError(Documents.DeleteMedicalTherapies);
|
1313
|
+
return this.mutateAndCheckError(Documents.DeleteMedicalTherapies, { ids: ids, isSynchronous: isSynchronous });
|
1314
1314
|
});
|
1315
1315
|
}
|
1316
|
-
deleteAllMedicalTherapies() {
|
1316
|
+
deleteAllMedicalTherapies(filter, isSynchronous, correlationId) {
|
1317
1317
|
return __awaiter(this, void 0, void 0, function* () {
|
1318
|
-
return this.mutateAndCheckError(Documents.DeleteAllMedicalTherapies);
|
1318
|
+
return this.mutateAndCheckError(Documents.DeleteAllMedicalTherapies, { filter: filter, isSynchronous: isSynchronous, correlationId: correlationId });
|
1319
1319
|
});
|
1320
1320
|
}
|
1321
1321
|
getMedicalTherapy(id) {
|
@@ -111,6 +111,9 @@ exports.GetAlert = (0, graphql_tag_1.default) `
|
|
111
111
|
collections {
|
112
112
|
id
|
113
113
|
}
|
114
|
+
users {
|
115
|
+
id
|
116
|
+
}
|
114
117
|
observations {
|
115
118
|
type
|
116
119
|
observable {
|
@@ -128,6 +131,9 @@ exports.GetAlert = (0, graphql_tag_1.default) `
|
|
128
131
|
collections {
|
129
132
|
id
|
130
133
|
}
|
134
|
+
users {
|
135
|
+
id
|
136
|
+
}
|
131
137
|
observations {
|
132
138
|
type
|
133
139
|
observable {
|
@@ -146,6 +152,9 @@ exports.GetAlert = (0, graphql_tag_1.default) `
|
|
146
152
|
collections {
|
147
153
|
id
|
148
154
|
}
|
155
|
+
users {
|
156
|
+
id
|
157
|
+
}
|
149
158
|
observations {
|
150
159
|
type
|
151
160
|
observable {
|
@@ -221,6 +230,9 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
|
|
221
230
|
collections {
|
222
231
|
id
|
223
232
|
}
|
233
|
+
users {
|
234
|
+
id
|
235
|
+
}
|
224
236
|
observations {
|
225
237
|
type
|
226
238
|
observable {
|
@@ -238,6 +250,9 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
|
|
238
250
|
collections {
|
239
251
|
id
|
240
252
|
}
|
253
|
+
users {
|
254
|
+
id
|
255
|
+
}
|
241
256
|
observations {
|
242
257
|
type
|
243
258
|
observable {
|
@@ -256,6 +271,9 @@ exports.QueryAlerts = (0, graphql_tag_1.default) `
|
|
256
271
|
collections {
|
257
272
|
id
|
258
273
|
}
|
274
|
+
users {
|
275
|
+
id
|
276
|
+
}
|
259
277
|
observations {
|
260
278
|
type
|
261
279
|
observable {
|
@@ -3600,6 +3618,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3600
3618
|
collections {
|
3601
3619
|
id
|
3602
3620
|
}
|
3621
|
+
users {
|
3622
|
+
id
|
3623
|
+
}
|
3603
3624
|
observations {
|
3604
3625
|
type
|
3605
3626
|
observable {
|
@@ -3617,6 +3638,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3617
3638
|
collections {
|
3618
3639
|
id
|
3619
3640
|
}
|
3641
|
+
users {
|
3642
|
+
id
|
3643
|
+
}
|
3620
3644
|
observations {
|
3621
3645
|
type
|
3622
3646
|
observable {
|
@@ -3635,6 +3659,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3635
3659
|
collections {
|
3636
3660
|
id
|
3637
3661
|
}
|
3662
|
+
users {
|
3663
|
+
id
|
3664
|
+
}
|
3638
3665
|
observations {
|
3639
3666
|
type
|
3640
3667
|
observable {
|
@@ -3669,6 +3696,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3669
3696
|
collections {
|
3670
3697
|
id
|
3671
3698
|
}
|
3699
|
+
users {
|
3700
|
+
id
|
3701
|
+
}
|
3672
3702
|
observations {
|
3673
3703
|
type
|
3674
3704
|
observable {
|
@@ -3686,6 +3716,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3686
3716
|
collections {
|
3687
3717
|
id
|
3688
3718
|
}
|
3719
|
+
users {
|
3720
|
+
id
|
3721
|
+
}
|
3689
3722
|
observations {
|
3690
3723
|
type
|
3691
3724
|
observable {
|
@@ -3704,6 +3737,9 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3704
3737
|
collections {
|
3705
3738
|
id
|
3706
3739
|
}
|
3740
|
+
users {
|
3741
|
+
id
|
3742
|
+
}
|
3707
3743
|
observations {
|
3708
3744
|
type
|
3709
3745
|
observable {
|
@@ -4451,6 +4487,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
|
|
4451
4487
|
collections {
|
4452
4488
|
id
|
4453
4489
|
}
|
4490
|
+
users {
|
4491
|
+
id
|
4492
|
+
}
|
4454
4493
|
observations {
|
4455
4494
|
type
|
4456
4495
|
observable {
|
@@ -4468,6 +4507,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
|
|
4468
4507
|
collections {
|
4469
4508
|
id
|
4470
4509
|
}
|
4510
|
+
users {
|
4511
|
+
id
|
4512
|
+
}
|
4471
4513
|
observations {
|
4472
4514
|
type
|
4473
4515
|
observable {
|
@@ -4486,6 +4528,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
|
|
4486
4528
|
collections {
|
4487
4529
|
id
|
4488
4530
|
}
|
4531
|
+
users {
|
4532
|
+
id
|
4533
|
+
}
|
4489
4534
|
observations {
|
4490
4535
|
type
|
4491
4536
|
observable {
|
@@ -4520,6 +4565,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
|
|
4520
4565
|
collections {
|
4521
4566
|
id
|
4522
4567
|
}
|
4568
|
+
users {
|
4569
|
+
id
|
4570
|
+
}
|
4523
4571
|
observations {
|
4524
4572
|
type
|
4525
4573
|
observable {
|
@@ -4537,6 +4585,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
|
|
4537
4585
|
collections {
|
4538
4586
|
id
|
4539
4587
|
}
|
4588
|
+
users {
|
4589
|
+
id
|
4590
|
+
}
|
4540
4591
|
observations {
|
4541
4592
|
type
|
4542
4593
|
observable {
|
@@ -4555,6 +4606,9 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
|
|
4555
4606
|
collections {
|
4556
4607
|
id
|
4557
4608
|
}
|
4609
|
+
users {
|
4610
|
+
id
|
4611
|
+
}
|
4558
4612
|
observations {
|
4559
4613
|
type
|
4560
4614
|
observable {
|
@@ -673,6 +673,8 @@ export declare enum AzureDocumentIntelligenceModels {
|
|
673
673
|
UsMortgageDisclosure = "US_MORTGAGE_DISCLOSURE",
|
674
674
|
/** Pay Stub (US) */
|
675
675
|
UsPayStub = "US_PAY_STUB",
|
676
|
+
/** Unified Tax Form (US) */
|
677
|
+
UsTaxForm = "US_TAX_FORM",
|
676
678
|
/** 1098 Form (US) */
|
677
679
|
UsTaxForm1098 = "US_TAX_FORM1098",
|
678
680
|
/** 1098E Form (US) */
|
@@ -693,7 +695,9 @@ export declare enum AzureDocumentIntelligenceVersions {
|
|
693
695
|
*/
|
694
696
|
V2024_02_29Preview = "V2024_02_29_PREVIEW",
|
695
697
|
/** 2024-07-31 Preview API */
|
696
|
-
V2024_07_31Preview = "V2024_07_31_PREVIEW"
|
698
|
+
V2024_07_31Preview = "V2024_07_31_PREVIEW",
|
699
|
+
/** 2024-11-30 GA API */
|
700
|
+
V2024_11_30 = "V2024_11_30"
|
697
701
|
}
|
698
702
|
/** Represents the Azure Document Intelligence preparation properties. */
|
699
703
|
export type AzureDocumentPreparationProperties = {
|
@@ -1516,6 +1520,8 @@ export type ContentCriteria = {
|
|
1516
1520
|
or?: Maybe<Array<ContentCriteriaLevel>>;
|
1517
1521
|
/** Filter by content types. */
|
1518
1522
|
types?: Maybe<Array<ContentTypes>>;
|
1523
|
+
/** Filter by users. Only applies to project scope. */
|
1524
|
+
users?: Maybe<Array<EntityReference>>;
|
1519
1525
|
/** Filter by workflows. */
|
1520
1526
|
workflows?: Maybe<Array<EntityReference>>;
|
1521
1527
|
};
|
@@ -1557,6 +1563,8 @@ export type ContentCriteriaLevel = {
|
|
1557
1563
|
feeds?: Maybe<Array<EntityReference>>;
|
1558
1564
|
/** Filter by observations. */
|
1559
1565
|
observations?: Maybe<Array<ObservationCriteria>>;
|
1566
|
+
/** Filter by users. Only applies to project scope. */
|
1567
|
+
users?: Maybe<Array<EntityReference>>;
|
1560
1568
|
/** Filter by workflows. */
|
1561
1569
|
workflows?: Maybe<Array<EntityReference>>;
|
1562
1570
|
};
|
@@ -1725,6 +1733,8 @@ export type ContentFilter = {
|
|
1725
1733
|
types?: InputMaybe<Array<ContentTypes>>;
|
1726
1734
|
/** The content URI. */
|
1727
1735
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
1736
|
+
/** Filter by users. Only applies to project scope. */
|
1737
|
+
users?: InputMaybe<Array<EntityReferenceFilter>>;
|
1728
1738
|
/** Filter by workflows. */
|
1729
1739
|
workflows?: InputMaybe<Array<EntityReferenceFilter>>;
|
1730
1740
|
};
|
@@ -1736,6 +1746,8 @@ export type ContentFilterLevel = {
|
|
1736
1746
|
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
1737
1747
|
/** Filter by observations. */
|
1738
1748
|
observations?: InputMaybe<Array<ObservationReferenceFilter>>;
|
1749
|
+
/** Filter by users. Only applies to project scope. */
|
1750
|
+
users?: InputMaybe<Array<EntityReferenceFilter>>;
|
1739
1751
|
/** Filter by workflows. */
|
1740
1752
|
workflows?: InputMaybe<Array<EntityReferenceFilter>>;
|
1741
1753
|
};
|
@@ -2370,10 +2382,15 @@ export type DeepseekModelPropertiesUpdateInput = {
|
|
2370
2382
|
export declare enum DeepseekModels {
|
2371
2383
|
/** Deepseek Chat */
|
2372
2384
|
Chat = "CHAT",
|
2373
|
-
/**
|
2385
|
+
/**
|
2386
|
+
* Deepseek Coder
|
2387
|
+
* @deprecated Deepseek Coder has been merged with Deepseek Chat, as of v2.5. Use Deepseek Chat instead.
|
2388
|
+
*/
|
2374
2389
|
Coder = "CODER",
|
2375
2390
|
/** Developer-specified model */
|
2376
|
-
Custom = "CUSTOM"
|
2391
|
+
Custom = "CUSTOM",
|
2392
|
+
/** Deepseek Reasoner */
|
2393
|
+
Reasoner = "REASONER"
|
2377
2394
|
}
|
2378
2395
|
/** Capture device type */
|
2379
2396
|
export declare enum DeviceTypes {
|
@@ -8109,8 +8126,10 @@ export type MutationPromptArgs = {
|
|
8109
8126
|
};
|
8110
8127
|
export type MutationPromptConversationArgs = {
|
8111
8128
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8129
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
8112
8130
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8113
8131
|
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
8132
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
8114
8133
|
prompt: Scalars['String']['input'];
|
8115
8134
|
requireTool?: InputMaybe<Scalars['Boolean']['input']>;
|
8116
8135
|
specification?: InputMaybe<EntityReferenceInput>;
|
@@ -12943,6 +12962,10 @@ export type GetAlertQuery = {
|
|
12943
12962
|
__typename?: 'EntityReference';
|
12944
12963
|
id: string;
|
12945
12964
|
}> | null;
|
12965
|
+
users?: Array<{
|
12966
|
+
__typename?: 'EntityReference';
|
12967
|
+
id: string;
|
12968
|
+
}> | null;
|
12946
12969
|
observations?: Array<{
|
12947
12970
|
__typename?: 'ObservationCriteria';
|
12948
12971
|
type: ObservableTypes;
|
@@ -12966,6 +12989,10 @@ export type GetAlertQuery = {
|
|
12966
12989
|
__typename?: 'EntityReference';
|
12967
12990
|
id: string;
|
12968
12991
|
}> | null;
|
12992
|
+
users?: Array<{
|
12993
|
+
__typename?: 'EntityReference';
|
12994
|
+
id: string;
|
12995
|
+
}> | null;
|
12969
12996
|
observations?: Array<{
|
12970
12997
|
__typename?: 'ObservationCriteria';
|
12971
12998
|
type: ObservableTypes;
|
@@ -12990,6 +13017,10 @@ export type GetAlertQuery = {
|
|
12990
13017
|
__typename?: 'EntityReference';
|
12991
13018
|
id: string;
|
12992
13019
|
}> | null;
|
13020
|
+
users?: Array<{
|
13021
|
+
__typename?: 'EntityReference';
|
13022
|
+
id: string;
|
13023
|
+
}> | null;
|
12993
13024
|
observations?: Array<{
|
12994
13025
|
__typename?: 'ObservationCriteria';
|
12995
13026
|
type: ObservableTypes;
|
@@ -13085,6 +13116,10 @@ export type QueryAlertsQuery = {
|
|
13085
13116
|
__typename?: 'EntityReference';
|
13086
13117
|
id: string;
|
13087
13118
|
}> | null;
|
13119
|
+
users?: Array<{
|
13120
|
+
__typename?: 'EntityReference';
|
13121
|
+
id: string;
|
13122
|
+
}> | null;
|
13088
13123
|
observations?: Array<{
|
13089
13124
|
__typename?: 'ObservationCriteria';
|
13090
13125
|
type: ObservableTypes;
|
@@ -13108,6 +13143,10 @@ export type QueryAlertsQuery = {
|
|
13108
13143
|
__typename?: 'EntityReference';
|
13109
13144
|
id: string;
|
13110
13145
|
}> | null;
|
13146
|
+
users?: Array<{
|
13147
|
+
__typename?: 'EntityReference';
|
13148
|
+
id: string;
|
13149
|
+
}> | null;
|
13111
13150
|
observations?: Array<{
|
13112
13151
|
__typename?: 'ObservationCriteria';
|
13113
13152
|
type: ObservableTypes;
|
@@ -13132,6 +13171,10 @@ export type QueryAlertsQuery = {
|
|
13132
13171
|
__typename?: 'EntityReference';
|
13133
13172
|
id: string;
|
13134
13173
|
}> | null;
|
13174
|
+
users?: Array<{
|
13175
|
+
__typename?: 'EntityReference';
|
13176
|
+
id: string;
|
13177
|
+
}> | null;
|
13135
13178
|
observations?: Array<{
|
13136
13179
|
__typename?: 'ObservationCriteria';
|
13137
13180
|
type: ObservableTypes;
|
@@ -16899,6 +16942,10 @@ export type GetConversationQuery = {
|
|
16899
16942
|
__typename?: 'EntityReference';
|
16900
16943
|
id: string;
|
16901
16944
|
}> | null;
|
16945
|
+
users?: Array<{
|
16946
|
+
__typename?: 'EntityReference';
|
16947
|
+
id: string;
|
16948
|
+
}> | null;
|
16902
16949
|
observations?: Array<{
|
16903
16950
|
__typename?: 'ObservationCriteria';
|
16904
16951
|
type: ObservableTypes;
|
@@ -16922,6 +16969,10 @@ export type GetConversationQuery = {
|
|
16922
16969
|
__typename?: 'EntityReference';
|
16923
16970
|
id: string;
|
16924
16971
|
}> | null;
|
16972
|
+
users?: Array<{
|
16973
|
+
__typename?: 'EntityReference';
|
16974
|
+
id: string;
|
16975
|
+
}> | null;
|
16925
16976
|
observations?: Array<{
|
16926
16977
|
__typename?: 'ObservationCriteria';
|
16927
16978
|
type: ObservableTypes;
|
@@ -16946,6 +16997,10 @@ export type GetConversationQuery = {
|
|
16946
16997
|
__typename?: 'EntityReference';
|
16947
16998
|
id: string;
|
16948
16999
|
}> | null;
|
17000
|
+
users?: Array<{
|
17001
|
+
__typename?: 'EntityReference';
|
17002
|
+
id: string;
|
17003
|
+
}> | null;
|
16949
17004
|
observations?: Array<{
|
16950
17005
|
__typename?: 'ObservationCriteria';
|
16951
17006
|
type: ObservableTypes;
|
@@ -16989,6 +17044,10 @@ export type GetConversationQuery = {
|
|
16989
17044
|
__typename?: 'EntityReference';
|
16990
17045
|
id: string;
|
16991
17046
|
}> | null;
|
17047
|
+
users?: Array<{
|
17048
|
+
__typename?: 'EntityReference';
|
17049
|
+
id: string;
|
17050
|
+
}> | null;
|
16992
17051
|
observations?: Array<{
|
16993
17052
|
__typename?: 'ObservationCriteria';
|
16994
17053
|
type: ObservableTypes;
|
@@ -17012,6 +17071,10 @@ export type GetConversationQuery = {
|
|
17012
17071
|
__typename?: 'EntityReference';
|
17013
17072
|
id: string;
|
17014
17073
|
}> | null;
|
17074
|
+
users?: Array<{
|
17075
|
+
__typename?: 'EntityReference';
|
17076
|
+
id: string;
|
17077
|
+
}> | null;
|
17015
17078
|
observations?: Array<{
|
17016
17079
|
__typename?: 'ObservationCriteria';
|
17017
17080
|
type: ObservableTypes;
|
@@ -17036,6 +17099,10 @@ export type GetConversationQuery = {
|
|
17036
17099
|
__typename?: 'EntityReference';
|
17037
17100
|
id: string;
|
17038
17101
|
}> | null;
|
17102
|
+
users?: Array<{
|
17103
|
+
__typename?: 'EntityReference';
|
17104
|
+
id: string;
|
17105
|
+
}> | null;
|
17039
17106
|
observations?: Array<{
|
17040
17107
|
__typename?: 'ObservationCriteria';
|
17041
17108
|
type: ObservableTypes;
|
@@ -17848,6 +17915,10 @@ export type QueryConversationsQuery = {
|
|
17848
17915
|
__typename?: 'EntityReference';
|
17849
17916
|
id: string;
|
17850
17917
|
}> | null;
|
17918
|
+
users?: Array<{
|
17919
|
+
__typename?: 'EntityReference';
|
17920
|
+
id: string;
|
17921
|
+
}> | null;
|
17851
17922
|
observations?: Array<{
|
17852
17923
|
__typename?: 'ObservationCriteria';
|
17853
17924
|
type: ObservableTypes;
|
@@ -17871,6 +17942,10 @@ export type QueryConversationsQuery = {
|
|
17871
17942
|
__typename?: 'EntityReference';
|
17872
17943
|
id: string;
|
17873
17944
|
}> | null;
|
17945
|
+
users?: Array<{
|
17946
|
+
__typename?: 'EntityReference';
|
17947
|
+
id: string;
|
17948
|
+
}> | null;
|
17874
17949
|
observations?: Array<{
|
17875
17950
|
__typename?: 'ObservationCriteria';
|
17876
17951
|
type: ObservableTypes;
|
@@ -17895,6 +17970,10 @@ export type QueryConversationsQuery = {
|
|
17895
17970
|
__typename?: 'EntityReference';
|
17896
17971
|
id: string;
|
17897
17972
|
}> | null;
|
17973
|
+
users?: Array<{
|
17974
|
+
__typename?: 'EntityReference';
|
17975
|
+
id: string;
|
17976
|
+
}> | null;
|
17898
17977
|
observations?: Array<{
|
17899
17978
|
__typename?: 'ObservationCriteria';
|
17900
17979
|
type: ObservableTypes;
|
@@ -17938,6 +18017,10 @@ export type QueryConversationsQuery = {
|
|
17938
18017
|
__typename?: 'EntityReference';
|
17939
18018
|
id: string;
|
17940
18019
|
}> | null;
|
18020
|
+
users?: Array<{
|
18021
|
+
__typename?: 'EntityReference';
|
18022
|
+
id: string;
|
18023
|
+
}> | null;
|
17941
18024
|
observations?: Array<{
|
17942
18025
|
__typename?: 'ObservationCriteria';
|
17943
18026
|
type: ObservableTypes;
|
@@ -17961,6 +18044,10 @@ export type QueryConversationsQuery = {
|
|
17961
18044
|
__typename?: 'EntityReference';
|
17962
18045
|
id: string;
|
17963
18046
|
}> | null;
|
18047
|
+
users?: Array<{
|
18048
|
+
__typename?: 'EntityReference';
|
18049
|
+
id: string;
|
18050
|
+
}> | null;
|
17964
18051
|
observations?: Array<{
|
17965
18052
|
__typename?: 'ObservationCriteria';
|
17966
18053
|
type: ObservableTypes;
|
@@ -17985,6 +18072,10 @@ export type QueryConversationsQuery = {
|
|
17985
18072
|
__typename?: 'EntityReference';
|
17986
18073
|
id: string;
|
17987
18074
|
}> | null;
|
18075
|
+
users?: Array<{
|
18076
|
+
__typename?: 'EntityReference';
|
18077
|
+
id: string;
|
18078
|
+
}> | null;
|
17988
18079
|
observations?: Array<{
|
17989
18080
|
__typename?: 'ObservationCriteria';
|
17990
18081
|
type: ObservableTypes;
|
@@ -99,6 +99,8 @@ var AzureDocumentIntelligenceModels;
|
|
99
99
|
AzureDocumentIntelligenceModels["UsMortgageDisclosure"] = "US_MORTGAGE_DISCLOSURE";
|
100
100
|
/** Pay Stub (US) */
|
101
101
|
AzureDocumentIntelligenceModels["UsPayStub"] = "US_PAY_STUB";
|
102
|
+
/** Unified Tax Form (US) */
|
103
|
+
AzureDocumentIntelligenceModels["UsTaxForm"] = "US_TAX_FORM";
|
102
104
|
/** 1098 Form (US) */
|
103
105
|
AzureDocumentIntelligenceModels["UsTaxForm1098"] = "US_TAX_FORM1098";
|
104
106
|
/** 1098E Form (US) */
|
@@ -121,6 +123,8 @@ var AzureDocumentIntelligenceVersions;
|
|
121
123
|
AzureDocumentIntelligenceVersions["V2024_02_29Preview"] = "V2024_02_29_PREVIEW";
|
122
124
|
/** 2024-07-31 Preview API */
|
123
125
|
AzureDocumentIntelligenceVersions["V2024_07_31Preview"] = "V2024_07_31_PREVIEW";
|
126
|
+
/** 2024-11-30 GA API */
|
127
|
+
AzureDocumentIntelligenceVersions["V2024_11_30"] = "V2024_11_30";
|
124
128
|
})(AzureDocumentIntelligenceVersions || (exports.AzureDocumentIntelligenceVersions = AzureDocumentIntelligenceVersions = {}));
|
125
129
|
/** Azure OpenAI model type */
|
126
130
|
var AzureOpenAiModels;
|
@@ -380,10 +384,15 @@ var DeepseekModels;
|
|
380
384
|
(function (DeepseekModels) {
|
381
385
|
/** Deepseek Chat */
|
382
386
|
DeepseekModels["Chat"] = "CHAT";
|
383
|
-
/**
|
387
|
+
/**
|
388
|
+
* Deepseek Coder
|
389
|
+
* @deprecated Deepseek Coder has been merged with Deepseek Chat, as of v2.5. Use Deepseek Chat instead.
|
390
|
+
*/
|
384
391
|
DeepseekModels["Coder"] = "CODER";
|
385
392
|
/** Developer-specified model */
|
386
393
|
DeepseekModels["Custom"] = "CUSTOM";
|
394
|
+
/** Deepseek Reasoner */
|
395
|
+
DeepseekModels["Reasoner"] = "REASONER";
|
387
396
|
})(DeepseekModels || (exports.DeepseekModels = DeepseekModels = {}));
|
388
397
|
/** Capture device type */
|
389
398
|
var DeviceTypes;
|