@matterbridge/types 3.6.0 → 3.6.1-dev-20260309-6341dee

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.
@@ -114,6 +114,23 @@ export type WorkerMessageTypes = {
114
114
  };
115
115
  };
116
116
  };
117
+ manager_run: {
118
+ request: {
119
+ params: {
120
+ name: string;
121
+ workerData?: Record<string, boolean | number | string | object>;
122
+ argv?: string[];
123
+ env?: NodeJS.ProcessEnv;
124
+ execArgv?: string[];
125
+ pipedOutput?: boolean;
126
+ };
127
+ };
128
+ response: {
129
+ result: {
130
+ success: boolean;
131
+ };
132
+ };
133
+ };
117
134
  matterbridge_initialize: {
118
135
  request: {
119
136
  params: undefined;
@@ -1,4 +1,5 @@
1
1
  import type { LogLevel } from 'node-ansi-logger';
2
+ export type ThreadNames = 'SystemCheck' | 'GlobalPrefix' | 'CheckUpdates' | 'SpawnCommand';
2
3
  export type ParentPortMessage = {
3
4
  type: 'init';
4
5
  threadName: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matterbridge/types",
3
- "version": "3.6.0",
3
+ "version": "3.6.1-dev-20260309-6341dee",
4
4
  "description": "Matterbridge types library",
5
5
  "author": "https://github.com/Luligu",
6
6
  "homepage": "https://matterbridge.io/",