@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.
@@ -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 {