123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- Object.defineProperty(exports, '__esModule', { value: true });
- const index = require('./server/index.js');
- const withSentryConfig = require('./config/withSentryConfig.js');
- const react = require('@sentry/react');
- const _error = require('./common/_error.js');
- const wrapApiHandlerWithSentry = require('./common/wrapApiHandlerWithSentry.js');
- const wrapGetStaticPropsWithSentry = require('./common/wrapGetStaticPropsWithSentry.js');
- const wrapGetInitialPropsWithSentry = require('./common/wrapGetInitialPropsWithSentry.js');
- const wrapAppGetInitialPropsWithSentry = require('./common/wrapAppGetInitialPropsWithSentry.js');
- const wrapDocumentGetInitialPropsWithSentry = require('./common/wrapDocumentGetInitialPropsWithSentry.js');
- const wrapErrorGetInitialPropsWithSentry = require('./common/wrapErrorGetInitialPropsWithSentry.js');
- const wrapGetServerSidePropsWithSentry = require('./common/wrapGetServerSidePropsWithSentry.js');
- const wrapServerComponentWithSentry = require('./common/wrapServerComponentWithSentry.js');
- const wrapRouteHandlerWithSentry = require('./common/wrapRouteHandlerWithSentry.js');
- const wrapApiHandlerWithSentryVercelCrons = require('./common/wrapApiHandlerWithSentryVercelCrons.js');
- const wrapMiddlewareWithSentry = require('./common/wrapMiddlewareWithSentry.js');
- const wrapPageComponentWithSentry = require('./common/wrapPageComponentWithSentry.js');
- const wrapGenerationFunctionWithSentry = require('./common/wrapGenerationFunctionWithSentry.js');
- const withServerActionInstrumentation = require('./common/withServerActionInstrumentation.js');
- const node = require('@sentry/node');
- const rewriteFramesIntegration = require('./server/rewriteFramesIntegration.js');
- // This file is the main entrypoint on the server and/or when the package is `require`d
- /**
- * This const serves no purpose besides being an identifier for this file that the SDK multiplexer loader can use to
- * determine that this is in fact a file that wants to be multiplexed.
- */
- const _SENTRY_SDK_MULTIPLEXER = true;
- exports.ErrorBoundary = index.ErrorBoundary;
- exports.IS_BUILD = index.IS_BUILD;
- exports.Integrations = index.Integrations;
- exports.init = index.init;
- exports.isBuild = index.isBuild;
- exports.showReportDialog = index.showReportDialog;
- exports.withErrorBoundary = index.withErrorBoundary;
- exports.withSentryConfig = withSentryConfig.withSentryConfig;
- exports.createReduxEnhancer = react.createReduxEnhancer;
- exports.captureUnderscoreErrorException = _error.captureUnderscoreErrorException;
- exports.withSentry = wrapApiHandlerWithSentry.withSentry;
- exports.withSentryAPI = wrapApiHandlerWithSentry.withSentryAPI;
- exports.wrapApiHandlerWithSentry = wrapApiHandlerWithSentry.wrapApiHandlerWithSentry;
- exports.withSentryGetStaticProps = wrapGetStaticPropsWithSentry.withSentryGetStaticProps;
- exports.wrapGetStaticPropsWithSentry = wrapGetStaticPropsWithSentry.wrapGetStaticPropsWithSentry;
- exports.withSentryServerSideGetInitialProps = wrapGetInitialPropsWithSentry.withSentryServerSideGetInitialProps;
- exports.wrapGetInitialPropsWithSentry = wrapGetInitialPropsWithSentry.wrapGetInitialPropsWithSentry;
- exports.withSentryServerSideAppGetInitialProps = wrapAppGetInitialPropsWithSentry.withSentryServerSideAppGetInitialProps;
- exports.wrapAppGetInitialPropsWithSentry = wrapAppGetInitialPropsWithSentry.wrapAppGetInitialPropsWithSentry;
- exports.withSentryServerSideDocumentGetInitialProps = wrapDocumentGetInitialPropsWithSentry.withSentryServerSideDocumentGetInitialProps;
- exports.wrapDocumentGetInitialPropsWithSentry = wrapDocumentGetInitialPropsWithSentry.wrapDocumentGetInitialPropsWithSentry;
- exports.withSentryServerSideErrorGetInitialProps = wrapErrorGetInitialPropsWithSentry.withSentryServerSideErrorGetInitialProps;
- exports.wrapErrorGetInitialPropsWithSentry = wrapErrorGetInitialPropsWithSentry.wrapErrorGetInitialPropsWithSentry;
- exports.withSentryGetServerSideProps = wrapGetServerSidePropsWithSentry.withSentryGetServerSideProps;
- exports.wrapGetServerSidePropsWithSentry = wrapGetServerSidePropsWithSentry.wrapGetServerSidePropsWithSentry;
- exports.wrapServerComponentWithSentry = wrapServerComponentWithSentry.wrapServerComponentWithSentry;
- exports.wrapRouteHandlerWithSentry = wrapRouteHandlerWithSentry.wrapRouteHandlerWithSentry;
- exports.wrapApiHandlerWithSentryVercelCrons = wrapApiHandlerWithSentryVercelCrons.wrapApiHandlerWithSentryVercelCrons;
- exports.wrapMiddlewareWithSentry = wrapMiddlewareWithSentry.wrapMiddlewareWithSentry;
- exports.wrapPageComponentWithSentry = wrapPageComponentWithSentry.wrapPageComponentWithSentry;
- exports.wrapGenerationFunctionWithSentry = wrapGenerationFunctionWithSentry.wrapGenerationFunctionWithSentry;
- exports.withServerActionInstrumentation = withServerActionInstrumentation.withServerActionInstrumentation;
- exports.rewriteFramesIntegration = rewriteFramesIntegration.rewriteFramesIntegration;
- exports._SENTRY_SDK_MULTIPLEXER = _SENTRY_SDK_MULTIPLEXER;
- for (const k in node) {
- if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = node[k];
- }
- //# sourceMappingURL=index.server.js.map
|