computesdk 4.1.0 → 4.1.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/dist/index.d.mts +2 -16
- package/dist/index.d.ts +2 -16
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SeedScriptConfig } from 'daemond';
|
|
2
1
|
export { SeedCommandInput, SeedCommandResult, SeedDaemonInfo, SeedEventFilter, SeedHealthPayload, SeedInvocationResult, SeedScriptConfig, daemonSeedScript, daemonSeedScriptCommand, parseSeedInvocationOutput } from 'daemond';
|
|
3
2
|
|
|
4
3
|
/**
|
|
@@ -59,26 +58,13 @@ interface RunCommandOptions {
|
|
|
59
58
|
timeout?: number;
|
|
60
59
|
background?: boolean;
|
|
61
60
|
/**
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
* This callback is only invoked when `daemon` mode is enabled and the
|
|
65
|
-
* provider can establish a daemon event stream.
|
|
61
|
+
* Callback for streamed stdout chunks when supported by the provider.
|
|
66
62
|
*/
|
|
67
63
|
onStdout?: (data: string) => void;
|
|
68
64
|
/**
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
* This callback is only invoked when `daemon` mode is enabled and the
|
|
72
|
-
* provider can establish a daemon event stream.
|
|
65
|
+
* Callback for streamed stderr chunks when supported by the provider.
|
|
73
66
|
*/
|
|
74
67
|
onStderr?: (data: string) => void;
|
|
75
|
-
/**
|
|
76
|
-
* Optional daemon seed config for providers that support daemonized command execution.
|
|
77
|
-
*
|
|
78
|
-
* - `true`: enable provider default daemon seed behavior
|
|
79
|
-
* - object: enable daemon mode with explicit seed config
|
|
80
|
-
*/
|
|
81
|
-
daemon?: boolean | SeedScriptConfig;
|
|
82
68
|
}
|
|
83
69
|
/**
|
|
84
70
|
* Snapshot information
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SeedScriptConfig } from 'daemond';
|
|
2
1
|
export { SeedCommandInput, SeedCommandResult, SeedDaemonInfo, SeedEventFilter, SeedHealthPayload, SeedInvocationResult, SeedScriptConfig, daemonSeedScript, daemonSeedScriptCommand, parseSeedInvocationOutput } from 'daemond';
|
|
3
2
|
|
|
4
3
|
/**
|
|
@@ -59,26 +58,13 @@ interface RunCommandOptions {
|
|
|
59
58
|
timeout?: number;
|
|
60
59
|
background?: boolean;
|
|
61
60
|
/**
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
* This callback is only invoked when `daemon` mode is enabled and the
|
|
65
|
-
* provider can establish a daemon event stream.
|
|
61
|
+
* Callback for streamed stdout chunks when supported by the provider.
|
|
66
62
|
*/
|
|
67
63
|
onStdout?: (data: string) => void;
|
|
68
64
|
/**
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
* This callback is only invoked when `daemon` mode is enabled and the
|
|
72
|
-
* provider can establish a daemon event stream.
|
|
65
|
+
* Callback for streamed stderr chunks when supported by the provider.
|
|
73
66
|
*/
|
|
74
67
|
onStderr?: (data: string) => void;
|
|
75
|
-
/**
|
|
76
|
-
* Optional daemon seed config for providers that support daemonized command execution.
|
|
77
|
-
*
|
|
78
|
-
* - `true`: enable provider default daemon seed behavior
|
|
79
|
-
* - object: enable daemon mode with explicit seed config
|
|
80
|
-
*/
|
|
81
|
-
daemon?: boolean | SeedScriptConfig;
|
|
82
68
|
}
|
|
83
69
|
/**
|
|
84
70
|
* Snapshot information
|