opencode-telegram-link 1.0.0-rc.4 → 1.0.0-rc.6
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/README.md +3 -3
- package/dist/broker/commands.d.ts.map +1 -1
- package/dist/broker/main.js +142 -23
- package/dist/broker/main.js.map +8 -7
- package/dist/plugin.js +3 -3
- package/dist/plugin.js.map +3 -3
- package/dist/service.d.ts +19 -0
- package/dist/service.d.ts.map +1 -0
- package/dist/setup.d.ts.map +1 -1
- package/dist/uninstall.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/plugin.js
CHANGED
|
@@ -16432,7 +16432,7 @@ function spawnDetachedBroker(input) {
|
|
|
16432
16432
|
...process.env,
|
|
16433
16433
|
OPENCODE_TELEGRAM_BROKER_STATE_DIR: input.stateDirectory,
|
|
16434
16434
|
OPENCODE_TELEGRAM_BROKER_PORT: String(input.port),
|
|
16435
|
-
OPENCODE_TELEGRAM_BROKER_BIND_HOST: process.env.OPENCODE_TELEGRAM_BROKER_BIND_HOST ?? "
|
|
16435
|
+
OPENCODE_TELEGRAM_BROKER_BIND_HOST: process.env.OPENCODE_TELEGRAM_BROKER_BIND_HOST ?? "0.0.0.0"
|
|
16436
16436
|
}
|
|
16437
16437
|
});
|
|
16438
16438
|
child.unref();
|
|
@@ -16717,7 +16717,7 @@ async function runSessionSpawnCommand(client, directory, command) {
|
|
|
16717
16717
|
}
|
|
16718
16718
|
|
|
16719
16719
|
// src/version.ts
|
|
16720
|
-
var PACKAGE_VERSION = "1.0.0-rc.
|
|
16720
|
+
var PACKAGE_VERSION = "1.0.0-rc.6";
|
|
16721
16721
|
|
|
16722
16722
|
// src/plugin.ts
|
|
16723
16723
|
function trace(msg) {
|
|
@@ -16906,4 +16906,4 @@ export {
|
|
|
16906
16906
|
plugin_default as default
|
|
16907
16907
|
};
|
|
16908
16908
|
|
|
16909
|
-
//# debugId=
|
|
16909
|
+
//# debugId=FD8B5AF6FB01279264756E2164756E21
|