graphlit-client 1.0.20251204001 → 1.0.20251205001
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 +3 -3
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -161,7 +161,7 @@ declare class Graphlit {
|
|
|
161
161
|
publishText(text: string, textType: Types.TextTypes, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishTextMutation>;
|
|
162
162
|
researchContents(connector: Types.ContentPublishingConnectorInput, filter?: Types.ContentFilter, name?: string, summarySpecification?: Types.EntityReferenceInput, publishSpecification?: Types.EntityReferenceInput, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ResearchContentsMutation>;
|
|
163
163
|
getContent(id: string): Promise<Types.GetContentQuery>;
|
|
164
|
-
lookupContents(ids: string[]): Promise<Types.
|
|
164
|
+
lookupContents(ids: string[]): Promise<Types.LookupContentsQuery>;
|
|
165
165
|
queryObservables(filter?: Types.ContentFilter): Promise<Types.QueryObservablesQuery>;
|
|
166
166
|
queryContents(filter?: Types.ContentFilter): Promise<Types.QueryContentsQuery>;
|
|
167
167
|
queryContentsObservations(filter?: Types.ContentFilter): Promise<Types.QueryContentsObservationsQuery>;
|
|
@@ -220,7 +220,7 @@ declare class Graphlit {
|
|
|
220
220
|
deleteAllFeeds(filter?: Types.FeedFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllFeedsMutation>;
|
|
221
221
|
triggerFeed(id: string): Promise<Types.TriggerFeedMutation>;
|
|
222
222
|
enableFeed(id: string): Promise<Types.EnableFeedMutation>;
|
|
223
|
-
disableFeed(id: string): Promise<Types.
|
|
223
|
+
disableFeed(id: string): Promise<Types.DisableFeedMutation>;
|
|
224
224
|
getFeed(id: string): Promise<Types.GetFeedQuery>;
|
|
225
225
|
queryFeeds(filter?: Types.FeedFilter): Promise<Types.QueryFeedsQuery>;
|
|
226
226
|
countFeeds(filter?: Types.FeedFilter): Promise<Types.CountFeedsQuery>;
|
|
@@ -272,7 +272,7 @@ declare class Graphlit {
|
|
|
272
272
|
queryUsers(filter?: Types.UserFilter): Promise<Types.QueryUsersQuery>;
|
|
273
273
|
countUsers(filter?: Types.UserFilter): Promise<Types.CountUsersQuery>;
|
|
274
274
|
enableUser(id: string): Promise<Types.EnableUserMutation>;
|
|
275
|
-
disableUser(id: string): Promise<Types.
|
|
275
|
+
disableUser(id: string): Promise<Types.DisableUserMutation>;
|
|
276
276
|
createCategory(category: Types.CategoryInput): Promise<Types.CreateCategoryMutation>;
|
|
277
277
|
updateCategory(category: Types.CategoryUpdateInput): Promise<Types.UpdateCategoryMutation>;
|
|
278
278
|
upsertCategory(category: Types.CategoryInput): Promise<Types.UpsertCategoryMutation>;
|