@openobserve/browser-core 0.2.11 → 0.2.12-beta.13
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/package.json +6 -5
- package/src/boot/displayAlreadyInitializedError.ts +8 -0
- package/src/boot/init.ts +29 -15
- package/src/browser/addEventListener.ts +44 -35
- package/src/browser/{types.ts → browser.types.ts} +42 -0
- package/src/browser/cookie.ts +69 -15
- package/src/browser/fetchObservable.ts +97 -42
- package/src/browser/{pageExitObservable.ts → pageMayExitObservable.ts} +11 -24
- package/src/browser/runOnReadyState.ts +14 -4
- package/src/browser/xhrObservable.ts +45 -38
- package/src/domain/allowedTrackingOrigins.ts +30 -0
- package/src/domain/bufferedData.ts +32 -0
- package/src/domain/configuration/configuration.ts +366 -95
- package/src/domain/configuration/endpointBuilder.ts +48 -64
- package/src/domain/configuration/index.ts +6 -4
- package/src/domain/configuration/transportConfiguration.ts +42 -35
- package/src/domain/connectivity/connectivity.ts +31 -0
- package/src/domain/connectivity/index.ts +1 -0
- package/src/domain/console/consoleObservable.ts +59 -27
- package/src/domain/context/contextConstants.ts +27 -0
- package/src/domain/context/contextManager.ts +85 -0
- package/src/domain/context/contextUtils.ts +14 -0
- package/src/domain/context/defineContextMethod.ts +31 -0
- package/src/domain/context/storeContextManager.ts +55 -0
- package/src/domain/contexts/accountContext.ts +47 -0
- package/src/domain/contexts/globalContext.ts +30 -0
- package/src/domain/contexts/rumInternalContext.type.ts +15 -0
- package/src/domain/contexts/userContext.ts +64 -0
- package/src/domain/deflate/{types.ts → deflate.types.ts} +18 -2
- package/src/domain/deflate/index.ts +1 -1
- package/src/domain/error/error.ts +28 -84
- package/src/domain/error/error.types.ts +21 -4
- package/src/domain/error/trackRuntimeError.ts +37 -8
- package/src/domain/eventRateLimiter/createEventRateLimiter.ts +5 -2
- package/src/domain/extension/extensionUtils.ts +28 -0
- package/src/domain/intakeSites.ts +18 -0
- package/src/domain/report/browser.types.ts +12 -0
- package/src/domain/report/reportObservable.ts +37 -30
- package/src/domain/resourceUtils.ts +20 -16
- package/src/domain/session/README.md +193 -0
- package/src/domain/session/oldCookiesMigration.ts +7 -7
- package/src/domain/session/sessionConstants.ts +16 -1
- package/src/domain/session/sessionManager.ts +179 -15
- package/src/domain/session/sessionState.ts +49 -17
- package/src/domain/session/sessionStateValidation.ts +9 -0
- package/src/domain/session/sessionStore.ts +118 -55
- package/src/domain/session/sessionStoreOperations.ts +51 -32
- package/src/domain/session/storeStrategies/sessionInCookie.ts +113 -23
- package/src/domain/session/storeStrategies/sessionInLocalStorage.ts +11 -8
- package/src/domain/session/storeStrategies/sessionStoreStrategy.ts +6 -2
- package/src/domain/synthetics/syntheticsWorkerValues.ts +15 -4
- package/src/domain/tags.ts +76 -0
- package/src/domain/telemetry/index.ts +12 -4
- package/src/domain/telemetry/rawTelemetryEvent.types.ts +11 -3
- package/src/domain/telemetry/telemetry.ts +242 -98
- package/src/domain/telemetry/telemetryEvent.types.ts +530 -5
- package/src/domain/trackingConsent.ts +34 -0
- package/src/index.ts +92 -55
- package/src/tools/abstractHooks.ts +72 -0
- package/src/tools/abstractLifeCycle.ts +1 -0
- package/src/tools/boundedBuffer.ts +36 -8
- package/src/tools/display.ts +18 -13
- package/src/tools/encoder.ts +103 -0
- package/src/tools/experimentalFeatures.ts +18 -9
- package/src/tools/getZoneJsOriginalValue.ts +1 -1
- package/src/tools/{getGlobalObject.ts → globalObject.ts} +20 -0
- package/src/tools/instrumentMethod.ts +127 -66
- package/src/tools/matchOption.ts +1 -2
- package/src/tools/mergeInto.ts +16 -16
- package/src/tools/monitor.ts +14 -10
- package/src/tools/observable.ts +79 -15
- package/src/tools/queueMicrotask.ts +13 -0
- package/src/tools/readBytesFromStream.ts +24 -64
- package/src/tools/requestIdleCallback.ts +40 -0
- package/src/tools/sendToExtension.ts +3 -1
- package/src/tools/serialisation/context.ts +4 -1
- package/src/tools/serialisation/sanitize.ts +32 -14
- package/src/tools/stackTrace/computeStackTrace.ts +250 -0
- package/src/tools/stackTrace/handlingStack.ts +48 -0
- package/src/tools/taskQueue.ts +63 -0
- package/src/tools/timer.ts +1 -1
- package/src/tools/utils/arrayUtils.ts +11 -3
- package/src/tools/utils/browserDetection.ts +35 -3
- package/src/tools/utils/byteUtils.ts +13 -2
- package/src/tools/utils/functionUtils.ts +0 -2
- package/src/tools/utils/numberUtils.ts +2 -1
- package/src/tools/utils/objectUtils.ts +1 -3
- package/src/tools/utils/polyfills.ts +6 -110
- package/src/tools/utils/responseUtils.ts +1 -1
- package/src/tools/utils/stringUtils.ts +62 -4
- package/src/tools/utils/timeUtils.ts +18 -13
- package/src/tools/utils/timezone.ts +9 -0
- package/src/tools/utils/urlPolyfill.ts +29 -59
- package/src/tools/valueHistory.ts +66 -35
- package/src/transport/batch.ts +113 -61
- package/src/transport/eventBridge.ts +24 -5
- package/src/transport/flushController.ts +44 -23
- package/src/transport/httpRequest.ts +99 -71
- package/src/transport/index.ts +7 -4
- package/src/transport/sendWithRetryStrategy.ts +60 -41
- package/cjs/boot/init.d.ts +0 -5
- package/cjs/boot/init.js +0 -36
- package/cjs/boot/init.js.map +0 -1
- package/cjs/browser/addEventListener.d.ts +0 -76
- package/cjs/browser/addEventListener.js +0 -52
- package/cjs/browser/addEventListener.js.map +0 -1
- package/cjs/browser/cookie.d.ts +0 -10
- package/cjs/browser/cookie.js +0 -69
- package/cjs/browser/cookie.js.map +0 -1
- package/cjs/browser/fetchObservable.d.ts +0 -23
- package/cjs/browser/fetchObservable.js +0 -74
- package/cjs/browser/fetchObservable.js.map +0 -1
- package/cjs/browser/pageExitObservable.d.ts +0 -14
- package/cjs/browser/pageExitObservable.js +0 -58
- package/cjs/browser/pageExitObservable.js.map +0 -1
- package/cjs/browser/runOnReadyState.d.ts +0 -2
- package/cjs/browser/runOnReadyState.js +0 -15
- package/cjs/browser/runOnReadyState.js.map +0 -1
- package/cjs/browser/types.d.ts +0 -19
- package/cjs/browser/types.js +0 -6
- package/cjs/browser/types.js.map +0 -1
- package/cjs/browser/xhrObservable.d.ts +0 -22
- package/cjs/browser/xhrObservable.js +0 -93
- package/cjs/browser/xhrObservable.js.map +0 -1
- package/cjs/domain/configuration/configuration.d.ts +0 -67
- package/cjs/domain/configuration/configuration.js +0 -95
- package/cjs/domain/configuration/configuration.js.map +0 -1
- package/cjs/domain/configuration/endpointBuilder.d.ts +0 -14
- package/cjs/domain/configuration/endpointBuilder.js +0 -94
- package/cjs/domain/configuration/endpointBuilder.js.map +0 -1
- package/cjs/domain/configuration/index.d.ts +0 -3
- package/cjs/domain/configuration/index.js +0 -25
- package/cjs/domain/configuration/index.js.map +0 -1
- package/cjs/domain/configuration/intakeSites.d.ts +0 -5
- package/cjs/domain/configuration/intakeSites.js +0 -9
- package/cjs/domain/configuration/intakeSites.js.map +0 -1
- package/cjs/domain/configuration/tags.d.ts +0 -4
- package/cjs/domain/configuration/tags.js +0 -39
- package/cjs/domain/configuration/tags.js.map +0 -1
- package/cjs/domain/configuration/transportConfiguration.d.ts +0 -16
- package/cjs/domain/configuration/transportConfiguration.js +0 -42
- package/cjs/domain/configuration/transportConfiguration.js.map +0 -1
- package/cjs/domain/console/consoleObservable.d.ts +0 -11
- package/cjs/domain/console/consoleObservable.js +0 -75
- package/cjs/domain/console/consoleObservable.js.map +0 -1
- package/cjs/domain/deflate/index.d.ts +0 -1
- package/cjs/domain/deflate/index.js +0 -18
- package/cjs/domain/deflate/index.js.map +0 -1
- package/cjs/domain/deflate/types.d.ts +0 -26
- package/cjs/domain/deflate/types.js +0 -3
- package/cjs/domain/deflate/types.js.map +0 -1
- package/cjs/domain/error/error.d.ts +0 -28
- package/cjs/domain/error/error.js +0 -131
- package/cjs/domain/error/error.js.map +0 -1
- package/cjs/domain/error/error.types.d.ts +0 -40
- package/cjs/domain/error/error.types.js +0 -13
- package/cjs/domain/error/error.types.js.map +0 -1
- package/cjs/domain/error/trackRuntimeError.d.ts +0 -5
- package/cjs/domain/error/trackRuntimeError.js +0 -21
- package/cjs/domain/error/trackRuntimeError.js.map +0 -1
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.d.ts +0 -5
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.js +0 -40
- package/cjs/domain/eventRateLimiter/createEventRateLimiter.js.map +0 -1
- package/cjs/domain/report/browser.types.d.ts +0 -24
- package/cjs/domain/report/browser.types.js +0 -3
- package/cjs/domain/report/browser.types.js.map +0 -1
- package/cjs/domain/report/reportObservable.d.ts +0 -15
- package/cjs/domain/report/reportObservable.js +0 -94
- package/cjs/domain/report/reportObservable.js.map +0 -1
- package/cjs/domain/resourceUtils.d.ts +0 -16
- package/cjs/domain/resourceUtils.js +0 -3
- package/cjs/domain/resourceUtils.js.map +0 -1
- package/cjs/domain/session/oldCookiesMigration.d.ts +0 -11
- package/cjs/domain/session/oldCookiesMigration.js +0 -40
- package/cjs/domain/session/oldCookiesMigration.js.map +0 -1
- package/cjs/domain/session/sessionConstants.d.ts +0 -2
- package/cjs/domain/session/sessionConstants.js +0 -7
- package/cjs/domain/session/sessionConstants.js.map +0 -1
- package/cjs/domain/session/sessionManager.d.ts +0 -20
- package/cjs/domain/session/sessionManager.js +0 -65
- package/cjs/domain/session/sessionManager.js.map +0 -1
- package/cjs/domain/session/sessionState.d.ts +0 -11
- package/cjs/domain/session/sessionState.js +0 -45
- package/cjs/domain/session/sessionState.js.map +0 -1
- package/cjs/domain/session/sessionStore.d.ts +0 -34
- package/cjs/domain/session/sessionStore.js +0 -144
- package/cjs/domain/session/sessionStore.js.map +0 -1
- package/cjs/domain/session/sessionStoreOperations.d.ts +0 -15
- package/cjs/domain/session/sessionStoreOperations.js +0 -104
- package/cjs/domain/session/sessionStoreOperations.js.map +0 -1
- package/cjs/domain/session/storeStrategies/sessionInCookie.d.ts +0 -6
- package/cjs/domain/session/storeStrategies/sessionInCookie.js +0 -48
- package/cjs/domain/session/storeStrategies/sessionInCookie.js.map +0 -1
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.d.ts +0 -3
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.js +0 -40
- package/cjs/domain/session/storeStrategies/sessionInLocalStorage.js.map +0 -1
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.d.ts +0 -14
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.js +0 -5
- package/cjs/domain/session/storeStrategies/sessionStoreStrategy.js.map +0 -1
- package/cjs/domain/synthetics/syntheticsWorkerValues.d.ts +0 -11
- package/cjs/domain/synthetics/syntheticsWorkerValues.js +0 -22
- package/cjs/domain/synthetics/syntheticsWorkerValues.js.map +0 -1
- package/cjs/domain/telemetry/index.d.ts +0 -3
- package/cjs/domain/telemetry/index.js +0 -28
- package/cjs/domain/telemetry/index.js.map +0 -1
- package/cjs/domain/telemetry/rawTelemetryEvent.types.d.ts +0 -11
- package/cjs/domain/telemetry/rawTelemetryEvent.types.js +0 -8
- package/cjs/domain/telemetry/rawTelemetryEvent.types.js.map +0 -1
- package/cjs/domain/telemetry/telemetry.d.ts +0 -112
- package/cjs/domain/telemetry/telemetry.js +0 -146
- package/cjs/domain/telemetry/telemetry.js.map +0 -1
- package/cjs/domain/telemetry/telemetryEvent.types.d.ts +0 -375
- package/cjs/domain/telemetry/telemetryEvent.types.js +0 -7
- package/cjs/domain/telemetry/telemetryEvent.types.js.map +0 -1
- package/cjs/domain/tracekit/computeStackTrace.d.ts +0 -5
- package/cjs/domain/tracekit/computeStackTrace.js +0 -118
- package/cjs/domain/tracekit/computeStackTrace.js.map +0 -1
- package/cjs/domain/tracekit/index.d.ts +0 -3
- package/cjs/domain/tracekit/index.js +0 -8
- package/cjs/domain/tracekit/index.js.map +0 -1
- package/cjs/domain/tracekit/tracekit.d.ts +0 -35
- package/cjs/domain/tracekit/tracekit.js +0 -95
- package/cjs/domain/tracekit/tracekit.js.map +0 -1
- package/cjs/domain/tracekit/types.d.ts +0 -44
- package/cjs/domain/tracekit/types.js +0 -3
- package/cjs/domain/tracekit/types.js.map +0 -1
- package/cjs/domain/user/index.d.ts +0 -2
- package/cjs/domain/user/index.js +0 -19
- package/cjs/domain/user/index.js.map +0 -1
- package/cjs/domain/user/user.d.ts +0 -12
- package/cjs/domain/user/user.js +0 -35
- package/cjs/domain/user/user.js.map +0 -1
- package/cjs/domain/user/user.types.d.ts +0 -6
- package/cjs/domain/user/user.types.js +0 -3
- package/cjs/domain/user/user.types.js.map +0 -1
- package/cjs/index.d.ts +0 -63
- package/cjs/index.js +0 -155
- package/cjs/index.js.map +0 -1
- package/cjs/tools/abstractLifeCycle.d.ts +0 -23
- package/cjs/tools/abstractLifeCycle.js +0 -29
- package/cjs/tools/abstractLifeCycle.js.map +0 -1
- package/cjs/tools/boundedBuffer.d.ts +0 -5
- package/cjs/tools/boundedBuffer.js +0 -22
- package/cjs/tools/boundedBuffer.js.map +0 -1
- package/cjs/tools/catchUserErrors.d.ts +0 -1
- package/cjs/tools/catchUserErrors.js +0 -20
- package/cjs/tools/catchUserErrors.js.map +0 -1
- package/cjs/tools/display.d.ts +0 -35
- package/cjs/tools/display.js +0 -45
- package/cjs/tools/display.js.map +0 -1
- package/cjs/tools/experimentalFeatures.d.ts +0 -24
- package/cjs/tools/experimentalFeatures.js +0 -47
- package/cjs/tools/experimentalFeatures.js.map +0 -1
- package/cjs/tools/getGlobalObject.d.ts +0 -4
- package/cjs/tools/getGlobalObject.js +0 -37
- package/cjs/tools/getGlobalObject.js.map +0 -1
- package/cjs/tools/getZoneJsOriginalValue.d.ts +0 -19
- package/cjs/tools/getZoneJsOriginalValue.js +0 -30
- package/cjs/tools/getZoneJsOriginalValue.js.map +0 -1
- package/cjs/tools/instrumentMethod.d.ts +0 -19
- package/cjs/tools/instrumentMethod.js +0 -83
- package/cjs/tools/instrumentMethod.js.map +0 -1
- package/cjs/tools/matchOption.d.ts +0 -8
- package/cjs/tools/matchOption.js +0 -38
- package/cjs/tools/matchOption.js.map +0 -1
- package/cjs/tools/mergeInto.d.ts +0 -25
- package/cjs/tools/mergeInto.js +0 -105
- package/cjs/tools/mergeInto.js.map +0 -1
- package/cjs/tools/monitor.d.ts +0 -9
- package/cjs/tools/monitor.js +0 -76
- package/cjs/tools/monitor.js.map +0 -1
- package/cjs/tools/observable.d.ts +0 -12
- package/cjs/tools/observable.js +0 -44
- package/cjs/tools/observable.js.map +0 -1
- package/cjs/tools/readBytesFromStream.d.ts +0 -11
- package/cjs/tools/readBytesFromStream.js +0 -64
- package/cjs/tools/readBytesFromStream.js.map +0 -1
- package/cjs/tools/sendToExtension.d.ts +0 -3
- package/cjs/tools/sendToExtension.js +0 -11
- package/cjs/tools/sendToExtension.js.map +0 -1
- package/cjs/tools/serialisation/context.d.ts +0 -6
- package/cjs/tools/serialisation/context.js +0 -3
- package/cjs/tools/serialisation/context.js.map +0 -1
- package/cjs/tools/serialisation/contextManager.d.ts +0 -21
- package/cjs/tools/serialisation/contextManager.js +0 -70
- package/cjs/tools/serialisation/contextManager.js.map +0 -1
- package/cjs/tools/serialisation/heavyCustomerDataWarning.d.ts +0 -8
- package/cjs/tools/serialisation/heavyCustomerDataWarning.js +0 -18
- package/cjs/tools/serialisation/heavyCustomerDataWarning.js.map +0 -1
- package/cjs/tools/serialisation/jsonStringify.d.ts +0 -14
- package/cjs/tools/serialisation/jsonStringify.js +0 -49
- package/cjs/tools/serialisation/jsonStringify.js.map +0 -1
- package/cjs/tools/serialisation/sanitize.d.ts +0 -18
- package/cjs/tools/serialisation/sanitize.js +0 -185
- package/cjs/tools/serialisation/sanitize.js.map +0 -1
- package/cjs/tools/timer.d.ts +0 -5
- package/cjs/tools/timer.js +0 -23
- package/cjs/tools/timer.js.map +0 -1
- package/cjs/tools/utils/arrayUtils.d.ts +0 -1
- package/cjs/tools/utils/arrayUtils.js +0 -11
- package/cjs/tools/utils/arrayUtils.js.map +0 -1
- package/cjs/tools/utils/browserDetection.d.ts +0 -2
- package/cjs/tools/utils/browserDetection.js +0 -12
- package/cjs/tools/utils/browserDetection.js.map +0 -1
- package/cjs/tools/utils/byteUtils.d.ts +0 -4
- package/cjs/tools/utils/byteUtils.js +0 -31
- package/cjs/tools/utils/byteUtils.js.map +0 -1
- package/cjs/tools/utils/functionUtils.d.ts +0 -9
- package/cjs/tools/utils/functionUtils.js +0 -48
- package/cjs/tools/utils/functionUtils.js.map +0 -1
- package/cjs/tools/utils/numberUtils.d.ts +0 -8
- package/cjs/tools/utils/numberUtils.js +0 -24
- package/cjs/tools/utils/numberUtils.js.map +0 -1
- package/cjs/tools/utils/objectUtils.d.ts +0 -10
- package/cjs/tools/utils/objectUtils.js +0 -26
- package/cjs/tools/utils/objectUtils.js.map +0 -1
- package/cjs/tools/utils/polyfills.d.ts +0 -24
- package/cjs/tools/utils/polyfills.js +0 -110
- package/cjs/tools/utils/polyfills.js.map +0 -1
- package/cjs/tools/utils/responseUtils.d.ts +0 -2
- package/cjs/tools/utils/responseUtils.js +0 -18
- package/cjs/tools/utils/responseUtils.js.map +0 -1
- package/cjs/tools/utils/stringUtils.d.ts +0 -7
- package/cjs/tools/utils/stringUtils.js +0 -32
- package/cjs/tools/utils/stringUtils.js.map +0 -1
- package/cjs/tools/utils/timeUtils.d.ts +0 -57
- package/cjs/tools/utils/timeUtils.js +0 -99
- package/cjs/tools/utils/timeUtils.js.map +0 -1
- package/cjs/tools/utils/typeUtils.d.ts +0 -4
- package/cjs/tools/utils/typeUtils.js +0 -17
- package/cjs/tools/utils/typeUtils.js.map +0 -1
- package/cjs/tools/utils/urlPolyfill.d.ts +0 -14
- package/cjs/tools/utils/urlPolyfill.js +0 -92
- package/cjs/tools/utils/urlPolyfill.js.map +0 -1
- package/cjs/tools/valueHistory.d.ts +0 -50
- package/cjs/tools/valueHistory.js +0 -106
- package/cjs/tools/valueHistory.js.map +0 -1
- package/cjs/transport/batch.d.ts +0 -19
- package/cjs/transport/batch.js +0 -79
- package/cjs/transport/batch.js.map +0 -1
- package/cjs/transport/eventBridge.d.ts +0 -12
- package/cjs/transport/eventBridge.js +0 -34
- package/cjs/transport/eventBridge.js.map +0 -1
- package/cjs/transport/flushController.d.ts +0 -48
- package/cjs/transport/flushController.js +0 -97
- package/cjs/transport/flushController.js.map +0 -1
- package/cjs/transport/httpRequest.d.ts +0 -37
- package/cjs/transport/httpRequest.js +0 -91
- package/cjs/transport/httpRequest.js.map +0 -1
- package/cjs/transport/index.d.ts +0 -4
- package/cjs/transport/index.js +0 -13
- package/cjs/transport/index.js.map +0 -1
- package/cjs/transport/sendWithRetryStrategy.d.ts +0 -39
- package/cjs/transport/sendWithRetryStrategy.js +0 -151
- package/cjs/transport/sendWithRetryStrategy.js.map +0 -1
- package/cjs/transport/startBatchWithReplica.d.ts +0 -15
- package/cjs/transport/startBatchWithReplica.js +0 -37
- package/cjs/transport/startBatchWithReplica.js.map +0 -1
- package/esm/boot/init.d.ts +0 -5
- package/esm/boot/init.js +0 -31
- package/esm/boot/init.js.map +0 -1
- package/esm/browser/addEventListener.d.ts +0 -76
- package/esm/browser/addEventListener.js +0 -47
- package/esm/browser/addEventListener.js.map +0 -1
- package/esm/browser/cookie.d.ts +0 -10
- package/esm/browser/cookie.js +0 -61
- package/esm/browser/cookie.js.map +0 -1
- package/esm/browser/fetchObservable.d.ts +0 -23
- package/esm/browser/fetchObservable.js +0 -70
- package/esm/browser/fetchObservable.js.map +0 -1
- package/esm/browser/pageExitObservable.d.ts +0 -14
- package/esm/browser/pageExitObservable.js +0 -53
- package/esm/browser/pageExitObservable.js.map +0 -1
- package/esm/browser/runOnReadyState.d.ts +0 -2
- package/esm/browser/runOnReadyState.js +0 -11
- package/esm/browser/runOnReadyState.js.map +0 -1
- package/esm/browser/types.d.ts +0 -19
- package/esm/browser/types.js +0 -5
- package/esm/browser/types.js.map +0 -1
- package/esm/browser/xhrObservable.d.ts +0 -22
- package/esm/browser/xhrObservable.js +0 -89
- package/esm/browser/xhrObservable.js.map +0 -1
- package/esm/domain/configuration/configuration.d.ts +0 -67
- package/esm/domain/configuration/configuration.js +0 -90
- package/esm/domain/configuration/configuration.js.map +0 -1
- package/esm/domain/configuration/endpointBuilder.d.ts +0 -14
- package/esm/domain/configuration/endpointBuilder.js +0 -90
- package/esm/domain/configuration/endpointBuilder.js.map +0 -1
- package/esm/domain/configuration/index.d.ts +0 -3
- package/esm/domain/configuration/index.js +0 -4
- package/esm/domain/configuration/index.js.map +0 -1
- package/esm/domain/configuration/intakeSites.d.ts +0 -5
- package/esm/domain/configuration/intakeSites.js +0 -6
- package/esm/domain/configuration/intakeSites.js.map +0 -1
- package/esm/domain/configuration/tags.d.ts +0 -4
- package/esm/domain/configuration/tags.js +0 -34
- package/esm/domain/configuration/tags.js.map +0 -1
- package/esm/domain/configuration/transportConfiguration.d.ts +0 -16
- package/esm/domain/configuration/transportConfiguration.js +0 -38
- package/esm/domain/configuration/transportConfiguration.js.map +0 -1
- package/esm/domain/console/consoleObservable.d.ts +0 -11
- package/esm/domain/console/consoleObservable.js +0 -70
- package/esm/domain/console/consoleObservable.js.map +0 -1
- package/esm/domain/deflate/index.d.ts +0 -1
- package/esm/domain/deflate/index.js +0 -2
- package/esm/domain/deflate/index.js.map +0 -1
- package/esm/domain/deflate/types.d.ts +0 -26
- package/esm/domain/deflate/types.js +0 -2
- package/esm/domain/deflate/types.js.map +0 -1
- package/esm/domain/error/error.d.ts +0 -28
- package/esm/domain/error/error.js +0 -121
- package/esm/domain/error/error.js.map +0 -1
- package/esm/domain/error/error.types.d.ts +0 -40
- package/esm/domain/error/error.types.js +0 -10
- package/esm/domain/error/error.types.js.map +0 -1
- package/esm/domain/error/trackRuntimeError.d.ts +0 -5
- package/esm/domain/error/trackRuntimeError.js +0 -17
- package/esm/domain/error/trackRuntimeError.js.map +0 -1
- package/esm/domain/eventRateLimiter/createEventRateLimiter.d.ts +0 -5
- package/esm/domain/eventRateLimiter/createEventRateLimiter.js +0 -36
- package/esm/domain/eventRateLimiter/createEventRateLimiter.js.map +0 -1
- package/esm/domain/report/browser.types.d.ts +0 -24
- package/esm/domain/report/browser.types.js +0 -2
- package/esm/domain/report/browser.types.js.map +0 -1
- package/esm/domain/report/reportObservable.d.ts +0 -15
- package/esm/domain/report/reportObservable.js +0 -90
- package/esm/domain/report/reportObservable.js.map +0 -1
- package/esm/domain/resourceUtils.d.ts +0 -16
- package/esm/domain/resourceUtils.js +0 -2
- package/esm/domain/resourceUtils.js.map +0 -1
- package/esm/domain/session/oldCookiesMigration.d.ts +0 -11
- package/esm/domain/session/oldCookiesMigration.js +0 -36
- package/esm/domain/session/oldCookiesMigration.js.map +0 -1
- package/esm/domain/session/sessionConstants.d.ts +0 -2
- package/esm/domain/session/sessionConstants.js +0 -4
- package/esm/domain/session/sessionConstants.js.map +0 -1
- package/esm/domain/session/sessionManager.d.ts +0 -20
- package/esm/domain/session/sessionManager.js +0 -60
- package/esm/domain/session/sessionManager.js.map +0 -1
- package/esm/domain/session/sessionState.d.ts +0 -11
- package/esm/domain/session/sessionState.js +0 -38
- package/esm/domain/session/sessionState.js.map +0 -1
- package/esm/domain/session/sessionStore.d.ts +0 -34
- package/esm/domain/session/sessionStore.js +0 -139
- package/esm/domain/session/sessionStore.js.map +0 -1
- package/esm/domain/session/sessionStoreOperations.d.ts +0 -15
- package/esm/domain/session/sessionStoreOperations.js +0 -99
- package/esm/domain/session/sessionStoreOperations.js.map +0 -1
- package/esm/domain/session/storeStrategies/sessionInCookie.d.ts +0 -6
- package/esm/domain/session/storeStrategies/sessionInCookie.js +0 -42
- package/esm/domain/session/storeStrategies/sessionInCookie.js.map +0 -1
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.d.ts +0 -3
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.js +0 -35
- package/esm/domain/session/storeStrategies/sessionInLocalStorage.js.map +0 -1
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.d.ts +0 -14
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.js +0 -2
- package/esm/domain/session/storeStrategies/sessionStoreStrategy.js.map +0 -1
- package/esm/domain/synthetics/syntheticsWorkerValues.d.ts +0 -11
- package/esm/domain/synthetics/syntheticsWorkerValues.js +0 -16
- package/esm/domain/synthetics/syntheticsWorkerValues.js.map +0 -1
- package/esm/domain/telemetry/index.d.ts +0 -3
- package/esm/domain/telemetry/index.js +0 -4
- package/esm/domain/telemetry/index.js.map +0 -1
- package/esm/domain/telemetry/rawTelemetryEvent.types.d.ts +0 -11
- package/esm/domain/telemetry/rawTelemetryEvent.types.js +0 -5
- package/esm/domain/telemetry/rawTelemetryEvent.types.js.map +0 -1
- package/esm/domain/telemetry/telemetry.d.ts +0 -112
- package/esm/domain/telemetry/telemetry.js +0 -134
- package/esm/domain/telemetry/telemetry.js.map +0 -1
- package/esm/domain/telemetry/telemetryEvent.types.d.ts +0 -375
- package/esm/domain/telemetry/telemetryEvent.types.js +0 -6
- package/esm/domain/telemetry/telemetryEvent.types.js.map +0 -1
- package/esm/domain/tracekit/computeStackTrace.d.ts +0 -5
- package/esm/domain/tracekit/computeStackTrace.js +0 -114
- package/esm/domain/tracekit/computeStackTrace.js.map +0 -1
- package/esm/domain/tracekit/index.d.ts +0 -3
- package/esm/domain/tracekit/index.js +0 -3
- package/esm/domain/tracekit/index.js.map +0 -1
- package/esm/domain/tracekit/tracekit.d.ts +0 -35
- package/esm/domain/tracekit/tracekit.js +0 -91
- package/esm/domain/tracekit/tracekit.js.map +0 -1
- package/esm/domain/tracekit/types.d.ts +0 -44
- package/esm/domain/tracekit/types.js +0 -2
- package/esm/domain/tracekit/types.js.map +0 -1
- package/esm/domain/user/index.d.ts +0 -2
- package/esm/domain/user/index.js +0 -3
- package/esm/domain/user/index.js.map +0 -1
- package/esm/domain/user/user.d.ts +0 -12
- package/esm/domain/user/user.js +0 -30
- package/esm/domain/user/user.js.map +0 -1
- package/esm/domain/user/user.types.d.ts +0 -6
- package/esm/domain/user/user.types.js +0 -2
- package/esm/domain/user/user.types.js.map +0 -1
- package/esm/index.d.ts +0 -63
- package/esm/index.js +0 -61
- package/esm/index.js.map +0 -1
- package/esm/tools/abstractLifeCycle.d.ts +0 -23
- package/esm/tools/abstractLifeCycle.js +0 -26
- package/esm/tools/abstractLifeCycle.js.map +0 -1
- package/esm/tools/boundedBuffer.d.ts +0 -5
- package/esm/tools/boundedBuffer.js +0 -19
- package/esm/tools/boundedBuffer.js.map +0 -1
- package/esm/tools/catchUserErrors.d.ts +0 -1
- package/esm/tools/catchUserErrors.js +0 -16
- package/esm/tools/catchUserErrors.js.map +0 -1
- package/esm/tools/display.d.ts +0 -35
- package/esm/tools/display.js +0 -41
- package/esm/tools/display.js.map +0 -1
- package/esm/tools/experimentalFeatures.d.ts +0 -24
- package/esm/tools/experimentalFeatures.js +0 -40
- package/esm/tools/experimentalFeatures.js.map +0 -1
- package/esm/tools/getGlobalObject.d.ts +0 -4
- package/esm/tools/getGlobalObject.js +0 -33
- package/esm/tools/getGlobalObject.js.map +0 -1
- package/esm/tools/getZoneJsOriginalValue.d.ts +0 -19
- package/esm/tools/getZoneJsOriginalValue.js +0 -26
- package/esm/tools/getZoneJsOriginalValue.js.map +0 -1
- package/esm/tools/instrumentMethod.d.ts +0 -19
- package/esm/tools/instrumentMethod.js +0 -77
- package/esm/tools/instrumentMethod.js.map +0 -1
- package/esm/tools/matchOption.d.ts +0 -8
- package/esm/tools/matchOption.js +0 -33
- package/esm/tools/matchOption.js.map +0 -1
- package/esm/tools/mergeInto.d.ts +0 -25
- package/esm/tools/mergeInto.js +0 -99
- package/esm/tools/mergeInto.js.map +0 -1
- package/esm/tools/monitor.d.ts +0 -9
- package/esm/tools/monitor.js +0 -66
- package/esm/tools/monitor.js.map +0 -1
- package/esm/tools/observable.d.ts +0 -12
- package/esm/tools/observable.js +0 -40
- package/esm/tools/observable.js.map +0 -1
- package/esm/tools/readBytesFromStream.d.ts +0 -11
- package/esm/tools/readBytesFromStream.js +0 -60
- package/esm/tools/readBytesFromStream.js.map +0 -1
- package/esm/tools/sendToExtension.d.ts +0 -3
- package/esm/tools/sendToExtension.js +0 -7
- package/esm/tools/sendToExtension.js.map +0 -1
- package/esm/tools/serialisation/context.d.ts +0 -6
- package/esm/tools/serialisation/context.js +0 -2
- package/esm/tools/serialisation/context.js.map +0 -1
- package/esm/tools/serialisation/contextManager.d.ts +0 -21
- package/esm/tools/serialisation/contextManager.js +0 -66
- package/esm/tools/serialisation/contextManager.js.map +0 -1
- package/esm/tools/serialisation/heavyCustomerDataWarning.d.ts +0 -8
- package/esm/tools/serialisation/heavyCustomerDataWarning.js +0 -14
- package/esm/tools/serialisation/heavyCustomerDataWarning.js.map +0 -1
- package/esm/tools/serialisation/jsonStringify.d.ts +0 -14
- package/esm/tools/serialisation/jsonStringify.js +0 -44
- package/esm/tools/serialisation/jsonStringify.js.map +0 -1
- package/esm/tools/serialisation/sanitize.d.ts +0 -18
- package/esm/tools/serialisation/sanitize.js +0 -181
- package/esm/tools/serialisation/sanitize.js.map +0 -1
- package/esm/tools/timer.d.ts +0 -5
- package/esm/tools/timer.js +0 -16
- package/esm/tools/timer.js.map +0 -1
- package/esm/tools/utils/arrayUtils.d.ts +0 -1
- package/esm/tools/utils/arrayUtils.js +0 -7
- package/esm/tools/utils/arrayUtils.js.map +0 -1
- package/esm/tools/utils/browserDetection.d.ts +0 -2
- package/esm/tools/utils/browserDetection.js +0 -7
- package/esm/tools/utils/browserDetection.js.map +0 -1
- package/esm/tools/utils/byteUtils.d.ts +0 -4
- package/esm/tools/utils/byteUtils.js +0 -26
- package/esm/tools/utils/byteUtils.js.map +0 -1
- package/esm/tools/utils/functionUtils.d.ts +0 -9
- package/esm/tools/utils/functionUtils.js +0 -43
- package/esm/tools/utils/functionUtils.js.map +0 -1
- package/esm/tools/utils/numberUtils.d.ts +0 -8
- package/esm/tools/utils/numberUtils.js +0 -17
- package/esm/tools/utils/numberUtils.js.map +0 -1
- package/esm/tools/utils/objectUtils.d.ts +0 -10
- package/esm/tools/utils/objectUtils.js +0 -19
- package/esm/tools/utils/objectUtils.js.map +0 -1
- package/esm/tools/utils/polyfills.d.ts +0 -24
- package/esm/tools/utils/polyfills.js +0 -95
- package/esm/tools/utils/polyfills.js.map +0 -1
- package/esm/tools/utils/responseUtils.d.ts +0 -2
- package/esm/tools/utils/responseUtils.js +0 -13
- package/esm/tools/utils/responseUtils.js.map +0 -1
- package/esm/tools/utils/stringUtils.d.ts +0 -7
- package/esm/tools/utils/stringUtils.js +0 -26
- package/esm/tools/utils/stringUtils.js.map +0 -1
- package/esm/tools/utils/timeUtils.d.ts +0 -57
- package/esm/tools/utils/timeUtils.js +0 -82
- package/esm/tools/utils/timeUtils.js.map +0 -1
- package/esm/tools/utils/typeUtils.d.ts +0 -4
- package/esm/tools/utils/typeUtils.js +0 -13
- package/esm/tools/utils/typeUtils.js.map +0 -1
- package/esm/tools/utils/urlPolyfill.d.ts +0 -14
- package/esm/tools/utils/urlPolyfill.js +0 -80
- package/esm/tools/utils/urlPolyfill.js.map +0 -1
- package/esm/tools/valueHistory.d.ts +0 -50
- package/esm/tools/valueHistory.js +0 -103
- package/esm/tools/valueHistory.js.map +0 -1
- package/esm/transport/batch.d.ts +0 -19
- package/esm/transport/batch.js +0 -76
- package/esm/transport/batch.js.map +0 -1
- package/esm/transport/eventBridge.d.ts +0 -12
- package/esm/transport/eventBridge.js +0 -29
- package/esm/transport/eventBridge.js.map +0 -1
- package/esm/transport/flushController.d.ts +0 -48
- package/esm/transport/flushController.js +0 -93
- package/esm/transport/flushController.js.map +0 -1
- package/esm/transport/httpRequest.d.ts +0 -37
- package/esm/transport/httpRequest.js +0 -85
- package/esm/transport/httpRequest.js.map +0 -1
- package/esm/transport/index.d.ts +0 -4
- package/esm/transport/index.js +0 -5
- package/esm/transport/index.js.map +0 -1
- package/esm/transport/sendWithRetryStrategy.d.ts +0 -39
- package/esm/transport/sendWithRetryStrategy.js +0 -146
- package/esm/transport/sendWithRetryStrategy.js.map +0 -1
- package/esm/transport/startBatchWithReplica.d.ts +0 -15
- package/esm/transport/startBatchWithReplica.js +0 -33
- package/esm/transport/startBatchWithReplica.js.map +0 -1
- package/src/domain/configuration/intakeSites.ts +0 -5
- package/src/domain/configuration/tags.ts +0 -43
- package/src/domain/tracekit/computeStackTrace.ts +0 -141
- package/src/domain/tracekit/index.ts +0 -3
- package/src/domain/tracekit/tracekit.ts +0 -96
- package/src/domain/tracekit/types.ts +0 -47
- package/src/domain/user/index.ts +0 -2
- package/src/domain/user/user.ts +0 -33
- package/src/domain/user/user.types.ts +0 -6
- package/src/tools/serialisation/contextManager.ts +0 -79
- package/src/tools/serialisation/heavyCustomerDataWarning.ts +0 -26
- package/src/transport/startBatchWithReplica.ts +0 -52
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
|
-
* DO NOT MODIFY IT BY HAND. Run `yarn
|
|
3
|
+
* DO NOT MODIFY IT BY HAND. Run `yarn json-schemas:sync` instead.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Schema of all properties of a telemetry event
|
|
8
8
|
*/
|
|
9
|
-
export type TelemetryEvent =
|
|
9
|
+
export type TelemetryEvent =
|
|
10
|
+
| TelemetryErrorEvent
|
|
11
|
+
| TelemetryDebugEvent
|
|
12
|
+
| TelemetryConfigurationEvent
|
|
13
|
+
| TelemetryUsageEvent
|
|
10
14
|
/**
|
|
11
15
|
* Schema of all properties of a telemetry error event
|
|
12
16
|
*/
|
|
@@ -97,10 +101,18 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
97
101
|
* The percentage of telemetry configuration events sent after being sampled by telemetry_sample_rate
|
|
98
102
|
*/
|
|
99
103
|
telemetry_configuration_sample_rate?: number
|
|
104
|
+
/**
|
|
105
|
+
* The percentage of telemetry usage events sent after being sampled by telemetry_sample_rate
|
|
106
|
+
*/
|
|
107
|
+
telemetry_usage_sample_rate?: number
|
|
100
108
|
/**
|
|
101
109
|
* The percentage of requests traced
|
|
102
110
|
*/
|
|
103
111
|
trace_sample_rate?: number
|
|
112
|
+
/**
|
|
113
|
+
* The opt-in configuration to add trace context
|
|
114
|
+
*/
|
|
115
|
+
trace_context_injection?: 'all' | 'sampled'
|
|
104
116
|
/**
|
|
105
117
|
* The percentage of sessions with Browser RUM & Session Replay pricing tracked (deprecated in favor of session_replay_sample_rate)
|
|
106
118
|
*/
|
|
@@ -113,10 +125,18 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
113
125
|
* The percentage of sessions with RUM & Session Replay pricing tracked
|
|
114
126
|
*/
|
|
115
127
|
session_replay_sample_rate?: number
|
|
128
|
+
/**
|
|
129
|
+
* The initial tracking consent value
|
|
130
|
+
*/
|
|
131
|
+
tracking_consent?: 'granted' | 'not-granted' | 'pending'
|
|
116
132
|
/**
|
|
117
133
|
* Whether the session replay start is handled manually
|
|
118
134
|
*/
|
|
119
135
|
start_session_replay_recording_manually?: boolean
|
|
136
|
+
/**
|
|
137
|
+
* Whether Session Replay should automatically start a recording when enabled
|
|
138
|
+
*/
|
|
139
|
+
start_recording_immediately?: boolean
|
|
120
140
|
/**
|
|
121
141
|
* Whether a proxy is used
|
|
122
142
|
*/
|
|
@@ -137,22 +157,42 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
137
157
|
* Whether resources are tracked
|
|
138
158
|
*/
|
|
139
159
|
track_resources?: boolean
|
|
160
|
+
/**
|
|
161
|
+
* Whether early requests are tracked
|
|
162
|
+
*/
|
|
163
|
+
track_early_requests?: boolean
|
|
140
164
|
/**
|
|
141
165
|
* Whether long tasks are tracked
|
|
142
166
|
*/
|
|
143
167
|
track_long_task?: boolean
|
|
144
168
|
/**
|
|
145
|
-
* Whether
|
|
169
|
+
* Whether views loaded from the bfcache are tracked
|
|
170
|
+
*/
|
|
171
|
+
track_bfcache_views?: boolean
|
|
172
|
+
/**
|
|
173
|
+
* Whether a secure cross-site session cookie is used (deprecated)
|
|
146
174
|
*/
|
|
147
175
|
use_cross_site_session_cookie?: boolean
|
|
176
|
+
/**
|
|
177
|
+
* Whether a partitioned secure cross-site session cookie is used
|
|
178
|
+
*/
|
|
179
|
+
use_partitioned_cross_site_session_cookie?: boolean
|
|
148
180
|
/**
|
|
149
181
|
* Whether a secure session cookie is used
|
|
150
182
|
*/
|
|
151
183
|
use_secure_session_cookie?: boolean
|
|
152
184
|
/**
|
|
153
|
-
* Whether it is allowed to use LocalStorage when cookies are not available
|
|
185
|
+
* Whether it is allowed to use LocalStorage when cookies are not available (deprecated in favor of session_persistence)
|
|
154
186
|
*/
|
|
155
187
|
allow_fallback_to_local_storage?: boolean
|
|
188
|
+
/**
|
|
189
|
+
* Configure the storage strategy for persisting sessions
|
|
190
|
+
*/
|
|
191
|
+
session_persistence?: 'local-storage' | 'cookie'
|
|
192
|
+
/**
|
|
193
|
+
* Whether contexts are stored in local storage
|
|
194
|
+
*/
|
|
195
|
+
store_contexts_across_pages?: boolean
|
|
156
196
|
/**
|
|
157
197
|
* Whether untrusted events are allowed
|
|
158
198
|
*/
|
|
@@ -169,6 +209,18 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
169
209
|
* Whether the allowed tracing urls list is used
|
|
170
210
|
*/
|
|
171
211
|
use_allowed_tracing_urls?: boolean
|
|
212
|
+
/**
|
|
213
|
+
* Whether the allowed GraphQL urls list is used
|
|
214
|
+
*/
|
|
215
|
+
use_allowed_graph_ql_urls?: boolean
|
|
216
|
+
/**
|
|
217
|
+
* Whether GraphQL payload tracking is used for at least one GraphQL endpoint
|
|
218
|
+
*/
|
|
219
|
+
use_track_graph_ql_payload?: boolean
|
|
220
|
+
/**
|
|
221
|
+
* Whether GraphQL response errors tracking is used for at least one GraphQL endpoint
|
|
222
|
+
*/
|
|
223
|
+
use_track_graph_ql_response_errors?: boolean
|
|
172
224
|
/**
|
|
173
225
|
* A list of selected tracing propagators
|
|
174
226
|
*/
|
|
@@ -177,6 +229,22 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
177
229
|
* Session replay default privacy level
|
|
178
230
|
*/
|
|
179
231
|
default_privacy_level?: string
|
|
232
|
+
/**
|
|
233
|
+
* Session replay text and input privacy level
|
|
234
|
+
*/
|
|
235
|
+
text_and_input_privacy_level?: string
|
|
236
|
+
/**
|
|
237
|
+
* Session replay image privacy level
|
|
238
|
+
*/
|
|
239
|
+
image_privacy_level?: string
|
|
240
|
+
/**
|
|
241
|
+
* Session replay touch privacy level
|
|
242
|
+
*/
|
|
243
|
+
touch_privacy_level?: string
|
|
244
|
+
/**
|
|
245
|
+
* Privacy control for action name
|
|
246
|
+
*/
|
|
247
|
+
enable_privacy_for_action_name?: boolean
|
|
180
248
|
/**
|
|
181
249
|
* Whether the request origins list to ignore when computing the page activity is used
|
|
182
250
|
*/
|
|
@@ -185,6 +253,10 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
185
253
|
* Whether the Worker is loaded from an external URL
|
|
186
254
|
*/
|
|
187
255
|
use_worker_url?: boolean
|
|
256
|
+
/**
|
|
257
|
+
* Whether intake requests are compressed
|
|
258
|
+
*/
|
|
259
|
+
compress_intake_requests?: boolean
|
|
188
260
|
/**
|
|
189
261
|
* Whether user frustrations are tracked
|
|
190
262
|
*/
|
|
@@ -205,6 +277,10 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
205
277
|
* Whether console.error logs, uncaught exceptions and network errors are tracked
|
|
206
278
|
*/
|
|
207
279
|
forward_errors_to_logs?: boolean
|
|
280
|
+
/**
|
|
281
|
+
* The number of displays available to the device
|
|
282
|
+
*/
|
|
283
|
+
number_of_displays?: number
|
|
208
284
|
/**
|
|
209
285
|
* The console.* tracked
|
|
210
286
|
*/
|
|
@@ -225,6 +301,14 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
225
301
|
| 'FragmentViewTrackingStrategy'
|
|
226
302
|
| 'MixedViewTrackingStrategy'
|
|
227
303
|
| 'NavigationViewTrackingStrategy'
|
|
304
|
+
/**
|
|
305
|
+
* Whether SwiftUI view instrumentation is enabled
|
|
306
|
+
*/
|
|
307
|
+
swiftui_view_tracking_enabled?: boolean
|
|
308
|
+
/**
|
|
309
|
+
* Whether SwiftUI action instrumentation is enabled
|
|
310
|
+
*/
|
|
311
|
+
swiftui_action_tracking_enabled?: boolean
|
|
228
312
|
/**
|
|
229
313
|
* Whether RUM events are tracked when the application is in Background
|
|
230
314
|
*/
|
|
@@ -281,6 +365,14 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
281
365
|
* The upload frequency of batches (in milliseconds)
|
|
282
366
|
*/
|
|
283
367
|
batch_upload_frequency?: number
|
|
368
|
+
/**
|
|
369
|
+
* Maximum number of batches processed sequentially without a delay
|
|
370
|
+
*/
|
|
371
|
+
batch_processing_level?: number
|
|
372
|
+
/**
|
|
373
|
+
* Whether UIApplication background tasks are enabled
|
|
374
|
+
*/
|
|
375
|
+
background_tasks_enabled?: boolean
|
|
284
376
|
/**
|
|
285
377
|
* The version of React used in a ReactNative application
|
|
286
378
|
*/
|
|
@@ -293,12 +385,161 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
|
|
|
293
385
|
* The version of Dart used in a Flutter application
|
|
294
386
|
*/
|
|
295
387
|
dart_version?: string
|
|
388
|
+
/**
|
|
389
|
+
* The version of Unity used in a Unity application
|
|
390
|
+
*/
|
|
391
|
+
unity_version?: string
|
|
392
|
+
/**
|
|
393
|
+
* The threshold used for iOS App Hangs monitoring (in milliseconds)
|
|
394
|
+
*/
|
|
395
|
+
app_hang_threshold?: number
|
|
396
|
+
/**
|
|
397
|
+
* Whether logs are sent to the PCI-compliant intake
|
|
398
|
+
*/
|
|
399
|
+
use_pci_intake?: boolean
|
|
400
|
+
/**
|
|
401
|
+
* The tracer API used by the SDK. Possible values: 'Datadog', 'OpenTelemetry', 'OpenTracing'
|
|
402
|
+
*/
|
|
403
|
+
tracer_api?: string
|
|
404
|
+
/**
|
|
405
|
+
* The version of the tracer API used by the SDK. Eg. '0.1.0'
|
|
406
|
+
*/
|
|
407
|
+
tracer_api_version?: string
|
|
408
|
+
/**
|
|
409
|
+
* Whether logs are sent after the session expiration
|
|
410
|
+
*/
|
|
411
|
+
send_logs_after_session_expiration?: boolean
|
|
412
|
+
/**
|
|
413
|
+
* The list of plugins enabled
|
|
414
|
+
*/
|
|
415
|
+
plugins?: {
|
|
416
|
+
/**
|
|
417
|
+
* The name of the plugin
|
|
418
|
+
*/
|
|
419
|
+
name: string
|
|
420
|
+
[k: string]: unknown
|
|
421
|
+
}[]
|
|
422
|
+
/**
|
|
423
|
+
* Whether the SDK is initialised on the application's main or a secondary process
|
|
424
|
+
*/
|
|
425
|
+
is_main_process?: boolean
|
|
426
|
+
/**
|
|
427
|
+
* Interval in milliseconds when the last action is considered as the action that created the next view. Only sent if a time based strategy has been used
|
|
428
|
+
*/
|
|
429
|
+
inv_time_threshold_ms?: number
|
|
430
|
+
/**
|
|
431
|
+
* The interval in milliseconds during which all network requests will be considered as initial, i.e. caused by the creation of this view. Only sent if a time based strategy has been used
|
|
432
|
+
*/
|
|
433
|
+
tns_time_threshold_ms?: number
|
|
434
|
+
/**
|
|
435
|
+
* The list of events that include feature flags collection. The tracking is always enabled for views and errors.
|
|
436
|
+
*/
|
|
437
|
+
track_feature_flags_for_events?: ('vital' | 'resource' | 'action' | 'long_task')[]
|
|
438
|
+
/**
|
|
439
|
+
* Whether the anonymous users are tracked
|
|
440
|
+
*/
|
|
441
|
+
track_anonymous_user?: boolean
|
|
442
|
+
/**
|
|
443
|
+
* Whether a list of allowed origins is used to control SDK execution in browser extension contexts. When enabled, the SDK will check if the current origin matches the allowed origins list before running.
|
|
444
|
+
*/
|
|
445
|
+
use_allowed_tracking_origins?: boolean
|
|
446
|
+
/**
|
|
447
|
+
* The version of the SDK that is running.
|
|
448
|
+
*/
|
|
449
|
+
sdk_version?: string
|
|
450
|
+
/**
|
|
451
|
+
* The source of the SDK, e.g., 'browser', 'ios', 'android', 'flutter', 'react-native', 'unity', 'kotlin-multiplatform'.
|
|
452
|
+
*/
|
|
453
|
+
source?: string
|
|
454
|
+
/**
|
|
455
|
+
* The variant of the SDK build (e.g., standard, lite, etc.).
|
|
456
|
+
*/
|
|
457
|
+
variant?: string
|
|
458
|
+
/**
|
|
459
|
+
* The id of the remote configuration
|
|
460
|
+
*/
|
|
461
|
+
remote_configuration_id?: string
|
|
462
|
+
/**
|
|
463
|
+
* Whether a proxy is used for remote configuration
|
|
464
|
+
*/
|
|
465
|
+
use_remote_configuration_proxy?: boolean
|
|
466
|
+
/**
|
|
467
|
+
* The percentage of sessions with Profiling enabled
|
|
468
|
+
*/
|
|
469
|
+
profiling_sample_rate?: number
|
|
470
|
+
/**
|
|
471
|
+
* Whether trace baggage is propagated to child spans
|
|
472
|
+
*/
|
|
473
|
+
propagate_trace_baggage?: boolean
|
|
474
|
+
/**
|
|
475
|
+
* Whether the beta encode cookie options is enabled
|
|
476
|
+
*/
|
|
477
|
+
beta_encode_cookie_options?: boolean
|
|
296
478
|
[k: string]: unknown
|
|
297
479
|
}
|
|
298
480
|
[k: string]: unknown
|
|
299
481
|
}
|
|
300
482
|
[k: string]: unknown
|
|
301
483
|
}
|
|
484
|
+
/**
|
|
485
|
+
* Schema of all properties of a telemetry usage event
|
|
486
|
+
*/
|
|
487
|
+
export type TelemetryUsageEvent = CommonTelemetryProperties & {
|
|
488
|
+
/**
|
|
489
|
+
* The telemetry usage information
|
|
490
|
+
*/
|
|
491
|
+
telemetry: {
|
|
492
|
+
/**
|
|
493
|
+
* Telemetry type
|
|
494
|
+
*/
|
|
495
|
+
type: 'usage'
|
|
496
|
+
usage: TelemetryCommonFeaturesUsage | TelemetryBrowserFeaturesUsage | TelemetryMobileFeaturesUsage
|
|
497
|
+
[k: string]: unknown
|
|
498
|
+
}
|
|
499
|
+
[k: string]: unknown
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* Schema of features usage common across SDKs
|
|
503
|
+
*/
|
|
504
|
+
export type TelemetryCommonFeaturesUsage =
|
|
505
|
+
| SetTrackingConsent
|
|
506
|
+
| StopSession
|
|
507
|
+
| StartView
|
|
508
|
+
| SetViewContext
|
|
509
|
+
| SetViewContextProperty
|
|
510
|
+
| SetViewName
|
|
511
|
+
| GetViewContext
|
|
512
|
+
| AddAction
|
|
513
|
+
| AddError
|
|
514
|
+
| GetGlobalContext
|
|
515
|
+
| SetGlobalContext
|
|
516
|
+
| SetGlobalContextProperty
|
|
517
|
+
| RemoveGlobalContextProperty
|
|
518
|
+
| ClearGlobalContext
|
|
519
|
+
| GetUser
|
|
520
|
+
| SetUser
|
|
521
|
+
| SetUserProperty
|
|
522
|
+
| RemoveUserProperty
|
|
523
|
+
| ClearUser
|
|
524
|
+
| GetAccount
|
|
525
|
+
| SetAccount
|
|
526
|
+
| SetAccountProperty
|
|
527
|
+
| RemoveAccountProperty
|
|
528
|
+
| ClearAccount
|
|
529
|
+
| AddFeatureFlagEvaluation
|
|
530
|
+
| AddOperationStepVital
|
|
531
|
+
/**
|
|
532
|
+
* Schema of browser specific features usage
|
|
533
|
+
*/
|
|
534
|
+
export type TelemetryBrowserFeaturesUsage =
|
|
535
|
+
| StartSessionReplayRecording
|
|
536
|
+
| StartDurationVital
|
|
537
|
+
| StopDurationVital
|
|
538
|
+
| AddDurationVital
|
|
539
|
+
/**
|
|
540
|
+
* Schema of mobile specific features usage
|
|
541
|
+
*/
|
|
542
|
+
export type TelemetryMobileFeaturesUsage = AddViewLoadingTime
|
|
302
543
|
|
|
303
544
|
/**
|
|
304
545
|
* Schema of common properties of Telemetry events
|
|
@@ -329,7 +570,7 @@ export interface CommonTelemetryProperties {
|
|
|
329
570
|
/**
|
|
330
571
|
* The source of this event
|
|
331
572
|
*/
|
|
332
|
-
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native'
|
|
573
|
+
readonly source: 'android' | 'ios' | 'browser' | 'flutter' | 'react-native' | 'unity' | 'kotlin-multiplatform'
|
|
333
574
|
/**
|
|
334
575
|
* The version of the SDK generating the telemetry event
|
|
335
576
|
*/
|
|
@@ -374,9 +615,293 @@ export interface CommonTelemetryProperties {
|
|
|
374
615
|
id: string
|
|
375
616
|
[k: string]: unknown
|
|
376
617
|
}
|
|
618
|
+
/**
|
|
619
|
+
* The actual percentage of telemetry usage per event
|
|
620
|
+
*/
|
|
621
|
+
effective_sample_rate?: number
|
|
377
622
|
/**
|
|
378
623
|
* Enabled experimental features
|
|
379
624
|
*/
|
|
380
625
|
readonly experimental_features?: string[]
|
|
626
|
+
telemetry?: {
|
|
627
|
+
/**
|
|
628
|
+
* Device properties
|
|
629
|
+
*/
|
|
630
|
+
device?: {
|
|
631
|
+
/**
|
|
632
|
+
* Architecture of the device
|
|
633
|
+
*/
|
|
634
|
+
architecture?: string
|
|
635
|
+
/**
|
|
636
|
+
* Brand of the device
|
|
637
|
+
*/
|
|
638
|
+
brand?: string
|
|
639
|
+
/**
|
|
640
|
+
* Model of the device
|
|
641
|
+
*/
|
|
642
|
+
model?: string
|
|
643
|
+
[k: string]: unknown
|
|
644
|
+
}
|
|
645
|
+
/**
|
|
646
|
+
* OS properties
|
|
647
|
+
*/
|
|
648
|
+
os?: {
|
|
649
|
+
/**
|
|
650
|
+
* Build of the OS
|
|
651
|
+
*/
|
|
652
|
+
build?: string
|
|
653
|
+
/**
|
|
654
|
+
* Name of the OS
|
|
655
|
+
*/
|
|
656
|
+
name?: string
|
|
657
|
+
/**
|
|
658
|
+
* Version of the OS
|
|
659
|
+
*/
|
|
660
|
+
version?: string
|
|
661
|
+
[k: string]: unknown
|
|
662
|
+
}
|
|
663
|
+
[k: string]: unknown
|
|
664
|
+
}
|
|
665
|
+
[k: string]: unknown
|
|
666
|
+
}
|
|
667
|
+
export interface SetTrackingConsent {
|
|
668
|
+
/**
|
|
669
|
+
* setTrackingConsent API
|
|
670
|
+
*/
|
|
671
|
+
feature: 'set-tracking-consent'
|
|
672
|
+
/**
|
|
673
|
+
* The tracking consent value set by the user
|
|
674
|
+
*/
|
|
675
|
+
tracking_consent: 'granted' | 'not-granted' | 'pending'
|
|
676
|
+
[k: string]: unknown
|
|
677
|
+
}
|
|
678
|
+
export interface StopSession {
|
|
679
|
+
/**
|
|
680
|
+
* stopSession API
|
|
681
|
+
*/
|
|
682
|
+
feature: 'stop-session'
|
|
683
|
+
[k: string]: unknown
|
|
684
|
+
}
|
|
685
|
+
export interface StartView {
|
|
686
|
+
/**
|
|
687
|
+
* startView API
|
|
688
|
+
*/
|
|
689
|
+
feature: 'start-view'
|
|
690
|
+
[k: string]: unknown
|
|
691
|
+
}
|
|
692
|
+
export interface SetViewContext {
|
|
693
|
+
/**
|
|
694
|
+
* setViewContext API
|
|
695
|
+
*/
|
|
696
|
+
feature: 'set-view-context'
|
|
697
|
+
[k: string]: unknown
|
|
698
|
+
}
|
|
699
|
+
export interface SetViewContextProperty {
|
|
700
|
+
/**
|
|
701
|
+
* setViewContextProperty API
|
|
702
|
+
*/
|
|
703
|
+
feature: 'set-view-context-property'
|
|
704
|
+
[k: string]: unknown
|
|
705
|
+
}
|
|
706
|
+
export interface SetViewName {
|
|
707
|
+
/**
|
|
708
|
+
* setViewName API
|
|
709
|
+
*/
|
|
710
|
+
feature: 'set-view-name'
|
|
711
|
+
[k: string]: unknown
|
|
712
|
+
}
|
|
713
|
+
export interface GetViewContext {
|
|
714
|
+
/**
|
|
715
|
+
* getViewContext API
|
|
716
|
+
*/
|
|
717
|
+
feature: 'get-view-context'
|
|
718
|
+
[k: string]: unknown
|
|
719
|
+
}
|
|
720
|
+
export interface AddAction {
|
|
721
|
+
/**
|
|
722
|
+
* addAction API
|
|
723
|
+
*/
|
|
724
|
+
feature: 'add-action'
|
|
725
|
+
[k: string]: unknown
|
|
726
|
+
}
|
|
727
|
+
export interface AddError {
|
|
728
|
+
/**
|
|
729
|
+
* addError API
|
|
730
|
+
*/
|
|
731
|
+
feature: 'add-error'
|
|
732
|
+
[k: string]: unknown
|
|
733
|
+
}
|
|
734
|
+
export interface GetGlobalContext {
|
|
735
|
+
/**
|
|
736
|
+
* getGlobalContext API
|
|
737
|
+
*/
|
|
738
|
+
feature: 'get-global-context'
|
|
739
|
+
[k: string]: unknown
|
|
740
|
+
}
|
|
741
|
+
export interface SetGlobalContext {
|
|
742
|
+
/**
|
|
743
|
+
* setGlobalContext, addAttribute APIs
|
|
744
|
+
*/
|
|
745
|
+
feature: 'set-global-context'
|
|
746
|
+
[k: string]: unknown
|
|
747
|
+
}
|
|
748
|
+
export interface SetGlobalContextProperty {
|
|
749
|
+
/**
|
|
750
|
+
* setGlobalContextProperty API
|
|
751
|
+
*/
|
|
752
|
+
feature: 'set-global-context-property'
|
|
753
|
+
[k: string]: unknown
|
|
754
|
+
}
|
|
755
|
+
export interface RemoveGlobalContextProperty {
|
|
756
|
+
/**
|
|
757
|
+
* removeGlobalContextProperty API
|
|
758
|
+
*/
|
|
759
|
+
feature: 'remove-global-context-property'
|
|
760
|
+
[k: string]: unknown
|
|
761
|
+
}
|
|
762
|
+
export interface ClearGlobalContext {
|
|
763
|
+
/**
|
|
764
|
+
* clearGlobalContext API
|
|
765
|
+
*/
|
|
766
|
+
feature: 'clear-global-context'
|
|
767
|
+
[k: string]: unknown
|
|
768
|
+
}
|
|
769
|
+
export interface GetUser {
|
|
770
|
+
/**
|
|
771
|
+
* getUser API
|
|
772
|
+
*/
|
|
773
|
+
feature: 'get-user'
|
|
774
|
+
[k: string]: unknown
|
|
775
|
+
}
|
|
776
|
+
export interface SetUser {
|
|
777
|
+
/**
|
|
778
|
+
* setUser, setUserInfo APIs
|
|
779
|
+
*/
|
|
780
|
+
feature: 'set-user'
|
|
781
|
+
[k: string]: unknown
|
|
782
|
+
}
|
|
783
|
+
export interface SetUserProperty {
|
|
784
|
+
/**
|
|
785
|
+
* setUserProperty API
|
|
786
|
+
*/
|
|
787
|
+
feature: 'set-user-property'
|
|
788
|
+
[k: string]: unknown
|
|
789
|
+
}
|
|
790
|
+
export interface RemoveUserProperty {
|
|
791
|
+
/**
|
|
792
|
+
* removeUserProperty API
|
|
793
|
+
*/
|
|
794
|
+
feature: 'remove-user-property'
|
|
795
|
+
[k: string]: unknown
|
|
796
|
+
}
|
|
797
|
+
export interface ClearUser {
|
|
798
|
+
/**
|
|
799
|
+
* clearUser API
|
|
800
|
+
*/
|
|
801
|
+
feature: 'clear-user'
|
|
802
|
+
[k: string]: unknown
|
|
803
|
+
}
|
|
804
|
+
export interface GetAccount {
|
|
805
|
+
/**
|
|
806
|
+
* getAccount API
|
|
807
|
+
*/
|
|
808
|
+
feature: 'get-account'
|
|
809
|
+
[k: string]: unknown
|
|
810
|
+
}
|
|
811
|
+
export interface SetAccount {
|
|
812
|
+
/**
|
|
813
|
+
* setAccount, setAccountProperty APIs
|
|
814
|
+
*/
|
|
815
|
+
feature: 'set-account'
|
|
816
|
+
[k: string]: unknown
|
|
817
|
+
}
|
|
818
|
+
export interface SetAccountProperty {
|
|
819
|
+
/**
|
|
820
|
+
* setAccountProperty API
|
|
821
|
+
*/
|
|
822
|
+
feature: 'set-account-property'
|
|
823
|
+
[k: string]: unknown
|
|
824
|
+
}
|
|
825
|
+
export interface RemoveAccountProperty {
|
|
826
|
+
/**
|
|
827
|
+
* removeAccountProperty API
|
|
828
|
+
*/
|
|
829
|
+
feature: 'remove-account-property'
|
|
830
|
+
[k: string]: unknown
|
|
831
|
+
}
|
|
832
|
+
export interface ClearAccount {
|
|
833
|
+
/**
|
|
834
|
+
* clearAccount API
|
|
835
|
+
*/
|
|
836
|
+
feature: 'clear-account'
|
|
837
|
+
[k: string]: unknown
|
|
838
|
+
}
|
|
839
|
+
export interface AddFeatureFlagEvaluation {
|
|
840
|
+
/**
|
|
841
|
+
* addFeatureFlagEvaluation API
|
|
842
|
+
*/
|
|
843
|
+
feature: 'add-feature-flag-evaluation'
|
|
844
|
+
[k: string]: unknown
|
|
845
|
+
}
|
|
846
|
+
export interface AddOperationStepVital {
|
|
847
|
+
/**
|
|
848
|
+
* addOperationStepVital API
|
|
849
|
+
*/
|
|
850
|
+
feature: 'add-operation-step-vital'
|
|
851
|
+
/**
|
|
852
|
+
* Operations step type
|
|
853
|
+
*/
|
|
854
|
+
action_type: 'start' | 'succeed' | 'fail'
|
|
855
|
+
[k: string]: unknown
|
|
856
|
+
}
|
|
857
|
+
export interface StartSessionReplayRecording {
|
|
858
|
+
/**
|
|
859
|
+
* startSessionReplayRecording API
|
|
860
|
+
*/
|
|
861
|
+
feature: 'start-session-replay-recording'
|
|
862
|
+
/**
|
|
863
|
+
* Whether the recording is allowed to start even on sessions sampled out of replay
|
|
864
|
+
*/
|
|
865
|
+
is_forced?: boolean
|
|
866
|
+
[k: string]: unknown
|
|
867
|
+
}
|
|
868
|
+
export interface StartDurationVital {
|
|
869
|
+
/**
|
|
870
|
+
* startDurationVital API
|
|
871
|
+
*/
|
|
872
|
+
feature: 'start-duration-vital'
|
|
873
|
+
[k: string]: unknown
|
|
874
|
+
}
|
|
875
|
+
export interface StopDurationVital {
|
|
876
|
+
/**
|
|
877
|
+
* stopDurationVital API
|
|
878
|
+
*/
|
|
879
|
+
feature: 'stop-duration-vital'
|
|
880
|
+
[k: string]: unknown
|
|
881
|
+
}
|
|
882
|
+
export interface AddDurationVital {
|
|
883
|
+
/**
|
|
884
|
+
* addDurationVital API
|
|
885
|
+
*/
|
|
886
|
+
feature: 'add-duration-vital'
|
|
887
|
+
[k: string]: unknown
|
|
888
|
+
}
|
|
889
|
+
export interface AddViewLoadingTime {
|
|
890
|
+
/**
|
|
891
|
+
* addViewLoadingTime API
|
|
892
|
+
*/
|
|
893
|
+
feature: 'addViewLoadingTime'
|
|
894
|
+
/**
|
|
895
|
+
* Whether the view is not available
|
|
896
|
+
*/
|
|
897
|
+
no_view: boolean
|
|
898
|
+
/**
|
|
899
|
+
* Whether the available view is not active
|
|
900
|
+
*/
|
|
901
|
+
no_active_view: boolean
|
|
902
|
+
/**
|
|
903
|
+
* Whether the loading time was overwritten
|
|
904
|
+
*/
|
|
905
|
+
overwritten: boolean
|
|
381
906
|
[k: string]: unknown
|
|
382
907
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Observable } from '../tools/observable'
|
|
2
|
+
|
|
3
|
+
export const TrackingConsent = {
|
|
4
|
+
GRANTED: 'granted',
|
|
5
|
+
NOT_GRANTED: 'not-granted',
|
|
6
|
+
} as const
|
|
7
|
+
export type TrackingConsent = (typeof TrackingConsent)[keyof typeof TrackingConsent]
|
|
8
|
+
|
|
9
|
+
export interface TrackingConsentState {
|
|
10
|
+
tryToInit: (trackingConsent: TrackingConsent) => void
|
|
11
|
+
update: (trackingConsent: TrackingConsent) => void
|
|
12
|
+
isGranted: () => boolean
|
|
13
|
+
observable: Observable<void>
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function createTrackingConsentState(currentConsent?: TrackingConsent): TrackingConsentState {
|
|
17
|
+
const observable = new Observable<void>()
|
|
18
|
+
|
|
19
|
+
return {
|
|
20
|
+
tryToInit(trackingConsent: TrackingConsent) {
|
|
21
|
+
if (!currentConsent) {
|
|
22
|
+
currentConsent = trackingConsent
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
update(trackingConsent: TrackingConsent) {
|
|
26
|
+
currentConsent = trackingConsent
|
|
27
|
+
observable.notify()
|
|
28
|
+
},
|
|
29
|
+
isGranted() {
|
|
30
|
+
return currentConsent === TrackingConsent.GRANTED
|
|
31
|
+
},
|
|
32
|
+
observable,
|
|
33
|
+
}
|
|
34
|
+
}
|