graphlit-client 1.0.20240424002 → 1.0.20240425001
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.
@@ -696,6 +696,25 @@ exports.QueryContents = (0, graphql_tag_1.default) `
|
|
696
696
|
textUri
|
697
697
|
audioUri
|
698
698
|
transcriptUri
|
699
|
+
pages {
|
700
|
+
index
|
701
|
+
chunks {
|
702
|
+
index
|
703
|
+
pageIndex
|
704
|
+
rowIndex
|
705
|
+
columnIndex
|
706
|
+
confidence
|
707
|
+
text
|
708
|
+
role
|
709
|
+
relevance
|
710
|
+
}
|
711
|
+
}
|
712
|
+
segments {
|
713
|
+
startTime
|
714
|
+
endTime
|
715
|
+
text
|
716
|
+
relevance
|
717
|
+
}
|
699
718
|
video {
|
700
719
|
width
|
701
720
|
height
|
@@ -8413,6 +8413,28 @@ export type QueryContentsQuery = {
|
|
8413
8413
|
__typename?: 'Owner';
|
8414
8414
|
id: string;
|
8415
8415
|
};
|
8416
|
+
pages?: Array<{
|
8417
|
+
__typename?: 'TextPage';
|
8418
|
+
index?: number | null;
|
8419
|
+
chunks?: Array<{
|
8420
|
+
__typename?: 'TextChunk';
|
8421
|
+
index?: number | null;
|
8422
|
+
pageIndex?: number | null;
|
8423
|
+
rowIndex?: number | null;
|
8424
|
+
columnIndex?: number | null;
|
8425
|
+
confidence?: number | null;
|
8426
|
+
text?: string | null;
|
8427
|
+
role?: TextRoles | null;
|
8428
|
+
relevance?: number | null;
|
8429
|
+
} | null> | null;
|
8430
|
+
}> | null;
|
8431
|
+
segments?: Array<{
|
8432
|
+
__typename?: 'TextSegment';
|
8433
|
+
startTime?: any | null;
|
8434
|
+
endTime?: any | null;
|
8435
|
+
text?: string | null;
|
8436
|
+
relevance?: number | null;
|
8437
|
+
}> | null;
|
8416
8438
|
video?: {
|
8417
8439
|
__typename?: 'VideoMetadata';
|
8418
8440
|
width?: number | null;
|