@cotal-ai/connector-claude-code 0.1.2 → 0.1.4-next-20260612020133

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/hook.cjs CHANGED
@@ -16501,7 +16501,9 @@ function configFromEnv(env = process.env) {
16501
16501
  token: env.COTAL_TOKEN?.trim() || link?.token,
16502
16502
  user: link?.user,
16503
16503
  pass: link?.pass,
16504
- tls: env.COTAL_TLS?.trim() === "1" || link?.tls || false
16504
+ tls: env.COTAL_TLS?.trim() === "1" || link?.tls || false,
16505
+ feedbackKey: env.COTAL_FEEDBACK_KEY?.trim() || void 0,
16506
+ feedbackUrl: env.COTAL_FEEDBACK_URL?.trim() || void 0
16505
16507
  };
16506
16508
  }
16507
16509