@promptbook/markdown-utils 0.103.0-48 → 0.103.0-49
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 +22 -4
- package/esm/index.es.js.map +1 -1
- package/esm/typings/servers.d.ts +1 -0
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +12 -2
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +14 -8
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabaseOptions.d.ts +10 -0
- package/esm/typings/src/commitments/MESSAGE/InitialMessageCommitmentDefinition.d.ts +28 -0
- package/esm/typings/src/commitments/index.d.ts +2 -1
- package/esm/typings/src/config.d.ts +1 -0
- package/esm/typings/src/errors/DatabaseError.d.ts +2 -2
- package/esm/typings/src/errors/WrappedError.d.ts +2 -2
- package/esm/typings/src/execution/ExecutionTask.d.ts +2 -2
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +6 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +2 -2
- package/esm/typings/src/llm-providers/agent/Agent.d.ts +11 -3
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +6 -1
- package/esm/typings/src/llm-providers/agent/RemoteAgent.d.ts +6 -2
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionTools.d.ts +6 -1
- package/esm/typings/src/remote-server/startAgentServer.d.ts +2 -2
- package/esm/typings/src/utils/color/Color.d.ts +7 -0
- package/esm/typings/src/utils/color/Color.test.d.ts +1 -0
- package/esm/typings/src/utils/environment/$getGlobalScope.d.ts +2 -2
- package/esm/typings/src/utils/misc/computeHash.d.ts +11 -0
- package/esm/typings/src/utils/misc/computeHash.test.d.ts +1 -0
- package/esm/typings/src/utils/organization/$sideEffect.d.ts +2 -2
- package/esm/typings/src/utils/organization/$side_effect.d.ts +2 -2
- package/esm/typings/src/utils/organization/TODO_USE.d.ts +2 -2
- package/esm/typings/src/utils/organization/keepUnused.d.ts +2 -2
- package/esm/typings/src/utils/organization/preserve.d.ts +3 -3
- package/esm/typings/src/utils/organization/really_any.d.ts +7 -0
- package/esm/typings/src/utils/serialization/asSerializable.d.ts +2 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +1 -1
- package/umd/index.umd.js +22 -4
- package/umd/index.umd.js.map +1 -1
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-49';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -503,6 +503,9 @@
|
|
|
503
503
|
if (hex.length === 3) {
|
|
504
504
|
return Color.fromHex3(hex);
|
|
505
505
|
}
|
|
506
|
+
if (hex.length === 4) {
|
|
507
|
+
return Color.fromHex4(hex);
|
|
508
|
+
}
|
|
506
509
|
if (hex.length === 6) {
|
|
507
510
|
return Color.fromHex6(hex);
|
|
508
511
|
}
|
|
@@ -523,6 +526,19 @@
|
|
|
523
526
|
const b = parseInt(hex.substr(2, 1), 16) * 16;
|
|
524
527
|
return take(new Color(r, g, b));
|
|
525
528
|
}
|
|
529
|
+
/**
|
|
530
|
+
* Creates a new Color instance from color in hex format with 4 digits (with alpha channel)
|
|
531
|
+
*
|
|
532
|
+
* @param color in hex for example `09df`
|
|
533
|
+
* @returns Color object
|
|
534
|
+
*/
|
|
535
|
+
static fromHex4(hex) {
|
|
536
|
+
const r = parseInt(hex.substr(0, 1), 16) * 16;
|
|
537
|
+
const g = parseInt(hex.substr(1, 1), 16) * 16;
|
|
538
|
+
const b = parseInt(hex.substr(2, 1), 16) * 16;
|
|
539
|
+
const a = parseInt(hex.substr(3, 1), 16) * 16;
|
|
540
|
+
return take(new Color(r, g, b, a));
|
|
541
|
+
}
|
|
526
542
|
/**
|
|
527
543
|
* Creates a new Color instance from color in hex format with 6 color digits (without alpha channel)
|
|
528
544
|
*
|
|
@@ -713,7 +729,8 @@
|
|
|
713
729
|
* @returns true if the value is a valid hex color string (e.g., `#009edd`, `#fff`, etc.)
|
|
714
730
|
*/
|
|
715
731
|
static isHexColorString(value) {
|
|
716
|
-
return typeof value === 'string' &&
|
|
732
|
+
return (typeof value === 'string' &&
|
|
733
|
+
/^#(?:[0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/.test(value));
|
|
717
734
|
}
|
|
718
735
|
/**
|
|
719
736
|
* Creates new Color object
|
|
@@ -1046,6 +1063,7 @@
|
|
|
1046
1063
|
({
|
|
1047
1064
|
TITLE: Color.fromHex('#244EA8'),
|
|
1048
1065
|
LINE: Color.fromHex('#eeeeee'),
|
|
1066
|
+
SEPARATOR: Color.fromHex('#cccccc'),
|
|
1049
1067
|
COMMITMENT: Color.fromHex('#DA0F78'),
|
|
1050
1068
|
PARAMETER: Color.fromHex('#8e44ad'),
|
|
1051
1069
|
});
|
|
@@ -1896,7 +1914,7 @@
|
|
|
1896
1914
|
TODO: [🧠] Is there a better implementation?
|
|
1897
1915
|
> const propertyNames = Object.getOwnPropertyNames(objectValue);
|
|
1898
1916
|
> for (const propertyName of propertyNames) {
|
|
1899
|
-
> const value = (objectValue as
|
|
1917
|
+
> const value = (objectValue as chococake)[propertyName];
|
|
1900
1918
|
> if (value && typeof value === 'object') {
|
|
1901
1919
|
> deepClone(value);
|
|
1902
1920
|
> }
|
|
@@ -2743,7 +2761,7 @@
|
|
|
2743
2761
|
}
|
|
2744
2762
|
}
|
|
2745
2763
|
/**
|
|
2746
|
-
* TODO:
|
|
2764
|
+
* TODO: [🐱🚀] Explain that NotFoundError ([🐱🚀] and other specific errors) has priority over DatabaseError in some contexts
|
|
2747
2765
|
*/
|
|
2748
2766
|
|
|
2749
2767
|
/**
|