struere 0.9.15 → 0.9.16

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.
@@ -22470,8 +22470,9 @@ ${resources.errors.join(`
22470
22470
  return result;
22471
22471
  }
22472
22472
  if (environment === "production") {
22473
+ const { fixtures: _fixtures, ...prodPayload } = payload;
22473
22474
  const result = await syncOrganization({
22474
- ...payload,
22475
+ ...prodPayload,
22475
22476
  organizationId,
22476
22477
  environment: "production"
22477
22478
  });
@@ -23077,8 +23078,9 @@ var deployCommand = new Command("deploy").description("Deploy all resources to p
23077
23078
  if (!jsonMode)
23078
23079
  spinner.start("Deploying to production");
23079
23080
  try {
23081
+ const { fixtures: _fixtures, ...deployPayload } = payload;
23080
23082
  const syncResult = await syncOrganization({
23081
- ...payload,
23083
+ ...deployPayload,
23082
23084
  organizationId: project.organization.id,
23083
23085
  environment: "production"
23084
23086
  });
@@ -26050,7 +26052,7 @@ var compilePromptCommand = new Command("compile-prompt").description("Compile an
26050
26052
  // package.json
26051
26053
  var package_default = {
26052
26054
  name: "struere",
26053
- version: "0.9.15",
26055
+ version: "0.9.16",
26054
26056
  description: "Build, test, and deploy AI agents",
26055
26057
  keywords: [
26056
26058
  "ai",
@@ -1 +1 @@
1
- {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/deploy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAcnC,eAAO,MAAM,aAAa,SA+TtB,CAAA"}
1
+ {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/deploy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAcnC,eAAO,MAAM,aAAa,SAgUtB,CAAA"}
@@ -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,CAuC7F;AAED,wBAAsB,iBAAiB,CACrC,SAAS,EAAE,eAAe,EAC1B,cAAc,EAAE,MAAM,GAAG,SAAS,EAClC,WAAW,EAAE,WAAW,GACvB,OAAO,CAAC,eAAe,EAAE,CAAC,CAiC5B;AAwCD,eAAO,MAAM,WAAW,SAyMpB,CAAA"}
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,CAuC7F;AAED,wBAAsB,iBAAiB,CACrC,SAAS,EAAE,eAAe,EAC1B,cAAc,EAAE,MAAM,GAAG,SAAS,EAClC,WAAW,EAAE,WAAW,GACvB,OAAO,CAAC,eAAe,EAAE,CAAC,CAiC5B;AAyCD,eAAO,MAAM,WAAW,SAyMpB,CAAA"}
package/dist/cli/index.js CHANGED
@@ -3084,8 +3084,9 @@ ${resources.errors.join(`
3084
3084
  return result;
3085
3085
  }
3086
3086
  if (environment === "production") {
3087
+ const { fixtures: _fixtures, ...prodPayload } = payload;
3087
3088
  const result = await syncOrganization({
3088
- ...payload,
3089
+ ...prodPayload,
3089
3090
  organizationId,
3090
3091
  environment: "production"
3091
3092
  });
@@ -3696,8 +3697,9 @@ var deployCommand = new Command7("deploy").description("Deploy all resources to
3696
3697
  if (!jsonMode)
3697
3698
  spinner.start("Deploying to production");
3698
3699
  try {
3700
+ const { fixtures: _fixtures, ...deployPayload } = payload;
3699
3701
  const syncResult = await syncOrganization({
3700
- ...payload,
3702
+ ...deployPayload,
3701
3703
  organizationId: project.organization.id,
3702
3704
  environment: "production"
3703
3705
  });
@@ -6703,7 +6705,7 @@ var compilePromptCommand = new Command17("compile-prompt").description("Compile
6703
6705
  // package.json
6704
6706
  var package_default = {
6705
6707
  name: "struere",
6706
- version: "0.9.15",
6708
+ version: "0.9.16",
6707
6709
  description: "Build, test, and deploy AI agents",
6708
6710
  keywords: [
6709
6711
  "ai",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "struere",
3
- "version": "0.9.15",
3
+ "version": "0.9.16",
4
4
  "description": "Build, test, and deploy AI agents",
5
5
  "keywords": [
6
6
  "ai",