@promptbook/remote-server 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 +3 -3
- 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
|
@@ -89,7 +89,7 @@ var PromptbookExecutionError = /** @class */ (function (_super) {
|
|
|
89
89
|
/**
|
|
90
90
|
* The version of the Promptbook library
|
|
91
91
|
*/
|
|
92
|
-
var PROMPTBOOK_VERSION = '0.44.0-
|
|
92
|
+
var PROMPTBOOK_VERSION = '0.44.0-16';
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
95
|
* Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
|
|
@@ -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/remote-server",
|
|
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,
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"colors": "1.4.0",
|
|
38
38
|
"socket.io": "4.7.2",
|
|
39
|
-
"spacetrim": "0.11.
|
|
39
|
+
"spacetrim": "0.11.20"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@promptbook/core": "0.44.0-
|
|
42
|
+
"@promptbook/core": "0.44.0-17"
|
|
43
43
|
},
|
|
44
44
|
"main": "./umd/index.umd.js",
|
|
45
45
|
"module": "./esm/index.es.js",
|
package/umd/index.umd.js
CHANGED
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
/**
|
|
96
96
|
* The version of the Promptbook library
|
|
97
97
|
*/
|
|
98
|
-
var PROMPTBOOK_VERSION = '0.44.0-
|
|
98
|
+
var PROMPTBOOK_VERSION = '0.44.0-16';
|
|
99
99
|
|
|
100
100
|
/**
|
|
101
101
|
* Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
|
|
@@ -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
|
*/
|