@promptbook/markdown-utils 0.92.0-29 → 0.92.0-30

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.
package/esm/index.es.js CHANGED
@@ -25,7 +25,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
25
25
  * @generated
26
26
  * @see https://github.com/webgptorg/promptbook
27
27
  */
28
- const PROMPTBOOK_ENGINE_VERSION = '0.92.0-29';
28
+ const PROMPTBOOK_ENGINE_VERSION = '0.92.0-30';
29
29
  /**
30
30
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
31
31
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -4282,13 +4282,10 @@ const CsvFormatParser = {
4282
4282
  if (onProgress) {
4283
4283
  // Note: Report the CSV with all rows mapped so far
4284
4284
  /*
4285
- !!!!
4286
- // Report progress with updated value
4287
- const progressData = mappedData.map((row, i) =>
4288
- i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
4289
- );
4290
-
4291
-
4285
+ // TODO: [🛕] Report progress with all the rows including the pending ones
4286
+ const progressData = mappedData.map((row, i) =>
4287
+ i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
4288
+ );
4292
4289
  */
4293
4290
  await onProgress(unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
4294
4291
  }