anymorph 0.5.0 → 0.6.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12254,6 +12254,7 @@ var require_src = __commonJS({
12254
12254
  generationMode: z.enum(["full", "lite"]).optional(),
12255
12255
  tierMix: PromptGenTierMixSchema.optional(),
12256
12256
  realizationMode: z.enum(["auto", "llm", "deterministic"]).optional(),
12257
+ brandProfile: z.record(z.string(), z.unknown()).optional(),
12257
12258
  additionalContext: z.string().trim().min(1).max(2e4).optional(),
12258
12259
  userRequest: z.string().trim().min(1).max(2e4).optional(),
12259
12260
  async: z.boolean().optional(),
@@ -17148,7 +17149,7 @@ function printScaffoldError(prefix, err) {
17148
17149
 
17149
17150
  // src/index.ts
17150
17151
  var program2 = new Command();
17151
- program2.name("anymorph").description("Check AI visibility and run local GEO strategy workflows").version("0.5.0");
17152
+ program2.name("anymorph").description("Check AI visibility and run local GEO strategy workflows").version("0.6.0");
17152
17153
  program2.command("login").description("Sign in to your Anymorph account").addHelpText(
17153
17154
  "after",
17154
17155
  `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anymorph",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Check your brand's AI visibility across ChatGPT, Perplexity, Gemini, and more",
5
5
  "type": "module",
6
6
  "private": false,