@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 CHANGED
@@ -32,7 +32,7 @@ interface CommandPayload {
32
32
  interface ShellPayload {
33
33
  script: string;
34
34
  cwd?: string;
35
- /** Timeout in seconds. Default: 60 */
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. Default: 30 */
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. Default: 300 */
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.3";
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. Default: 60 */
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. Default: 30 */
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. Default: 300 */
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.3";
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.3";
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.3";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceme/devtools-protocol",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Shared protocol contracts, runtime validators, and error models for SERVICEME tools.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "repository": {