@serviceme/devtools-protocol 0.1.3 → 0.1.5

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;
@@ -360,7 +360,7 @@ declare const COPILOT_ERROR_CODES: {
360
360
  readonly TIMEOUT: "copilot_timeout";
361
361
  };
362
362
 
363
- declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "dotnet", "nuget"];
363
+ declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "rtk", "dotnet", "nuget"];
364
364
  type KnownEnvironmentTool = (typeof KNOWN_ENVIRONMENT_TOOLS)[number];
365
365
  interface ToolCheckResult {
366
366
  installed: boolean;
@@ -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.5";
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;
@@ -360,7 +360,7 @@ declare const COPILOT_ERROR_CODES: {
360
360
  readonly TIMEOUT: "copilot_timeout";
361
361
  };
362
362
 
363
- declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "dotnet", "nuget"];
363
+ declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "rtk", "dotnet", "nuget"];
364
364
  type KnownEnvironmentTool = (typeof KNOWN_ENVIRONMENT_TOOLS)[number];
365
365
  interface ToolCheckResult {
366
366
  installed: boolean;
@@ -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.5";
431
431
  declare const SERVICEME_CLI_CAPABILITIES: {
432
432
  readonly bridge: true;
433
433
  readonly tasks: 1;
package/dist/index.js CHANGED
@@ -294,6 +294,7 @@ var KNOWN_ENVIRONMENT_TOOLS = [
294
294
  "pnpm",
295
295
  "nvm",
296
296
  "nrm",
297
+ "rtk",
297
298
  "dotnet",
298
299
  "nuget"
299
300
  ];
@@ -502,7 +503,7 @@ function isJsonOutputResult(value) {
502
503
 
503
504
  // src/metadata.ts
504
505
  var SERVICEME_CLI_NAME = "serviceme";
505
- var SERVICEME_CLI_VERSION = "0.1.3";
506
+ var SERVICEME_CLI_VERSION = "0.1.5";
506
507
  var SERVICEME_CLI_CAPABILITIES = {
507
508
  bridge: true,
508
509
  tasks: 1,
package/dist/index.mjs CHANGED
@@ -203,6 +203,7 @@ var KNOWN_ENVIRONMENT_TOOLS = [
203
203
  "pnpm",
204
204
  "nvm",
205
205
  "nrm",
206
+ "rtk",
206
207
  "dotnet",
207
208
  "nuget"
208
209
  ];
@@ -411,7 +412,7 @@ function isJsonOutputResult(value) {
411
412
 
412
413
  // src/metadata.ts
413
414
  var SERVICEME_CLI_NAME = "serviceme";
414
- var SERVICEME_CLI_VERSION = "0.1.3";
415
+ var SERVICEME_CLI_VERSION = "0.1.5";
415
416
  var SERVICEME_CLI_CAPABILITIES = {
416
417
  bridge: true,
417
418
  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.5",
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": {