@promptbook/core 0.44.0-15 → 0.44.0-17
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 +1 -1
- package/esm/typings/_packages/utils.index.d.ts +2 -1
- package/esm/typings/execution/plugins/script-execution-tools/javascript/utils/unknownToString.d.ts +7 -0
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
- package/umd/typings/_packages/utils.index.d.ts +2 -1
- package/umd/typings/execution/plugins/script-execution-tools/javascript/utils/unknownToString.d.ts +7 -0
package/esm/index.es.js
CHANGED
|
@@ -1161,7 +1161,7 @@ function parsingMarkdownStructureToMarkdownStructure(parsingMarkdownStructure) {
|
|
|
1161
1161
|
/**
|
|
1162
1162
|
* The version of the Promptbook library
|
|
1163
1163
|
*/
|
|
1164
|
-
var PROMPTBOOK_VERSION = '0.44.0-
|
|
1164
|
+
var PROMPTBOOK_VERSION = '0.44.0-16';
|
|
1165
1165
|
|
|
1166
1166
|
/**
|
|
1167
1167
|
* Parses the given script and returns the list of all used variables that are not defined in the script
|
|
@@ -50,11 +50,12 @@ export { splitIntoSentences };
|
|
|
50
50
|
export declare const normalizeTo: {
|
|
51
51
|
camelCase: typeof normalizeTo_camelCase;
|
|
52
52
|
PascalCase: typeof normalizeTo_PascalCase;
|
|
53
|
-
|
|
53
|
+
SCREAMING_CASE: typeof normalizeTo_SCREAMING_CASE;
|
|
54
54
|
snake_case: typeof normalizeTo_snake_case;
|
|
55
55
|
'kebab-case': typeof normalizeToKebabCase;
|
|
56
56
|
};
|
|
57
57
|
export { capitalize, decapitalize, DIACRITIC_VARIANTS_LETTERS, IKeywords, isValidKeyword, nameToUriPart, nameToUriParts, normalizeTo_camelCase, normalizeTo_PascalCase, normalizeTo_SCREAMING_CASE, normalizeTo_snake_case, normalizeToKebabCase, normalizeWhitespaces, parseKeywords, parseKeywordsFromString, removeDiacritics, searchKeywords, string_keyword, };
|
|
58
58
|
/**
|
|
59
59
|
* TODO: [🧠] Maybe create some indipendent package like `markdown-tools` from both here exported and @private utilities
|
|
60
|
+
* Note: [🕙] It does not make sence to have simple lower / UPPER case normalization
|
|
60
61
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/core",
|
|
3
|
-
"version": "0.44.0-
|
|
3
|
+
"version": "0.44.0-17",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"homepage": "https://www.npmjs.com/package/@promptbook/core",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"lorem-ipsum": "^2.0.8",
|
|
38
|
-
"spacetrim": "0.11.
|
|
38
|
+
"spacetrim": "0.11.20"
|
|
39
39
|
},
|
|
40
40
|
"main": "./umd/index.umd.js",
|
|
41
41
|
"module": "./esm/index.es.js",
|
package/umd/index.umd.js
CHANGED
|
@@ -1161,7 +1161,7 @@
|
|
|
1161
1161
|
/**
|
|
1162
1162
|
* The version of the Promptbook library
|
|
1163
1163
|
*/
|
|
1164
|
-
var PROMPTBOOK_VERSION = '0.44.0-
|
|
1164
|
+
var PROMPTBOOK_VERSION = '0.44.0-16';
|
|
1165
1165
|
|
|
1166
1166
|
/**
|
|
1167
1167
|
* Parses the given script and returns the list of all used variables that are not defined in the script
|
|
@@ -50,11 +50,12 @@ export { splitIntoSentences };
|
|
|
50
50
|
export declare const normalizeTo: {
|
|
51
51
|
camelCase: typeof normalizeTo_camelCase;
|
|
52
52
|
PascalCase: typeof normalizeTo_PascalCase;
|
|
53
|
-
|
|
53
|
+
SCREAMING_CASE: typeof normalizeTo_SCREAMING_CASE;
|
|
54
54
|
snake_case: typeof normalizeTo_snake_case;
|
|
55
55
|
'kebab-case': typeof normalizeToKebabCase;
|
|
56
56
|
};
|
|
57
57
|
export { capitalize, decapitalize, DIACRITIC_VARIANTS_LETTERS, IKeywords, isValidKeyword, nameToUriPart, nameToUriParts, normalizeTo_camelCase, normalizeTo_PascalCase, normalizeTo_SCREAMING_CASE, normalizeTo_snake_case, normalizeToKebabCase, normalizeWhitespaces, parseKeywords, parseKeywordsFromString, removeDiacritics, searchKeywords, string_keyword, };
|
|
58
58
|
/**
|
|
59
59
|
* TODO: [🧠] Maybe create some indipendent package like `markdown-tools` from both here exported and @private utilities
|
|
60
|
+
* Note: [🕙] It does not make sence to have simple lower / UPPER case normalization
|
|
60
61
|
*/
|