@promptbook/legacy-documents 0.104.0 → 0.105.0-1

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/README.md CHANGED
@@ -27,6 +27,10 @@ Turn your company's scattered knowledge into AI ready Books
27
27
 
28
28
 
29
29
 
30
+ <blockquote style="color: #ff8811">
31
+ <b>⚠ Warning:</b> This is a pre-release version of the library. It is not yet ready for production use. Please look at <a href="https://www.npmjs.com/package/@promptbook/core?activeTab=versions">latest stable release</a>.
32
+ </blockquote>
33
+
30
34
  ## 📦 Package `@promptbook/legacy-documents`
31
35
 
32
36
  - Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
package/esm/index.es.js CHANGED
@@ -26,7 +26,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
26
26
  * @generated
27
27
  * @see https://github.com/webgptorg/promptbook
28
28
  */
29
- const PROMPTBOOK_ENGINE_VERSION = '0.104.0';
29
+ const PROMPTBOOK_ENGINE_VERSION = '0.105.0-1';
30
30
  /**
31
31
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
32
32
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -3586,7 +3586,7 @@ function jsonStringsToJsons(object) {
3586
3586
  *
3587
3587
  * @public exported from `@promptbook/utils`
3588
3588
  */
3589
- function deserializeError(error) {
3589
+ function deserializeError(error, isStackAddedToMessage = true) {
3590
3590
  const { name, stack, id } = error; // Added id
3591
3591
  let { message } = error;
3592
3592
  let ErrorClass = ALL_ERRORS[error.name];
@@ -3594,7 +3594,7 @@ function deserializeError(error) {
3594
3594
  ErrorClass = Error;
3595
3595
  message = `${name}: ${message}`;
3596
3596
  }
3597
- if (stack !== undefined && stack !== '') {
3597
+ if (isStackAddedToMessage && stack !== undefined && stack !== '') {
3598
3598
  message = spaceTrim$2((block) => `
3599
3599
  ${block(message)}
3600
3600