graphlit-client 1.0.20250108001 → 1.0.20250114001
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 +111 -1
- package/dist/generated/graphql-types.d.ts +205 -5
- package/dist/generated/graphql-types.js +4 -0
- 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>;
|
@@ -73,7 +73,7 @@ declare class Graphlit {
|
|
73
73
|
reviseEncodedImage(prompt: string, mimeType: string, data: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseEncodedImageMutation>;
|
74
74
|
reviseText(prompt: string, text: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseTextMutation>;
|
75
75
|
reviseContent(prompt: string, content: Types.EntityReferenceInput, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseContentMutation>;
|
76
|
-
prompt(prompt
|
76
|
+
prompt(prompt?: string, mimeType?: string, data?: string, specification?: Types.EntityReferenceInput, messages?: [Types.ConversationMessageInput], correlationId?: string): Promise<Types.PromptMutation>;
|
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>;
|
@@ -84,8 +84,8 @@ declare class Graphlit {
|
|
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>;
|