@runtypelabs/sdk 6.1.3 → 6.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.cjs +1 -1
- package/dist/index.d.cts +18 -4
- package/dist/index.d.ts +18 -4
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6354,7 +6354,7 @@ var Runtype = class {
|
|
|
6354
6354
|
|
|
6355
6355
|
// src/version.ts
|
|
6356
6356
|
var FALLBACK_VERSION = "0.0.0";
|
|
6357
|
-
var SDK_VERSION = "6.1.
|
|
6357
|
+
var SDK_VERSION = "6.1.4".length > 0 ? "6.1.4" : FALLBACK_VERSION;
|
|
6358
6358
|
var RUNTYPE_CLIENT_KIND = "sdk";
|
|
6359
6359
|
var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
|
|
6360
6360
|
|
package/dist/index.d.cts
CHANGED
|
@@ -26331,6 +26331,9 @@ interface paths {
|
|
|
26331
26331
|
args: {
|
|
26332
26332
|
[key: string]: unknown;
|
|
26333
26333
|
};
|
|
26334
|
+
pendingArgs?: {
|
|
26335
|
+
[key: string]: string;
|
|
26336
|
+
};
|
|
26334
26337
|
/** @enum {string} */
|
|
26335
26338
|
rung: "mcp_tool";
|
|
26336
26339
|
summary: string;
|
|
@@ -26357,6 +26360,9 @@ interface paths {
|
|
|
26357
26360
|
args: {
|
|
26358
26361
|
[key: string]: unknown;
|
|
26359
26362
|
};
|
|
26363
|
+
pendingArgs?: {
|
|
26364
|
+
[key: string]: string;
|
|
26365
|
+
};
|
|
26360
26366
|
/** @enum {string} */
|
|
26361
26367
|
rung: "mcp_tool";
|
|
26362
26368
|
summary: string;
|
|
@@ -26400,6 +26406,9 @@ interface paths {
|
|
|
26400
26406
|
args: {
|
|
26401
26407
|
[key: string]: unknown;
|
|
26402
26408
|
};
|
|
26409
|
+
pendingArgs?: {
|
|
26410
|
+
[key: string]: string;
|
|
26411
|
+
};
|
|
26403
26412
|
/** @enum {string} */
|
|
26404
26413
|
rung: "mcp_tool";
|
|
26405
26414
|
summary: string;
|
|
@@ -26426,6 +26435,9 @@ interface paths {
|
|
|
26426
26435
|
args: {
|
|
26427
26436
|
[key: string]: unknown;
|
|
26428
26437
|
};
|
|
26438
|
+
pendingArgs?: {
|
|
26439
|
+
[key: string]: string;
|
|
26440
|
+
};
|
|
26429
26441
|
/** @enum {string} */
|
|
26430
26442
|
rung: "mcp_tool";
|
|
26431
26443
|
summary: string;
|
|
@@ -28831,6 +28843,9 @@ interface paths {
|
|
|
28831
28843
|
args: {
|
|
28832
28844
|
[key: string]: unknown;
|
|
28833
28845
|
};
|
|
28846
|
+
pendingArgs?: {
|
|
28847
|
+
[key: string]: string;
|
|
28848
|
+
};
|
|
28834
28849
|
/** @enum {string} */
|
|
28835
28850
|
rung: "mcp_tool";
|
|
28836
28851
|
summary: string;
|
|
@@ -28857,6 +28872,9 @@ interface paths {
|
|
|
28857
28872
|
args: {
|
|
28858
28873
|
[key: string]: unknown;
|
|
28859
28874
|
};
|
|
28875
|
+
pendingArgs?: {
|
|
28876
|
+
[key: string]: string;
|
|
28877
|
+
};
|
|
28860
28878
|
/** @enum {string} */
|
|
28861
28879
|
rung: "mcp_tool";
|
|
28862
28880
|
summary: string;
|
|
@@ -48983,10 +49001,6 @@ declare class SkillDriftError extends Error {
|
|
|
48983
49001
|
* tool) is intentionally NOT exposed here; authoring a skill via the SDK is
|
|
48984
49002
|
* authoring, and lands published when you ask it to.
|
|
48985
49003
|
*
|
|
48986
|
-
* The whole surface is gated behind the `enable-agent-skills` flag server-side
|
|
48987
|
-
* — when the flag is off these calls fail with a 404 (the admin gate), so the
|
|
48988
|
-
* SDK fails closed without any client-side flag handling.
|
|
48989
|
-
*
|
|
48990
49004
|
* Types here mirror the canonical definitions in `@runtypelabs/shared`
|
|
48991
49005
|
* (`skill-manifest-types.ts`) and the `skills` / `skill_versions` /
|
|
48992
49006
|
* `agent_skill_bindings` / `skill_proposals` tables. Per SDK convention they
|
package/dist/index.d.ts
CHANGED
|
@@ -26331,6 +26331,9 @@ interface paths {
|
|
|
26331
26331
|
args: {
|
|
26332
26332
|
[key: string]: unknown;
|
|
26333
26333
|
};
|
|
26334
|
+
pendingArgs?: {
|
|
26335
|
+
[key: string]: string;
|
|
26336
|
+
};
|
|
26334
26337
|
/** @enum {string} */
|
|
26335
26338
|
rung: "mcp_tool";
|
|
26336
26339
|
summary: string;
|
|
@@ -26357,6 +26360,9 @@ interface paths {
|
|
|
26357
26360
|
args: {
|
|
26358
26361
|
[key: string]: unknown;
|
|
26359
26362
|
};
|
|
26363
|
+
pendingArgs?: {
|
|
26364
|
+
[key: string]: string;
|
|
26365
|
+
};
|
|
26360
26366
|
/** @enum {string} */
|
|
26361
26367
|
rung: "mcp_tool";
|
|
26362
26368
|
summary: string;
|
|
@@ -26400,6 +26406,9 @@ interface paths {
|
|
|
26400
26406
|
args: {
|
|
26401
26407
|
[key: string]: unknown;
|
|
26402
26408
|
};
|
|
26409
|
+
pendingArgs?: {
|
|
26410
|
+
[key: string]: string;
|
|
26411
|
+
};
|
|
26403
26412
|
/** @enum {string} */
|
|
26404
26413
|
rung: "mcp_tool";
|
|
26405
26414
|
summary: string;
|
|
@@ -26426,6 +26435,9 @@ interface paths {
|
|
|
26426
26435
|
args: {
|
|
26427
26436
|
[key: string]: unknown;
|
|
26428
26437
|
};
|
|
26438
|
+
pendingArgs?: {
|
|
26439
|
+
[key: string]: string;
|
|
26440
|
+
};
|
|
26429
26441
|
/** @enum {string} */
|
|
26430
26442
|
rung: "mcp_tool";
|
|
26431
26443
|
summary: string;
|
|
@@ -28831,6 +28843,9 @@ interface paths {
|
|
|
28831
28843
|
args: {
|
|
28832
28844
|
[key: string]: unknown;
|
|
28833
28845
|
};
|
|
28846
|
+
pendingArgs?: {
|
|
28847
|
+
[key: string]: string;
|
|
28848
|
+
};
|
|
28834
28849
|
/** @enum {string} */
|
|
28835
28850
|
rung: "mcp_tool";
|
|
28836
28851
|
summary: string;
|
|
@@ -28857,6 +28872,9 @@ interface paths {
|
|
|
28857
28872
|
args: {
|
|
28858
28873
|
[key: string]: unknown;
|
|
28859
28874
|
};
|
|
28875
|
+
pendingArgs?: {
|
|
28876
|
+
[key: string]: string;
|
|
28877
|
+
};
|
|
28860
28878
|
/** @enum {string} */
|
|
28861
28879
|
rung: "mcp_tool";
|
|
28862
28880
|
summary: string;
|
|
@@ -48983,10 +49001,6 @@ declare class SkillDriftError extends Error {
|
|
|
48983
49001
|
* tool) is intentionally NOT exposed here; authoring a skill via the SDK is
|
|
48984
49002
|
* authoring, and lands published when you ask it to.
|
|
48985
49003
|
*
|
|
48986
|
-
* The whole surface is gated behind the `enable-agent-skills` flag server-side
|
|
48987
|
-
* — when the flag is off these calls fail with a 404 (the admin gate), so the
|
|
48988
|
-
* SDK fails closed without any client-side flag handling.
|
|
48989
|
-
*
|
|
48990
49004
|
* Types here mirror the canonical definitions in `@runtypelabs/shared`
|
|
48991
49005
|
* (`skill-manifest-types.ts`) and the `skills` / `skill_versions` /
|
|
48992
49006
|
* `agent_skill_bindings` / `skill_proposals` tables. Per SDK convention they
|
package/dist/index.mjs
CHANGED
|
@@ -6167,7 +6167,7 @@ var Runtype = class {
|
|
|
6167
6167
|
|
|
6168
6168
|
// src/version.ts
|
|
6169
6169
|
var FALLBACK_VERSION = "0.0.0";
|
|
6170
|
-
var SDK_VERSION = "6.1.
|
|
6170
|
+
var SDK_VERSION = "6.1.4".length > 0 ? "6.1.4" : FALLBACK_VERSION;
|
|
6171
6171
|
var RUNTYPE_CLIENT_KIND = "sdk";
|
|
6172
6172
|
var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
|
|
6173
6173
|
|
package/package.json
CHANGED