@@ -83,9 +83,6 @@ export class DataClient {
8383 return resp . rawData . map ( ( value ) => BSON . deserialize ( value ) ) ;
8484 }
8585
86-
87-
88-
8986 /**
9087 * Filter and get a page of tabular data. The returned metadata might be empty
9188 * if the metadata index of the data is out of the bounds of the returned
@@ -691,16 +688,18 @@ export class DataClient {
691688 return filter ;
692689 }
693690
694-
695-
696691 /**
697- * Gets the most recent tabular data captured from the specified data source, as long as it was synced within the last year.
698- *
692+ * Gets the most recent tabular data captured from the specified data source,
693+ * as long as it was synced within the last year.
694+ *
699695 * @param partId The ID of the part that owns the data
700- * @param resourceName The name of the requested resource that captured the data
701- * @param resourceSubtype The subtype of the requested resource that captured the data
696+ * @param resourceName The name of the requested resource that captured the
697+ * data
698+ * @param resourceSubtype The subtype of the requested resource that captured
699+ * the data
702700 * @param methodName The data capture method name
703- * @returns A tuple containing [timeCaptured, timeSynced, payload] or null if no data has been synced
701+ * @returns A tuple containing [timeCaptured, timeSynced, payload] or null if
702+ * no data has been synced
704703 */
705704 async getLatestTabularData (
706705 partId : string ,
@@ -718,7 +717,6 @@ export class DataClient {
718717 if ( ! resp . payload ) {
719718 return null ;
720719 }
721-
722720
723721 return [
724722 resp . timeCaptured ?. toDate ( ) ,
0 commit comments