@serviceme/devtools-protocol 0.1.3 → 0.1.4
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -32,7 +32,7 @@ interface CommandPayload {
|
|
|
32
32
|
interface ShellPayload {
|
|
33
33
|
script: string;
|
|
34
34
|
cwd?: string;
|
|
35
|
-
/** Timeout in seconds.
|
|
35
|
+
/** Timeout in seconds. Omit for default 60s; use 0 for no limit. */
|
|
36
36
|
timeout?: number;
|
|
37
37
|
}
|
|
38
38
|
interface HttpRequestPayload {
|
|
@@ -40,7 +40,7 @@ interface HttpRequestPayload {
|
|
|
40
40
|
method: string;
|
|
41
41
|
headers?: Record<string, string>;
|
|
42
42
|
body?: string;
|
|
43
|
-
/** Timeout in seconds.
|
|
43
|
+
/** Timeout in seconds. Omit for default 30s; use 0 for no limit. */
|
|
44
44
|
timeout?: number;
|
|
45
45
|
}
|
|
46
46
|
interface GithubCopilotCliPayload {
|
|
@@ -48,7 +48,7 @@ interface GithubCopilotCliPayload {
|
|
|
48
48
|
workspace?: string;
|
|
49
49
|
autopilot?: boolean;
|
|
50
50
|
allowTools?: string[];
|
|
51
|
-
/** Timeout in seconds.
|
|
51
|
+
/** Timeout in seconds. Omit for default 300s; use 0 for no limit. */
|
|
52
52
|
timeout?: number;
|
|
53
53
|
model?: string;
|
|
54
54
|
agent?: string;
|
|
@@ -427,7 +427,7 @@ declare function isJsonOutputResult(value: unknown): value is {
|
|
|
427
427
|
};
|
|
428
428
|
|
|
429
429
|
declare const SERVICEME_CLI_NAME = "serviceme";
|
|
430
|
-
declare const SERVICEME_CLI_VERSION = "0.1.
|
|
430
|
+
declare const SERVICEME_CLI_VERSION = "0.1.4";
|
|
431
431
|
declare const SERVICEME_CLI_CAPABILITIES: {
|
|
432
432
|
readonly bridge: true;
|
|
433
433
|
readonly tasks: 1;
|
package/dist/index.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ interface CommandPayload {
|
|
|
32
32
|
interface ShellPayload {
|
|
33
33
|
script: string;
|
|
34
34
|
cwd?: string;
|
|
35
|
-
/** Timeout in seconds.
|
|
35
|
+
/** Timeout in seconds. Omit for default 60s; use 0 for no limit. */
|
|
36
36
|
timeout?: number;
|
|
37
37
|
}
|
|
38
38
|
interface HttpRequestPayload {
|
|
@@ -40,7 +40,7 @@ interface HttpRequestPayload {
|
|
|
40
40
|
method: string;
|
|
41
41
|
headers?: Record<string, string>;
|
|
42
42
|
body?: string;
|
|
43
|
-
/** Timeout in seconds.
|
|
43
|
+
/** Timeout in seconds. Omit for default 30s; use 0 for no limit. */
|
|
44
44
|
timeout?: number;
|
|
45
45
|
}
|
|
46
46
|
interface GithubCopilotCliPayload {
|
|
@@ -48,7 +48,7 @@ interface GithubCopilotCliPayload {
|
|
|
48
48
|
workspace?: string;
|
|
49
49
|
autopilot?: boolean;
|
|
50
50
|
allowTools?: string[];
|
|
51
|
-
/** Timeout in seconds.
|
|
51
|
+
/** Timeout in seconds. Omit for default 300s; use 0 for no limit. */
|
|
52
52
|
timeout?: number;
|
|
53
53
|
model?: string;
|
|
54
54
|
agent?: string;
|
|
@@ -427,7 +427,7 @@ declare function isJsonOutputResult(value: unknown): value is {
|
|
|
427
427
|
};
|
|
428
428
|
|
|
429
429
|
declare const SERVICEME_CLI_NAME = "serviceme";
|
|
430
|
-
declare const SERVICEME_CLI_VERSION = "0.1.
|
|
430
|
+
declare const SERVICEME_CLI_VERSION = "0.1.4";
|
|
431
431
|
declare const SERVICEME_CLI_CAPABILITIES: {
|
|
432
432
|
readonly bridge: true;
|
|
433
433
|
readonly tasks: 1;
|
package/dist/index.js
CHANGED
|
@@ -502,7 +502,7 @@ function isJsonOutputResult(value) {
|
|
|
502
502
|
|
|
503
503
|
// src/metadata.ts
|
|
504
504
|
var SERVICEME_CLI_NAME = "serviceme";
|
|
505
|
-
var SERVICEME_CLI_VERSION = "0.1.
|
|
505
|
+
var SERVICEME_CLI_VERSION = "0.1.4";
|
|
506
506
|
var SERVICEME_CLI_CAPABILITIES = {
|
|
507
507
|
bridge: true,
|
|
508
508
|
tasks: 1,
|
package/dist/index.mjs
CHANGED
|
@@ -411,7 +411,7 @@ function isJsonOutputResult(value) {
|
|
|
411
411
|
|
|
412
412
|
// src/metadata.ts
|
|
413
413
|
var SERVICEME_CLI_NAME = "serviceme";
|
|
414
|
-
var SERVICEME_CLI_VERSION = "0.1.
|
|
414
|
+
var SERVICEME_CLI_VERSION = "0.1.4";
|
|
415
415
|
var SERVICEME_CLI_CAPABILITIES = {
|
|
416
416
|
bridge: true,
|
|
417
417
|
tasks: 1,
|
package/package.json
CHANGED