@bonginkan/maria 4.2.1 → 4.2.3

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.
@@ -21767,7 +21767,7 @@ var init_package = __esm({
21767
21767
  "package.json"() {
21768
21768
  package_default = {
21769
21769
  name: "@bonginkan/maria",
21770
- version: "4.2.1",
21770
+ version: "4.2.3",
21771
21771
  description: "\u{1F680} MARIA v4.2.0 - Enterprise AI Development Platform with 100% Command Availability. Features 74 production-ready commands with comprehensive fallback implementation, local LLM support, and zero external dependencies. Includes natural language coding, AI safety evaluation, intelligent evolution system, episodic memory with PII masking, and real-time monitoring dashboard. Built with TypeScript AST-powered code generation, OAuth2.0 + PKCE authentication, quantum-resistant cryptography, and enterprise-grade performance.",
21772
21772
  keywords: [
21773
21773
  "ai",
@@ -27956,7 +27956,7 @@ var init_bigquery_telemetry = __esm({
27956
27956
  httpEndpoint = null;
27957
27957
  config = {
27958
27958
  projectId: process.env.GOOGLE_CLOUD_PROJECT || "maria-code-470602",
27959
- datasetId: "cli",
27959
+ datasetId: "maria_telemetry",
27960
27960
  tableName: "command_executions",
27961
27961
  batchSize: 100,
27962
27962
  flushIntervalMs: 3e4,
@@ -27993,7 +27993,6 @@ var init_bigquery_telemetry = __esm({
27993
27993
  projectId: this.config.projectId,
27994
27994
  keyFilename: process.env.GOOGLE_APPLICATION_CREDENTIALS
27995
27995
  });
27996
- console.log("[Telemetry] BigQuery client initialized");
27997
27996
  } catch (error2) {
27998
27997
  console.error("[Telemetry] Failed to initialize BigQuery:", error2);
27999
27998
  }
@@ -28035,7 +28034,6 @@ var init_bigquery_telemetry = __esm({
28035
28034
  } else if (this.httpEndpoint) {
28036
28035
  await this.flushToHttpEndpoint(dataToFlush);
28037
28036
  } else {
28038
- console.debug(`[Telemetry] Discarding ${dataToFlush.length} events (no backend)`);
28039
28037
  }
28040
28038
  } catch (error2) {
28041
28039
  console.error("[Telemetry] Flush failed:", error2);
@@ -28072,7 +28070,6 @@ var init_bigquery_telemetry = __esm({
28072
28070
  ignoreUnknownValues: true,
28073
28071
  skipInvalidRows: false
28074
28072
  });
28075
- console.log(`[Telemetry] Flushed ${rows.length} events to BigQuery`);
28076
28073
  return;
28077
28074
  } catch (error2) {
28078
28075
  retries++;
@@ -28109,7 +28106,6 @@ var init_bigquery_telemetry = __esm({
28109
28106
  if (!response2.ok) {
28110
28107
  throw new Error(`HTTP flush failed: ${response2.status}`);
28111
28108
  }
28112
- console.log(`[Telemetry] Flushed ${data2.length} events via HTTP`);
28113
28109
  }
28114
28110
  /**
28115
28111
  * Start flush timer
@@ -28136,7 +28132,6 @@ var init_bigquery_telemetry = __esm({
28136
28132
  */
28137
28133
  setupGracefulShutdown() {
28138
28134
  const shutdown = async () => {
28139
- console.log("[Telemetry] Shutting down...");
28140
28135
  this.stopFlushTimer();
28141
28136
  await this.flush();
28142
28137
  process.exit(0);