graphlit-client 1.0.20240424001 → 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.
@@ -369,6 +369,7 @@ exports.GetContent = (0, graphql_tag_1.default) `
|
|
369
369
|
content(id: $id) {
|
370
370
|
id
|
371
371
|
name
|
372
|
+
description
|
372
373
|
creationDate
|
373
374
|
owner {
|
374
375
|
id
|
@@ -695,6 +696,25 @@ exports.QueryContents = (0, graphql_tag_1.default) `
|
|
695
696
|
textUri
|
696
697
|
audioUri
|
697
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
|
+
}
|
698
718
|
video {
|
699
719
|
width
|
700
720
|
height
|
@@ -8043,6 +8043,7 @@ export type GetContentQuery = {
|
|
8043
8043
|
__typename?: 'Content';
|
8044
8044
|
id: string;
|
8045
8045
|
name: string;
|
8046
|
+
description?: string | null;
|
8046
8047
|
creationDate: any;
|
8047
8048
|
state: EntityState;
|
8048
8049
|
originalDate?: any | null;
|
@@ -8412,6 +8413,28 @@ export type QueryContentsQuery = {
|
|
8412
8413
|
__typename?: 'Owner';
|
8413
8414
|
id: string;
|
8414
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;
|
8415
8438
|
video?: {
|
8416
8439
|
__typename?: 'VideoMetadata';
|
8417
8440
|
width?: number | null;
|