@promptbook/wizard 0.112.0-96 → 0.112.0-97

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.
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
15
15
  export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
16
16
  /**
17
17
  * Represents the version string of the Promptbook engine.
18
- * It follows semantic versioning (e.g., `0.112.0-94`).
18
+ * It follows semantic versioning (e.g., `0.112.0-96`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/wizard",
3
- "version": "0.112.0-96",
3
+ "version": "0.112.0-97",
4
4
  "description": "Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -99,7 +99,7 @@
99
99
  "types": "./esm/src/_packages/wizard.index.d.ts",
100
100
  "typings": "./esm/src/_packages/wizard.index.d.ts",
101
101
  "peerDependencies": {
102
- "@promptbook/core": "0.112.0-96"
102
+ "@promptbook/core": "0.112.0-97"
103
103
  },
104
104
  "dependencies": {
105
105
  "@ai-sdk/deepseek": "0.1.17",
package/umd/index.umd.js CHANGED
@@ -49,7 +49,7 @@
49
49
  * @generated
50
50
  * @see https://github.com/webgptorg/promptbook
51
51
  */
52
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-96';
52
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-97';
53
53
  /**
54
54
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
55
55
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -16671,7 +16671,7 @@
16671
16671
  > },
16672
16672
  */
16673
16673
  };
16674
- const knowledge = this.markdownScraper.scrape(markdownSource);
16674
+ const knowledge = await this.markdownScraper.scrape(markdownSource);
16675
16675
  await cacheFilehandler.destroy();
16676
16676
  return knowledge;
16677
16677
  }
@@ -16835,7 +16835,7 @@
16835
16835
  > },
16836
16836
  */
16837
16837
  };
16838
- const knowledge = this.documentScraper.scrape(markdownSource);
16838
+ const knowledge = await this.documentScraper.scrape(markdownSource);
16839
16839
  await cacheFilehandler.destroy();
16840
16840
  return knowledge;
16841
16841
  }