@supraio/client-sdk 0.0.1-mz-standalone-processes.0 → 0.0.1-mz-standalone-processes.2
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.
|
@@ -2,7 +2,7 @@ export interface OpenOptions extends StartOptions {
|
|
|
2
2
|
}
|
|
3
3
|
export interface StartOptions {
|
|
4
4
|
/** Identify server where the process will be running */
|
|
5
|
-
serverUid
|
|
5
|
+
serverUid?: string;
|
|
6
6
|
/** Name of application which creating the process */
|
|
7
7
|
appName: string;
|
|
8
8
|
/** array of args passed to program process when is started */
|
|
@@ -12,7 +12,7 @@ export interface StartOptions {
|
|
|
12
12
|
}
|
|
13
13
|
export interface CloseOptions {
|
|
14
14
|
/** Identify server where the process will be stopped */
|
|
15
|
-
serverUid
|
|
15
|
+
serverUid?: string;
|
|
16
16
|
/** Name of application which closing the process */
|
|
17
17
|
appName: string;
|
|
18
18
|
}
|
|
@@ -2,7 +2,7 @@ export interface OpenOptions extends StartOptions {
|
|
|
2
2
|
}
|
|
3
3
|
export interface StartOptions {
|
|
4
4
|
/** Identify server where the process will be running */
|
|
5
|
-
serverUid
|
|
5
|
+
serverUid?: string;
|
|
6
6
|
/** Name of application which creating the process */
|
|
7
7
|
appName: string;
|
|
8
8
|
/** array of args passed to program process when is started */
|
|
@@ -12,7 +12,7 @@ export interface StartOptions {
|
|
|
12
12
|
}
|
|
13
13
|
export interface CloseOptions {
|
|
14
14
|
/** Identify server where the process will be stopped */
|
|
15
|
-
serverUid
|
|
15
|
+
serverUid?: string;
|
|
16
16
|
/** Name of application which closing the process */
|
|
17
17
|
appName: string;
|
|
18
18
|
}
|
package/package.json
CHANGED