@promptbook/remote-client 0.66.0-9 → 0.66.0
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
CHANGED
|
@@ -4,7 +4,7 @@ import { io } from 'socket.io-client';
|
|
|
4
4
|
/**
|
|
5
5
|
* The version of the Promptbook library
|
|
6
6
|
*/
|
|
7
|
-
var PROMPTBOOK_VERSION = '0.66.0-
|
|
7
|
+
var PROMPTBOOK_VERSION = '0.66.0-9';
|
|
8
8
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
9
9
|
|
|
10
10
|
/*! *****************************************************************************
|
|
@@ -17,6 +17,7 @@ import { PIPELINE_COLLECTION_BASE_FILENAME } from '../config';
|
|
|
17
17
|
import { RESERVED_PARAMETER_NAMES } from '../config';
|
|
18
18
|
import { DEFAULT_REMOTE_URL } from '../config';
|
|
19
19
|
import { DEFAULT_REMOTE_URL_PATH } from '../config';
|
|
20
|
+
import { IS_VERBOSE } from '../config';
|
|
20
21
|
import { pipelineJsonToString } from '../conversion/pipelineJsonToString';
|
|
21
22
|
import type { PipelineStringToJsonOptions } from '../conversion/pipelineStringToJson';
|
|
22
23
|
import { pipelineStringToJson } from '../conversion/pipelineStringToJson';
|
|
@@ -88,6 +89,7 @@ export { PIPELINE_COLLECTION_BASE_FILENAME };
|
|
|
88
89
|
export { RESERVED_PARAMETER_NAMES };
|
|
89
90
|
export { DEFAULT_REMOTE_URL };
|
|
90
91
|
export { DEFAULT_REMOTE_URL_PATH };
|
|
92
|
+
export { IS_VERBOSE };
|
|
91
93
|
export { pipelineJsonToString };
|
|
92
94
|
export type { PipelineStringToJsonOptions };
|
|
93
95
|
export { pipelineStringToJson };
|
|
@@ -119,6 +119,12 @@ export declare const DEFAULT_REMOTE_URL = "https://api.pavolhejny.com/";
|
|
|
119
119
|
* @public exported from `@promptbook/core`
|
|
120
120
|
*/
|
|
121
121
|
export declare const DEFAULT_REMOTE_URL_PATH = "/promptbook/socket.io";
|
|
122
|
+
/**
|
|
123
|
+
* @@@
|
|
124
|
+
*
|
|
125
|
+
* @public exported from `@promptbook/core`
|
|
126
|
+
*/
|
|
127
|
+
export declare const IS_VERBOSE = false;
|
|
122
128
|
/**
|
|
123
129
|
* @@@
|
|
124
130
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-client",
|
|
3
|
-
"version": "0.66.0
|
|
3
|
+
"version": "0.66.0",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./esm/index.es.js",
|
|
48
48
|
"typings": "./esm/typings/src/_packages/remote-client.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.66.0
|
|
50
|
+
"@promptbook/core": "0.66.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"socket.io-client": "4.7.2"
|
package/umd/index.umd.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
/**
|
|
9
9
|
* The version of the Promptbook library
|
|
10
10
|
*/
|
|
11
|
-
var PROMPTBOOK_VERSION = '0.66.0-
|
|
11
|
+
var PROMPTBOOK_VERSION = '0.66.0-9';
|
|
12
12
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
13
13
|
|
|
14
14
|
/*! *****************************************************************************
|