sentry 0.33.0 → 0.34.0
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/index.cjs +709 -667
- package/dist/index.d.cts +4 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -749,8 +749,6 @@ export type IssueExplainParams = {
|
|
|
749
749
|
export type IssuePlanParams = {
|
|
750
750
|
/** Positional argument */
|
|
751
751
|
issue?: string;
|
|
752
|
-
/** Root cause ID to plan (required if multiple causes exist) */
|
|
753
|
-
cause?: string;
|
|
754
752
|
/** Force new plan even if one exists */
|
|
755
753
|
force?: boolean;
|
|
756
754
|
};
|
|
@@ -811,6 +809,10 @@ export type ExploreParams = {
|
|
|
811
809
|
target?: string;
|
|
812
810
|
/** API field or aggregate (repeatable). E.g., title, "count()", "p50(transaction.duration)" */
|
|
813
811
|
field?: string;
|
|
812
|
+
/** Metric name for --dataset metrics. Auto-resolves type/unit via API. */
|
|
813
|
+
metric?: string;
|
|
814
|
+
/** Aggregation for --metric (sum, avg, count, p50, p95, etc.) */
|
|
815
|
+
agg?: string;
|
|
814
816
|
/** Dataset to query (errors, spans, metrics, logs, replays) */
|
|
815
817
|
dataset?: string;
|
|
816
818
|
/** Search query (Sentry search syntax) */
|