@debugbundle/shared-types 1.4.0 → 1.4.1
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/analytics-journey-samples.d.ts +975 -0
- package/dist/analytics-journey-samples.d.ts.map +1 -0
- package/dist/analytics-journey-samples.js +114 -0
- package/dist/analytics-journey-samples.js.map +1 -0
- package/dist/analytics-product.d.ts +1028 -0
- package/dist/analytics-product.d.ts.map +1 -0
- package/dist/analytics-product.js +225 -0
- package/dist/analytics-product.js.map +1 -0
- package/dist/analytics-saved-funnels.d.ts +309 -0
- package/dist/analytics-saved-funnels.d.ts.map +1 -0
- package/dist/analytics-saved-funnels.js +63 -0
- package/dist/analytics-saved-funnels.js.map +1 -0
- package/dist/analytics.d.ts +2646 -0
- package/dist/analytics.d.ts.map +1 -0
- package/dist/analytics.js +590 -0
- package/dist/analytics.js.map +1 -0
- package/dist/capture-policy.d.ts +3 -3
- package/dist/capture-rule-evaluation.d.ts +6 -6
- package/dist/capture-rule-schemas.d.ts +152 -152
- package/dist/capture-rule-suggestions.d.ts +69 -69
- package/dist/improvement-settings.d.ts +2 -2
- package/dist/index.d.ts +474 -470
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/tier-capabilities.d.ts +34 -2
- package/dist/tier-capabilities.d.ts.map +1 -1
- package/dist/tier-capabilities.js +39 -7
- package/dist/tier-capabilities.js.map +1 -1
- package/package.json +1 -1
|
@@ -57,11 +57,13 @@ export declare const CaptureRuleEvaluationContextSchema: z.ZodObject<{
|
|
|
57
57
|
version: string;
|
|
58
58
|
}>>;
|
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
|
60
|
+
event_id: string;
|
|
60
61
|
project_id: string;
|
|
61
62
|
runtime: "unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby";
|
|
62
|
-
event_id: string;
|
|
63
63
|
event_type: "backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event";
|
|
64
64
|
message?: string | undefined;
|
|
65
|
+
service?: string | undefined;
|
|
66
|
+
environment?: string | undefined;
|
|
65
67
|
status_code?: number | undefined;
|
|
66
68
|
first_party?: boolean | undefined;
|
|
67
69
|
error_name?: string | undefined;
|
|
@@ -81,14 +83,14 @@ export declare const CaptureRuleEvaluationContextSchema: z.ZodObject<{
|
|
|
81
83
|
value: string;
|
|
82
84
|
version: string;
|
|
83
85
|
} | undefined;
|
|
84
|
-
service?: string | undefined;
|
|
85
|
-
environment?: string | undefined;
|
|
86
86
|
}, {
|
|
87
|
+
event_id: string;
|
|
87
88
|
project_id: string;
|
|
88
89
|
runtime: "unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby";
|
|
89
|
-
event_id: string;
|
|
90
90
|
event_type: "backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event";
|
|
91
91
|
message?: string | undefined;
|
|
92
|
+
service?: string | undefined;
|
|
93
|
+
environment?: string | undefined;
|
|
92
94
|
status_code?: number | undefined;
|
|
93
95
|
first_party?: boolean | undefined;
|
|
94
96
|
error_name?: string | undefined;
|
|
@@ -108,8 +110,6 @@ export declare const CaptureRuleEvaluationContextSchema: z.ZodObject<{
|
|
|
108
110
|
value: string;
|
|
109
111
|
version: string;
|
|
110
112
|
} | undefined;
|
|
111
|
-
service?: string | undefined;
|
|
112
|
-
environment?: string | undefined;
|
|
113
113
|
}>;
|
|
114
114
|
export type CaptureRuleEvaluationContext = z.infer<typeof CaptureRuleEvaluationContextSchema>;
|
|
115
115
|
export interface CaptureRuleEvaluationResult {
|