@synkro-sh/cli 1.3.4 → 1.3.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/bootstrap.js CHANGED
@@ -2776,7 +2776,7 @@ function writeConfigEnv(opts) {
2776
2776
  `SYNKRO_GATEWAY_URL=${shellQuoteSingle(safeGateway)}`,
2777
2777
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
2778
2778
  `SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
2779
- `SYNKRO_VERSION=${shellQuoteSingle("1.3.4")}`
2779
+ `SYNKRO_VERSION=${shellQuoteSingle("1.3.5")}`
2780
2780
  ];
2781
2781
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
2782
2782
  if (safeOrgId) lines.push(`SYNKRO_ORG_ID=${shellQuoteSingle(safeOrgId)}`);
@@ -3075,7 +3075,7 @@ async function ingestSessionTranscripts(gatewayUrl, token, repo) {
3075
3075
  });
3076
3076
  if (resp.ok) {
3077
3077
  const result = await resp.json();
3078
- total += result.ingested;
3078
+ total += result.accepted;
3079
3079
  }
3080
3080
  } catch {
3081
3081
  }