@debugbundle/shared-types 0.1.8 → 0.1.10

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.
@@ -0,0 +1,1061 @@
1
+ import { z } from "zod";
2
+ export declare const CaptureRuleSuggestionConfidenceSchema: z.ZodEnum<["high", "medium", "low"]>;
3
+ export type CaptureRuleSuggestionConfidence = z.infer<typeof CaptureRuleSuggestionConfidenceSchema>;
4
+ export declare const CaptureRuleSuggestionSchema: z.ZodObject<{
5
+ suggestion_id: z.ZodString;
6
+ label: z.ZodString;
7
+ recommended_action: z.ZodEnum<["demote", "sample", "drop"]>;
8
+ confidence: z.ZodEnum<["high", "medium", "low"]>;
9
+ reason: z.ZodString;
10
+ requires_confirmation: z.ZodBoolean;
11
+ rule: z.ZodEffects<z.ZodEffects<z.ZodObject<{
12
+ name: z.ZodString;
13
+ description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
14
+ enabled: z.ZodDefault<z.ZodBoolean>;
15
+ action: z.ZodEnum<["demote", "sample", "drop"]>;
16
+ matcher: z.ZodEffects<z.ZodEffects<z.ZodObject<{
17
+ event_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["backend_exception", "request_event", "log_event", "frontend_breadcrumb", "frontend_exception", "deploy_metadata", "error_suppressed", "probe_event"]>, "many">>;
18
+ services: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19
+ environments: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
20
+ runtime: z.ZodOptional<z.ZodArray<z.ZodEnum<["browser", "node", "python", "php", "java", "go", "ruby", "unknown"]>, "many">>;
21
+ first_party: z.ZodOptional<z.ZodBoolean>;
22
+ error_name: z.ZodOptional<z.ZodString>;
23
+ message_contains: z.ZodOptional<z.ZodString>;
24
+ message_equals: z.ZodOptional<z.ZodString>;
25
+ browser_event_kind: z.ZodOptional<z.ZodEnum<["window_error", "resource_error"]>>;
26
+ resource_url: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
27
+ host: z.ZodOptional<z.ZodString>;
28
+ host_suffix: z.ZodOptional<z.ZodString>;
29
+ path_prefix: z.ZodOptional<z.ZodString>;
30
+ path_equals: z.ZodOptional<z.ZodString>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ host?: string | undefined;
33
+ host_suffix?: string | undefined;
34
+ path_prefix?: string | undefined;
35
+ path_equals?: string | undefined;
36
+ }, {
37
+ host?: string | undefined;
38
+ host_suffix?: string | undefined;
39
+ path_prefix?: string | undefined;
40
+ path_equals?: string | undefined;
41
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
42
+ host?: string | undefined;
43
+ host_suffix?: string | undefined;
44
+ path_prefix?: string | undefined;
45
+ path_equals?: string | undefined;
46
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
47
+ host?: string | undefined;
48
+ host_suffix?: string | undefined;
49
+ path_prefix?: string | undefined;
50
+ path_equals?: string | undefined;
51
+ }>>;
52
+ request_url: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
53
+ host: z.ZodOptional<z.ZodString>;
54
+ host_suffix: z.ZodOptional<z.ZodString>;
55
+ path_prefix: z.ZodOptional<z.ZodString>;
56
+ path_equals: z.ZodOptional<z.ZodString>;
57
+ }, "strip", z.ZodTypeAny, {
58
+ host?: string | undefined;
59
+ host_suffix?: string | undefined;
60
+ path_prefix?: string | undefined;
61
+ path_equals?: string | undefined;
62
+ }, {
63
+ host?: string | undefined;
64
+ host_suffix?: string | undefined;
65
+ path_prefix?: string | undefined;
66
+ path_equals?: string | undefined;
67
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
68
+ host?: string | undefined;
69
+ host_suffix?: string | undefined;
70
+ path_prefix?: string | undefined;
71
+ path_equals?: string | undefined;
72
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
73
+ host?: string | undefined;
74
+ host_suffix?: string | undefined;
75
+ path_prefix?: string | undefined;
76
+ path_equals?: string | undefined;
77
+ }>>;
78
+ status_codes: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
79
+ status_ranges: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
80
+ start: z.ZodNumber;
81
+ end: z.ZodNumber;
82
+ }, "strip", z.ZodTypeAny, {
83
+ start: number;
84
+ end: number;
85
+ }, {
86
+ start: number;
87
+ end: number;
88
+ }>, {
89
+ start: number;
90
+ end: number;
91
+ }, {
92
+ start: number;
93
+ end: number;
94
+ }>, "many">>;
95
+ fingerprint: z.ZodOptional<z.ZodObject<{
96
+ version: z.ZodString;
97
+ value: z.ZodString;
98
+ }, "strip", z.ZodTypeAny, {
99
+ value: string;
100
+ version: string;
101
+ }, {
102
+ value: string;
103
+ version: string;
104
+ }>>;
105
+ }, "strip", z.ZodTypeAny, {
106
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
107
+ services?: string[] | undefined;
108
+ environments?: string[] | undefined;
109
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
110
+ first_party?: boolean | undefined;
111
+ error_name?: string | undefined;
112
+ message_contains?: string | undefined;
113
+ message_equals?: string | undefined;
114
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
115
+ resource_url?: import("./capture-rules.js").CaptureRuleUrlMatcher | undefined;
116
+ request_url?: import("./capture-rules.js").CaptureRuleUrlMatcher | undefined;
117
+ status_codes?: number[] | undefined;
118
+ status_ranges?: {
119
+ start: number;
120
+ end: number;
121
+ }[] | undefined;
122
+ fingerprint?: {
123
+ value: string;
124
+ version: string;
125
+ } | undefined;
126
+ }, {
127
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
128
+ services?: string[] | undefined;
129
+ environments?: string[] | undefined;
130
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
131
+ first_party?: boolean | undefined;
132
+ error_name?: string | undefined;
133
+ message_contains?: string | undefined;
134
+ message_equals?: string | undefined;
135
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
136
+ resource_url?: {
137
+ host?: string | undefined;
138
+ host_suffix?: string | undefined;
139
+ path_prefix?: string | undefined;
140
+ path_equals?: string | undefined;
141
+ } | undefined;
142
+ request_url?: {
143
+ host?: string | undefined;
144
+ host_suffix?: string | undefined;
145
+ path_prefix?: string | undefined;
146
+ path_equals?: string | undefined;
147
+ } | undefined;
148
+ status_codes?: number[] | undefined;
149
+ status_ranges?: {
150
+ start: number;
151
+ end: number;
152
+ }[] | undefined;
153
+ fingerprint?: {
154
+ value: string;
155
+ version: string;
156
+ } | undefined;
157
+ }>, import("./capture-rules.js").CaptureRuleMatcher, {
158
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
159
+ services?: string[] | undefined;
160
+ environments?: string[] | undefined;
161
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
162
+ first_party?: boolean | undefined;
163
+ error_name?: string | undefined;
164
+ message_contains?: string | undefined;
165
+ message_equals?: string | undefined;
166
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
167
+ resource_url?: {
168
+ host?: string | undefined;
169
+ host_suffix?: string | undefined;
170
+ path_prefix?: string | undefined;
171
+ path_equals?: string | undefined;
172
+ } | undefined;
173
+ request_url?: {
174
+ host?: string | undefined;
175
+ host_suffix?: string | undefined;
176
+ path_prefix?: string | undefined;
177
+ path_equals?: string | undefined;
178
+ } | undefined;
179
+ status_codes?: number[] | undefined;
180
+ status_ranges?: {
181
+ start: number;
182
+ end: number;
183
+ }[] | undefined;
184
+ fingerprint?: {
185
+ value: string;
186
+ version: string;
187
+ } | undefined;
188
+ }>, import("./capture-rules.js").CaptureRuleMatcher, {
189
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
190
+ services?: string[] | undefined;
191
+ environments?: string[] | undefined;
192
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
193
+ first_party?: boolean | undefined;
194
+ error_name?: string | undefined;
195
+ message_contains?: string | undefined;
196
+ message_equals?: string | undefined;
197
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
198
+ resource_url?: {
199
+ host?: string | undefined;
200
+ host_suffix?: string | undefined;
201
+ path_prefix?: string | undefined;
202
+ path_equals?: string | undefined;
203
+ } | undefined;
204
+ request_url?: {
205
+ host?: string | undefined;
206
+ host_suffix?: string | undefined;
207
+ path_prefix?: string | undefined;
208
+ path_equals?: string | undefined;
209
+ } | undefined;
210
+ status_codes?: number[] | undefined;
211
+ status_ranges?: {
212
+ start: number;
213
+ end: number;
214
+ }[] | undefined;
215
+ fingerprint?: {
216
+ value: string;
217
+ version: string;
218
+ } | undefined;
219
+ }>;
220
+ sample_rate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
221
+ sample_event_class: z.ZodOptional<z.ZodNullable<z.ZodEnum<["preserve", "context"]>>>;
222
+ created_by_user_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
223
+ created_from_incident_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
224
+ created_from_event_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
225
+ expires_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
226
+ }, "strip", z.ZodTypeAny, {
227
+ name: string;
228
+ description: string | null;
229
+ enabled: boolean;
230
+ action: "demote" | "sample" | "drop";
231
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
232
+ created_by_user_id: string | null;
233
+ created_from_incident_id: string | null;
234
+ created_from_event_id: string | null;
235
+ expires_at: string | null;
236
+ sample_rate?: number | null | undefined;
237
+ sample_event_class?: "preserve" | "context" | null | undefined;
238
+ }, {
239
+ name: string;
240
+ action: "demote" | "sample" | "drop";
241
+ matcher: {
242
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
243
+ services?: string[] | undefined;
244
+ environments?: string[] | undefined;
245
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
246
+ first_party?: boolean | undefined;
247
+ error_name?: string | undefined;
248
+ message_contains?: string | undefined;
249
+ message_equals?: string | undefined;
250
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
251
+ resource_url?: {
252
+ host?: string | undefined;
253
+ host_suffix?: string | undefined;
254
+ path_prefix?: string | undefined;
255
+ path_equals?: string | undefined;
256
+ } | undefined;
257
+ request_url?: {
258
+ host?: string | undefined;
259
+ host_suffix?: string | undefined;
260
+ path_prefix?: string | undefined;
261
+ path_equals?: string | undefined;
262
+ } | undefined;
263
+ status_codes?: number[] | undefined;
264
+ status_ranges?: {
265
+ start: number;
266
+ end: number;
267
+ }[] | undefined;
268
+ fingerprint?: {
269
+ value: string;
270
+ version: string;
271
+ } | undefined;
272
+ };
273
+ description?: string | null | undefined;
274
+ enabled?: boolean | undefined;
275
+ sample_rate?: number | null | undefined;
276
+ sample_event_class?: "preserve" | "context" | null | undefined;
277
+ created_by_user_id?: string | null | undefined;
278
+ created_from_incident_id?: string | null | undefined;
279
+ created_from_event_id?: string | null | undefined;
280
+ expires_at?: string | null | undefined;
281
+ }>, {
282
+ name: string;
283
+ description: string | null;
284
+ enabled: boolean;
285
+ action: "demote" | "sample" | "drop";
286
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
287
+ created_by_user_id: string | null;
288
+ created_from_incident_id: string | null;
289
+ created_from_event_id: string | null;
290
+ expires_at: string | null;
291
+ sample_rate?: number | null | undefined;
292
+ sample_event_class?: "preserve" | "context" | null | undefined;
293
+ }, {
294
+ name: string;
295
+ action: "demote" | "sample" | "drop";
296
+ matcher: {
297
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
298
+ services?: string[] | undefined;
299
+ environments?: string[] | undefined;
300
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
301
+ first_party?: boolean | undefined;
302
+ error_name?: string | undefined;
303
+ message_contains?: string | undefined;
304
+ message_equals?: string | undefined;
305
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
306
+ resource_url?: {
307
+ host?: string | undefined;
308
+ host_suffix?: string | undefined;
309
+ path_prefix?: string | undefined;
310
+ path_equals?: string | undefined;
311
+ } | undefined;
312
+ request_url?: {
313
+ host?: string | undefined;
314
+ host_suffix?: string | undefined;
315
+ path_prefix?: string | undefined;
316
+ path_equals?: string | undefined;
317
+ } | undefined;
318
+ status_codes?: number[] | undefined;
319
+ status_ranges?: {
320
+ start: number;
321
+ end: number;
322
+ }[] | undefined;
323
+ fingerprint?: {
324
+ value: string;
325
+ version: string;
326
+ } | undefined;
327
+ };
328
+ description?: string | null | undefined;
329
+ enabled?: boolean | undefined;
330
+ sample_rate?: number | null | undefined;
331
+ sample_event_class?: "preserve" | "context" | null | undefined;
332
+ created_by_user_id?: string | null | undefined;
333
+ created_from_incident_id?: string | null | undefined;
334
+ created_from_event_id?: string | null | undefined;
335
+ expires_at?: string | null | undefined;
336
+ }>, {
337
+ sample_rate: number | null;
338
+ sample_event_class: "preserve" | "context" | null;
339
+ name: string;
340
+ description: string | null;
341
+ enabled: boolean;
342
+ action: "demote" | "sample" | "drop";
343
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
344
+ created_by_user_id: string | null;
345
+ created_from_incident_id: string | null;
346
+ created_from_event_id: string | null;
347
+ expires_at: string | null;
348
+ }, {
349
+ name: string;
350
+ action: "demote" | "sample" | "drop";
351
+ matcher: {
352
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
353
+ services?: string[] | undefined;
354
+ environments?: string[] | undefined;
355
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
356
+ first_party?: boolean | undefined;
357
+ error_name?: string | undefined;
358
+ message_contains?: string | undefined;
359
+ message_equals?: string | undefined;
360
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
361
+ resource_url?: {
362
+ host?: string | undefined;
363
+ host_suffix?: string | undefined;
364
+ path_prefix?: string | undefined;
365
+ path_equals?: string | undefined;
366
+ } | undefined;
367
+ request_url?: {
368
+ host?: string | undefined;
369
+ host_suffix?: string | undefined;
370
+ path_prefix?: string | undefined;
371
+ path_equals?: string | undefined;
372
+ } | undefined;
373
+ status_codes?: number[] | undefined;
374
+ status_ranges?: {
375
+ start: number;
376
+ end: number;
377
+ }[] | undefined;
378
+ fingerprint?: {
379
+ value: string;
380
+ version: string;
381
+ } | undefined;
382
+ };
383
+ description?: string | null | undefined;
384
+ enabled?: boolean | undefined;
385
+ sample_rate?: number | null | undefined;
386
+ sample_event_class?: "preserve" | "context" | null | undefined;
387
+ created_by_user_id?: string | null | undefined;
388
+ created_from_incident_id?: string | null | undefined;
389
+ created_from_event_id?: string | null | undefined;
390
+ expires_at?: string | null | undefined;
391
+ }>;
392
+ }, "strip", z.ZodTypeAny, {
393
+ rule: {
394
+ sample_rate: number | null;
395
+ sample_event_class: "preserve" | "context" | null;
396
+ name: string;
397
+ description: string | null;
398
+ enabled: boolean;
399
+ action: "demote" | "sample" | "drop";
400
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
401
+ created_by_user_id: string | null;
402
+ created_from_incident_id: string | null;
403
+ created_from_event_id: string | null;
404
+ expires_at: string | null;
405
+ };
406
+ suggestion_id: string;
407
+ label: string;
408
+ recommended_action: "demote" | "sample" | "drop";
409
+ confidence: "high" | "medium" | "low";
410
+ reason: string;
411
+ requires_confirmation: boolean;
412
+ }, {
413
+ rule: {
414
+ name: string;
415
+ action: "demote" | "sample" | "drop";
416
+ matcher: {
417
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
418
+ services?: string[] | undefined;
419
+ environments?: string[] | undefined;
420
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
421
+ first_party?: boolean | undefined;
422
+ error_name?: string | undefined;
423
+ message_contains?: string | undefined;
424
+ message_equals?: string | undefined;
425
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
426
+ resource_url?: {
427
+ host?: string | undefined;
428
+ host_suffix?: string | undefined;
429
+ path_prefix?: string | undefined;
430
+ path_equals?: string | undefined;
431
+ } | undefined;
432
+ request_url?: {
433
+ host?: string | undefined;
434
+ host_suffix?: string | undefined;
435
+ path_prefix?: string | undefined;
436
+ path_equals?: string | undefined;
437
+ } | undefined;
438
+ status_codes?: number[] | undefined;
439
+ status_ranges?: {
440
+ start: number;
441
+ end: number;
442
+ }[] | undefined;
443
+ fingerprint?: {
444
+ value: string;
445
+ version: string;
446
+ } | undefined;
447
+ };
448
+ description?: string | null | undefined;
449
+ enabled?: boolean | undefined;
450
+ sample_rate?: number | null | undefined;
451
+ sample_event_class?: "preserve" | "context" | null | undefined;
452
+ created_by_user_id?: string | null | undefined;
453
+ created_from_incident_id?: string | null | undefined;
454
+ created_from_event_id?: string | null | undefined;
455
+ expires_at?: string | null | undefined;
456
+ };
457
+ suggestion_id: string;
458
+ label: string;
459
+ recommended_action: "demote" | "sample" | "drop";
460
+ confidence: "high" | "medium" | "low";
461
+ reason: string;
462
+ requires_confirmation: boolean;
463
+ }>;
464
+ export type CaptureRuleSuggestion = z.infer<typeof CaptureRuleSuggestionSchema>;
465
+ export declare const CaptureRuleSuggestionsResponseSchema: z.ZodObject<{
466
+ suggestions: z.ZodArray<z.ZodObject<{
467
+ suggestion_id: z.ZodString;
468
+ label: z.ZodString;
469
+ recommended_action: z.ZodEnum<["demote", "sample", "drop"]>;
470
+ confidence: z.ZodEnum<["high", "medium", "low"]>;
471
+ reason: z.ZodString;
472
+ requires_confirmation: z.ZodBoolean;
473
+ rule: z.ZodEffects<z.ZodEffects<z.ZodObject<{
474
+ name: z.ZodString;
475
+ description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
476
+ enabled: z.ZodDefault<z.ZodBoolean>;
477
+ action: z.ZodEnum<["demote", "sample", "drop"]>;
478
+ matcher: z.ZodEffects<z.ZodEffects<z.ZodObject<{
479
+ event_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["backend_exception", "request_event", "log_event", "frontend_breadcrumb", "frontend_exception", "deploy_metadata", "error_suppressed", "probe_event"]>, "many">>;
480
+ services: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
481
+ environments: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
482
+ runtime: z.ZodOptional<z.ZodArray<z.ZodEnum<["browser", "node", "python", "php", "java", "go", "ruby", "unknown"]>, "many">>;
483
+ first_party: z.ZodOptional<z.ZodBoolean>;
484
+ error_name: z.ZodOptional<z.ZodString>;
485
+ message_contains: z.ZodOptional<z.ZodString>;
486
+ message_equals: z.ZodOptional<z.ZodString>;
487
+ browser_event_kind: z.ZodOptional<z.ZodEnum<["window_error", "resource_error"]>>;
488
+ resource_url: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
489
+ host: z.ZodOptional<z.ZodString>;
490
+ host_suffix: z.ZodOptional<z.ZodString>;
491
+ path_prefix: z.ZodOptional<z.ZodString>;
492
+ path_equals: z.ZodOptional<z.ZodString>;
493
+ }, "strip", z.ZodTypeAny, {
494
+ host?: string | undefined;
495
+ host_suffix?: string | undefined;
496
+ path_prefix?: string | undefined;
497
+ path_equals?: string | undefined;
498
+ }, {
499
+ host?: string | undefined;
500
+ host_suffix?: string | undefined;
501
+ path_prefix?: string | undefined;
502
+ path_equals?: string | undefined;
503
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
504
+ host?: string | undefined;
505
+ host_suffix?: string | undefined;
506
+ path_prefix?: string | undefined;
507
+ path_equals?: string | undefined;
508
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
509
+ host?: string | undefined;
510
+ host_suffix?: string | undefined;
511
+ path_prefix?: string | undefined;
512
+ path_equals?: string | undefined;
513
+ }>>;
514
+ request_url: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
515
+ host: z.ZodOptional<z.ZodString>;
516
+ host_suffix: z.ZodOptional<z.ZodString>;
517
+ path_prefix: z.ZodOptional<z.ZodString>;
518
+ path_equals: z.ZodOptional<z.ZodString>;
519
+ }, "strip", z.ZodTypeAny, {
520
+ host?: string | undefined;
521
+ host_suffix?: string | undefined;
522
+ path_prefix?: string | undefined;
523
+ path_equals?: string | undefined;
524
+ }, {
525
+ host?: string | undefined;
526
+ host_suffix?: string | undefined;
527
+ path_prefix?: string | undefined;
528
+ path_equals?: string | undefined;
529
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
530
+ host?: string | undefined;
531
+ host_suffix?: string | undefined;
532
+ path_prefix?: string | undefined;
533
+ path_equals?: string | undefined;
534
+ }>, import("./capture-rules.js").CaptureRuleUrlMatcher, {
535
+ host?: string | undefined;
536
+ host_suffix?: string | undefined;
537
+ path_prefix?: string | undefined;
538
+ path_equals?: string | undefined;
539
+ }>>;
540
+ status_codes: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
541
+ status_ranges: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
542
+ start: z.ZodNumber;
543
+ end: z.ZodNumber;
544
+ }, "strip", z.ZodTypeAny, {
545
+ start: number;
546
+ end: number;
547
+ }, {
548
+ start: number;
549
+ end: number;
550
+ }>, {
551
+ start: number;
552
+ end: number;
553
+ }, {
554
+ start: number;
555
+ end: number;
556
+ }>, "many">>;
557
+ fingerprint: z.ZodOptional<z.ZodObject<{
558
+ version: z.ZodString;
559
+ value: z.ZodString;
560
+ }, "strip", z.ZodTypeAny, {
561
+ value: string;
562
+ version: string;
563
+ }, {
564
+ value: string;
565
+ version: string;
566
+ }>>;
567
+ }, "strip", z.ZodTypeAny, {
568
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
569
+ services?: string[] | undefined;
570
+ environments?: string[] | undefined;
571
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
572
+ first_party?: boolean | undefined;
573
+ error_name?: string | undefined;
574
+ message_contains?: string | undefined;
575
+ message_equals?: string | undefined;
576
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
577
+ resource_url?: import("./capture-rules.js").CaptureRuleUrlMatcher | undefined;
578
+ request_url?: import("./capture-rules.js").CaptureRuleUrlMatcher | undefined;
579
+ status_codes?: number[] | undefined;
580
+ status_ranges?: {
581
+ start: number;
582
+ end: number;
583
+ }[] | undefined;
584
+ fingerprint?: {
585
+ value: string;
586
+ version: string;
587
+ } | undefined;
588
+ }, {
589
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
590
+ services?: string[] | undefined;
591
+ environments?: string[] | undefined;
592
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
593
+ first_party?: boolean | undefined;
594
+ error_name?: string | undefined;
595
+ message_contains?: string | undefined;
596
+ message_equals?: string | undefined;
597
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
598
+ resource_url?: {
599
+ host?: string | undefined;
600
+ host_suffix?: string | undefined;
601
+ path_prefix?: string | undefined;
602
+ path_equals?: string | undefined;
603
+ } | undefined;
604
+ request_url?: {
605
+ host?: string | undefined;
606
+ host_suffix?: string | undefined;
607
+ path_prefix?: string | undefined;
608
+ path_equals?: string | undefined;
609
+ } | undefined;
610
+ status_codes?: number[] | undefined;
611
+ status_ranges?: {
612
+ start: number;
613
+ end: number;
614
+ }[] | undefined;
615
+ fingerprint?: {
616
+ value: string;
617
+ version: string;
618
+ } | undefined;
619
+ }>, import("./capture-rules.js").CaptureRuleMatcher, {
620
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
621
+ services?: string[] | undefined;
622
+ environments?: string[] | undefined;
623
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
624
+ first_party?: boolean | undefined;
625
+ error_name?: string | undefined;
626
+ message_contains?: string | undefined;
627
+ message_equals?: string | undefined;
628
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
629
+ resource_url?: {
630
+ host?: string | undefined;
631
+ host_suffix?: string | undefined;
632
+ path_prefix?: string | undefined;
633
+ path_equals?: string | undefined;
634
+ } | undefined;
635
+ request_url?: {
636
+ host?: string | undefined;
637
+ host_suffix?: string | undefined;
638
+ path_prefix?: string | undefined;
639
+ path_equals?: string | undefined;
640
+ } | undefined;
641
+ status_codes?: number[] | undefined;
642
+ status_ranges?: {
643
+ start: number;
644
+ end: number;
645
+ }[] | undefined;
646
+ fingerprint?: {
647
+ value: string;
648
+ version: string;
649
+ } | undefined;
650
+ }>, import("./capture-rules.js").CaptureRuleMatcher, {
651
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
652
+ services?: string[] | undefined;
653
+ environments?: string[] | undefined;
654
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
655
+ first_party?: boolean | undefined;
656
+ error_name?: string | undefined;
657
+ message_contains?: string | undefined;
658
+ message_equals?: string | undefined;
659
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
660
+ resource_url?: {
661
+ host?: string | undefined;
662
+ host_suffix?: string | undefined;
663
+ path_prefix?: string | undefined;
664
+ path_equals?: string | undefined;
665
+ } | undefined;
666
+ request_url?: {
667
+ host?: string | undefined;
668
+ host_suffix?: string | undefined;
669
+ path_prefix?: string | undefined;
670
+ path_equals?: string | undefined;
671
+ } | undefined;
672
+ status_codes?: number[] | undefined;
673
+ status_ranges?: {
674
+ start: number;
675
+ end: number;
676
+ }[] | undefined;
677
+ fingerprint?: {
678
+ value: string;
679
+ version: string;
680
+ } | undefined;
681
+ }>;
682
+ sample_rate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
683
+ sample_event_class: z.ZodOptional<z.ZodNullable<z.ZodEnum<["preserve", "context"]>>>;
684
+ created_by_user_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
685
+ created_from_incident_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
686
+ created_from_event_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
687
+ expires_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
688
+ }, "strip", z.ZodTypeAny, {
689
+ name: string;
690
+ description: string | null;
691
+ enabled: boolean;
692
+ action: "demote" | "sample" | "drop";
693
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
694
+ created_by_user_id: string | null;
695
+ created_from_incident_id: string | null;
696
+ created_from_event_id: string | null;
697
+ expires_at: string | null;
698
+ sample_rate?: number | null | undefined;
699
+ sample_event_class?: "preserve" | "context" | null | undefined;
700
+ }, {
701
+ name: string;
702
+ action: "demote" | "sample" | "drop";
703
+ matcher: {
704
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
705
+ services?: string[] | undefined;
706
+ environments?: string[] | undefined;
707
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
708
+ first_party?: boolean | undefined;
709
+ error_name?: string | undefined;
710
+ message_contains?: string | undefined;
711
+ message_equals?: string | undefined;
712
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
713
+ resource_url?: {
714
+ host?: string | undefined;
715
+ host_suffix?: string | undefined;
716
+ path_prefix?: string | undefined;
717
+ path_equals?: string | undefined;
718
+ } | undefined;
719
+ request_url?: {
720
+ host?: string | undefined;
721
+ host_suffix?: string | undefined;
722
+ path_prefix?: string | undefined;
723
+ path_equals?: string | undefined;
724
+ } | undefined;
725
+ status_codes?: number[] | undefined;
726
+ status_ranges?: {
727
+ start: number;
728
+ end: number;
729
+ }[] | undefined;
730
+ fingerprint?: {
731
+ value: string;
732
+ version: string;
733
+ } | undefined;
734
+ };
735
+ description?: string | null | undefined;
736
+ enabled?: boolean | undefined;
737
+ sample_rate?: number | null | undefined;
738
+ sample_event_class?: "preserve" | "context" | null | undefined;
739
+ created_by_user_id?: string | null | undefined;
740
+ created_from_incident_id?: string | null | undefined;
741
+ created_from_event_id?: string | null | undefined;
742
+ expires_at?: string | null | undefined;
743
+ }>, {
744
+ name: string;
745
+ description: string | null;
746
+ enabled: boolean;
747
+ action: "demote" | "sample" | "drop";
748
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
749
+ created_by_user_id: string | null;
750
+ created_from_incident_id: string | null;
751
+ created_from_event_id: string | null;
752
+ expires_at: string | null;
753
+ sample_rate?: number | null | undefined;
754
+ sample_event_class?: "preserve" | "context" | null | undefined;
755
+ }, {
756
+ name: string;
757
+ action: "demote" | "sample" | "drop";
758
+ matcher: {
759
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
760
+ services?: string[] | undefined;
761
+ environments?: string[] | undefined;
762
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
763
+ first_party?: boolean | undefined;
764
+ error_name?: string | undefined;
765
+ message_contains?: string | undefined;
766
+ message_equals?: string | undefined;
767
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
768
+ resource_url?: {
769
+ host?: string | undefined;
770
+ host_suffix?: string | undefined;
771
+ path_prefix?: string | undefined;
772
+ path_equals?: string | undefined;
773
+ } | undefined;
774
+ request_url?: {
775
+ host?: string | undefined;
776
+ host_suffix?: string | undefined;
777
+ path_prefix?: string | undefined;
778
+ path_equals?: string | undefined;
779
+ } | undefined;
780
+ status_codes?: number[] | undefined;
781
+ status_ranges?: {
782
+ start: number;
783
+ end: number;
784
+ }[] | undefined;
785
+ fingerprint?: {
786
+ value: string;
787
+ version: string;
788
+ } | undefined;
789
+ };
790
+ description?: string | null | undefined;
791
+ enabled?: boolean | undefined;
792
+ sample_rate?: number | null | undefined;
793
+ sample_event_class?: "preserve" | "context" | null | undefined;
794
+ created_by_user_id?: string | null | undefined;
795
+ created_from_incident_id?: string | null | undefined;
796
+ created_from_event_id?: string | null | undefined;
797
+ expires_at?: string | null | undefined;
798
+ }>, {
799
+ sample_rate: number | null;
800
+ sample_event_class: "preserve" | "context" | null;
801
+ name: string;
802
+ description: string | null;
803
+ enabled: boolean;
804
+ action: "demote" | "sample" | "drop";
805
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
806
+ created_by_user_id: string | null;
807
+ created_from_incident_id: string | null;
808
+ created_from_event_id: string | null;
809
+ expires_at: string | null;
810
+ }, {
811
+ name: string;
812
+ action: "demote" | "sample" | "drop";
813
+ matcher: {
814
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
815
+ services?: string[] | undefined;
816
+ environments?: string[] | undefined;
817
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
818
+ first_party?: boolean | undefined;
819
+ error_name?: string | undefined;
820
+ message_contains?: string | undefined;
821
+ message_equals?: string | undefined;
822
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
823
+ resource_url?: {
824
+ host?: string | undefined;
825
+ host_suffix?: string | undefined;
826
+ path_prefix?: string | undefined;
827
+ path_equals?: string | undefined;
828
+ } | undefined;
829
+ request_url?: {
830
+ host?: string | undefined;
831
+ host_suffix?: string | undefined;
832
+ path_prefix?: string | undefined;
833
+ path_equals?: string | undefined;
834
+ } | undefined;
835
+ status_codes?: number[] | undefined;
836
+ status_ranges?: {
837
+ start: number;
838
+ end: number;
839
+ }[] | undefined;
840
+ fingerprint?: {
841
+ value: string;
842
+ version: string;
843
+ } | undefined;
844
+ };
845
+ description?: string | null | undefined;
846
+ enabled?: boolean | undefined;
847
+ sample_rate?: number | null | undefined;
848
+ sample_event_class?: "preserve" | "context" | null | undefined;
849
+ created_by_user_id?: string | null | undefined;
850
+ created_from_incident_id?: string | null | undefined;
851
+ created_from_event_id?: string | null | undefined;
852
+ expires_at?: string | null | undefined;
853
+ }>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ rule: {
856
+ sample_rate: number | null;
857
+ sample_event_class: "preserve" | "context" | null;
858
+ name: string;
859
+ description: string | null;
860
+ enabled: boolean;
861
+ action: "demote" | "sample" | "drop";
862
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
863
+ created_by_user_id: string | null;
864
+ created_from_incident_id: string | null;
865
+ created_from_event_id: string | null;
866
+ expires_at: string | null;
867
+ };
868
+ suggestion_id: string;
869
+ label: string;
870
+ recommended_action: "demote" | "sample" | "drop";
871
+ confidence: "high" | "medium" | "low";
872
+ reason: string;
873
+ requires_confirmation: boolean;
874
+ }, {
875
+ rule: {
876
+ name: string;
877
+ action: "demote" | "sample" | "drop";
878
+ matcher: {
879
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
880
+ services?: string[] | undefined;
881
+ environments?: string[] | undefined;
882
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
883
+ first_party?: boolean | undefined;
884
+ error_name?: string | undefined;
885
+ message_contains?: string | undefined;
886
+ message_equals?: string | undefined;
887
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
888
+ resource_url?: {
889
+ host?: string | undefined;
890
+ host_suffix?: string | undefined;
891
+ path_prefix?: string | undefined;
892
+ path_equals?: string | undefined;
893
+ } | undefined;
894
+ request_url?: {
895
+ host?: string | undefined;
896
+ host_suffix?: string | undefined;
897
+ path_prefix?: string | undefined;
898
+ path_equals?: string | undefined;
899
+ } | undefined;
900
+ status_codes?: number[] | undefined;
901
+ status_ranges?: {
902
+ start: number;
903
+ end: number;
904
+ }[] | undefined;
905
+ fingerprint?: {
906
+ value: string;
907
+ version: string;
908
+ } | undefined;
909
+ };
910
+ description?: string | null | undefined;
911
+ enabled?: boolean | undefined;
912
+ sample_rate?: number | null | undefined;
913
+ sample_event_class?: "preserve" | "context" | null | undefined;
914
+ created_by_user_id?: string | null | undefined;
915
+ created_from_incident_id?: string | null | undefined;
916
+ created_from_event_id?: string | null | undefined;
917
+ expires_at?: string | null | undefined;
918
+ };
919
+ suggestion_id: string;
920
+ label: string;
921
+ recommended_action: "demote" | "sample" | "drop";
922
+ confidence: "high" | "medium" | "low";
923
+ reason: string;
924
+ requires_confirmation: boolean;
925
+ }>, "many">;
926
+ bundle_status: z.ZodOptional<z.ZodEnum<["ready", "pending", "failed"]>>;
927
+ bundle_reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
928
+ }, "strip", z.ZodTypeAny, {
929
+ suggestions: {
930
+ rule: {
931
+ sample_rate: number | null;
932
+ sample_event_class: "preserve" | "context" | null;
933
+ name: string;
934
+ description: string | null;
935
+ enabled: boolean;
936
+ action: "demote" | "sample" | "drop";
937
+ matcher: import("./capture-rules.js").CaptureRuleMatcher;
938
+ created_by_user_id: string | null;
939
+ created_from_incident_id: string | null;
940
+ created_from_event_id: string | null;
941
+ expires_at: string | null;
942
+ };
943
+ suggestion_id: string;
944
+ label: string;
945
+ recommended_action: "demote" | "sample" | "drop";
946
+ confidence: "high" | "medium" | "low";
947
+ reason: string;
948
+ requires_confirmation: boolean;
949
+ }[];
950
+ bundle_status?: "ready" | "pending" | "failed" | undefined;
951
+ bundle_reason?: string | null | undefined;
952
+ }, {
953
+ suggestions: {
954
+ rule: {
955
+ name: string;
956
+ action: "demote" | "sample" | "drop";
957
+ matcher: {
958
+ event_types?: ("backend_exception" | "frontend_exception" | "deploy_metadata" | "error_suppressed" | "log_event" | "request_event" | "frontend_breadcrumb" | "probe_event")[] | undefined;
959
+ services?: string[] | undefined;
960
+ environments?: string[] | undefined;
961
+ runtime?: ("unknown" | "browser" | "node" | "python" | "php" | "java" | "go" | "ruby")[] | undefined;
962
+ first_party?: boolean | undefined;
963
+ error_name?: string | undefined;
964
+ message_contains?: string | undefined;
965
+ message_equals?: string | undefined;
966
+ browser_event_kind?: "window_error" | "resource_error" | undefined;
967
+ resource_url?: {
968
+ host?: string | undefined;
969
+ host_suffix?: string | undefined;
970
+ path_prefix?: string | undefined;
971
+ path_equals?: string | undefined;
972
+ } | undefined;
973
+ request_url?: {
974
+ host?: string | undefined;
975
+ host_suffix?: string | undefined;
976
+ path_prefix?: string | undefined;
977
+ path_equals?: string | undefined;
978
+ } | undefined;
979
+ status_codes?: number[] | undefined;
980
+ status_ranges?: {
981
+ start: number;
982
+ end: number;
983
+ }[] | undefined;
984
+ fingerprint?: {
985
+ value: string;
986
+ version: string;
987
+ } | undefined;
988
+ };
989
+ description?: string | null | undefined;
990
+ enabled?: boolean | undefined;
991
+ sample_rate?: number | null | undefined;
992
+ sample_event_class?: "preserve" | "context" | null | undefined;
993
+ created_by_user_id?: string | null | undefined;
994
+ created_from_incident_id?: string | null | undefined;
995
+ created_from_event_id?: string | null | undefined;
996
+ expires_at?: string | null | undefined;
997
+ };
998
+ suggestion_id: string;
999
+ label: string;
1000
+ recommended_action: "demote" | "sample" | "drop";
1001
+ confidence: "high" | "medium" | "low";
1002
+ reason: string;
1003
+ requires_confirmation: boolean;
1004
+ }[];
1005
+ bundle_status?: "ready" | "pending" | "failed" | undefined;
1006
+ bundle_reason?: string | null | undefined;
1007
+ }>;
1008
+ export type CaptureRuleSuggestionsResponse = z.infer<typeof CaptureRuleSuggestionsResponseSchema>;
1009
+ export declare const CreateCaptureRuleFromSuggestionSchema: z.ZodObject<{
1010
+ suggestion_id: z.ZodString;
1011
+ name: z.ZodOptional<z.ZodString>;
1012
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1013
+ enabled: z.ZodOptional<z.ZodBoolean>;
1014
+ expires_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1015
+ }, "strip", z.ZodTypeAny, {
1016
+ suggestion_id: string;
1017
+ name?: string | undefined;
1018
+ description?: string | null | undefined;
1019
+ enabled?: boolean | undefined;
1020
+ expires_at?: string | null | undefined;
1021
+ }, {
1022
+ suggestion_id: string;
1023
+ name?: string | undefined;
1024
+ description?: string | null | undefined;
1025
+ enabled?: boolean | undefined;
1026
+ expires_at?: string | null | undefined;
1027
+ }>;
1028
+ export type CreateCaptureRuleFromSuggestion = z.infer<typeof CreateCaptureRuleFromSuggestionSchema>;
1029
+ export interface CaptureRuleSuggestionIncident {
1030
+ incident_id: string;
1031
+ project_id: string;
1032
+ fingerprint: string;
1033
+ fingerprint_version: string;
1034
+ title: string;
1035
+ occurrence_count: number;
1036
+ matched_fields: string[];
1037
+ }
1038
+ export interface CaptureRuleSuggestionBundle {
1039
+ signal: {
1040
+ signal_type: string;
1041
+ source_event_types: string[];
1042
+ fingerprint: string;
1043
+ };
1044
+ context: {
1045
+ request?: {
1046
+ path?: string;
1047
+ headers?: Record<string, unknown>;
1048
+ } | null | undefined;
1049
+ response?: {
1050
+ status_code?: number;
1051
+ } | null | undefined;
1052
+ frontend?: {
1053
+ exceptions?: unknown[];
1054
+ } | null | undefined;
1055
+ };
1056
+ }
1057
+ export declare function buildCaptureRuleSuggestions(input: {
1058
+ incident: CaptureRuleSuggestionIncident;
1059
+ bundle: CaptureRuleSuggestionBundle;
1060
+ }): CaptureRuleSuggestion[];
1061
+ //# sourceMappingURL=capture-rule-suggestions.d.ts.map