@promptbook/remote-client 0.35.0 → 0.35.1
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/typings/utils/markdown/addAutoGeneratedSection.d.ts +10 -0
- package/esm/typings/utils/markdown/addAutoGeneratedSection.test.d.ts +1 -0
- package/esm/typings/utils/markdown/createMarkdownChart.d.ts +4 -0
- package/package.json +2 -2
- package/umd/typings/utils/markdown/addAutoGeneratedSection.d.ts +10 -0
- package/umd/typings/utils/markdown/addAutoGeneratedSection.test.d.ts +1 -0
- package/umd/typings/utils/markdown/createMarkdownChart.d.ts +4 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { string_markdown, string_name } from '../../types/typeAliases';
|
|
2
|
+
/**
|
|
3
|
+
* Add or modify an auto-generated section in a markdown file
|
|
4
|
+
*
|
|
5
|
+
* @private within the library
|
|
6
|
+
*/
|
|
7
|
+
export declare function addAutoGeneratedSection(content: string_markdown, options: {
|
|
8
|
+
sectionName: string_name;
|
|
9
|
+
sectionContent: string_markdown;
|
|
10
|
+
}): string_markdown;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -35,3 +35,7 @@ type CreateMarkdownChartOptions = {
|
|
|
35
35
|
*/
|
|
36
36
|
export declare function createMarkdownChart(options: CreateMarkdownChartOptions): string_markdown;
|
|
37
37
|
export {};
|
|
38
|
+
/**
|
|
39
|
+
* TODO: Maybe use Mermain Gant Diagrams
|
|
40
|
+
* @see https://jojozhuang.github.io/tutorial/mermaid-cheat-sheet/
|
|
41
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-client",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.1",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"socket.io-client": "4.7.2"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@promptbook/core": "0.35.
|
|
40
|
+
"@promptbook/core": "0.35.1"
|
|
41
41
|
},
|
|
42
42
|
"main": "./umd/index.umd.js",
|
|
43
43
|
"module": "./esm/index.es.js",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { string_markdown, string_name } from '../../types/typeAliases';
|
|
2
|
+
/**
|
|
3
|
+
* Add or modify an auto-generated section in a markdown file
|
|
4
|
+
*
|
|
5
|
+
* @private within the library
|
|
6
|
+
*/
|
|
7
|
+
export declare function addAutoGeneratedSection(content: string_markdown, options: {
|
|
8
|
+
sectionName: string_name;
|
|
9
|
+
sectionContent: string_markdown;
|
|
10
|
+
}): string_markdown;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -35,3 +35,7 @@ type CreateMarkdownChartOptions = {
|
|
|
35
35
|
*/
|
|
36
36
|
export declare function createMarkdownChart(options: CreateMarkdownChartOptions): string_markdown;
|
|
37
37
|
export {};
|
|
38
|
+
/**
|
|
39
|
+
* TODO: Maybe use Mermain Gant Diagrams
|
|
40
|
+
* @see https://jojozhuang.github.io/tutorial/mermaid-cheat-sheet/
|
|
41
|
+
*/
|