@siteping/cli 0.4.4 → 0.4.5

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.js CHANGED
@@ -18481,6 +18481,7 @@ var _SITEPING_MODELS = {
18481
18481
  url: { type: "String" },
18482
18482
  urlPattern: { type: "String", optional: true },
18483
18483
  screenshotUrl: { type: "String", optional: true, nativeType: "Text" },
18484
+ diagnostics: { type: "Json", optional: true },
18484
18485
  viewport: { type: "String" },
18485
18486
  userAgent: { type: "String" },
18486
18487
  authorName: { type: "String" },
@@ -19106,7 +19107,7 @@ function syncCommand(options) {
19106
19107
  }
19107
19108
 
19108
19109
  // src/index.ts
19109
- var program2 = new Command().name("siteping").description("CLI to configure @siteping/* in your project").version("0.4.4");
19110
+ var program2 = new Command().name("siteping").description("CLI to configure @siteping/* in your project").version("0.4.5");
19110
19111
  program2.command("init").description("Set up the Prisma schema and API route in your project").action(initCommand).addHelpText("after", "\n Examples:\n $ siteping init");
19111
19112
  program2.command("sync").description("Sync the Prisma schema (non-interactive, CI-friendly)").option("--schema <path>", "Path to the schema.prisma file").action(syncCommand).addHelpText("after", "\n Examples:\n $ siteping sync\n $ siteping sync --schema prisma/schema.prisma");
19112
19113
  program2.command("status").description("Full diagnostic of the Siteping integration").option("--schema <path>", "Path to the schema.prisma file").action(statusCommand).addHelpText("after", "\n Examples:\n $ siteping status\n $ siteping status --schema prisma/schema.prisma");