graphlit-client 1.0.20241228002 → 1.0.20241229001
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.
@@ -1367,12 +1367,13 @@ exports.IsContentDone = (0, graphql_tag_1.default) `
|
|
1367
1367
|
}
|
1368
1368
|
`;
|
1369
1369
|
exports.PublishContents = (0, graphql_tag_1.default) `
|
1370
|
-
mutation PublishContents($summaryPrompt: String, $publishPrompt: String!, $connector: ContentPublishingConnectorInput!, $filter: ContentFilter, $isSynchronous: Boolean, $correlationId: String, $name: String, $summarySpecification: EntityReferenceInput, $publishSpecification: EntityReferenceInput, $workflow: EntityReferenceInput) {
|
1370
|
+
mutation PublishContents($summaryPrompt: String, $publishPrompt: String!, $connector: ContentPublishingConnectorInput!, $filter: ContentFilter, $includeDetails: Boolean, $isSynchronous: Boolean, $correlationId: String, $name: String, $summarySpecification: EntityReferenceInput, $publishSpecification: EntityReferenceInput, $workflow: EntityReferenceInput) {
|
1371
1371
|
publishContents(
|
1372
1372
|
summaryPrompt: $summaryPrompt
|
1373
1373
|
publishPrompt: $publishPrompt
|
1374
1374
|
connector: $connector
|
1375
1375
|
filter: $filter
|
1376
|
+
includeDetails: $includeDetails
|
1376
1377
|
isSynchronous: $isSynchronous
|
1377
1378
|
correlationId: $correlationId
|
1378
1379
|
name: $name
|
@@ -13979,6 +13979,7 @@ export type PublishContentsMutationVariables = Exact<{
|
|
13979
13979
|
publishPrompt: Scalars['String']['input'];
|
13980
13980
|
connector: ContentPublishingConnectorInput;
|
13981
13981
|
filter?: InputMaybe<ContentFilter>;
|
13982
|
+
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
13982
13983
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
13983
13984
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
13984
13985
|
name?: InputMaybe<Scalars['String']['input']>;
|