-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathindex.ts
680 lines (514 loc) · 28.3 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
/* eslint-disable max-lines */
import {
BAGGAGE_HEADER_NAME as BAGGAGE_HEADER_NAME_imported,
CONSOLE_LEVELS as CONSOLE_LEVELS_imported,
DEFAULT_RETRY_AFTER as DEFAULT_RETRY_AFTER_imported,
DEFAULT_USER_INCLUDES as DEFAULT_USER_INCLUDES_imported,
GLOBAL_OBJ as GLOBAL_OBJ_imported,
LRUMap as LRUMap_imported,
MAX_BAGGAGE_STRING_LENGTH as MAX_BAGGAGE_STRING_LENGTH_imported,
SDK_VERSION as SDK_VERSION_imported,
SENTRY_BAGGAGE_KEY_PREFIX as SENTRY_BAGGAGE_KEY_PREFIX_imported,
SENTRY_BAGGAGE_KEY_PREFIX_REGEX as SENTRY_BAGGAGE_KEY_PREFIX_REGEX_imported,
SentryError as SentryError_imported,
SyncPromise as SyncPromise_imported,
TRACEPARENT_REGEXP as TRACEPARENT_REGEXP_imported,
UNKNOWN_FUNCTION as UNKNOWN_FUNCTION_imported,
_browserPerformanceTimeOriginMode as _browserPerformanceTimeOriginMode_imported,
addConsoleInstrumentationHandler as addConsoleInstrumentationHandler_imported,
addContextToFrame as addContextToFrame_imported,
addExceptionMechanism as addExceptionMechanism_imported,
addExceptionTypeValue as addExceptionTypeValue_imported,
addFetchEndInstrumentationHandler as addFetchEndInstrumentationHandler_imported,
addFetchInstrumentationHandler as addFetchInstrumentationHandler_imported,
addGlobalErrorInstrumentationHandler as addGlobalErrorInstrumentationHandler_imported,
addGlobalUnhandledRejectionInstrumentationHandler as addGlobalUnhandledRejectionInstrumentationHandler_imported,
addHandler as addHandler_imported,
addItemToEnvelope as addItemToEnvelope_imported,
addNonEnumerableProperty as addNonEnumerableProperty_imported,
addNormalizedRequestDataToEvent as addNormalizedRequestDataToEvent_imported,
addRequestDataToEvent as addRequestDataToEvent_imported,
applyAggregateErrorsToEvent as applyAggregateErrorsToEvent_imported,
arrayify as arrayify_imported,
baggageHeaderToDynamicSamplingContext as baggageHeaderToDynamicSamplingContext_imported,
basename as basename_imported,
browserPerformanceTimeOrigin as browserPerformanceTimeOrigin_imported,
callFrameToStackFrame as callFrameToStackFrame_imported,
checkOrSetAlreadyCaught as checkOrSetAlreadyCaught_imported,
consoleSandbox as consoleSandbox_imported,
convertToPlainObject as convertToPlainObject_imported,
createAttachmentEnvelopeItem as createAttachmentEnvelopeItem_imported,
createClientReportEnvelope as createClientReportEnvelope_imported,
createEnvelope as createEnvelope_imported,
createEventEnvelopeHeaders as createEventEnvelopeHeaders_imported,
createSpanEnvelopeItem as createSpanEnvelopeItem_imported,
createStackParser as createStackParser_imported,
dateTimestampInSeconds as dateTimestampInSeconds_imported,
dirname as dirname_imported,
disabledUntil as disabledUntil_imported,
dropUndefinedKeys as dropUndefinedKeys_imported,
dsnFromString as dsnFromString_imported,
dsnToString as dsnToString_imported,
dynamicRequire as dynamicRequire_imported,
dynamicSamplingContextToSentryBaggageHeader as dynamicSamplingContextToSentryBaggageHeader_imported,
envelopeContainsItemType as envelopeContainsItemType_imported,
envelopeItemTypeToDataCategory as envelopeItemTypeToDataCategory_imported,
escapeStringForRegex as escapeStringForRegex_imported,
eventFromMessage as eventFromMessage_imported,
eventFromUnknownInput as eventFromUnknownInput_imported,
exceptionFromError as exceptionFromError_imported,
extractExceptionKeysForMessage as extractExceptionKeysForMessage_imported,
extractPathForTransaction as extractPathForTransaction_imported,
extractRequestData as extractRequestData_imported,
extractTraceparentData as extractTraceparentData_imported,
filenameIsInApp as filenameIsInApp_imported,
fill as fill_imported,
flatten as flatten_imported,
forEachEnvelopeItem as forEachEnvelopeItem_imported,
generatePropagationContext as generatePropagationContext_imported,
generateSentryTraceHeader as generateSentryTraceHeader_imported,
getBreadcrumbLogLevelFromHttpStatusCode as getBreadcrumbLogLevelFromHttpStatusCode_imported,
getComponentName as getComponentName_imported,
getDebugImagesForResources as getDebugImagesForResources_imported,
getDomElement as getDomElement_imported,
getEventDescription as getEventDescription_imported,
getFilenameToDebugIdMap as getFilenameToDebugIdMap_imported,
getFramesFromEvent as getFramesFromEvent_imported,
getFunctionName as getFunctionName_imported,
getGlobalSingleton as getGlobalSingleton_imported,
getLocationHref as getLocationHref_imported,
getOriginalFunction as getOriginalFunction_imported,
getSDKSource as getSDKSource_imported,
getSanitizedUrlString as getSanitizedUrlString_imported,
getSdkMetadataForEnvelopeHeader as getSdkMetadataForEnvelopeHeader_imported,
htmlTreeAsString as htmlTreeAsString_imported,
isAbsolute as isAbsolute_imported,
isBrowser as isBrowser_imported,
isBrowserBundle as isBrowserBundle_imported,
isDOMError as isDOMError_imported,
isDOMException as isDOMException_imported,
isElement as isElement_imported,
isError as isError_imported,
isErrorEvent as isErrorEvent_imported,
isEvent as isEvent_imported,
isInstanceOf as isInstanceOf_imported,
isMatchingPattern as isMatchingPattern_imported,
isNativeFunction as isNativeFunction_imported,
isNodeEnv as isNodeEnv_imported,
isParameterizedString as isParameterizedString_imported,
isPlainObject as isPlainObject_imported,
isPrimitive as isPrimitive_imported,
isRateLimited as isRateLimited_imported,
isRegExp as isRegExp_imported,
isString as isString_imported,
isSyntheticEvent as isSyntheticEvent_imported,
isThenable as isThenable_imported,
isVueViewModel as isVueViewModel_imported,
join as join_imported,
loadModule as loadModule_imported,
logger as logger_imported,
makeDsn as makeDsn_imported,
makeFifoCache as makeFifoCache_imported,
makePromiseBuffer as makePromiseBuffer_imported,
markFunctionWrapped as markFunctionWrapped_imported,
maybeInstrument as maybeInstrument_imported,
memoBuilder as memoBuilder_imported,
node as node_imported,
nodeStackLineParser as nodeStackLineParser_imported,
normalize as normalize_imported,
normalizePath as normalizePath_imported,
normalizeToSize as normalizeToSize_imported,
normalizeUrlToBase as normalizeUrlToBase_imported,
objectify as objectify_imported,
originalConsoleMethods as originalConsoleMethods_imported,
parseBaggageHeader as parseBaggageHeader_imported,
parseEnvelope as parseEnvelope_imported,
parseRetryAfterHeader as parseRetryAfterHeader_imported,
parseSemver as parseSemver_imported,
parseStackFrames as parseStackFrames_imported,
parseUrl as parseUrl_imported,
propagationContextFromHeaders as propagationContextFromHeaders_imported,
rejectedSyncPromise as rejectedSyncPromise_imported,
relative as relative_imported,
resetInstrumentationHandlers as resetInstrumentationHandlers_imported,
resolve as resolve_imported,
resolvedSyncPromise as resolvedSyncPromise_imported,
safeJoin as safeJoin_imported,
serializeEnvelope as serializeEnvelope_imported,
severityLevelFromString as severityLevelFromString_imported,
snipLine as snipLine_imported,
stackParserFromStackParserOptions as stackParserFromStackParserOptions_imported,
stringMatchesSomePattern as stringMatchesSomePattern_imported,
stripSentryFramesAndReverse as stripSentryFramesAndReverse_imported,
stripUrlQueryAndFragment as stripUrlQueryAndFragment_imported,
supportsDOMError as supportsDOMError_imported,
supportsDOMException as supportsDOMException_imported,
supportsErrorEvent as supportsErrorEvent_imported,
supportsFetch as supportsFetch_imported,
supportsHistory as supportsHistory_imported,
supportsNativeFetch as supportsNativeFetch_imported,
supportsReferrerPolicy as supportsReferrerPolicy_imported,
supportsReportingObserver as supportsReportingObserver_imported,
timestampInSeconds as timestampInSeconds_imported,
triggerHandlers as triggerHandlers_imported,
truncate as truncate_imported,
updateRateLimits as updateRateLimits_imported,
urlEncode as urlEncode_imported,
uuid4 as uuid4_imported,
vercelWaitUntil as vercelWaitUntil_imported,
watchdogTimer as watchdogTimer_imported,
winterCGHeadersToDict as winterCGHeadersToDict_imported,
winterCGRequestToRequestData as winterCGRequestToRequestData_imported,
} from '@sentry/core';
/** @deprecated Import from `@sentry/core` instead. */
export const applyAggregateErrorsToEvent = applyAggregateErrorsToEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getBreadcrumbLogLevelFromHttpStatusCode = getBreadcrumbLogLevelFromHttpStatusCode_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const dsnFromString = dsnFromString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const dsnToString = dsnToString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const makeDsn = makeDsn_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const SentryError = SentryError_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const GLOBAL_OBJ = GLOBAL_OBJ_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getGlobalSingleton = getGlobalSingleton_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addConsoleInstrumentationHandler = addConsoleInstrumentationHandler_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addFetchEndInstrumentationHandler = addFetchEndInstrumentationHandler_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addFetchInstrumentationHandler = addFetchInstrumentationHandler_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addGlobalErrorInstrumentationHandler = addGlobalErrorInstrumentationHandler_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addGlobalUnhandledRejectionInstrumentationHandler =
addGlobalUnhandledRejectionInstrumentationHandler_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addHandler = addHandler_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const maybeInstrument = maybeInstrument_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const resetInstrumentationHandlers = resetInstrumentationHandlers_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const triggerHandlers = triggerHandlers_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isDOMError = isDOMError_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isDOMException = isDOMException_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isElement = isElement_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isError = isError_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isErrorEvent = isErrorEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isEvent = isEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isInstanceOf = isInstanceOf_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isParameterizedString = isParameterizedString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isPlainObject = isPlainObject_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isPrimitive = isPrimitive_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isRegExp = isRegExp_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isString = isString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isSyntheticEvent = isSyntheticEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isThenable = isThenable_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isVueViewModel = isVueViewModel_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isBrowser = isBrowser_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const CONSOLE_LEVELS = CONSOLE_LEVELS_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const consoleSandbox = consoleSandbox_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const logger = logger_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const originalConsoleMethods = originalConsoleMethods_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addContextToFrame = addContextToFrame_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addExceptionMechanism = addExceptionMechanism_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addExceptionTypeValue = addExceptionTypeValue_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const checkOrSetAlreadyCaught = checkOrSetAlreadyCaught_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getEventDescription = getEventDescription_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const parseSemver = parseSemver_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const uuid4 = uuid4_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const normalize = normalize_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const normalizeToSize = normalizeToSize_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addNonEnumerableProperty = addNonEnumerableProperty_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const convertToPlainObject = convertToPlainObject_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const dropUndefinedKeys = dropUndefinedKeys_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const extractExceptionKeysForMessage = extractExceptionKeysForMessage_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const fill = fill_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getOriginalFunction = getOriginalFunction_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const markFunctionWrapped = markFunctionWrapped_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const objectify = objectify_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const makePromiseBuffer = makePromiseBuffer_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addNormalizedRequestDataToEvent = addNormalizedRequestDataToEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const winterCGHeadersToDict = winterCGHeadersToDict_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const winterCGRequestToRequestData = winterCGRequestToRequestData_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const severityLevelFromString = severityLevelFromString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const UNKNOWN_FUNCTION = UNKNOWN_FUNCTION_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const createStackParser = createStackParser_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getFramesFromEvent = getFramesFromEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getFunctionName = getFunctionName_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const stackParserFromStackParserOptions = stackParserFromStackParserOptions_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const stripSentryFramesAndReverse = stripSentryFramesAndReverse_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const filenameIsInApp = filenameIsInApp_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const node = node_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const nodeStackLineParser = nodeStackLineParser_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isMatchingPattern = isMatchingPattern_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const safeJoin = safeJoin_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const snipLine = snipLine_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const stringMatchesSomePattern = stringMatchesSomePattern_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const truncate = truncate_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const SyncPromise = SyncPromise_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const rejectedSyncPromise = rejectedSyncPromise_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const resolvedSyncPromise = resolvedSyncPromise_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const dateTimestampInSeconds = dateTimestampInSeconds_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const timestampInSeconds = timestampInSeconds_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const TRACEPARENT_REGEXP = TRACEPARENT_REGEXP_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const extractTraceparentData = extractTraceparentData_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const generateSentryTraceHeader = generateSentryTraceHeader_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const propagationContextFromHeaders = propagationContextFromHeaders_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getSDKSource = getSDKSource_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isBrowserBundle = isBrowserBundle_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const MAX_BAGGAGE_STRING_LENGTH = MAX_BAGGAGE_STRING_LENGTH_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const SENTRY_BAGGAGE_KEY_PREFIX = SENTRY_BAGGAGE_KEY_PREFIX_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const SENTRY_BAGGAGE_KEY_PREFIX_REGEX = SENTRY_BAGGAGE_KEY_PREFIX_REGEX_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const baggageHeaderToDynamicSamplingContext = baggageHeaderToDynamicSamplingContext_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const dynamicSamplingContextToSentryBaggageHeader = dynamicSamplingContextToSentryBaggageHeader_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const parseBaggageHeader = parseBaggageHeader_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const addItemToEnvelope = addItemToEnvelope_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const createAttachmentEnvelopeItem = createAttachmentEnvelopeItem_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const createEnvelope = createEnvelope_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const createEventEnvelopeHeaders = createEventEnvelopeHeaders_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const createSpanEnvelopeItem = createSpanEnvelopeItem_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const envelopeContainsItemType = envelopeContainsItemType_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const envelopeItemTypeToDataCategory = envelopeItemTypeToDataCategory_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const forEachEnvelopeItem = forEachEnvelopeItem_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getSdkMetadataForEnvelopeHeader = getSdkMetadataForEnvelopeHeader_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const parseEnvelope = parseEnvelope_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const serializeEnvelope = serializeEnvelope_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const createClientReportEnvelope = createClientReportEnvelope_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const DEFAULT_RETRY_AFTER = DEFAULT_RETRY_AFTER_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const disabledUntil = disabledUntil_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isRateLimited = isRateLimited_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const parseRetryAfterHeader = parseRetryAfterHeader_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const updateRateLimits = updateRateLimits_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const eventFromMessage = eventFromMessage_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const eventFromUnknownInput = eventFromUnknownInput_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const exceptionFromError = exceptionFromError_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const parseStackFrames = parseStackFrames_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const callFrameToStackFrame = callFrameToStackFrame_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const watchdogTimer = watchdogTimer_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const LRUMap = LRUMap_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const generatePropagationContext = generatePropagationContext_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const vercelWaitUntil = vercelWaitUntil_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const SDK_VERSION = SDK_VERSION_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getDebugImagesForResources = getDebugImagesForResources_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getFilenameToDebugIdMap = getFilenameToDebugIdMap_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const escapeStringForRegex = escapeStringForRegex_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const basename = basename_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const dirname = dirname_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isAbsolute = isAbsolute_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const join = join_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const normalizePath = normalizePath_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const relative = relative_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const resolve = resolve_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getComponentName = getComponentName_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getDomElement = getDomElement_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getLocationHref = getLocationHref_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const htmlTreeAsString = htmlTreeAsString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isNativeFunction = isNativeFunction_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsDOMError = supportsDOMError_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsDOMException = supportsDOMException_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsErrorEvent = supportsErrorEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsFetch = supportsFetch_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsNativeFetch = supportsNativeFetch_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsReferrerPolicy = supportsReferrerPolicy_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsReportingObserver = supportsReportingObserver_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const _browserPerformanceTimeOriginMode = _browserPerformanceTimeOriginMode_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const browserPerformanceTimeOrigin = browserPerformanceTimeOrigin_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const supportsHistory = supportsHistory_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const dynamicRequire = dynamicRequire_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const isNodeEnv = isNodeEnv_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const loadModule = loadModule_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const flatten = flatten_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const memoBuilder = memoBuilder_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const arrayify = arrayify_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const normalizeUrlToBase = normalizeUrlToBase_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const urlEncode = urlEncode_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const extractPathForTransaction = extractPathForTransaction_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const DEFAULT_USER_INCLUDES = DEFAULT_USER_INCLUDES_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const extractRequestData = extractRequestData_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const addRequestDataToEvent = addRequestDataToEvent_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const BAGGAGE_HEADER_NAME = BAGGAGE_HEADER_NAME_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const getSanitizedUrlString = getSanitizedUrlString_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const parseUrl = parseUrl_imported;
/** @deprecated Import from `@sentry/core` instead. */
export const stripUrlQueryAndFragment = stripUrlQueryAndFragment_imported;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export const makeFifoCache = makeFifoCache_imported;
import type {
AddRequestDataToEventOptions as AddRequestDataToEventOptions_imported,
InternalGlobal as InternalGlobal_imported,
PromiseBuffer as PromiseBuffer_imported,
RateLimits as RateLimits_imported,
SdkSource as SdkSource_imported,
TransactionNamingScheme as TransactionNamingScheme_imported,
} from '@sentry/core';
/** @deprecated Import from `@sentry/core` instead. */
export type InternalGlobal = InternalGlobal_imported;
/** @deprecated Import from `@sentry/core` instead. */
export type SdkSource = SdkSource_imported;
/** @deprecated Import from `@sentry/core` instead. */
export type RateLimits = RateLimits_imported;
/** @deprecated Import from `@sentry/core` instead. */
export type AddRequestDataToEventOptions = AddRequestDataToEventOptions_imported;
/** @deprecated Import from `@sentry/core` instead. */
export type PromiseBuffer<T> = PromiseBuffer_imported<T>;
/** @deprecated Import from `@sentry/core` instead. */
// eslint-disable-next-line deprecation/deprecation
export type TransactionNamingScheme = TransactionNamingScheme_imported;