@promptbook/pdf 0.104.0-17 → 0.104.0-19

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
@@ -24,7 +24,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
24
24
  * @generated
25
25
  * @see https://github.com/webgptorg/promptbook
26
26
  */
27
- const PROMPTBOOK_ENGINE_VERSION = '0.104.0-17';
27
+ const PROMPTBOOK_ENGINE_VERSION = '0.104.0-19';
28
28
  /**
29
29
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
30
30
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -1699,9 +1699,10 @@ function isValidFilePath(filename) {
1699
1699
  *
1700
1700
  * Note: [🔂] This function is idempotent.
1701
1701
  * Note: Dataurl are considered perfectly valid.
1702
- * Note: There are two similar functions:
1703
- * - `isValidUrl` which tests any URL
1704
- * - `isValidPipelineUrl` *(this one)* which tests just promptbook URL
1702
+ * Note: There are few similar functions:
1703
+ * - `isValidUrl` *(this one)* which tests any URL
1704
+ * - `isValidAgentUrl` which tests just agent URL
1705
+ * - `isValidPipelineUrl` which tests just pipeline URL
1705
1706
  *
1706
1707
  * @public exported from `@promptbook/utils`
1707
1708
  */
@@ -2497,8 +2498,9 @@ function isValidPromptbookVersion(version) {
2497
2498
  /**
2498
2499
  * Tests if given string is valid pipeline URL URL.
2499
2500
  *
2500
- * Note: There are two similar functions:
2501
+ * Note: There are few similar functions:
2501
2502
  * - `isValidUrl` which tests any URL
2503
+ * - `isValidAgentUrl` which tests just agent URL
2502
2504
  * - `isValidPipelineUrl` *(this one)* which tests just pipeline URL
2503
2505
  *
2504
2506
  * @public exported from `@promptbook/utils`