You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** A list of ID values that represent the table row headers that are associated with this body cell. */
5676
+
row_header_ids?: string[];
5677
+
/** A list of row header values that are associated with this body cell. */
5678
+
row_header_texts?: string[];
5679
+
/** A list of normalized row header values that are associated with this body cell. */
5680
+
row_header_texts_normalized?: string[];
5681
+
/** A list of ID values that represent the column headers that are associated with this body cell. */
5682
+
column_header_ids?: string[];
5683
+
/** A list of column header values that are associated with this body cell. */
5684
+
column_header_texts?: string[];
5685
+
/** A list of normalized column header values that are associated with this body cell. */
5686
+
column_header_texts_normalized?: string[];
5687
5687
/** A list of document attributes. */
5688
5688
attributes?: DocumentAttribute[];
5689
5689
}
@@ -5712,37 +5712,17 @@ namespace DiscoveryV2 {
5712
5712
text?: string;
5713
5713
}
5714
5714
5715
-
/** An array of values, each being the `id` value of a column header that is applicable to the current cell. */
5716
-
exportinterfaceTableColumnHeaderIds{
5717
-
/** The `id` value of a column header. */
5718
-
id?: string;
5719
-
}
5720
-
5721
-
/** An array of values, each being the `text` value of a column header that is applicable to the current cell. */
5722
-
exportinterfaceTableColumnHeaderTexts{
5723
-
/** The `text` value of a column header. */
5724
-
text?: string;
5725
-
}
5726
-
5727
-
/** If you provide customization input, the normalized version of the column header texts according to the customization; otherwise, the same value as `column_header_texts`. */
5728
-
exportinterfaceTableColumnHeaderTextsNormalized{
5729
-
/** The normalized version of a column header text. */
5730
-
text_normalized?: string;
5731
-
}
5732
-
5733
5715
/** Column-level cells, each applicable as a header to other cells in the same column as itself, of the current table. */
5734
5716
exportinterfaceTableColumnHeaders{
5735
5717
/** The unique ID of the cell in the current table. */
5736
5718
cell_id?: string;
5737
-
/** The location of the column header cell in the current table as defined by its `begin` and `end` offsets,
5738
-
* respectfully, in the input document.
5719
+
/** The numeric location of the identified element in the document, represented with two integers labeled
5720
+
* `begin` and `end`.
5739
5721
*/
5740
-
location?: JsonObject;
5722
+
location?: TableElementLocation;
5741
5723
/** The textual contents of this cell from the input document without associated markup content. */
5742
5724
text?: string;
5743
-
/** If you provide customization input, the normalized version of the cell text according to the customization;
5744
-
* otherwise, the same value as `text`.
5745
-
*/
5725
+
/** Normalized column header text. */
5746
5726
text_normalized?: string;
5747
5727
/** The `begin` index of this cell's `row` location in the current table. */
5748
5728
row_index_begin?: number;
@@ -5766,10 +5746,10 @@ namespace DiscoveryV2 {
5766
5746
exportinterfaceTableHeaders{
5767
5747
/** The unique ID of the cell in the current table. */
5768
5748
cell_id?: string;
5769
-
/** The location of the table header cell in the current table as defined by its `begin` and `end` offsets,
5770
-
* respectfully, in the input document.
5749
+
/** The numeric location of the identified element in the document, represented with two integers labeled
5750
+
* `begin` and `end`.
5771
5751
*/
5772
-
location?: JsonObject;
5752
+
location?: TableElementLocation;
5773
5753
/** The textual contents of the cell from the input document without associated markup content. */
5774
5754
text?: string;
5775
5755
/** The `begin` index of this cell's `row` location in the current table. */
@@ -5822,24 +5802,6 @@ namespace DiscoveryV2 {
5822
5802
contexts?: TableTextLocation[];
5823
5803
}
5824
5804
5825
-
/** An array of values, each being the `id` value of a row header that is applicable to this body cell. */
5826
-
exportinterfaceTableRowHeaderIds{
5827
-
/** The `id` values of a row header. */
5828
-
id?: string;
5829
-
}
5830
-
5831
-
/** An array of values, each being the `text` value of a row header that is applicable to this body cell. */
5832
-
exportinterfaceTableRowHeaderTexts{
5833
-
/** The `text` value of a row header. */
5834
-
text?: string;
5835
-
}
5836
-
5837
-
/** If you provide customization input, the normalized version of the row header texts according to the customization; otherwise, the same value as `row_header_texts`. */
5838
-
exportinterfaceTableRowHeaderTextsNormalized{
5839
-
/** The normalized version of a row header text. */
5840
-
text_normalized?: string;
5841
-
}
5842
-
5843
5805
/** Row-level cells, each applicable as a header to other cells in the same row as itself, of the current table. */
5844
5806
exportinterfaceTableRowHeaders{
5845
5807
/** The unique ID of the cell in the current table. */
@@ -5850,9 +5812,7 @@ namespace DiscoveryV2 {
5850
5812
location?: TableElementLocation;
5851
5813
/** The textual contents of this cell from the input document without associated markup content. */
5852
5814
text?: string;
5853
-
/** If you provide customization input, the normalized version of the cell text according to the customization;
5854
-
* otherwise, the same value as `text`.
5855
-
*/
5815
+
/** Normalized row header text. */
5856
5816
text_normalized?: string;
5857
5817
/** The `begin` index of this cell's `row` location in the current table. */
0 commit comments