workflow-agent-cli 2.16.1 → 2.17.0

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/cli/index.js CHANGED
@@ -5240,7 +5240,7 @@ import {
5240
5240
  } from "@hawkinside_out/workflow-improvement-tracker";
5241
5241
 
5242
5242
  // src/sync/registry-client.ts
5243
- var DEFAULT_REGISTRY_URL = "https://patterns.workflow-agent.dev";
5243
+ var DEFAULT_REGISTRY_URL = "https://registry-api-rust.vercel.app";
5244
5244
  var RegistryClient = class {
5245
5245
  baseUrl;
5246
5246
  timeout;
@@ -5269,7 +5269,7 @@ var RegistryClient = class {
5269
5269
  }))
5270
5270
  };
5271
5271
  const response = await this.request(
5272
- "/patterns/push",
5272
+ "/api/patterns/push",
5273
5273
  {
5274
5274
  method: "POST",
5275
5275
  headers: {
@@ -5302,7 +5302,7 @@ var RegistryClient = class {
5302
5302
  params.set("since", options.since);
5303
5303
  }
5304
5304
  const queryString = params.toString();
5305
- const url = `/patterns/pull${queryString ? `?${queryString}` : ""}`;
5305
+ const url = `/api/patterns/pull${queryString ? `?${queryString}` : ""}`;
5306
5306
  return this.request(url, {
5307
5307
  method: "GET"
5308
5308
  });
@@ -5315,7 +5315,7 @@ var RegistryClient = class {
5315
5315
  */
5316
5316
  async getPattern(patternId) {
5317
5317
  try {
5318
- return await this.request(`/patterns/${patternId}`, {
5318
+ return await this.request(`/api/patterns/${patternId}`, {
5319
5319
  method: "GET"
5320
5320
  });
5321
5321
  } catch (error) {
@@ -5330,7 +5330,7 @@ var RegistryClient = class {
5330
5330
  */
5331
5331
  async healthCheck() {
5332
5332
  try {
5333
- await this.request("/health", {
5333
+ await this.request("/api/health", {
5334
5334
  method: "GET"
5335
5335
  });
5336
5336
  return true;