@promptbook/wizard 0.105.0-5 → 0.105.0-6

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.
@@ -29,6 +29,7 @@ import { CountUtils } from '../utils/expectation-counters/index';
29
29
  import { $getCurrentDate } from '../utils/misc/$getCurrentDate';
30
30
  import { computeHash } from '../utils/misc/computeHash';
31
31
  import { debounce } from '../utils/misc/debounce';
32
+ import { linguisticHash } from '../utils/misc/linguisticHash';
32
33
  import { parseNumber } from '../utils/misc/parseNumber';
33
34
  import { capitalize } from '../utils/normalization/capitalize';
34
35
  import { decapitalize } from '../utils/normalization/decapitalize';
@@ -118,6 +119,7 @@ export { CountUtils };
118
119
  export { $getCurrentDate };
119
120
  export { computeHash };
120
121
  export { debounce };
122
+ export { linguisticHash };
121
123
  export { parseNumber };
122
124
  export { capitalize };
123
125
  export { decapitalize };
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Creates human-readable hash
3
+ *
4
+ * @public exported from `@promptbook/utils`
5
+ */
6
+ export declare function linguisticHash(input: string): Promise<string>;
@@ -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.105.0-4`).
18
+ * It follows semantic versioning (e.g., `0.105.0-5`).
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.105.0-5",
3
+ "version": "0.105.0-6",
4
4
  "description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -95,7 +95,7 @@
95
95
  "module": "./esm/index.es.js",
96
96
  "typings": "./esm/typings/src/_packages/wizard.index.d.ts",
97
97
  "peerDependencies": {
98
- "@promptbook/core": "0.105.0-5"
98
+ "@promptbook/core": "0.105.0-6"
99
99
  },
100
100
  "dependencies": {
101
101
  "@ai-sdk/deepseek": "0.1.17",
package/umd/index.umd.js CHANGED
@@ -48,7 +48,7 @@
48
48
  * @generated
49
49
  * @see https://github.com/webgptorg/promptbook
50
50
  */
51
- const PROMPTBOOK_ENGINE_VERSION = '0.105.0-5';
51
+ const PROMPTBOOK_ENGINE_VERSION = '0.105.0-6';
52
52
  /**
53
53
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
54
54
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -7505,6 +7505,17 @@
7505
7505
  * TODO: [🥬][🥬] Use this ACRY
7506
7506
  */
7507
7507
 
7508
+ /**
7509
+ * Makes first letter of a string uppercase
7510
+ *
7511
+ * Note: [🔂] This function is idempotent.
7512
+ *
7513
+ * @public exported from `@promptbook/utils`
7514
+ */
7515
+ function capitalize(word) {
7516
+ return word.substring(0, 1).toUpperCase() + word.substring(1);
7517
+ }
7518
+
7508
7519
  /**
7509
7520
  * Function parseNumber will parse number from string
7510
7521
  *
@@ -7577,17 +7588,6 @@
7577
7588
  * TODO: [🧠][🌻] Maybe export through `@promptbook/markdown-utils` not `@promptbook/utils`
7578
7589
  */
7579
7590
 
7580
- /**
7581
- * Makes first letter of a string uppercase
7582
- *
7583
- * Note: [🔂] This function is idempotent.
7584
- *
7585
- * @public exported from `@promptbook/utils`
7586
- */
7587
- function capitalize(word) {
7588
- return word.substring(0, 1).toUpperCase() + word.substring(1);
7589
- }
7590
-
7591
7591
  /**
7592
7592
  * Makes first letter of a string lowercase
7593
7593
  *