@promptbook/cli 0.89.0-3 → 0.89.0-5
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 +10 -1
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/remote-server/RemoteServer.d.ts +23 -0
- package/esm/typings/src/remote-server/startRemoteServer.d.ts +2 -2
- package/esm/typings/src/utils/organization/TODO_narrow.d.ts +6 -0
- package/package.json +1 -1
- package/umd/index.umd.js +10 -1
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -44,7 +44,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
44
44
|
* @generated
|
|
45
45
|
* @see https://github.com/webgptorg/promptbook
|
|
46
46
|
*/
|
|
47
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.89.0-
|
|
47
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.89.0-5';
|
|
48
48
|
/**
|
|
49
49
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
50
50
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -12939,6 +12939,15 @@ function startRemoteServer(options) {
|
|
|
12939
12939
|
}
|
|
12940
12940
|
let isDestroyed = false;
|
|
12941
12941
|
return {
|
|
12942
|
+
get httpServer() {
|
|
12943
|
+
return httpServer;
|
|
12944
|
+
},
|
|
12945
|
+
get expressApp() {
|
|
12946
|
+
return app;
|
|
12947
|
+
},
|
|
12948
|
+
get socketIoServer() {
|
|
12949
|
+
return server;
|
|
12950
|
+
},
|
|
12942
12951
|
get isDestroyed() {
|
|
12943
12952
|
return isDestroyed;
|
|
12944
12953
|
},
|