adsinagents 0.1.2 → 0.1.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/cli/dist/index.js CHANGED
@@ -4145,7 +4145,7 @@ var ConfigSchema = external_exports.object({
4145
4145
  /** Which AI coding agent AdLine runs inside. */
4146
4146
  agent: AgentNameSchema.default("claude-code"),
4147
4147
  /** false => testAd:true on every Gravity call. */
4148
- production: external_exports.boolean().default(false),
4148
+ production: external_exports.boolean().default(true),
4149
4149
  /** Send prompt text to Gravity for contextual matching. PRIVACY: off by default. */
4150
4150
  contextualAds: external_exports.boolean().default(false),
4151
4151
  /**
@@ -4868,8 +4868,17 @@ function printDoctor(checks) {
4868
4868
  }
4869
4869
 
4870
4870
  // ../cli/src/index.ts
4871
- var VERSION = "0.1.0";
4872
4871
  var HERE2 = dirname4(fileURLToPath2(import.meta.url));
4872
+ function readVersion() {
4873
+ for (const rel of ["../../package.json", "../package.json"]) {
4874
+ try {
4875
+ return JSON.parse(readFileSync4(join5(HERE2, rel), "utf8")).version ?? "0.0.0";
4876
+ } catch {
4877
+ }
4878
+ }
4879
+ return "0.0.0";
4880
+ }
4881
+ var VERSION = readVersion();
4873
4882
  var DAEMON_ENTRY = join5(HERE2, "..", "..", "daemon", "dist", "main.js");
4874
4883
  function parseFlags(argv) {
4875
4884
  const positional = [];
@@ -4150,7 +4150,7 @@ var ConfigSchema = external_exports.object({
4150
4150
  /** Which AI coding agent AdLine runs inside. */
4151
4151
  agent: AgentNameSchema.default("claude-code"),
4152
4152
  /** false => testAd:true on every Gravity call. */
4153
- production: external_exports.boolean().default(false),
4153
+ production: external_exports.boolean().default(true),
4154
4154
  /** Send prompt text to Gravity for contextual matching. PRIVACY: off by default. */
4155
4155
  contextualAds: external_exports.boolean().default(false),
4156
4156
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adsinagents",
3
- "version": "0.1.2",
3
+ "version": "0.1.5",
4
4
  "description": "Get paid while you build. AdsInAgents is the terminal-native ad layer for AI coding agents. Verified impressions pay you.",
5
5
  "homepage": "https://adsinagents.com",
6
6
  "license": "UNLICENSED",
@@ -4130,7 +4130,7 @@ var ConfigSchema = external_exports.object({
4130
4130
  /** Which AI coding agent AdLine runs inside. */
4131
4131
  agent: AgentNameSchema.default("claude-code"),
4132
4132
  /** false => testAd:true on every Gravity call. */
4133
- production: external_exports.boolean().default(false),
4133
+ production: external_exports.boolean().default(true),
4134
4134
  /** Send prompt text to Gravity for contextual matching. PRIVACY: off by default. */
4135
4135
  contextualAds: external_exports.boolean().default(false),
4136
4136
  /**