@debugbundle/shared-types 1.0.2 → 1.2.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/capture-policy.d.ts +202 -0
- package/dist/capture-policy.d.ts.map +1 -1
- package/dist/capture-policy.js +120 -32
- package/dist/capture-policy.js.map +1 -1
- package/dist/capture-rule-evaluation.d.ts +156 -0
- package/dist/capture-rule-evaluation.d.ts.map +1 -0
- package/dist/capture-rule-evaluation.js +495 -0
- package/dist/capture-rule-evaluation.js.map +1 -0
- package/dist/capture-rule-schemas.d.ts +2763 -0
- package/dist/capture-rule-schemas.d.ts.map +1 -0
- package/dist/capture-rule-schemas.js +385 -0
- package/dist/capture-rule-schemas.js.map +1 -0
- package/dist/capture-rule-suggestions.d.ts +91 -25
- package/dist/capture-rule-suggestions.d.ts.map +1 -1
- package/dist/capture-rule-suggestions.js +86 -1
- package/dist/capture-rule-suggestions.js.map +1 -1
- package/dist/capture-rules.d.ts +2 -2744
- package/dist/capture-rules.d.ts.map +1 -1
- package/dist/capture-rules.js +2 -780
- package/dist/capture-rules.js.map +1 -1
- package/dist/index.d.ts +265 -225
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -56,14 +56,14 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
56
56
|
body: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
path: string;
|
|
59
|
-
headers: Record<string, unknown>;
|
|
60
59
|
method: string;
|
|
60
|
+
headers: Record<string, unknown>;
|
|
61
61
|
query: Record<string, unknown>;
|
|
62
62
|
body?: unknown;
|
|
63
63
|
}, {
|
|
64
64
|
path: string;
|
|
65
|
-
headers: Record<string, unknown>;
|
|
66
65
|
method: string;
|
|
66
|
+
headers: Record<string, unknown>;
|
|
67
67
|
query: Record<string, unknown>;
|
|
68
68
|
body?: unknown;
|
|
69
69
|
}>;
|
|
@@ -206,8 +206,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
206
206
|
name: string;
|
|
207
207
|
request: {
|
|
208
208
|
path: string;
|
|
209
|
-
headers: Record<string, unknown>;
|
|
210
209
|
method: string;
|
|
210
|
+
headers: Record<string, unknown>;
|
|
211
211
|
query: Record<string, unknown>;
|
|
212
212
|
body?: unknown;
|
|
213
213
|
};
|
|
@@ -251,8 +251,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
251
251
|
name: string;
|
|
252
252
|
request: {
|
|
253
253
|
path: string;
|
|
254
|
-
headers: Record<string, unknown>;
|
|
255
254
|
method: string;
|
|
255
|
+
headers: Record<string, unknown>;
|
|
256
256
|
query: Record<string, unknown>;
|
|
257
257
|
body?: unknown;
|
|
258
258
|
};
|
|
@@ -310,8 +310,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
310
310
|
name: string;
|
|
311
311
|
request: {
|
|
312
312
|
path: string;
|
|
313
|
-
headers: Record<string, unknown>;
|
|
314
313
|
method: string;
|
|
314
|
+
headers: Record<string, unknown>;
|
|
315
315
|
query: Record<string, unknown>;
|
|
316
316
|
body?: unknown;
|
|
317
317
|
};
|
|
@@ -377,8 +377,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
377
377
|
name: string;
|
|
378
378
|
request: {
|
|
379
379
|
path: string;
|
|
380
|
-
headers: Record<string, unknown>;
|
|
381
380
|
method: string;
|
|
381
|
+
headers: Record<string, unknown>;
|
|
382
382
|
query: Record<string, unknown>;
|
|
383
383
|
body?: unknown;
|
|
384
384
|
};
|
|
@@ -463,8 +463,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
463
463
|
}, "strict", z.ZodTypeAny, {
|
|
464
464
|
path: string;
|
|
465
465
|
response_status: number;
|
|
466
|
-
headers: Record<string, unknown>;
|
|
467
466
|
method: string;
|
|
467
|
+
headers: Record<string, unknown>;
|
|
468
468
|
query: Record<string, unknown>;
|
|
469
469
|
duration_ms: number;
|
|
470
470
|
body?: unknown;
|
|
@@ -474,8 +474,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
474
474
|
}, {
|
|
475
475
|
path: string;
|
|
476
476
|
response_status: number;
|
|
477
|
-
headers: Record<string, unknown>;
|
|
478
477
|
method: string;
|
|
478
|
+
headers: Record<string, unknown>;
|
|
479
479
|
query: Record<string, unknown>;
|
|
480
480
|
duration_ms: number;
|
|
481
481
|
body?: unknown;
|
|
@@ -499,8 +499,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
499
499
|
payload: {
|
|
500
500
|
path: string;
|
|
501
501
|
response_status: number;
|
|
502
|
-
headers: Record<string, unknown>;
|
|
503
502
|
method: string;
|
|
503
|
+
headers: Record<string, unknown>;
|
|
504
504
|
query: Record<string, unknown>;
|
|
505
505
|
duration_ms: number;
|
|
506
506
|
body?: unknown;
|
|
@@ -532,8 +532,8 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
532
532
|
payload: {
|
|
533
533
|
path: string;
|
|
534
534
|
response_status: number;
|
|
535
|
-
headers: Record<string, unknown>;
|
|
536
535
|
method: string;
|
|
536
|
+
headers: Record<string, unknown>;
|
|
537
537
|
query: Record<string, unknown>;
|
|
538
538
|
duration_ms: number;
|
|
539
539
|
body?: unknown;
|
|
@@ -1015,9 +1015,9 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1015
1015
|
} | null;
|
|
1016
1016
|
kind: "window_error" | "resource_error";
|
|
1017
1017
|
file_name: string | null;
|
|
1018
|
+
opaque: boolean;
|
|
1018
1019
|
line_number: number | null;
|
|
1019
1020
|
column_number: number | null;
|
|
1020
|
-
opaque: boolean;
|
|
1021
1021
|
page?: {
|
|
1022
1022
|
url: string | null;
|
|
1023
1023
|
referrer: string | null;
|
|
@@ -1042,9 +1042,9 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1042
1042
|
} | null;
|
|
1043
1043
|
kind: "window_error" | "resource_error";
|
|
1044
1044
|
file_name: string | null;
|
|
1045
|
+
opaque: boolean;
|
|
1045
1046
|
line_number: number | null;
|
|
1046
1047
|
column_number: number | null;
|
|
1047
|
-
opaque: boolean;
|
|
1048
1048
|
page?: {
|
|
1049
1049
|
url: string | null;
|
|
1050
1050
|
referrer: string | null;
|
|
@@ -1052,6 +1052,22 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1052
1052
|
visibility_state: "visible" | "hidden" | "prerender" | "unloaded" | null;
|
|
1053
1053
|
} | undefined;
|
|
1054
1054
|
}>>;
|
|
1055
|
+
rejection_reason: z.ZodOptional<z.ZodObject<{
|
|
1056
|
+
kind: z.ZodEnum<["error", "string", "object", "null", "undefined", "unknown"]>;
|
|
1057
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1058
|
+
message: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
preview: z.ZodOptional<z.ZodString>;
|
|
1060
|
+
}, "strict", z.ZodTypeAny, {
|
|
1061
|
+
kind: "string" | "undefined" | "object" | "error" | "null" | "unknown";
|
|
1062
|
+
message?: string | undefined;
|
|
1063
|
+
preview?: string | undefined;
|
|
1064
|
+
name?: string | undefined;
|
|
1065
|
+
}, {
|
|
1066
|
+
kind: "string" | "undefined" | "object" | "error" | "null" | "unknown";
|
|
1067
|
+
message?: string | undefined;
|
|
1068
|
+
preview?: string | undefined;
|
|
1069
|
+
name?: string | undefined;
|
|
1070
|
+
}>>;
|
|
1055
1071
|
dom_context: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1056
1072
|
mode: z.ZodLiteral<"lightweight">;
|
|
1057
1073
|
html_excerpt: z.ZodString;
|
|
@@ -1105,6 +1121,27 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1105
1121
|
};
|
|
1106
1122
|
name: string;
|
|
1107
1123
|
stack: string;
|
|
1124
|
+
device?: {
|
|
1125
|
+
user_agent: string | null;
|
|
1126
|
+
os: {
|
|
1127
|
+
version: string | null;
|
|
1128
|
+
name: string | null;
|
|
1129
|
+
};
|
|
1130
|
+
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1131
|
+
screen: {
|
|
1132
|
+
width: number;
|
|
1133
|
+
height: number;
|
|
1134
|
+
};
|
|
1135
|
+
viewport: {
|
|
1136
|
+
width: number;
|
|
1137
|
+
height: number;
|
|
1138
|
+
};
|
|
1139
|
+
device_pixel_ratio: number | null;
|
|
1140
|
+
touch_capable: boolean | null;
|
|
1141
|
+
language: string | null;
|
|
1142
|
+
connection_type: string | null;
|
|
1143
|
+
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1144
|
+
} | null | undefined;
|
|
1108
1145
|
browser_event?: {
|
|
1109
1146
|
message: string | null;
|
|
1110
1147
|
target: {
|
|
@@ -1123,9 +1160,9 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1123
1160
|
} | null;
|
|
1124
1161
|
kind: "window_error" | "resource_error";
|
|
1125
1162
|
file_name: string | null;
|
|
1163
|
+
opaque: boolean;
|
|
1126
1164
|
line_number: number | null;
|
|
1127
1165
|
column_number: number | null;
|
|
1128
|
-
opaque: boolean;
|
|
1129
1166
|
page?: {
|
|
1130
1167
|
url: string | null;
|
|
1131
1168
|
referrer: string | null;
|
|
@@ -1149,6 +1186,24 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1149
1186
|
ts: string;
|
|
1150
1187
|
route?: string | null | undefined;
|
|
1151
1188
|
}[] | undefined;
|
|
1189
|
+
rejection_reason?: {
|
|
1190
|
+
kind: "string" | "undefined" | "object" | "error" | "null" | "unknown";
|
|
1191
|
+
message?: string | undefined;
|
|
1192
|
+
preview?: string | undefined;
|
|
1193
|
+
name?: string | undefined;
|
|
1194
|
+
} | undefined;
|
|
1195
|
+
dom_context?: {
|
|
1196
|
+
mode: "lightweight";
|
|
1197
|
+
html_excerpt: string;
|
|
1198
|
+
} | null | undefined;
|
|
1199
|
+
}, {
|
|
1200
|
+
message: string;
|
|
1201
|
+
browser: {
|
|
1202
|
+
version: string;
|
|
1203
|
+
name: string;
|
|
1204
|
+
};
|
|
1205
|
+
name: string;
|
|
1206
|
+
stack: string;
|
|
1152
1207
|
device?: {
|
|
1153
1208
|
user_agent: string | null;
|
|
1154
1209
|
os: {
|
|
@@ -1170,18 +1225,6 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1170
1225
|
connection_type: string | null;
|
|
1171
1226
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1172
1227
|
} | null | undefined;
|
|
1173
|
-
dom_context?: {
|
|
1174
|
-
mode: "lightweight";
|
|
1175
|
-
html_excerpt: string;
|
|
1176
|
-
} | null | undefined;
|
|
1177
|
-
}, {
|
|
1178
|
-
message: string;
|
|
1179
|
-
browser: {
|
|
1180
|
-
version: string;
|
|
1181
|
-
name: string;
|
|
1182
|
-
};
|
|
1183
|
-
name: string;
|
|
1184
|
-
stack: string;
|
|
1185
1228
|
browser_event?: {
|
|
1186
1229
|
message: string | null;
|
|
1187
1230
|
target: {
|
|
@@ -1200,9 +1243,9 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1200
1243
|
} | null;
|
|
1201
1244
|
kind: "window_error" | "resource_error";
|
|
1202
1245
|
file_name: string | null;
|
|
1246
|
+
opaque: boolean;
|
|
1203
1247
|
line_number: number | null;
|
|
1204
1248
|
column_number: number | null;
|
|
1205
|
-
opaque: boolean;
|
|
1206
1249
|
page?: {
|
|
1207
1250
|
url: string | null;
|
|
1208
1251
|
referrer: string | null;
|
|
@@ -1226,27 +1269,12 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1226
1269
|
ts: string;
|
|
1227
1270
|
route?: string | null | undefined;
|
|
1228
1271
|
}[] | undefined;
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1236
|
-
screen: {
|
|
1237
|
-
width: number;
|
|
1238
|
-
height: number;
|
|
1239
|
-
};
|
|
1240
|
-
viewport: {
|
|
1241
|
-
width: number;
|
|
1242
|
-
height: number;
|
|
1243
|
-
};
|
|
1244
|
-
device_pixel_ratio: number | null;
|
|
1245
|
-
touch_capable: boolean | null;
|
|
1246
|
-
language: string | null;
|
|
1247
|
-
connection_type: string | null;
|
|
1248
|
-
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1249
|
-
} | null | undefined;
|
|
1272
|
+
rejection_reason?: {
|
|
1273
|
+
kind: "string" | "undefined" | "object" | "error" | "null" | "unknown";
|
|
1274
|
+
message?: string | undefined;
|
|
1275
|
+
preview?: string | undefined;
|
|
1276
|
+
name?: string | undefined;
|
|
1277
|
+
} | undefined;
|
|
1250
1278
|
dom_context?: {
|
|
1251
1279
|
mode: "lightweight";
|
|
1252
1280
|
html_excerpt: string;
|
|
@@ -1273,6 +1301,27 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1273
1301
|
};
|
|
1274
1302
|
name: string;
|
|
1275
1303
|
stack: string;
|
|
1304
|
+
device?: {
|
|
1305
|
+
user_agent: string | null;
|
|
1306
|
+
os: {
|
|
1307
|
+
version: string | null;
|
|
1308
|
+
name: string | null;
|
|
1309
|
+
};
|
|
1310
|
+
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1311
|
+
screen: {
|
|
1312
|
+
width: number;
|
|
1313
|
+
height: number;
|
|
1314
|
+
};
|
|
1315
|
+
viewport: {
|
|
1316
|
+
width: number;
|
|
1317
|
+
height: number;
|
|
1318
|
+
};
|
|
1319
|
+
device_pixel_ratio: number | null;
|
|
1320
|
+
touch_capable: boolean | null;
|
|
1321
|
+
language: string | null;
|
|
1322
|
+
connection_type: string | null;
|
|
1323
|
+
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1324
|
+
} | null | undefined;
|
|
1276
1325
|
browser_event?: {
|
|
1277
1326
|
message: string | null;
|
|
1278
1327
|
target: {
|
|
@@ -1291,9 +1340,9 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1291
1340
|
} | null;
|
|
1292
1341
|
kind: "window_error" | "resource_error";
|
|
1293
1342
|
file_name: string | null;
|
|
1343
|
+
opaque: boolean;
|
|
1294
1344
|
line_number: number | null;
|
|
1295
1345
|
column_number: number | null;
|
|
1296
|
-
opaque: boolean;
|
|
1297
1346
|
page?: {
|
|
1298
1347
|
url: string | null;
|
|
1299
1348
|
referrer: string | null;
|
|
@@ -1317,27 +1366,12 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1317
1366
|
ts: string;
|
|
1318
1367
|
route?: string | null | undefined;
|
|
1319
1368
|
}[] | undefined;
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1327
|
-
screen: {
|
|
1328
|
-
width: number;
|
|
1329
|
-
height: number;
|
|
1330
|
-
};
|
|
1331
|
-
viewport: {
|
|
1332
|
-
width: number;
|
|
1333
|
-
height: number;
|
|
1334
|
-
};
|
|
1335
|
-
device_pixel_ratio: number | null;
|
|
1336
|
-
touch_capable: boolean | null;
|
|
1337
|
-
language: string | null;
|
|
1338
|
-
connection_type: string | null;
|
|
1339
|
-
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1340
|
-
} | null | undefined;
|
|
1369
|
+
rejection_reason?: {
|
|
1370
|
+
kind: "string" | "undefined" | "object" | "error" | "null" | "unknown";
|
|
1371
|
+
message?: string | undefined;
|
|
1372
|
+
preview?: string | undefined;
|
|
1373
|
+
name?: string | undefined;
|
|
1374
|
+
} | undefined;
|
|
1341
1375
|
dom_context?: {
|
|
1342
1376
|
mode: "lightweight";
|
|
1343
1377
|
html_excerpt: string;
|
|
@@ -1372,6 +1406,27 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1372
1406
|
};
|
|
1373
1407
|
name: string;
|
|
1374
1408
|
stack: string;
|
|
1409
|
+
device?: {
|
|
1410
|
+
user_agent: string | null;
|
|
1411
|
+
os: {
|
|
1412
|
+
version: string | null;
|
|
1413
|
+
name: string | null;
|
|
1414
|
+
};
|
|
1415
|
+
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1416
|
+
screen: {
|
|
1417
|
+
width: number;
|
|
1418
|
+
height: number;
|
|
1419
|
+
};
|
|
1420
|
+
viewport: {
|
|
1421
|
+
width: number;
|
|
1422
|
+
height: number;
|
|
1423
|
+
};
|
|
1424
|
+
device_pixel_ratio: number | null;
|
|
1425
|
+
touch_capable: boolean | null;
|
|
1426
|
+
language: string | null;
|
|
1427
|
+
connection_type: string | null;
|
|
1428
|
+
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1429
|
+
} | null | undefined;
|
|
1375
1430
|
browser_event?: {
|
|
1376
1431
|
message: string | null;
|
|
1377
1432
|
target: {
|
|
@@ -1390,9 +1445,9 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1390
1445
|
} | null;
|
|
1391
1446
|
kind: "window_error" | "resource_error";
|
|
1392
1447
|
file_name: string | null;
|
|
1448
|
+
opaque: boolean;
|
|
1393
1449
|
line_number: number | null;
|
|
1394
1450
|
column_number: number | null;
|
|
1395
|
-
opaque: boolean;
|
|
1396
1451
|
page?: {
|
|
1397
1452
|
url: string | null;
|
|
1398
1453
|
referrer: string | null;
|
|
@@ -1416,27 +1471,12 @@ export declare const EventEnvelopeSchema: z.ZodDiscriminatedUnion<"event_type",
|
|
|
1416
1471
|
ts: string;
|
|
1417
1472
|
route?: string | null | undefined;
|
|
1418
1473
|
}[] | undefined;
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
device_type: "unknown" | "desktop" | "mobile" | "tablet";
|
|
1426
|
-
screen: {
|
|
1427
|
-
width: number;
|
|
1428
|
-
height: number;
|
|
1429
|
-
};
|
|
1430
|
-
viewport: {
|
|
1431
|
-
width: number;
|
|
1432
|
-
height: number;
|
|
1433
|
-
};
|
|
1434
|
-
device_pixel_ratio: number | null;
|
|
1435
|
-
touch_capable: boolean | null;
|
|
1436
|
-
language: string | null;
|
|
1437
|
-
connection_type: string | null;
|
|
1438
|
-
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
1439
|
-
} | null | undefined;
|
|
1474
|
+
rejection_reason?: {
|
|
1475
|
+
kind: "string" | "undefined" | "object" | "error" | "null" | "unknown";
|
|
1476
|
+
message?: string | undefined;
|
|
1477
|
+
preview?: string | undefined;
|
|
1478
|
+
name?: string | undefined;
|
|
1479
|
+
} | undefined;
|
|
1440
1480
|
dom_context?: {
|
|
1441
1481
|
mode: "lightweight";
|
|
1442
1482
|
html_excerpt: string;
|
|
@@ -2008,19 +2048,19 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2008
2048
|
request_id: z.ZodNullable<z.ZodString>;
|
|
2009
2049
|
}, "strip", z.ZodTypeAny, {
|
|
2010
2050
|
path: string;
|
|
2051
|
+
method: string;
|
|
2011
2052
|
version: 1;
|
|
2012
2053
|
headers: Record<string, unknown>;
|
|
2013
2054
|
request_id: string | null;
|
|
2014
|
-
method: string;
|
|
2015
2055
|
query: Record<string, unknown>;
|
|
2016
2056
|
route_template: string | null;
|
|
2017
2057
|
body?: unknown;
|
|
2018
2058
|
}, {
|
|
2019
2059
|
path: string;
|
|
2060
|
+
method: string;
|
|
2020
2061
|
version: 1;
|
|
2021
2062
|
headers: Record<string, unknown>;
|
|
2022
2063
|
request_id: string | null;
|
|
2023
|
-
method: string;
|
|
2024
2064
|
query: Record<string, unknown>;
|
|
2025
2065
|
route_template: string | null;
|
|
2026
2066
|
body?: unknown;
|
|
@@ -2032,14 +2072,14 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2032
2072
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2033
2073
|
body: z.ZodOptional<z.ZodUnknown>;
|
|
2034
2074
|
}, "strip", z.ZodTypeAny, {
|
|
2035
|
-
version: 1;
|
|
2036
2075
|
status_code: number;
|
|
2076
|
+
version: 1;
|
|
2037
2077
|
duration_ms: number | null;
|
|
2038
2078
|
headers?: Record<string, unknown> | undefined;
|
|
2039
2079
|
body?: unknown;
|
|
2040
2080
|
}, {
|
|
2041
|
-
version: 1;
|
|
2042
2081
|
status_code: number;
|
|
2082
|
+
version: 1;
|
|
2043
2083
|
duration_ms: number | null;
|
|
2044
2084
|
headers?: Record<string, unknown> | undefined;
|
|
2045
2085
|
body?: unknown;
|
|
@@ -2134,8 +2174,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2134
2174
|
response_content_length: z.ZodOptional<z.ZodNumber>;
|
|
2135
2175
|
}, "strip", z.ZodTypeAny, {
|
|
2136
2176
|
status: number;
|
|
2137
|
-
url: string;
|
|
2138
2177
|
method: string;
|
|
2178
|
+
url: string;
|
|
2139
2179
|
ts: string;
|
|
2140
2180
|
duration_ms?: number | undefined;
|
|
2141
2181
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -2145,8 +2185,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2145
2185
|
response_content_length?: number | undefined;
|
|
2146
2186
|
}, {
|
|
2147
2187
|
status: number;
|
|
2148
|
-
url: string;
|
|
2149
2188
|
method: string;
|
|
2189
|
+
url: string;
|
|
2150
2190
|
ts: string;
|
|
2151
2191
|
duration_ms?: number | undefined;
|
|
2152
2192
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -2190,8 +2230,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2190
2230
|
console_logs: unknown[];
|
|
2191
2231
|
network_requests: {
|
|
2192
2232
|
status: number;
|
|
2193
|
-
url: string;
|
|
2194
2233
|
method: string;
|
|
2234
|
+
url: string;
|
|
2195
2235
|
ts: string;
|
|
2196
2236
|
duration_ms?: number | undefined;
|
|
2197
2237
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -2225,8 +2265,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2225
2265
|
console_logs: unknown[];
|
|
2226
2266
|
network_requests: {
|
|
2227
2267
|
status: number;
|
|
2228
|
-
url: string;
|
|
2229
2268
|
method: string;
|
|
2269
|
+
url: string;
|
|
2230
2270
|
ts: string;
|
|
2231
2271
|
duration_ms?: number | undefined;
|
|
2232
2272
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -2578,32 +2618,6 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2578
2618
|
os: string | null;
|
|
2579
2619
|
container_id: string | null;
|
|
2580
2620
|
} | null | undefined;
|
|
2581
|
-
request?: {
|
|
2582
|
-
path: string;
|
|
2583
|
-
version: 1;
|
|
2584
|
-
headers: Record<string, unknown>;
|
|
2585
|
-
request_id: string | null;
|
|
2586
|
-
method: string;
|
|
2587
|
-
query: Record<string, unknown>;
|
|
2588
|
-
route_template: string | null;
|
|
2589
|
-
body?: unknown;
|
|
2590
|
-
} | null | undefined;
|
|
2591
|
-
response?: {
|
|
2592
|
-
version: 1;
|
|
2593
|
-
status_code: number;
|
|
2594
|
-
duration_ms: number | null;
|
|
2595
|
-
headers?: Record<string, unknown> | undefined;
|
|
2596
|
-
body?: unknown;
|
|
2597
|
-
} | null | undefined;
|
|
2598
|
-
probe_data?: {
|
|
2599
|
-
version: 1;
|
|
2600
|
-
items: {
|
|
2601
|
-
data: Record<string, unknown>;
|
|
2602
|
-
label: string;
|
|
2603
|
-
timestamp: string;
|
|
2604
|
-
activation_id: string | null;
|
|
2605
|
-
}[];
|
|
2606
|
-
} | null | undefined;
|
|
2607
2621
|
device?: {
|
|
2608
2622
|
browser: {
|
|
2609
2623
|
version: string | null;
|
|
@@ -2630,6 +2644,32 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2630
2644
|
connection_type: string | null;
|
|
2631
2645
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
2632
2646
|
} | null | undefined;
|
|
2647
|
+
request?: {
|
|
2648
|
+
path: string;
|
|
2649
|
+
method: string;
|
|
2650
|
+
version: 1;
|
|
2651
|
+
headers: Record<string, unknown>;
|
|
2652
|
+
request_id: string | null;
|
|
2653
|
+
query: Record<string, unknown>;
|
|
2654
|
+
route_template: string | null;
|
|
2655
|
+
body?: unknown;
|
|
2656
|
+
} | null | undefined;
|
|
2657
|
+
response?: {
|
|
2658
|
+
status_code: number;
|
|
2659
|
+
version: 1;
|
|
2660
|
+
duration_ms: number | null;
|
|
2661
|
+
headers?: Record<string, unknown> | undefined;
|
|
2662
|
+
body?: unknown;
|
|
2663
|
+
} | null | undefined;
|
|
2664
|
+
probe_data?: {
|
|
2665
|
+
version: 1;
|
|
2666
|
+
items: {
|
|
2667
|
+
data: Record<string, unknown>;
|
|
2668
|
+
label: string;
|
|
2669
|
+
timestamp: string;
|
|
2670
|
+
activation_id: string | null;
|
|
2671
|
+
}[];
|
|
2672
|
+
} | null | undefined;
|
|
2633
2673
|
logs?: {
|
|
2634
2674
|
version: 1;
|
|
2635
2675
|
items: {
|
|
@@ -2663,8 +2703,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2663
2703
|
console_logs: unknown[];
|
|
2664
2704
|
network_requests: {
|
|
2665
2705
|
status: number;
|
|
2666
|
-
url: string;
|
|
2667
2706
|
method: string;
|
|
2707
|
+
url: string;
|
|
2668
2708
|
ts: string;
|
|
2669
2709
|
duration_ms?: number | undefined;
|
|
2670
2710
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -2737,32 +2777,6 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2737
2777
|
os: string | null;
|
|
2738
2778
|
container_id: string | null;
|
|
2739
2779
|
} | null | undefined;
|
|
2740
|
-
request?: {
|
|
2741
|
-
path: string;
|
|
2742
|
-
version: 1;
|
|
2743
|
-
headers: Record<string, unknown>;
|
|
2744
|
-
request_id: string | null;
|
|
2745
|
-
method: string;
|
|
2746
|
-
query: Record<string, unknown>;
|
|
2747
|
-
route_template: string | null;
|
|
2748
|
-
body?: unknown;
|
|
2749
|
-
} | null | undefined;
|
|
2750
|
-
response?: {
|
|
2751
|
-
version: 1;
|
|
2752
|
-
status_code: number;
|
|
2753
|
-
duration_ms: number | null;
|
|
2754
|
-
headers?: Record<string, unknown> | undefined;
|
|
2755
|
-
body?: unknown;
|
|
2756
|
-
} | null | undefined;
|
|
2757
|
-
probe_data?: {
|
|
2758
|
-
version: 1;
|
|
2759
|
-
items: {
|
|
2760
|
-
data: Record<string, unknown>;
|
|
2761
|
-
label: string;
|
|
2762
|
-
timestamp: string;
|
|
2763
|
-
activation_id: string | null;
|
|
2764
|
-
}[];
|
|
2765
|
-
} | null | undefined;
|
|
2766
2780
|
device?: {
|
|
2767
2781
|
browser: {
|
|
2768
2782
|
version: string | null;
|
|
@@ -2789,6 +2803,32 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2789
2803
|
connection_type: string | null;
|
|
2790
2804
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
2791
2805
|
} | null | undefined;
|
|
2806
|
+
request?: {
|
|
2807
|
+
path: string;
|
|
2808
|
+
method: string;
|
|
2809
|
+
version: 1;
|
|
2810
|
+
headers: Record<string, unknown>;
|
|
2811
|
+
request_id: string | null;
|
|
2812
|
+
query: Record<string, unknown>;
|
|
2813
|
+
route_template: string | null;
|
|
2814
|
+
body?: unknown;
|
|
2815
|
+
} | null | undefined;
|
|
2816
|
+
response?: {
|
|
2817
|
+
status_code: number;
|
|
2818
|
+
version: 1;
|
|
2819
|
+
duration_ms: number | null;
|
|
2820
|
+
headers?: Record<string, unknown> | undefined;
|
|
2821
|
+
body?: unknown;
|
|
2822
|
+
} | null | undefined;
|
|
2823
|
+
probe_data?: {
|
|
2824
|
+
version: 1;
|
|
2825
|
+
items: {
|
|
2826
|
+
data: Record<string, unknown>;
|
|
2827
|
+
label: string;
|
|
2828
|
+
timestamp: string;
|
|
2829
|
+
activation_id: string | null;
|
|
2830
|
+
}[];
|
|
2831
|
+
} | null | undefined;
|
|
2792
2832
|
logs?: {
|
|
2793
2833
|
version: 1;
|
|
2794
2834
|
items: {
|
|
@@ -2822,8 +2862,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2822
2862
|
console_logs: unknown[];
|
|
2823
2863
|
network_requests: {
|
|
2824
2864
|
status: number;
|
|
2825
|
-
url: string;
|
|
2826
2865
|
method: string;
|
|
2866
|
+
url: string;
|
|
2827
2867
|
ts: string;
|
|
2828
2868
|
duration_ms?: number | undefined;
|
|
2829
2869
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -2874,15 +2914,15 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2874
2914
|
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2875
2915
|
body: z.ZodNullable<z.ZodUnknown>;
|
|
2876
2916
|
}, "strip", z.ZodTypeAny, {
|
|
2877
|
-
url: string;
|
|
2878
|
-
headers: Record<string, unknown>;
|
|
2879
2917
|
method: string;
|
|
2918
|
+
headers: Record<string, unknown>;
|
|
2919
|
+
url: string;
|
|
2880
2920
|
query?: Record<string, unknown> | undefined;
|
|
2881
2921
|
body?: unknown;
|
|
2882
2922
|
}, {
|
|
2883
|
-
url: string;
|
|
2884
|
-
headers: Record<string, unknown>;
|
|
2885
2923
|
method: string;
|
|
2924
|
+
headers: Record<string, unknown>;
|
|
2925
|
+
url: string;
|
|
2886
2926
|
query?: Record<string, unknown> | undefined;
|
|
2887
2927
|
body?: unknown;
|
|
2888
2928
|
}>>;
|
|
@@ -2890,9 +2930,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2890
2930
|
curl: string | null;
|
|
2891
2931
|
httpie: string | null;
|
|
2892
2932
|
json_spec: {
|
|
2893
|
-
url: string;
|
|
2894
|
-
headers: Record<string, unknown>;
|
|
2895
2933
|
method: string;
|
|
2934
|
+
headers: Record<string, unknown>;
|
|
2935
|
+
url: string;
|
|
2896
2936
|
query?: Record<string, unknown> | undefined;
|
|
2897
2937
|
body?: unknown;
|
|
2898
2938
|
} | null;
|
|
@@ -2900,9 +2940,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2900
2940
|
curl: string | null;
|
|
2901
2941
|
httpie: string | null;
|
|
2902
2942
|
json_spec: {
|
|
2903
|
-
url: string;
|
|
2904
|
-
headers: Record<string, unknown>;
|
|
2905
2943
|
method: string;
|
|
2944
|
+
headers: Record<string, unknown>;
|
|
2945
|
+
url: string;
|
|
2906
2946
|
query?: Record<string, unknown> | undefined;
|
|
2907
2947
|
body?: unknown;
|
|
2908
2948
|
} | null;
|
|
@@ -2934,9 +2974,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2934
2974
|
curl: string | null;
|
|
2935
2975
|
httpie: string | null;
|
|
2936
2976
|
json_spec: {
|
|
2937
|
-
url: string;
|
|
2938
|
-
headers: Record<string, unknown>;
|
|
2939
2977
|
method: string;
|
|
2978
|
+
headers: Record<string, unknown>;
|
|
2979
|
+
url: string;
|
|
2940
2980
|
query?: Record<string, unknown> | undefined;
|
|
2941
2981
|
body?: unknown;
|
|
2942
2982
|
} | null;
|
|
@@ -2956,9 +2996,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
2956
2996
|
curl: string | null;
|
|
2957
2997
|
httpie: string | null;
|
|
2958
2998
|
json_spec: {
|
|
2959
|
-
url: string;
|
|
2960
|
-
headers: Record<string, unknown>;
|
|
2961
2999
|
method: string;
|
|
3000
|
+
headers: Record<string, unknown>;
|
|
3001
|
+
url: string;
|
|
2962
3002
|
query?: Record<string, unknown> | undefined;
|
|
2963
3003
|
body?: unknown;
|
|
2964
3004
|
} | null;
|
|
@@ -3073,32 +3113,6 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3073
3113
|
os: string | null;
|
|
3074
3114
|
container_id: string | null;
|
|
3075
3115
|
} | null | undefined;
|
|
3076
|
-
request?: {
|
|
3077
|
-
path: string;
|
|
3078
|
-
version: 1;
|
|
3079
|
-
headers: Record<string, unknown>;
|
|
3080
|
-
request_id: string | null;
|
|
3081
|
-
method: string;
|
|
3082
|
-
query: Record<string, unknown>;
|
|
3083
|
-
route_template: string | null;
|
|
3084
|
-
body?: unknown;
|
|
3085
|
-
} | null | undefined;
|
|
3086
|
-
response?: {
|
|
3087
|
-
version: 1;
|
|
3088
|
-
status_code: number;
|
|
3089
|
-
duration_ms: number | null;
|
|
3090
|
-
headers?: Record<string, unknown> | undefined;
|
|
3091
|
-
body?: unknown;
|
|
3092
|
-
} | null | undefined;
|
|
3093
|
-
probe_data?: {
|
|
3094
|
-
version: 1;
|
|
3095
|
-
items: {
|
|
3096
|
-
data: Record<string, unknown>;
|
|
3097
|
-
label: string;
|
|
3098
|
-
timestamp: string;
|
|
3099
|
-
activation_id: string | null;
|
|
3100
|
-
}[];
|
|
3101
|
-
} | null | undefined;
|
|
3102
3116
|
device?: {
|
|
3103
3117
|
browser: {
|
|
3104
3118
|
version: string | null;
|
|
@@ -3125,6 +3139,32 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3125
3139
|
connection_type: string | null;
|
|
3126
3140
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
3127
3141
|
} | null | undefined;
|
|
3142
|
+
request?: {
|
|
3143
|
+
path: string;
|
|
3144
|
+
method: string;
|
|
3145
|
+
version: 1;
|
|
3146
|
+
headers: Record<string, unknown>;
|
|
3147
|
+
request_id: string | null;
|
|
3148
|
+
query: Record<string, unknown>;
|
|
3149
|
+
route_template: string | null;
|
|
3150
|
+
body?: unknown;
|
|
3151
|
+
} | null | undefined;
|
|
3152
|
+
response?: {
|
|
3153
|
+
status_code: number;
|
|
3154
|
+
version: 1;
|
|
3155
|
+
duration_ms: number | null;
|
|
3156
|
+
headers?: Record<string, unknown> | undefined;
|
|
3157
|
+
body?: unknown;
|
|
3158
|
+
} | null | undefined;
|
|
3159
|
+
probe_data?: {
|
|
3160
|
+
version: 1;
|
|
3161
|
+
items: {
|
|
3162
|
+
data: Record<string, unknown>;
|
|
3163
|
+
label: string;
|
|
3164
|
+
timestamp: string;
|
|
3165
|
+
activation_id: string | null;
|
|
3166
|
+
}[];
|
|
3167
|
+
} | null | undefined;
|
|
3128
3168
|
logs?: {
|
|
3129
3169
|
version: 1;
|
|
3130
3170
|
items: {
|
|
@@ -3158,8 +3198,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3158
3198
|
console_logs: unknown[];
|
|
3159
3199
|
network_requests: {
|
|
3160
3200
|
status: number;
|
|
3161
|
-
url: string;
|
|
3162
3201
|
method: string;
|
|
3202
|
+
url: string;
|
|
3163
3203
|
ts: string;
|
|
3164
3204
|
duration_ms?: number | undefined;
|
|
3165
3205
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -3212,9 +3252,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3212
3252
|
curl: string | null;
|
|
3213
3253
|
httpie: string | null;
|
|
3214
3254
|
json_spec: {
|
|
3215
|
-
url: string;
|
|
3216
|
-
headers: Record<string, unknown>;
|
|
3217
3255
|
method: string;
|
|
3256
|
+
headers: Record<string, unknown>;
|
|
3257
|
+
url: string;
|
|
3218
3258
|
query?: Record<string, unknown> | undefined;
|
|
3219
3259
|
body?: unknown;
|
|
3220
3260
|
} | null;
|
|
@@ -3340,32 +3380,6 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3340
3380
|
os: string | null;
|
|
3341
3381
|
container_id: string | null;
|
|
3342
3382
|
} | null | undefined;
|
|
3343
|
-
request?: {
|
|
3344
|
-
path: string;
|
|
3345
|
-
version: 1;
|
|
3346
|
-
headers: Record<string, unknown>;
|
|
3347
|
-
request_id: string | null;
|
|
3348
|
-
method: string;
|
|
3349
|
-
query: Record<string, unknown>;
|
|
3350
|
-
route_template: string | null;
|
|
3351
|
-
body?: unknown;
|
|
3352
|
-
} | null | undefined;
|
|
3353
|
-
response?: {
|
|
3354
|
-
version: 1;
|
|
3355
|
-
status_code: number;
|
|
3356
|
-
duration_ms: number | null;
|
|
3357
|
-
headers?: Record<string, unknown> | undefined;
|
|
3358
|
-
body?: unknown;
|
|
3359
|
-
} | null | undefined;
|
|
3360
|
-
probe_data?: {
|
|
3361
|
-
version: 1;
|
|
3362
|
-
items: {
|
|
3363
|
-
data: Record<string, unknown>;
|
|
3364
|
-
label: string;
|
|
3365
|
-
timestamp: string;
|
|
3366
|
-
activation_id: string | null;
|
|
3367
|
-
}[];
|
|
3368
|
-
} | null | undefined;
|
|
3369
3383
|
device?: {
|
|
3370
3384
|
browser: {
|
|
3371
3385
|
version: string | null;
|
|
@@ -3392,6 +3406,32 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3392
3406
|
connection_type: string | null;
|
|
3393
3407
|
color_scheme_preference: "light" | "dark" | "no-preference" | null;
|
|
3394
3408
|
} | null | undefined;
|
|
3409
|
+
request?: {
|
|
3410
|
+
path: string;
|
|
3411
|
+
method: string;
|
|
3412
|
+
version: 1;
|
|
3413
|
+
headers: Record<string, unknown>;
|
|
3414
|
+
request_id: string | null;
|
|
3415
|
+
query: Record<string, unknown>;
|
|
3416
|
+
route_template: string | null;
|
|
3417
|
+
body?: unknown;
|
|
3418
|
+
} | null | undefined;
|
|
3419
|
+
response?: {
|
|
3420
|
+
status_code: number;
|
|
3421
|
+
version: 1;
|
|
3422
|
+
duration_ms: number | null;
|
|
3423
|
+
headers?: Record<string, unknown> | undefined;
|
|
3424
|
+
body?: unknown;
|
|
3425
|
+
} | null | undefined;
|
|
3426
|
+
probe_data?: {
|
|
3427
|
+
version: 1;
|
|
3428
|
+
items: {
|
|
3429
|
+
data: Record<string, unknown>;
|
|
3430
|
+
label: string;
|
|
3431
|
+
timestamp: string;
|
|
3432
|
+
activation_id: string | null;
|
|
3433
|
+
}[];
|
|
3434
|
+
} | null | undefined;
|
|
3395
3435
|
logs?: {
|
|
3396
3436
|
version: 1;
|
|
3397
3437
|
items: {
|
|
@@ -3425,8 +3465,8 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3425
3465
|
console_logs: unknown[];
|
|
3426
3466
|
network_requests: {
|
|
3427
3467
|
status: number;
|
|
3428
|
-
url: string;
|
|
3429
3468
|
method: string;
|
|
3469
|
+
url: string;
|
|
3430
3470
|
ts: string;
|
|
3431
3471
|
duration_ms?: number | undefined;
|
|
3432
3472
|
response_headers?: Record<string, string> | undefined;
|
|
@@ -3479,9 +3519,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3479
3519
|
curl: string | null;
|
|
3480
3520
|
httpie: string | null;
|
|
3481
3521
|
json_spec: {
|
|
3482
|
-
url: string;
|
|
3483
|
-
headers: Record<string, unknown>;
|
|
3484
3522
|
method: string;
|
|
3523
|
+
headers: Record<string, unknown>;
|
|
3524
|
+
url: string;
|
|
3485
3525
|
query?: Record<string, unknown> | undefined;
|
|
3486
3526
|
body?: unknown;
|
|
3487
3527
|
} | null;
|
|
@@ -3572,9 +3612,9 @@ export declare const BundleV1Schema: z.ZodObject<{
|
|
|
3572
3612
|
}>;
|
|
3573
3613
|
export type BundleV1 = z.infer<typeof BundleV1Schema>;
|
|
3574
3614
|
export { MAX_BILLING_ADDITIONAL_CAPACITY_UNITS, TIER_CAPABILITIES, getTierCapabilities, isSelfHostMode, type TierName, type TierCapabilities } from "./tier-capabilities.js";
|
|
3575
|
-
export { EventClassValues, EventClassSchema, type EventClass, CapturePresetValues, CapturePresetSchema, type CapturePreset, CaptureLogsSchema, CaptureRequestEventsSchema, CaptureBreadcrumbsSchema, CaptureProbeEventsSchema, ImmediateClientErrorStatusesSchema, RECOMMENDED_IMMEDIATE_CLIENT_ERROR_STATUSES, type CaptureLogs, type CaptureRequestEvents, type CaptureBreadcrumbs, type CaptureProbeEvents, ResolvedCapturePolicySchema, type ResolvedCapturePolicy, CapturePolicyOverridesSchema, type CapturePolicyOverrides, CapturePolicyResponseSchema, type CapturePolicyResponse, CapturePolicySchema, type CapturePolicyRecord, CapturePolicyUpdateSchema, type CapturePolicyUpdate, PRESET_DEFAULTS, DEFAULT_PRESET_BY_TIER, RequestSignalClassificationValues, RequestSignalClassificationSchema, type RequestSignalClassification, normalizeImmediateClientErrorStatuses, getCapturePolicyOverrides, resolvePolicy, getDefaultPreset, classifyRequestStatus, isImmediateRequestIncident, getRequestAnomalyThreshold, shouldCaptureEvent, } from "./capture-policy.js";
|
|
3615
|
+
export { EventClassValues, EventClassSchema, type EventClass, CapturePresetValues, CapturePresetSchema, type CapturePreset, CaptureLogsSchema, CaptureRequestEventsSchema, CaptureBreadcrumbsSchema, CaptureProbeEventsSchema, ImmediateClientErrorStatusesSchema, ImmediateClientErrorPathRuleSchema, ImmediateClientErrorPathRulesSchema, HTTP_METHOD_VALUES, RECOMMENDED_IMMEDIATE_CLIENT_ERROR_STATUSES, type CaptureLogs, type CaptureRequestEvents, type CaptureBreadcrumbs, type CaptureProbeEvents, type HttpMethod, type ImmediateClientErrorPathRule, ResolvedCapturePolicySchema, type ResolvedCapturePolicy, CapturePolicyOverridesSchema, type CapturePolicyOverrides, CapturePolicyResponseSchema, type CapturePolicyResponse, CapturePolicySchema, type CapturePolicyRecord, CapturePolicyUpdateSchema, type CapturePolicyUpdate, PRESET_DEFAULTS, DEFAULT_PRESET_BY_TIER, RequestSignalClassificationValues, RequestSignalClassificationSchema, type RequestSignalClassification, normalizeImmediateClientErrorStatuses, normalizeImmediateClientErrorPathRules, getCapturePolicyOverrides, resolvePolicy, getDefaultPreset, classifyRequestStatus, isImmediateRequestIncident, matchesImmediateClientErrorPathRule, getRequestAnomalyThreshold, shouldCaptureEvent, } from "./capture-policy.js";
|
|
3576
3616
|
export { isLowValueExternalProbeRequestFailure404 } from "./request-failure-noise.js";
|
|
3577
|
-
export { CaptureRuleActionValues, CaptureRuleActionSchema, type CaptureRuleAction, CaptureRuleSampleEventClassValues, CaptureRuleSampleEventClassSchema, type CaptureRuleSampleEventClass, CaptureRuleRuntimeSchema, type CaptureRuleRuntime, CaptureRuleEventTypeSchema, type CaptureRuleEventType, BrowserEventKindSchema, type BrowserEventKind, CaptureRuleMatcherSchema, type CaptureRuleMatcher, CaptureRuleSchema, type CaptureRule, CaptureRuleResponseSchema, type CaptureRuleResponse, CaptureRulesResponseSchema, type CaptureRulesResponse, CaptureRuleCreateSchema, type CaptureRuleCreate, CaptureRuleUpdateSchema, type CaptureRuleUpdate, CaptureRulesFileSchema, type CaptureRulesFile, CaptureRuleEvaluationContextSchema, type CaptureRuleEvaluationContext, type CaptureRuleEvaluationResult, type CaptureRuleEvaluableEvent, buildCaptureRuleEvaluationContext, applyCaptureRuleEventClass, matchesCaptureRule, isCaptureRuleActive, getCaptureRuleSpecificityScore, shouldSampleCaptureRuleEvent, evaluateCaptureRules, } from "./capture-rules.js";
|
|
3617
|
+
export { CaptureRuleActionValues, CaptureRuleActionSchema, type CaptureRuleAction, CaptureRuleSampleEventClassValues, CaptureRuleSampleEventClassSchema, type CaptureRuleSampleEventClass, CaptureRuleRuntimeSchema, type CaptureRuleRuntime, CaptureRuleEventTypeSchema, type CaptureRuleEventType, BrowserEventKindSchema, type BrowserEventKind, CaptureRuleClientKindSchema, type CaptureRuleClientKind, CaptureRuleMatcherSchema, type CaptureRuleMatcher, CaptureRuleSchema, type CaptureRule, CaptureRuleResponseSchema, type CaptureRuleResponse, CaptureRulesResponseSchema, type CaptureRulesResponse, CaptureRuleCreateSchema, type CaptureRuleCreate, CaptureRuleUpdateSchema, type CaptureRuleUpdate, CaptureRulesFileSchema, type CaptureRulesFile, CaptureRuleEvaluationContextSchema, type CaptureRuleEvaluationContext, type CaptureRuleEvaluationResult, type CaptureRuleEvaluableEvent, buildCaptureRuleEvaluationContext, applyCaptureRuleEventClass, matchesCaptureRule, isCaptureRuleActive, getCaptureRuleSpecificityScore, shouldSampleCaptureRuleEvent, classifyCaptureRuleClientFromUserAgent, evaluateCaptureRules, } from "./capture-rules.js";
|
|
3578
3618
|
export { CaptureRuleSuggestionConfidenceSchema, type CaptureRuleSuggestionConfidence, CaptureRuleSuggestionSchema, type CaptureRuleSuggestion, CaptureRuleSuggestionsResponseSchema, type CaptureRuleSuggestionsResponse, CreateCaptureRuleFromSuggestionSchema, type CreateCaptureRuleFromSuggestion, type CaptureRuleSuggestionIncident, type CaptureRuleSuggestionBundle, buildCaptureRuleSuggestions } from "./capture-rule-suggestions.js";
|
|
3579
3619
|
export { ImprovementBundleSensitivityValues, ImprovementBundleSensitivitySchema, type ImprovementBundleSensitivity, ImprovementSettingsSchema, type ImprovementSettings, ImprovementSettingsResponseSchema, type ImprovementSettingsResponse, ImprovementSettingsUpdateSchema, type ImprovementSettingsUpdate } from "./improvement-settings.js";
|
|
3580
3620
|
//# sourceMappingURL=index.d.ts.map
|