@docyrus/docyrus 0.0.7 → 0.0.10

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/main.js CHANGED
@@ -63633,7 +63633,7 @@ function buildInputSchema(args, env, options) {
63633
63633
  // package.json
63634
63634
  var package_default = {
63635
63635
  name: "@docyrus/docyrus",
63636
- version: "0.0.7",
63636
+ version: "0.0.10",
63637
63637
  private: false,
63638
63638
  description: "Docyrus API CLI",
63639
63639
  main: "./main.js",
@@ -63786,7 +63786,7 @@ function createAppsCli(dependencies) {
63786
63786
  env: EnvSchema
63787
63787
  });
63788
63788
  appsCli.command("list", {
63789
- description: "List apps (/v1/dev/apps)",
63789
+ description: "List apps (/v1/apps)",
63790
63790
  options: external_exports.object({
63791
63791
  appType: external_exports.string().optional().describe("Optional app type filter")
63792
63792
  }),
@@ -63795,7 +63795,7 @@ function createAppsCli(dependencies) {
63795
63795
  const apiClient = dependencies.createApiClient(apiBaseUrl);
63796
63796
  const response = await apiClient.request({
63797
63797
  method: "GET",
63798
- path: "/dev/apps",
63798
+ path: "/apps",
63799
63799
  query: {
63800
63800
  appType: context.options.appType
63801
63801
  }
@@ -65226,7 +65226,7 @@ var StudioResolver = class {
65226
65226
  }
65227
65227
  const response = await this.apiClient.request({
65228
65228
  method: "GET",
65229
- path: "/dev/apps"
65229
+ path: "/apps"
65230
65230
  });
65231
65231
  const resolved = extractArray(response.data);
65232
65232
  this.#appsCache.set(cacheKey, resolved);