Skip to content

Commit a446f17

Browse files
committed
Updated to latest API release
1 parent 7593da6 commit a446f17

9 files changed

+947
-397
lines changed
+114-33
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,127 @@
11
mutation PublishContents($summaryPrompt: String, $publishPrompt: String!, $connector: ContentPublishingConnectorInput!, $filter: ContentFilter, $isSynchronous: Boolean, $correlationId: String, $name: String, $summarySpecification: EntityReferenceInput, $publishSpecification: EntityReferenceInput, $workflow: EntityReferenceInput) {
22
publishContents(summaryPrompt: $summaryPrompt, publishPrompt: $publishPrompt, connector: $connector, filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId, name: $name, summarySpecification: $summarySpecification, publishSpecification: $publishSpecification, workflow: $workflow) {
3-
id
4-
name
5-
state
6-
type
7-
fileType
8-
mimeType
9-
uri
10-
collections {
3+
content {
114
id
125
name
13-
}
14-
observations {
15-
id
6+
state
7+
originalDate
8+
identifier
9+
markdown
10+
uri
1611
type
17-
observable {
18-
id
19-
name
12+
fileType
13+
mimeType
14+
format
15+
formatName
16+
fileExtension
17+
fileName
18+
fileSize
19+
masterUri
20+
imageUri
21+
textUri
22+
audioUri
23+
transcriptUri
24+
summary
25+
customSummary
26+
keywords
27+
bullets
28+
headlines
29+
posts
30+
chapters
31+
questions
32+
video {
33+
width
34+
height
35+
duration
36+
make
37+
model
38+
software
39+
title
40+
description
41+
keywords
42+
author
43+
}
44+
audio {
45+
keywords
46+
author
47+
series
48+
episode
49+
episodeType
50+
season
51+
publisher
52+
copyright
53+
genre
54+
title
55+
description
56+
bitrate
57+
channels
58+
sampleRate
59+
bitsPerSample
60+
duration
2061
}
21-
related {
62+
image {
63+
width
64+
height
65+
resolutionX
66+
resolutionY
67+
bitsPerComponent
68+
components
69+
projectionType
70+
orientation
71+
description
72+
make
73+
model
74+
software
75+
lens
76+
focalLength
77+
exposureTime
78+
fNumber
79+
iso
80+
heading
81+
pitch
82+
}
83+
document {
84+
title
85+
subject
86+
summary
87+
author
88+
publisher
89+
description
90+
keywords
91+
pageCount
92+
worksheetCount
93+
slideCount
94+
wordCount
95+
lineCount
96+
paragraphCount
97+
isEncrypted
98+
hasDigitalSignature
99+
}
100+
}
101+
details {
102+
contents {
22103
id
23-
name
24104
}
25-
relatedType
26-
relation
27-
occurrences {
28-
type
29-
confidence
30-
startTime
31-
endTime
32-
pageIndex
33-
boundingBox {
34-
left
35-
top
36-
width
37-
height
105+
summaries {
106+
index
107+
relevance
108+
chunks {
109+
index
110+
pageIndex
111+
rowIndex
112+
columnIndex
113+
confidence
114+
text
115+
role
116+
relevance
38117
}
39118
}
40-
state
119+
text
120+
textType
121+
summarySpecification
122+
publishSpecification
123+
summaryTime
124+
publishTime
41125
}
42-
textUri
43-
audioUri
44-
markdown
45126
}
46127
}

documents/content/PublishText.graphql

+88-34
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,98 @@ mutation PublishText($text: String!, $textType: TextTypes, $connector: ContentPu
33
id
44
name
55
state
6+
originalDate
7+
identifier
8+
markdown
9+
uri
610
type
711
fileType
812
mimeType
9-
uri
10-
collections {
11-
id
12-
name
13-
}
14-
observations {
15-
id
16-
type
17-
observable {
18-
id
19-
name
20-
}
21-
related {
22-
id
23-
name
24-
}
25-
relatedType
26-
relation
27-
occurrences {
28-
type
29-
confidence
30-
startTime
31-
endTime
32-
pageIndex
33-
boundingBox {
34-
left
35-
top
36-
width
37-
height
38-
}
39-
}
40-
state
41-
}
13+
format
14+
formatName
15+
fileExtension
16+
fileName
17+
fileSize
18+
masterUri
19+
imageUri
4220
textUri
4321
audioUri
44-
markdown
22+
transcriptUri
23+
summary
24+
customSummary
25+
keywords
26+
bullets
27+
headlines
28+
posts
29+
chapters
30+
questions
31+
video {
32+
width
33+
height
34+
duration
35+
make
36+
model
37+
software
38+
title
39+
description
40+
keywords
41+
author
42+
}
43+
audio {
44+
keywords
45+
author
46+
series
47+
episode
48+
episodeType
49+
season
50+
publisher
51+
copyright
52+
genre
53+
title
54+
description
55+
bitrate
56+
channels
57+
sampleRate
58+
bitsPerSample
59+
duration
60+
}
61+
image {
62+
width
63+
height
64+
resolutionX
65+
resolutionY
66+
bitsPerComponent
67+
components
68+
projectionType
69+
orientation
70+
description
71+
make
72+
model
73+
software
74+
lens
75+
focalLength
76+
exposureTime
77+
fNumber
78+
iso
79+
heading
80+
pitch
81+
}
82+
document {
83+
title
84+
subject
85+
summary
86+
author
87+
publisher
88+
description
89+
keywords
90+
pageCount
91+
worksheetCount
92+
slideCount
93+
wordCount
94+
lineCount
95+
paragraphCount
96+
isEncrypted
97+
hasDigitalSignature
98+
}
4599
}
46100
}

0 commit comments

Comments
 (0)