├── .aiAutoMinify.json ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── codeql │ └── codeql-config.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── lock.yml │ └── stale.yml ├── .gitignore ├── .npmignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README-manual.md ├── README.md ├── RELEASES.md ├── SECURITY.md ├── SUPPORT.md ├── ThirdPartyNotices.txt ├── applicationinsights-react-native ├── .npmignore ├── LICENSE ├── NOTICE ├── PRIVACY ├── README.md ├── Tests │ ├── External │ │ └── DummyReactNative.js │ ├── Unit │ │ └── src │ │ │ └── reactnativeplugin.tests.ts │ ├── UnitTests.html │ └── tsconfig.json ├── api-extractor.json ├── package.json ├── rollup.config.js ├── src │ ├── DeviceInfo │ │ ├── DeviceModule.ts │ │ └── ReactNativeDeviceInfo.ts │ ├── Interfaces │ │ ├── IDeviceInfoModule.ts │ │ ├── INativeDevice.ts │ │ ├── IReactNativePluginConfig.ts │ │ └── index.ts │ ├── ReactNativeManualDevicePlugin.ts │ ├── ReactNativePlugin.ts │ ├── index.ts │ └── manualIndex.ts ├── tsconfig.json └── tslint.json ├── common ├── Tests │ ├── External │ │ ├── blanket-1.2.2.js │ │ ├── blanket-reporter.js │ │ ├── es6-promise.auto.min.js │ │ ├── jquery.d.ts │ │ ├── magic-string.umd.js │ │ ├── qunit-2.9.1.css │ │ ├── qunit-2.9.1.js │ │ ├── qunit-2.9.3.css │ │ ├── qunit-2.9.3.js │ │ ├── qunit.d.ts │ │ ├── require-2.2.0.js │ │ ├── require-2.3.6.js │ │ ├── sinon-2.3.8.js │ │ ├── sinon-7.3.1.js │ │ ├── sinon.d.ts │ │ └── whatwg-fetch.3.0.0.js │ ├── Framework │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── AITestClass.ts │ │ │ ├── Assert.ts │ │ │ ├── DebugHelpers.ts │ │ │ ├── PollingAssert.ts │ │ │ ├── TelemetryValidation │ │ │ │ ├── CommonValidator.ts │ │ │ │ ├── EventValidator.ts │ │ │ │ ├── ExceptionValidator.ts │ │ │ │ ├── ITypeValidator.ts │ │ │ │ ├── MetricValidator.ts │ │ │ │ ├── PageViewPerformanceValidator.ts │ │ │ │ ├── PageViewValidator.ts │ │ │ │ ├── RemoteDepdencyValidator.ts │ │ │ │ └── TraceValidator.ts │ │ │ ├── TestCase.ts │ │ │ └── ai-test-framework.ts │ │ └── tsconfig.json │ └── Selenium │ │ ├── ExceptionHelper.js │ │ ├── ModuleLoader.js │ │ └── SimpleSyncPromise.js ├── changes │ └── @microsoft │ │ └── applicationinsights-web │ │ └── markwolff-refactor_readme_2019-10-04-20-34.json ├── config │ └── rush │ │ ├── .npmrc │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── npm-shrinkwrap.json │ │ └── version-policies.json ├── publish │ ├── AzureStorageHelper │ │ └── AzureStorageHelper.psm1 │ └── Logging │ │ └── Logging.psm1 └── scripts │ ├── install-run-rush-silent.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ ├── install-run-silent.js │ └── install-run.js ├── gruntfile.js ├── package.json ├── policheck-exclusions.xml ├── rush.json ├── sample ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js └── package.json ├── scripts ├── dtsgen.js └── dtsgen.ps1 ├── tools ├── grunt-tasks │ ├── chrome │ │ └── bridge.js │ ├── minifyNames.js │ └── qunit.js ├── release-tools │ ├── README.md │ ├── npm-package.js │ ├── package.json │ ├── package_groups.json │ ├── setAiVersion.js │ ├── setVersion.js │ ├── updatemanifest.js │ └── zipbrowser.js ├── rollup-plugin-uglify3-js │ ├── .eslintrc │ ├── dist │ │ └── esm │ │ │ └── rollup-plugin-uglify3-js.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ └── uglify3-js.ts │ └── tsconfig.json ├── status-tools │ ├── github-status.js │ └── package.json ├── subResourceIntegrity │ └── generateIntegrityFile.js └── updateDistEsm │ └── updateDistEsm.js ├── tsconfig.json └── version.json /.aiAutoMinify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.aiAutoMinify.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/.npmignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Microsoft/ApplicationInsights-JS-owners 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/NOTICE -------------------------------------------------------------------------------- /README-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/README-manual.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/RELEASES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /applicationinsights-react-native/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/.npmignore -------------------------------------------------------------------------------- /applicationinsights-react-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/LICENSE -------------------------------------------------------------------------------- /applicationinsights-react-native/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/NOTICE -------------------------------------------------------------------------------- /applicationinsights-react-native/PRIVACY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/PRIVACY -------------------------------------------------------------------------------- /applicationinsights-react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/README.md -------------------------------------------------------------------------------- /applicationinsights-react-native/Tests/External/DummyReactNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/Tests/External/DummyReactNative.js -------------------------------------------------------------------------------- /applicationinsights-react-native/Tests/Unit/src/reactnativeplugin.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/Tests/Unit/src/reactnativeplugin.tests.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/Tests/UnitTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/Tests/UnitTests.html -------------------------------------------------------------------------------- /applicationinsights-react-native/Tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/Tests/tsconfig.json -------------------------------------------------------------------------------- /applicationinsights-react-native/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/api-extractor.json -------------------------------------------------------------------------------- /applicationinsights-react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/package.json -------------------------------------------------------------------------------- /applicationinsights-react-native/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/rollup.config.js -------------------------------------------------------------------------------- /applicationinsights-react-native/src/DeviceInfo/DeviceModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/DeviceInfo/DeviceModule.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/DeviceInfo/ReactNativeDeviceInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/DeviceInfo/ReactNativeDeviceInfo.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/Interfaces/IDeviceInfoModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/Interfaces/IDeviceInfoModule.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/Interfaces/INativeDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/Interfaces/INativeDevice.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/Interfaces/IReactNativePluginConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/Interfaces/IReactNativePluginConfig.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/Interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/Interfaces/index.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/ReactNativeManualDevicePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/ReactNativeManualDevicePlugin.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/ReactNativePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/ReactNativePlugin.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/index.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/src/manualIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/src/manualIndex.ts -------------------------------------------------------------------------------- /applicationinsights-react-native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/tsconfig.json -------------------------------------------------------------------------------- /applicationinsights-react-native/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/applicationinsights-react-native/tslint.json -------------------------------------------------------------------------------- /common/Tests/External/blanket-1.2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/blanket-1.2.2.js -------------------------------------------------------------------------------- /common/Tests/External/blanket-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/blanket-reporter.js -------------------------------------------------------------------------------- /common/Tests/External/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/es6-promise.auto.min.js -------------------------------------------------------------------------------- /common/Tests/External/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/jquery.d.ts -------------------------------------------------------------------------------- /common/Tests/External/magic-string.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/magic-string.umd.js -------------------------------------------------------------------------------- /common/Tests/External/qunit-2.9.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/qunit-2.9.1.css -------------------------------------------------------------------------------- /common/Tests/External/qunit-2.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/qunit-2.9.1.js -------------------------------------------------------------------------------- /common/Tests/External/qunit-2.9.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/qunit-2.9.3.css -------------------------------------------------------------------------------- /common/Tests/External/qunit-2.9.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/qunit-2.9.3.js -------------------------------------------------------------------------------- /common/Tests/External/qunit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/qunit.d.ts -------------------------------------------------------------------------------- /common/Tests/External/require-2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/require-2.2.0.js -------------------------------------------------------------------------------- /common/Tests/External/require-2.3.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/require-2.3.6.js -------------------------------------------------------------------------------- /common/Tests/External/sinon-2.3.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/sinon-2.3.8.js -------------------------------------------------------------------------------- /common/Tests/External/sinon-7.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/sinon-7.3.1.js -------------------------------------------------------------------------------- /common/Tests/External/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/sinon.d.ts -------------------------------------------------------------------------------- /common/Tests/External/whatwg-fetch.3.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/External/whatwg-fetch.3.0.0.js -------------------------------------------------------------------------------- /common/Tests/Framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/package.json -------------------------------------------------------------------------------- /common/Tests/Framework/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/rollup.config.js -------------------------------------------------------------------------------- /common/Tests/Framework/src/AITestClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/AITestClass.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/Assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/Assert.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/DebugHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/DebugHelpers.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/PollingAssert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/PollingAssert.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/CommonValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/CommonValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/EventValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/EventValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/ExceptionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/ExceptionValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/ITypeValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/ITypeValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/MetricValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/MetricValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/PageViewPerformanceValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/PageViewPerformanceValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/PageViewValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/PageViewValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/RemoteDepdencyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/RemoteDepdencyValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/TraceValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TelemetryValidation/TraceValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TestCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/TestCase.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/ai-test-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/src/ai-test-framework.ts -------------------------------------------------------------------------------- /common/Tests/Framework/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Framework/tsconfig.json -------------------------------------------------------------------------------- /common/Tests/Selenium/ExceptionHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Selenium/ExceptionHelper.js -------------------------------------------------------------------------------- /common/Tests/Selenium/ModuleLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Selenium/ModuleLoader.js -------------------------------------------------------------------------------- /common/Tests/Selenium/SimpleSyncPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/Tests/Selenium/SimpleSyncPromise.js -------------------------------------------------------------------------------- /common/changes/@microsoft/applicationinsights-web/markwolff-refactor_readme_2019-10-04-20-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/changes/@microsoft/applicationinsights-web/markwolff-refactor_readme_2019-10-04-20-34.json -------------------------------------------------------------------------------- /common/config/rush/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/config/rush/.npmrc -------------------------------------------------------------------------------- /common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/config/rush/command-line.json -------------------------------------------------------------------------------- /common/config/rush/common-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/config/rush/common-versions.json -------------------------------------------------------------------------------- /common/config/rush/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/config/rush/npm-shrinkwrap.json -------------------------------------------------------------------------------- /common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /common/publish/AzureStorageHelper/AzureStorageHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/publish/AzureStorageHelper/AzureStorageHelper.psm1 -------------------------------------------------------------------------------- /common/publish/Logging/Logging.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/publish/Logging/Logging.psm1 -------------------------------------------------------------------------------- /common/scripts/install-run-rush-silent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/scripts/install-run-rush-silent.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /common/scripts/install-run-silent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/scripts/install-run-silent.js -------------------------------------------------------------------------------- /common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/common/scripts/install-run.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/package.json -------------------------------------------------------------------------------- /policheck-exclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/policheck-exclusions.xml -------------------------------------------------------------------------------- /rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/rush.json -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/.gitignore -------------------------------------------------------------------------------- /sample/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/App.js -------------------------------------------------------------------------------- /sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/README.md -------------------------------------------------------------------------------- /sample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/app.json -------------------------------------------------------------------------------- /sample/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/assets/adaptive-icon.png -------------------------------------------------------------------------------- /sample/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/assets/favicon.png -------------------------------------------------------------------------------- /sample/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/assets/icon.png -------------------------------------------------------------------------------- /sample/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/assets/splash.png -------------------------------------------------------------------------------- /sample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/babel.config.js -------------------------------------------------------------------------------- /sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/sample/package.json -------------------------------------------------------------------------------- /scripts/dtsgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/scripts/dtsgen.js -------------------------------------------------------------------------------- /scripts/dtsgen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/scripts/dtsgen.ps1 -------------------------------------------------------------------------------- /tools/grunt-tasks/chrome/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/grunt-tasks/chrome/bridge.js -------------------------------------------------------------------------------- /tools/grunt-tasks/minifyNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/grunt-tasks/minifyNames.js -------------------------------------------------------------------------------- /tools/grunt-tasks/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/grunt-tasks/qunit.js -------------------------------------------------------------------------------- /tools/release-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/README.md -------------------------------------------------------------------------------- /tools/release-tools/npm-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/npm-package.js -------------------------------------------------------------------------------- /tools/release-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/package.json -------------------------------------------------------------------------------- /tools/release-tools/package_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/package_groups.json -------------------------------------------------------------------------------- /tools/release-tools/setAiVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/setAiVersion.js -------------------------------------------------------------------------------- /tools/release-tools/setVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/setVersion.js -------------------------------------------------------------------------------- /tools/release-tools/updatemanifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/updatemanifest.js -------------------------------------------------------------------------------- /tools/release-tools/zipbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/release-tools/zipbrowser.js -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/rollup-plugin-uglify3-js/.eslintrc -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/dist/esm/rollup-plugin-uglify3-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/rollup-plugin-uglify3-js/dist/esm/rollup-plugin-uglify3-js.js -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/rollup-plugin-uglify3-js/package.json -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/rollup-plugin-uglify3-js/rollup.config.js -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/src/uglify3-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/rollup-plugin-uglify3-js/src/uglify3-js.ts -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/rollup-plugin-uglify3-js/tsconfig.json -------------------------------------------------------------------------------- /tools/status-tools/github-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/status-tools/github-status.js -------------------------------------------------------------------------------- /tools/status-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/status-tools/package.json -------------------------------------------------------------------------------- /tools/subResourceIntegrity/generateIntegrityFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/subResourceIntegrity/generateIntegrityFile.js -------------------------------------------------------------------------------- /tools/updateDistEsm/updateDistEsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tools/updateDistEsm/updateDistEsm.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-native/HEAD/version.json --------------------------------------------------------------------------------