eas-cli 19.0.2 → 19.0.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.
@@ -1854,6 +1854,15 @@ export type AppObserve = {
1854
1854
  navigationRoutes: AppObserveNavigationRoutesConnection;
1855
1855
  timeSeries: AppObserveTimeSeries;
1856
1856
  totalEventCount: Scalars['Int']['output'];
1857
+ /**
1858
+ * Approximate count of unique users (`eas_client_id`) with at least one
1859
+ * supported-metric event in `[startTime, endTime)`. Uses ClickHouse's
1860
+ * HyperLogLog `uniq()`, so the value can drift by a small percent on apps
1861
+ * with very large user bases. `metricNames` on the input is currently
1862
+ * ignored: the count is always over all supported metrics, matching the
1863
+ * universe used by `appVersions` headline counts.
1864
+ */
1865
+ uniqueActiveUserCount: Scalars['Int']['output'];
1857
1866
  updates: AppObserveUpdatesConnection;
1858
1867
  };
1859
1868
  export type AppObserveAppVersionsArgs = {
@@ -1905,6 +1914,9 @@ export type AppObserveNavigationRoutesArgs = {
1905
1914
  export type AppObserveTimeSeriesArgs = {
1906
1915
  input: AppObserveTimeSeriesInput;
1907
1916
  };
1917
+ export type AppObserveUniqueActiveUserCountArgs = {
1918
+ input: AppObserveReleasesInput;
1919
+ };
1908
1920
  export type AppObserveUpdatesArgs = {
1909
1921
  input: AppObserveUpdatesInput;
1910
1922
  };
@@ -1950,6 +1962,17 @@ export type AppObserveAppVersion = {
1950
1962
  buildNumbers: Array<AppObserveAppBuildNumber>;
1951
1963
  eventCount: Scalars['Int']['output'];
1952
1964
  firstSeenAt: Scalars['DateTime']['output'];
1965
+ /**
1966
+ * Unique users whose most recent supported-metric event in
1967
+ * `[startTime, endTime)` was on this version. Each active user
1968
+ * contributes to exactly one version, so summing this field across the
1969
+ * returned versions yields the total active users in the window (equal
1970
+ * to `AppObserve.uniqueActiveUserCount` up to HyperLogLog noise).
1971
+ * A version may be returned with `lastSeenUserCount = 0` when
1972
+ * every user who touched it later moved to a newer version. Users with
1973
+ * no events in the window are not counted on any version.
1974
+ */
1975
+ lastSeenUserCount: Scalars['Int']['output'];
1953
1976
  metrics: Array<AppObserveAppVersionMetric>;
1954
1977
  uniqueUserCount: Scalars['Int']['output'];
1955
1978
  updates: Array<AppObserveAppUpdate>;
@@ -34,10 +34,15 @@ async function getManagedApplicationTargetEntitlementsAsync(projectDir, env, vcs
34
34
  scope.setTag('build_id', process.env.EAS_BUILD_ID);
35
35
  }
36
36
  scope.setTag('config_resolution', 'ios_entitlements_introspection');
37
- scope.setExtra('message', 'iOS entitlements config fallback');
38
- scope.setExtra('stdout', error.stdout);
39
- scope.setExtra('stderr', error.stderr);
40
- sentry_1.default.captureException(error);
37
+ scope.setExtra('expo_config_command_error', JSON.stringify({
38
+ message: error.message,
39
+ output: error.output,
40
+ signal: error.signal,
41
+ status: error.status,
42
+ stderr: error.stderr,
43
+ stdout: error.stdout,
44
+ }));
45
+ sentry_1.default.captureMessage('iOS entitlements config fallback', 'error');
41
46
  });
42
47
  }
43
48
  catch {