struere 0.12.5 → 0.12.6
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/bin/struere.js
CHANGED
|
@@ -2991,6 +2991,7 @@ ${resources.errors.join(`
|
|
|
2991
2991
|
if (environment === "eval") {
|
|
2992
2992
|
const result = await syncOrganization({
|
|
2993
2993
|
agents: payload.agents,
|
|
2994
|
+
tools: payload.tools,
|
|
2994
2995
|
entityTypes: payload.entityTypes,
|
|
2995
2996
|
roles: payload.roles,
|
|
2996
2997
|
evalSuites: payload.evalSuites,
|
|
@@ -3071,7 +3072,7 @@ var syncCommand = new Command5("sync").description("Sync resources to Convex and
|
|
|
3071
3072
|
process.exit(1);
|
|
3072
3073
|
}
|
|
3073
3074
|
if (!jsonMode && !options.dryRun)
|
|
3074
|
-
output.succeed(`Loaded ${resources.agents.length} agents, ${resources.entityTypes.length} data types, ${resources.roles.length} roles`);
|
|
3075
|
+
output.succeed(`Loaded ${resources.agents.length} agents, ${resources.entityTypes.length} data types, ${resources.roles.length} roles, ${resources.customTools.length} custom tools`);
|
|
3075
3076
|
} catch (error) {
|
|
3076
3077
|
if (jsonMode) {
|
|
3077
3078
|
console.log(JSON.stringify({ success: false, error: error instanceof Error ? error.message : String(error) }));
|
|
@@ -8709,7 +8710,7 @@ whatsappCommand.command("set-agent <connection> <agent-slug>").description("Assi
|
|
|
8709
8710
|
// package.json
|
|
8710
8711
|
var package_default = {
|
|
8711
8712
|
name: "struere",
|
|
8712
|
-
version: "0.12.
|
|
8713
|
+
version: "0.12.6",
|
|
8713
8714
|
description: "Build, test, and deploy AI agents",
|
|
8714
8715
|
keywords: [
|
|
8715
8716
|
"ai",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/sync.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAKnC,OAAO,EAAkC,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACnG,OAAO,EAAoB,KAAK,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAMxE,KAAK,WAAW,GAAG,WAAW,CAAC,aAAa,CAAC,CAAA;AAE7C,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,EAAE,CAAA;CAClB;AAED,wBAAsB,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,CA0C7F;AAED,wBAAsB,iBAAiB,CACrC,SAAS,EAAE,eAAe,EAC1B,cAAc,EAAE,MAAM,GAAG,SAAS,EAClC,WAAW,EAAE,WAAW,GACvB,OAAO,CAAC,eAAe,EAAE,CAAC,CAsC5B;
|
|
1
|
+
{"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/sync.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAKnC,OAAO,EAAkC,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACnG,OAAO,EAAoB,KAAK,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAMxE,KAAK,WAAW,GAAG,WAAW,CAAC,aAAa,CAAC,CAAA;AAE7C,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,EAAE,CAAA;CAClB;AAED,wBAAsB,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,CA0C7F;AAED,wBAAsB,iBAAiB,CACrC,SAAS,EAAE,eAAe,EAC1B,cAAc,EAAE,MAAM,GAAG,SAAS,EAClC,WAAW,EAAE,WAAW,GACvB,OAAO,CAAC,eAAe,EAAE,CAAC,CAsC5B;AAyCD,eAAO,MAAM,WAAW,SA2MpB,CAAA"}
|
package/dist/cli/index.js
CHANGED
|
@@ -2991,6 +2991,7 @@ ${resources.errors.join(`
|
|
|
2991
2991
|
if (environment === "eval") {
|
|
2992
2992
|
const result = await syncOrganization({
|
|
2993
2993
|
agents: payload.agents,
|
|
2994
|
+
tools: payload.tools,
|
|
2994
2995
|
entityTypes: payload.entityTypes,
|
|
2995
2996
|
roles: payload.roles,
|
|
2996
2997
|
evalSuites: payload.evalSuites,
|
|
@@ -3071,7 +3072,7 @@ var syncCommand = new Command5("sync").description("Sync resources to Convex and
|
|
|
3071
3072
|
process.exit(1);
|
|
3072
3073
|
}
|
|
3073
3074
|
if (!jsonMode && !options.dryRun)
|
|
3074
|
-
output.succeed(`Loaded ${resources.agents.length} agents, ${resources.entityTypes.length} data types, ${resources.roles.length} roles`);
|
|
3075
|
+
output.succeed(`Loaded ${resources.agents.length} agents, ${resources.entityTypes.length} data types, ${resources.roles.length} roles, ${resources.customTools.length} custom tools`);
|
|
3075
3076
|
} catch (error) {
|
|
3076
3077
|
if (jsonMode) {
|
|
3077
3078
|
console.log(JSON.stringify({ success: false, error: error instanceof Error ? error.message : String(error) }));
|
|
@@ -8709,7 +8710,7 @@ whatsappCommand.command("set-agent <connection> <agent-slug>").description("Assi
|
|
|
8709
8710
|
// package.json
|
|
8710
8711
|
var package_default = {
|
|
8711
8712
|
name: "struere",
|
|
8712
|
-
version: "0.12.
|
|
8713
|
+
version: "0.12.6",
|
|
8713
8714
|
description: "Build, test, and deploy AI agents",
|
|
8714
8715
|
keywords: [
|
|
8715
8716
|
"ai",
|