@promptbook/remote-client 0.103.0-44 → 0.103.0-46

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
@@ -20,7 +20,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
20
20
  * @generated
21
21
  * @see https://github.com/webgptorg/promptbook
22
22
  */
23
- const PROMPTBOOK_ENGINE_VERSION = '0.103.0-44';
23
+ const PROMPTBOOK_ENGINE_VERSION = '0.103.0-46';
24
24
  /**
25
25
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
26
26
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -3483,6 +3483,8 @@ function removeQuotes(text) {
3483
3483
  * Function `validateParameterName` will normalize and validate a parameter name for use in pipelines.
3484
3484
  * It removes diacritics, emojis, and quotes, normalizes to camelCase, and checks for reserved names and invalid characters.
3485
3485
  *
3486
+ * Note: [🔂] This function is idempotent.
3487
+ *
3486
3488
  * @param parameterName The parameter name to validate and normalize.
3487
3489
  * @returns The validated and normalized parameter name.
3488
3490
  * @throws {ParseError} If the parameter name is empty, reserved, or contains invalid characters.
@@ -5497,6 +5499,8 @@ function isValidEmail(email) {
5497
5499
  * Function `validatePipelineString` will validate the if the string is a valid pipeline string
5498
5500
  * It does not check if the string is fully logically correct, but if it is a string that can be a pipeline string or the string looks completely different.
5499
5501
  *
5502
+ * Note: [🔂] This function is idempotent.
5503
+ *
5500
5504
  * @param {string} pipelineString the candidate for a pipeline string
5501
5505
  * @returns {PipelineString} the same string as input, but validated as valid
5502
5506
  * @throws {ParseError} if the string is not a valid pipeline string
@@ -5539,6 +5543,8 @@ const PADDING_LINES = 11;
5539
5543
  /**
5540
5544
  * A function that adds padding to the book content
5541
5545
  *
5546
+ * Note: [🔂] This function is idempotent.
5547
+ *
5542
5548
  * @public exported from `@promptbook/core`
5543
5549
  */
5544
5550
  function padBook(content) {