├── .devcontainer └── devcontainer.json ├── .eslintignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── policies │ ├── microsoft-graph-explorer-v4-branch-protection.yml │ └── resourceManagement.yml ├── pull_request_template.md └── workflows │ ├── codeql.yml │ ├── cut-release.yml │ ├── english-file-transfer.yml │ ├── linter.yml │ ├── projectbot.yml │ ├── publish-release.yml │ └── release-please-master.yml ├── .gitignore ├── .prettierrc ├── .release-please-manifest.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── __mocks__ ├── @azure │ └── msal-browser └── react-monaco-editor.js ├── azure-pipelines.yml ├── babel.config.json ├── config ├── CSSStub.ts ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── webpack.config.js └── webpackDevServer.config.js ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── packages ├── expvariantassignmentsdk-1.0.0.tgz ├── expvariantassignmentsdk-1.0.1.tgz ├── officebrowserfeedbacknpm-1.6.6.tgz └── types-core-2.16.189.tgz ├── playwright.config.ts ├── public ├── favicon.ico ├── index.html └── manifest.json ├── release-please-config.json ├── scripts ├── build-tst.js ├── build.js ├── start.js └── test.js ├── sonar-project.properties ├── src ├── adaptivecards-templates │ ├── DirectReports.json │ ├── Files.json │ ├── FullPersonCard.json │ ├── Groups.json │ ├── Insights.Trending.json │ ├── Messages.json │ ├── Profile.json │ ├── Site.json │ ├── Sites.json │ ├── User.json │ ├── Users.json │ └── index.ts ├── app │ ├── middleware │ │ ├── localStorageMiddleware.ts │ │ └── telemetryMiddleware.ts │ ├── services │ │ ├── actions │ │ │ ├── auth-action-creators.spec.ts │ │ │ ├── autocomplete-action-creators.spec.ts │ │ │ ├── collections-action-creators.spec.ts │ │ │ ├── devxApi-action-creators.spec.ts │ │ │ ├── dimensions-action-creator.spec.ts │ │ │ ├── explorer-mode-action-creator.spec.ts │ │ │ ├── mockThunkMiddleware.ts │ │ │ ├── permissions-action-creator.spec.ts │ │ │ ├── permissions-action-creator.util.ts │ │ │ ├── profile-action-creators.spec.ts │ │ │ ├── profile-actions.ts │ │ │ ├── proxy-action-creator.spec.ts │ │ │ ├── query-action-creator-util.ts │ │ │ ├── query-action-creators.spec.ts │ │ │ ├── query-input-action-creators.spec.ts │ │ │ ├── query-status-action-creator.spec.ts │ │ │ ├── request-history-action-creators.spec.ts │ │ │ ├── resource-explorer-action-creators.spec.ts │ │ │ ├── response-expanded-action-creator.spec.ts │ │ │ ├── revoke-scopes.action.ts │ │ │ ├── samples-action-creators.spec.ts │ │ │ ├── snippet-action-creator.spec.ts │ │ │ ├── terms-of-use-action-creator.spec.ts │ │ │ ├── theme-action-creator.spec.ts │ │ │ └── toggle-sidebar-action-creator.spec.ts │ │ ├── context │ │ │ ├── collection-permissions │ │ │ │ ├── CollectionPermissionsContext.ts │ │ │ │ └── CollectionPermissionsProvider.tsx │ │ │ ├── popups-context │ │ │ │ ├── PopupsContext.tsx │ │ │ │ ├── index.ts │ │ │ │ └── reducedPopups.ts │ │ │ └── validation-context │ │ │ │ ├── ValidationContext.tsx │ │ │ │ └── ValidationProvider.tsx │ │ ├── graph-client │ │ │ ├── GraphAuthenticationProvider.ts │ │ │ ├── graph-client.ts │ │ │ └── index.ts │ │ ├── graph-constants.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useCollectionPermissions.ts │ │ │ └── usePopups.ts │ │ ├── reducers │ │ │ ├── collections-reducer.util.ts │ │ │ └── index.ts │ │ ├── redux-constants.ts │ │ ├── slices │ │ │ ├── auth.slice.ts │ │ │ ├── autocomplete.slice.ts │ │ │ ├── collections.slice.ts │ │ │ ├── devxapi.slice.ts │ │ │ ├── dimensions.slice.ts │ │ │ ├── explorer-mode.slice.ts │ │ │ ├── graph-response.slice.ts │ │ │ ├── history.slice.ts │ │ │ ├── index.ts │ │ │ ├── permission-grants.slice.ts │ │ │ ├── profile.slice.ts │ │ │ ├── proxy.slice.ts │ │ │ ├── query-status.slice.ts │ │ │ ├── resources.slice.ts │ │ │ ├── response-area-expanded.slice.ts │ │ │ ├── sample-query.slice.ts │ │ │ ├── samples.slice.ts │ │ │ ├── scopes.slice.ts │ │ │ ├── sidebar-properties.slice.ts │ │ │ ├── snippet.slice.ts │ │ │ ├── terms-of-use.slice.ts │ │ │ └── theme.slice.ts │ │ ├── variant-constants.ts │ │ └── variant-service.ts │ ├── utils │ │ ├── ClientError.ts │ │ ├── adaptive-cards-lookup.ts │ │ ├── device-characteristics-telemetry.spec.ts │ │ ├── device-characteristics-telemetry.ts │ │ ├── dynamic-sort.spec.ts │ │ ├── dynamic-sort.ts │ │ ├── error-utils │ │ │ ├── ClientError.ts │ │ │ ├── RevokeScopesError.ts │ │ │ ├── ScopesError.ts │ │ │ └── ValidationError.ts │ │ ├── external-link-validation.spec.ts │ │ ├── external-link-validation.ts │ │ ├── fetch-retry-handler.ts │ │ ├── generate-groups.spec.ts │ │ ├── generate-groups.ts │ │ ├── get-messages.ts │ │ ├── getPermissionsScopeType.ts │ │ ├── graph-toolkit-lookup.spec.ts │ │ ├── graph-toolkit-lookup.ts │ │ ├── hash-string.spec.ts │ │ ├── hash-string.ts │ │ ├── http-methods.utils.ts │ │ ├── local-storage.ts │ │ ├── open-api-parser.spec.ts │ │ ├── open-api-parser.ts │ │ ├── open-api-sample.ts │ │ ├── query-parameter-sanitization.spec.ts │ │ ├── query-parameter-sanitization.ts │ │ ├── query-url-sanitization.spec.ts │ │ ├── query-url-sanitization.ts │ │ ├── resources │ │ │ ├── resources-filter.ts │ │ │ └── resources.json │ │ ├── sample-url-generation.spec.ts │ │ ├── sample-url-generation.ts │ │ ├── searchbox.styles.ts │ │ ├── snippet.utils.ts │ │ ├── status-message.spec.ts │ │ ├── status-message.ts │ │ ├── string-operations.ts │ │ ├── token-helpers.spec.ts │ │ ├── token-helpers.ts │ │ ├── translate-messages.ts │ │ ├── useDetectMobileScreen.ts │ │ └── version.ts │ └── views │ │ ├── App.tsx │ │ ├── app-sections │ │ ├── HeaderMessaging.tsx │ │ ├── StatusMessages.tsx │ │ ├── TermsOfUseMessage.tsx │ │ └── index.ts │ │ ├── authentication │ │ ├── Authentication.tsx │ │ ├── auth-util-components │ │ │ ├── ProfileButton.tsx │ │ │ └── index.tsx │ │ ├── index.ts │ │ └── profile │ │ │ └── Profile.tsx │ │ ├── common │ │ ├── banners │ │ │ ├── Notification.styles.ts │ │ │ ├── Notification.tsx │ │ │ ├── bgPolygons.svg │ │ │ └── index.ts │ │ ├── copy-button │ │ │ ├── CopyButton.tsx │ │ │ ├── KeyboardCopyEvent.ts │ │ │ └── index.ts │ │ ├── copy.spec.ts │ │ ├── copy.ts │ │ ├── dimensions │ │ │ ├── dimension-adjustment.spec.ts │ │ │ └── dimensions-adjustment.ts │ │ ├── download.spec.ts │ │ ├── download.ts │ │ ├── error-boundary │ │ │ ├── ErrorBoundary.tsx │ │ │ └── index.ts │ │ ├── image │ │ │ └── Image.tsx │ │ ├── index.ts │ │ ├── lazy-loader │ │ │ ├── component-registry │ │ │ │ ├── index.tsx │ │ │ │ └── popups.tsx │ │ │ └── suspense-loader │ │ │ │ └── SuspenseLoader.tsx │ │ ├── message-display │ │ │ ├── JSXBuilder.tsx │ │ │ └── MessageDisplay.tsx │ │ ├── monaco │ │ │ ├── Monaco.tsx │ │ │ ├── monaco.scss │ │ │ └── util │ │ │ │ ├── format-json.spec.ts │ │ │ │ ├── format-json.ts │ │ │ │ └── format-xml.ts │ │ ├── popups │ │ │ ├── DialogWrapper.tsx │ │ │ ├── DrawerWrapper.tsx │ │ │ ├── ModalWrapper.tsx │ │ │ ├── PopupsWrapper.tsx │ │ │ └── popups.types.ts │ │ ├── share.ts │ │ └── submit-button │ │ │ └── SubmitButton.tsx │ │ ├── layout │ │ ├── Layout.tsx │ │ ├── LayoutResizeHandler.tsx │ │ └── LayoutStyles.tsx │ │ ├── main-header │ │ ├── FeedbackButton.tsx │ │ ├── Help.tsx │ │ ├── MainHeader.tsx │ │ ├── Tenant.tsx │ │ ├── settings │ │ │ ├── Settings.tsx │ │ │ ├── ThemeChooser.styles.ts │ │ │ └── ThemeChooser.tsx │ │ └── utils.tsx │ │ ├── query-response │ │ ├── QueryResponse.tsx │ │ ├── adaptive-cards │ │ │ ├── AdaptiveCard.tsx │ │ │ ├── AdaptiveHostConfig.ts │ │ │ └── adaptive-cards.util.ts │ │ ├── graph-toolkit │ │ │ └── GraphToolkit.tsx │ │ ├── headers │ │ │ ├── ResponseHeaders.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── pivot-items │ │ │ └── pivot-item.tsx │ │ ├── query-response.scss │ │ ├── response │ │ │ ├── Response.tsx │ │ │ ├── ResponseDisplay.tsx │ │ │ ├── ResponseMessages.tsx │ │ │ └── index.ts │ │ └── snippets │ │ │ ├── Snippets.tsx │ │ │ └── index.tsx │ │ ├── query-runner │ │ ├── QueryRunner.tsx │ │ ├── index.ts │ │ ├── query-input │ │ │ ├── QueryInput.tsx │ │ │ ├── auto-complete │ │ │ │ ├── AutoComplete.tsx │ │ │ │ ├── auto-complete.util.spec.ts │ │ │ │ ├── auto-complete.util.ts │ │ │ │ ├── index.ts │ │ │ │ ├── suffix │ │ │ │ │ ├── SuffixRenderer.tsx │ │ │ │ │ ├── documentation.spec.ts │ │ │ │ │ └── documentation.ts │ │ │ │ ├── suggestion-list │ │ │ │ │ ├── SuggestionsList.styles.ts │ │ │ │ │ └── SuggestionsList.tsx │ │ │ │ └── use-previous.ts │ │ │ ├── index.ts │ │ │ └── share-query │ │ │ │ ├── ShareButton.tsx │ │ │ │ ├── ShareQuery.styles.ts │ │ │ │ ├── ShareQuery.tsx │ │ │ │ └── index.ts │ │ ├── query-runner.scss │ │ ├── request │ │ │ ├── Request.tsx │ │ │ ├── auth │ │ │ │ ├── Auth.tsx │ │ │ │ └── index.ts │ │ │ ├── body │ │ │ │ ├── RequestBody.tsx │ │ │ │ └── index.ts │ │ │ ├── feedback │ │ │ │ ├── FeedbackForm.tsx │ │ │ │ ├── campaignDefinitions.ts │ │ │ │ └── uiStrings.ts │ │ │ ├── headers │ │ │ │ ├── Headers.styles.ts │ │ │ │ ├── HeadersList.tsx │ │ │ │ ├── RequestHeaders.tsx │ │ │ │ └── index.ts │ │ │ ├── permissions │ │ │ │ ├── ConsentType.tsx │ │ │ │ ├── Permission.styles.ts │ │ │ │ ├── PermissionItem.tsx │ │ │ │ ├── Permissions.Full.tsx │ │ │ │ ├── Permissions.Query.tsx │ │ │ │ ├── columns.tsx │ │ │ │ ├── index.ts │ │ │ │ └── util.ts │ │ │ └── request.scss │ │ └── util │ │ │ ├── iframe-message-parser.spec.ts │ │ │ └── iframe-message-parser.ts │ │ └── sidebar │ │ ├── Sidebar.styles.tsx │ │ ├── Sidebar.tsx │ │ ├── history │ │ ├── History.styles.ts │ │ ├── History.tsx │ │ ├── har-utils.spec.ts │ │ ├── har-utils.ts │ │ └── index.ts │ │ ├── resource-explorer │ │ ├── ResourceExplorer.tsx │ │ ├── ResourceLink.tsx │ │ ├── collection │ │ │ ├── APICollection.tsx │ │ │ ├── CollectionPermissions.tsx │ │ │ ├── CommonCollectionsPanel.tsx │ │ │ ├── EditCollectionPanel.tsx │ │ │ ├── EditScopePanel.tsx │ │ │ ├── Paths.styles.ts │ │ │ ├── Paths.tsx │ │ │ ├── collection.util.ts │ │ │ ├── postman.util.spec.ts │ │ │ ├── postman.util.ts │ │ │ ├── upload-collection.util.spec.ts │ │ │ └── upload-collection.util.ts │ │ ├── index.ts │ │ ├── resource-explorer.utils.spec.ts │ │ ├── resource-explorer.utils.ts │ │ ├── resourceExplorerStyles.ts │ │ ├── resourceLinkStyles.ts │ │ ├── resourcelink.utils.spec.ts │ │ └── resourcelink.utils.ts │ │ ├── sample-queries │ │ ├── SampleQueries.styles.ts │ │ ├── SampleQueries.tsx │ │ ├── queries.ts │ │ ├── sample-query-utils.spec.ts │ │ ├── sample-query-utils.ts │ │ ├── tokens.spec.ts │ │ └── tokens.ts │ │ └── sidebar-utils │ │ └── SidebarUtils.tsx ├── custom.d.ts ├── graph-toolkit-examples │ ├── index.js │ └── templates.json ├── index.tsx ├── messages │ ├── GE.json │ └── index.js ├── modules │ ├── authentication │ │ ├── AuthenticationWrapper.spec.ts │ │ ├── AuthenticationWrapper.ts │ │ ├── ClaimsChallenge.ts │ │ ├── authUtils.spec.ts │ │ ├── authUtils.ts │ │ ├── authentication-error-hints.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── IAuthenticationWrapper.ts │ │ │ └── IClaimsChallenge.ts │ │ └── msal-app.ts │ ├── cache │ │ ├── collections.cache.ts │ │ ├── history-utils.spec.ts │ │ ├── history-utils.ts │ │ ├── index.ts │ │ ├── resources.cache.spec.ts │ │ ├── resources.cache.ts │ │ ├── samples.cache.spec.ts │ │ └── samples.cache.ts │ ├── suggestions │ │ ├── cache-provider.spec.ts │ │ ├── cache-provider.ts │ │ ├── index.ts │ │ ├── suggestions.spec.ts │ │ ├── suggestions.ts │ │ └── utilities │ │ │ ├── delimiters.ts │ │ │ ├── index.ts │ │ │ └── suggestions-filter.ts │ └── validation │ │ ├── ODataUrlABNF.txt │ │ ├── abnf.spec.ts │ │ ├── abnf.ts │ │ ├── definition.ts │ │ ├── validation-service.spec.ts │ │ └── validation-service.ts ├── setupTests.ts ├── store │ └── index.ts ├── styles │ ├── _reset.scss │ ├── _variables.scss │ └── index.scss ├── telemetry │ ├── ITelemetry.ts │ ├── component-names.ts │ ├── error-types.ts │ ├── event-types.ts │ ├── filters.ts │ ├── index.ts │ └── telemetry.ts ├── tests │ ├── accessibility │ │ └── accessibility.spec.ts │ ├── common │ │ └── resolver.js │ ├── proxy-url.spec.ts │ ├── telemetry │ │ └── filters.spec.ts │ └── ui │ │ ├── anonymous-experiences │ │ ├── header.spec.ts │ │ ├── header.spec.ts-snapshots │ │ │ ├── Feedback-button-should-provide-feedback-1-Chrome-win32.png │ │ │ ├── Feedback-button-should-provide-feedback-1-Ms-Edge-win32.png │ │ │ ├── Feedback-button-should-provide-feedback-2-Chrome-win32.png │ │ │ ├── Feedback-button-should-provide-feedback-2-Ms-Edge-win32.png │ │ │ ├── Feedback-button-should-provide-feedback-3-Chrome-win32.png │ │ │ ├── Feedback-button-should-provide-feedback-3-Ms-Edge-win32.png │ │ │ ├── Settings-button-should-change-theme-settings-1-Chrome-win32.png │ │ │ ├── Settings-button-should-change-theme-settings-1-Ms-Edge-win32.png │ │ │ ├── Settings-button-should-change-theme-settings-2-Chrome-win32.png │ │ │ ├── Settings-button-should-change-theme-settings-2-Ms-Edge-win32.png │ │ │ ├── Settings-button-should-change-theme-settings-3-Chrome-win32.png │ │ │ └── Settings-button-should-change-theme-settings-3-Ms-Edge-win32.png │ │ ├── request.spec.ts │ │ ├── request.spec.ts-snapshots │ │ │ ├── Access-token-tab-should-show-access-token-message-when-not-authenticated-1-Chrome-win32.png │ │ │ ├── Access-token-tab-should-show-access-token-message-when-not-authenticated-1-Ms-Edge-win32.png │ │ │ ├── Permissions-should-show-permissions-for-me-endpoint-1-Chrome-win32.png │ │ │ ├── Permissions-should-show-permissions-for-me-endpoint-1-Ms-Edge-win32.png │ │ │ ├── Request-section-should-add-request-headers-1-Chrome-win32.png │ │ │ ├── Request-section-should-add-request-headers-1-Ms-Edge-win32.png │ │ │ ├── Request-section-should-add-request-headers-2-Chrome-win32.png │ │ │ ├── Request-section-should-add-request-headers-2-Ms-Edge-win32.png │ │ │ ├── Request-section-should-edit-request-headers-1-Chrome-win32.png │ │ │ ├── Request-section-should-edit-request-headers-1-Ms-Edge-win32.png │ │ │ ├── Request-section-should-edit-request-headers-2-Chrome-win32.png │ │ │ ├── Request-section-should-edit-request-headers-2-Ms-Edge-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-1-Chrome-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-1-Ms-Edge-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-2-Chrome-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-2-Ms-Edge-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-3-Chrome-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-3-Ms-Edge-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-4-Chrome-win32.png │ │ │ ├── Run-query-Adds-message-and-gets-autocomplete-options-4-Ms-Edge-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-1-Chrome-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-1-Ms-Edge-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-2-Chrome-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-2-Ms-Edge-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-3-Chrome-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-3-Ms-Edge-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-4-Chrome-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-4-Ms-Edge-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-1-Chrome-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-1-Ms-Edge-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-2-Chrome-win32.png │ │ │ ├── Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-2-Ms-Edge-win32.png │ │ │ ├── Run-query-should-change-version-options-1-Chrome-win32.png │ │ │ ├── Run-query-should-change-version-options-1-Ms-Edge-win32.png │ │ │ ├── Run-query-should-change-version-options-2-Chrome-win32.png │ │ │ ├── Run-query-should-change-version-options-2-Ms-Edge-win32.png │ │ │ ├── Run-query-should-change-version-options-3-Chrome-win32.png │ │ │ ├── Run-query-should-change-version-options-3-Ms-Edge-win32.png │ │ │ ├── Run-query-should-change-version-options-4-Chrome-win32.png │ │ │ ├── Run-query-should-change-version-options-4-Ms-Edge-win32.png │ │ │ ├── Run-query-should-change-version-options-5-Chrome-win32.png │ │ │ ├── Run-query-should-change-version-options-5-Ms-Edge-win32.png │ │ │ ├── Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-1-Chrome-win32.png │ │ │ ├── Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-1-Ms-Edge-win32.png │ │ │ ├── Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-2-Chrome-win32.png │ │ │ ├── Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-2-Ms-Edge-win32.png │ │ │ ├── Run-query-user-can-run-query-1-Chrome-win32.png │ │ │ ├── Run-query-user-can-run-query-1-Ms-Edge-win32.png │ │ │ ├── Run-query-user-can-run-query-2-Chrome-win32.png │ │ │ └── Run-query-user-can-run-query-2-Ms-Edge-win32.png │ │ ├── response.spec.ts │ │ ├── response.spec.ts-snapshots │ │ │ ├── Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-1-Chrome-win32.png │ │ │ ├── Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-1-Ms-Edge-win32.png │ │ │ ├── Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-2-Chrome-win32.png │ │ │ ├── Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-2-Ms-Edge-win32.png │ │ │ ├── Response-section-should-show-a-response-for-a-successful-request-1-Chrome-win32.png │ │ │ ├── Response-section-should-show-a-response-for-a-successful-request-1-Ms-Edge-win32.png │ │ │ ├── Response-section-should-show-an-error-message-for-an-invalid-url-1-Chrome-win32.png │ │ │ ├── Response-section-should-show-an-error-message-for-an-invalid-url-1-Ms-Edge-win32.png │ │ │ ├── Response-section-should-show-an-error-message-for-an-invalid-url-2-Chrome-win32.png │ │ │ ├── Response-section-should-show-an-error-message-for-an-invalid-url-2-Ms-Edge-win32.png │ │ │ ├── Response-section-should-show-toolkit-component-for-a-valid-url-1-Chrome-win32.png │ │ │ ├── Response-section-should-show-toolkit-component-for-a-valid-url-1-Ms-Edge-win32.png │ │ │ ├── Response-section-should-show-toolkit-component-for-a-valid-url-2-Chrome-win32.png │ │ │ └── Response-section-should-show-toolkit-component-for-a-valid-url-2-Ms-Edge-win32.png │ │ ├── sidebar.spec.ts │ │ └── sidebar.spec.ts-snapshots │ │ │ ├── History-tab-should-show-added-history-items-to-Today-s-collection-1-Chrome-win32.png │ │ │ ├── History-tab-should-show-added-history-items-to-Today-s-collection-1-Ms-Edge-win32.png │ │ │ ├── History-tab-should-show-added-history-items-to-Today-s-collection-2-Chrome-win32.png │ │ │ ├── History-tab-should-show-added-history-items-to-Today-s-collection-2-Ms-Edge-win32.png │ │ │ ├── History-tab-should-show-added-history-items-to-Today-s-collection-3-Ms-Edge-win32.png │ │ │ ├── Resources-Explorer-should-open-the-resources-e-32f57-when-the-resources-explorer-button-is-clicked-1-Chrome-win32.png │ │ │ ├── Resources-Explorer-should-open-the-resources-e-32f57-when-the-resources-explorer-button-is-clicked-1-Ms-Edge-win32.png │ │ │ ├── Resources-Explorer-should-open-the-resources-e-a7aea-when-the-resources-explorer-button-is-clicked-2-Chrome-win32.png │ │ │ ├── Resources-Explorer-should-open-the-resources-e-a7aea-when-the-resources-explorer-button-is-clicked-2-Ms-Edge-win32.png │ │ │ ├── Resources-Explorer-should-open-the-resources-e-a813e-when-the-resources-explorer-button-is-clicked-3-Chrome-win32.png │ │ │ ├── Resources-Explorer-should-open-the-resources-e-a813e-when-the-resources-explorer-button-is-clicked-3-Ms-Edge-win32.png │ │ │ ├── Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-1-Chrome-win32.png │ │ │ ├── Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-1-Ms-Edge-win32.png │ │ │ ├── Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-2-Chrome-win32.png │ │ │ ├── Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-2-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-1-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-1-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-2-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-2-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-3-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-3-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-4-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-4-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-5-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-search-for-a-sample-query-5-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-select-a-sample-query-when-clicked-1-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-select-a-sample-query-when-clicked-1-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-select-a-sample-query-when-clicked-2-Chrome-win32.png │ │ │ ├── Sample-Query-tab-should-select-a-sample-query-when-clicked-2-Ms-Edge-win32.png │ │ │ ├── Sample-Query-tab-should-select-a-sample-query-when-clicked-3-Chrome-win32.png │ │ │ └── Sample-Query-tab-should-select-a-sample-query-when-clicked-3-Ms-Edge-win32.png │ │ ├── authenticated-experiences │ │ ├── authenticated-experiences.spec.ts │ │ └── authenticated-experiences.spec.ts-snapshots │ │ │ ├── Profile-should-open-the-permissions-panel-1-Chrome-win32.png │ │ │ ├── Profile-should-open-the-permissions-panel-1-Ms-Edge-win32.png │ │ │ ├── Run-query-user-can-run-query-1-Chrome-win32.png │ │ │ └── Run-query-user-can-run-query-1-Ms-Edge-win32.png │ │ ├── global-setup.ts │ │ ├── login.ts │ │ └── responsiveness │ │ ├── mobile-responsive.spec.ts │ │ └── mobile-responsive.spec.ts-snapshots │ │ ├── Request-area-navigation-should-have-access-token-tab-in-overflow-menu-1-Chrome-win32.png │ │ ├── Request-area-navigation-should-have-access-token-tab-in-overflow-menu-1-Ms-Edge-win32.png │ │ ├── Request-area-navigation-should-have-permissions-tab-in-overflow-menu-1-Chrome-win32.png │ │ ├── Request-area-navigation-should-have-permissions-tab-in-overflow-menu-1-Ms-Edge-win32.png │ │ ├── Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-1-Chrome-win32.png │ │ ├── Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-1-Ms-Edge-win32.png │ │ ├── Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-2-Chrome-win32.png │ │ ├── Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-2-Ms-Edge-win32.png │ │ ├── Response-area-navigation-should-have-code-snippets-tab-in-overflow-menu-1-Chrome-win32.png │ │ ├── Response-area-navigation-should-have-code-snippets-tab-in-overflow-menu-1-Ms-Edge-win32.png │ │ ├── Response-area-navigation-should-have-expand-component-tab-in-overflow-menu-1-Chrome-win32.png │ │ ├── Response-area-navigation-should-have-expand-component-tab-in-overflow-menu-1-Ms-Edge-win32.png │ │ ├── Response-area-navigation-should-have-toolkit-component-tab-in-overflow-menu-1-Chrome-win32.png │ │ ├── Response-area-navigation-should-have-toolkit-component-tab-in-overflow-menu-1-Ms-Edge-win32.png │ │ ├── Sidebar-navigation-should-have-history-tab-1-Chrome-win32.png │ │ ├── Sidebar-navigation-should-have-history-tab-1-Ms-Edge-win32.png │ │ ├── Sidebar-navigation-should-have-resources-tab-1-Chrome-win32.png │ │ ├── Sidebar-navigation-should-have-resources-tab-1-Ms-Edge-win32.png │ │ ├── Sidebar-navigation-should-have-sample-queries-tab-1-Chrome-win32.png │ │ └── Sidebar-navigation-should-have-sample-queries-tab-1-Ms-Edge-win32.png ├── themes │ ├── dark.ts │ ├── high-contrast.ts │ ├── light.ts │ ├── theme-context.ts │ └── theme-utils.spec.ts └── types │ ├── action.ts │ ├── adaptivecard.ts │ ├── authentication.ts │ ├── auto-complete.ts │ ├── devx-api.ts │ ├── dimensions.ts │ ├── enums.ts │ ├── har.ts │ ├── history.ts │ ├── image.ts │ ├── index.d.ts │ ├── open-api.ts │ ├── permissions.ts │ ├── postman-collection.ts │ ├── profile.ts │ ├── query-response.ts │ ├── query-runner.ts │ ├── request.ts │ ├── resources.ts │ ├── root.ts │ ├── settings.ts │ ├── share-query.ts │ ├── sidebar.ts │ ├── snippets.ts │ ├── status.ts │ └── submit-button.ts ├── tsconfig.json ├── versioned-build.js └── web.config /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": "mcr.microsoft.com/devcontainers/typescript-node:0-18" 3 | } -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | eslintrc.js 3 | public 4 | scripts 5 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/microsoft-graph-explorer-v4-branch-protection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/policies/microsoft-graph-explorer-v4-branch-protection.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/cut-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/cut-release.yml -------------------------------------------------------------------------------- /.github/workflows/english-file-transfer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/english-file-transfer.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/projectbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/projectbot.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-please-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.github/workflows/release-please-master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "11.1.5" 3 | } -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__mocks__/@azure/msal-browser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/__mocks__/@azure/msal-browser -------------------------------------------------------------------------------- /__mocks__/react-monaco-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/__mocks__/react-monaco-editor.js -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/babel.config.json -------------------------------------------------------------------------------- /config/CSSStub.ts: -------------------------------------------------------------------------------- 1 | module.exports = null; -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/package.json -------------------------------------------------------------------------------- /packages/expvariantassignmentsdk-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/packages/expvariantassignmentsdk-1.0.0.tgz -------------------------------------------------------------------------------- /packages/expvariantassignmentsdk-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/packages/expvariantassignmentsdk-1.0.1.tgz -------------------------------------------------------------------------------- /packages/officebrowserfeedbacknpm-1.6.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/packages/officebrowserfeedbacknpm-1.6.6.tgz -------------------------------------------------------------------------------- /packages/types-core-2.16.189.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/packages/types-core-2.16.189.tgz -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/public/manifest.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/release-please-config.json -------------------------------------------------------------------------------- /scripts/build-tst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/scripts/build-tst.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/scripts/test.js -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/adaptivecards-templates/DirectReports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/DirectReports.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Files.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/FullPersonCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/FullPersonCard.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Groups.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Insights.Trending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Insights.Trending.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Messages.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Profile.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Site.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Sites.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/User.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/Users.json -------------------------------------------------------------------------------- /src/adaptivecards-templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/adaptivecards-templates/index.ts -------------------------------------------------------------------------------- /src/app/middleware/localStorageMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/middleware/localStorageMiddleware.ts -------------------------------------------------------------------------------- /src/app/middleware/telemetryMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/middleware/telemetryMiddleware.ts -------------------------------------------------------------------------------- /src/app/services/actions/auth-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/auth-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/autocomplete-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/autocomplete-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/collections-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/collections-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/devxApi-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/devxApi-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/dimensions-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/dimensions-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/explorer-mode-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/explorer-mode-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/mockThunkMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/mockThunkMiddleware.ts -------------------------------------------------------------------------------- /src/app/services/actions/permissions-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/permissions-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/permissions-action-creator.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/permissions-action-creator.util.ts -------------------------------------------------------------------------------- /src/app/services/actions/profile-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/profile-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/profile-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/profile-actions.ts -------------------------------------------------------------------------------- /src/app/services/actions/proxy-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/proxy-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/query-action-creator-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/query-action-creator-util.ts -------------------------------------------------------------------------------- /src/app/services/actions/query-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/query-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/query-input-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/query-input-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/query-status-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/query-status-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/request-history-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/request-history-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/resource-explorer-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/resource-explorer-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/response-expanded-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/response-expanded-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/revoke-scopes.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/revoke-scopes.action.ts -------------------------------------------------------------------------------- /src/app/services/actions/samples-action-creators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/samples-action-creators.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/snippet-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/snippet-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/terms-of-use-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/terms-of-use-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/theme-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/theme-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/actions/toggle-sidebar-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/actions/toggle-sidebar-action-creator.spec.ts -------------------------------------------------------------------------------- /src/app/services/context/collection-permissions/CollectionPermissionsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/collection-permissions/CollectionPermissionsContext.ts -------------------------------------------------------------------------------- /src/app/services/context/collection-permissions/CollectionPermissionsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/collection-permissions/CollectionPermissionsProvider.tsx -------------------------------------------------------------------------------- /src/app/services/context/popups-context/PopupsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/popups-context/PopupsContext.tsx -------------------------------------------------------------------------------- /src/app/services/context/popups-context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/popups-context/index.ts -------------------------------------------------------------------------------- /src/app/services/context/popups-context/reducedPopups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/popups-context/reducedPopups.ts -------------------------------------------------------------------------------- /src/app/services/context/validation-context/ValidationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/validation-context/ValidationContext.tsx -------------------------------------------------------------------------------- /src/app/services/context/validation-context/ValidationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/context/validation-context/ValidationProvider.tsx -------------------------------------------------------------------------------- /src/app/services/graph-client/GraphAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/graph-client/GraphAuthenticationProvider.ts -------------------------------------------------------------------------------- /src/app/services/graph-client/graph-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/graph-client/graph-client.ts -------------------------------------------------------------------------------- /src/app/services/graph-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/graph-client/index.ts -------------------------------------------------------------------------------- /src/app/services/graph-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/graph-constants.ts -------------------------------------------------------------------------------- /src/app/services/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/hooks/index.ts -------------------------------------------------------------------------------- /src/app/services/hooks/useCollectionPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/hooks/useCollectionPermissions.ts -------------------------------------------------------------------------------- /src/app/services/hooks/usePopups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/hooks/usePopups.ts -------------------------------------------------------------------------------- /src/app/services/reducers/collections-reducer.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/reducers/collections-reducer.util.ts -------------------------------------------------------------------------------- /src/app/services/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/reducers/index.ts -------------------------------------------------------------------------------- /src/app/services/redux-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/redux-constants.ts -------------------------------------------------------------------------------- /src/app/services/slices/auth.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/auth.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/autocomplete.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/autocomplete.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/collections.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/collections.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/devxapi.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/devxapi.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/dimensions.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/dimensions.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/explorer-mode.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/explorer-mode.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/graph-response.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/graph-response.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/history.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/history.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/index.ts -------------------------------------------------------------------------------- /src/app/services/slices/permission-grants.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/permission-grants.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/profile.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/profile.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/proxy.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/proxy.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/query-status.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/query-status.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/resources.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/resources.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/response-area-expanded.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/response-area-expanded.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/sample-query.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/sample-query.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/samples.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/samples.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/scopes.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/scopes.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/sidebar-properties.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/sidebar-properties.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/snippet.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/snippet.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/terms-of-use.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/terms-of-use.slice.ts -------------------------------------------------------------------------------- /src/app/services/slices/theme.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/slices/theme.slice.ts -------------------------------------------------------------------------------- /src/app/services/variant-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/variant-constants.ts -------------------------------------------------------------------------------- /src/app/services/variant-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/services/variant-service.ts -------------------------------------------------------------------------------- /src/app/utils/ClientError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/ClientError.ts -------------------------------------------------------------------------------- /src/app/utils/adaptive-cards-lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/adaptive-cards-lookup.ts -------------------------------------------------------------------------------- /src/app/utils/device-characteristics-telemetry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/device-characteristics-telemetry.spec.ts -------------------------------------------------------------------------------- /src/app/utils/device-characteristics-telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/device-characteristics-telemetry.ts -------------------------------------------------------------------------------- /src/app/utils/dynamic-sort.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/dynamic-sort.spec.ts -------------------------------------------------------------------------------- /src/app/utils/dynamic-sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/dynamic-sort.ts -------------------------------------------------------------------------------- /src/app/utils/error-utils/ClientError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/error-utils/ClientError.ts -------------------------------------------------------------------------------- /src/app/utils/error-utils/RevokeScopesError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/error-utils/RevokeScopesError.ts -------------------------------------------------------------------------------- /src/app/utils/error-utils/ScopesError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/error-utils/ScopesError.ts -------------------------------------------------------------------------------- /src/app/utils/error-utils/ValidationError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/error-utils/ValidationError.ts -------------------------------------------------------------------------------- /src/app/utils/external-link-validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/external-link-validation.spec.ts -------------------------------------------------------------------------------- /src/app/utils/external-link-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/external-link-validation.ts -------------------------------------------------------------------------------- /src/app/utils/fetch-retry-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/fetch-retry-handler.ts -------------------------------------------------------------------------------- /src/app/utils/generate-groups.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/generate-groups.spec.ts -------------------------------------------------------------------------------- /src/app/utils/generate-groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/generate-groups.ts -------------------------------------------------------------------------------- /src/app/utils/get-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/get-messages.ts -------------------------------------------------------------------------------- /src/app/utils/getPermissionsScopeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/getPermissionsScopeType.ts -------------------------------------------------------------------------------- /src/app/utils/graph-toolkit-lookup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/graph-toolkit-lookup.spec.ts -------------------------------------------------------------------------------- /src/app/utils/graph-toolkit-lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/graph-toolkit-lookup.ts -------------------------------------------------------------------------------- /src/app/utils/hash-string.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/hash-string.spec.ts -------------------------------------------------------------------------------- /src/app/utils/hash-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/hash-string.ts -------------------------------------------------------------------------------- /src/app/utils/http-methods.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/http-methods.utils.ts -------------------------------------------------------------------------------- /src/app/utils/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/local-storage.ts -------------------------------------------------------------------------------- /src/app/utils/open-api-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/open-api-parser.spec.ts -------------------------------------------------------------------------------- /src/app/utils/open-api-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/open-api-parser.ts -------------------------------------------------------------------------------- /src/app/utils/open-api-sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/open-api-sample.ts -------------------------------------------------------------------------------- /src/app/utils/query-parameter-sanitization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/query-parameter-sanitization.spec.ts -------------------------------------------------------------------------------- /src/app/utils/query-parameter-sanitization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/query-parameter-sanitization.ts -------------------------------------------------------------------------------- /src/app/utils/query-url-sanitization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/query-url-sanitization.spec.ts -------------------------------------------------------------------------------- /src/app/utils/query-url-sanitization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/query-url-sanitization.ts -------------------------------------------------------------------------------- /src/app/utils/resources/resources-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/resources/resources-filter.ts -------------------------------------------------------------------------------- /src/app/utils/resources/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/resources/resources.json -------------------------------------------------------------------------------- /src/app/utils/sample-url-generation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/sample-url-generation.spec.ts -------------------------------------------------------------------------------- /src/app/utils/sample-url-generation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/sample-url-generation.ts -------------------------------------------------------------------------------- /src/app/utils/searchbox.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/searchbox.styles.ts -------------------------------------------------------------------------------- /src/app/utils/snippet.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/snippet.utils.ts -------------------------------------------------------------------------------- /src/app/utils/status-message.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/status-message.spec.ts -------------------------------------------------------------------------------- /src/app/utils/status-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/status-message.ts -------------------------------------------------------------------------------- /src/app/utils/string-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/string-operations.ts -------------------------------------------------------------------------------- /src/app/utils/token-helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/token-helpers.spec.ts -------------------------------------------------------------------------------- /src/app/utils/token-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/token-helpers.ts -------------------------------------------------------------------------------- /src/app/utils/translate-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/translate-messages.ts -------------------------------------------------------------------------------- /src/app/utils/useDetectMobileScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/useDetectMobileScreen.ts -------------------------------------------------------------------------------- /src/app/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/utils/version.ts -------------------------------------------------------------------------------- /src/app/views/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/App.tsx -------------------------------------------------------------------------------- /src/app/views/app-sections/HeaderMessaging.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/app-sections/HeaderMessaging.tsx -------------------------------------------------------------------------------- /src/app/views/app-sections/StatusMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/app-sections/StatusMessages.tsx -------------------------------------------------------------------------------- /src/app/views/app-sections/TermsOfUseMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/app-sections/TermsOfUseMessage.tsx -------------------------------------------------------------------------------- /src/app/views/app-sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/app-sections/index.ts -------------------------------------------------------------------------------- /src/app/views/authentication/Authentication.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/authentication/Authentication.tsx -------------------------------------------------------------------------------- /src/app/views/authentication/auth-util-components/ProfileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/authentication/auth-util-components/ProfileButton.tsx -------------------------------------------------------------------------------- /src/app/views/authentication/auth-util-components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/authentication/auth-util-components/index.tsx -------------------------------------------------------------------------------- /src/app/views/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/authentication/index.ts -------------------------------------------------------------------------------- /src/app/views/authentication/profile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/authentication/profile/Profile.tsx -------------------------------------------------------------------------------- /src/app/views/common/banners/Notification.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/banners/Notification.styles.ts -------------------------------------------------------------------------------- /src/app/views/common/banners/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/banners/Notification.tsx -------------------------------------------------------------------------------- /src/app/views/common/banners/bgPolygons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/banners/bgPolygons.svg -------------------------------------------------------------------------------- /src/app/views/common/banners/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/banners/index.ts -------------------------------------------------------------------------------- /src/app/views/common/copy-button/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/copy-button/CopyButton.tsx -------------------------------------------------------------------------------- /src/app/views/common/copy-button/KeyboardCopyEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/copy-button/KeyboardCopyEvent.ts -------------------------------------------------------------------------------- /src/app/views/common/copy-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/copy-button/index.ts -------------------------------------------------------------------------------- /src/app/views/common/copy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/copy.spec.ts -------------------------------------------------------------------------------- /src/app/views/common/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/copy.ts -------------------------------------------------------------------------------- /src/app/views/common/dimensions/dimension-adjustment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/dimensions/dimension-adjustment.spec.ts -------------------------------------------------------------------------------- /src/app/views/common/dimensions/dimensions-adjustment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/dimensions/dimensions-adjustment.ts -------------------------------------------------------------------------------- /src/app/views/common/download.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/download.spec.ts -------------------------------------------------------------------------------- /src/app/views/common/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/download.ts -------------------------------------------------------------------------------- /src/app/views/common/error-boundary/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/error-boundary/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/app/views/common/error-boundary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/error-boundary/index.ts -------------------------------------------------------------------------------- /src/app/views/common/image/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/image/Image.tsx -------------------------------------------------------------------------------- /src/app/views/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/index.ts -------------------------------------------------------------------------------- /src/app/views/common/lazy-loader/component-registry/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/lazy-loader/component-registry/index.tsx -------------------------------------------------------------------------------- /src/app/views/common/lazy-loader/component-registry/popups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/lazy-loader/component-registry/popups.tsx -------------------------------------------------------------------------------- /src/app/views/common/lazy-loader/suspense-loader/SuspenseLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/lazy-loader/suspense-loader/SuspenseLoader.tsx -------------------------------------------------------------------------------- /src/app/views/common/message-display/JSXBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/message-display/JSXBuilder.tsx -------------------------------------------------------------------------------- /src/app/views/common/message-display/MessageDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/message-display/MessageDisplay.tsx -------------------------------------------------------------------------------- /src/app/views/common/monaco/Monaco.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/monaco/Monaco.tsx -------------------------------------------------------------------------------- /src/app/views/common/monaco/monaco.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/monaco/monaco.scss -------------------------------------------------------------------------------- /src/app/views/common/monaco/util/format-json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/monaco/util/format-json.spec.ts -------------------------------------------------------------------------------- /src/app/views/common/monaco/util/format-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/monaco/util/format-json.ts -------------------------------------------------------------------------------- /src/app/views/common/monaco/util/format-xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/monaco/util/format-xml.ts -------------------------------------------------------------------------------- /src/app/views/common/popups/DialogWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/popups/DialogWrapper.tsx -------------------------------------------------------------------------------- /src/app/views/common/popups/DrawerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/popups/DrawerWrapper.tsx -------------------------------------------------------------------------------- /src/app/views/common/popups/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/popups/ModalWrapper.tsx -------------------------------------------------------------------------------- /src/app/views/common/popups/PopupsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/popups/PopupsWrapper.tsx -------------------------------------------------------------------------------- /src/app/views/common/popups/popups.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/popups/popups.types.ts -------------------------------------------------------------------------------- /src/app/views/common/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/share.ts -------------------------------------------------------------------------------- /src/app/views/common/submit-button/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/common/submit-button/SubmitButton.tsx -------------------------------------------------------------------------------- /src/app/views/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/layout/Layout.tsx -------------------------------------------------------------------------------- /src/app/views/layout/LayoutResizeHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/layout/LayoutResizeHandler.tsx -------------------------------------------------------------------------------- /src/app/views/layout/LayoutStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/layout/LayoutStyles.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/FeedbackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/FeedbackButton.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/Help.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/MainHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/MainHeader.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/Tenant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/Tenant.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/settings/Settings.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/settings/ThemeChooser.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/settings/ThemeChooser.styles.ts -------------------------------------------------------------------------------- /src/app/views/main-header/settings/ThemeChooser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/settings/ThemeChooser.tsx -------------------------------------------------------------------------------- /src/app/views/main-header/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/main-header/utils.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/QueryResponse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/QueryResponse.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/adaptive-cards/AdaptiveCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/adaptive-cards/AdaptiveCard.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/adaptive-cards/AdaptiveHostConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/adaptive-cards/AdaptiveHostConfig.ts -------------------------------------------------------------------------------- /src/app/views/query-response/adaptive-cards/adaptive-cards.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/adaptive-cards/adaptive-cards.util.ts -------------------------------------------------------------------------------- /src/app/views/query-response/graph-toolkit/GraphToolkit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/graph-toolkit/GraphToolkit.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/headers/ResponseHeaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/headers/ResponseHeaders.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/headers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/headers/index.ts -------------------------------------------------------------------------------- /src/app/views/query-response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/index.ts -------------------------------------------------------------------------------- /src/app/views/query-response/pivot-items/pivot-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/pivot-items/pivot-item.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/query-response.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/query-response.scss -------------------------------------------------------------------------------- /src/app/views/query-response/response/Response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/response/Response.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/response/ResponseDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/response/ResponseDisplay.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/response/ResponseMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/response/ResponseMessages.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/response/index.ts -------------------------------------------------------------------------------- /src/app/views/query-response/snippets/Snippets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/snippets/Snippets.tsx -------------------------------------------------------------------------------- /src/app/views/query-response/snippets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-response/snippets/index.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/QueryRunner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/QueryRunner.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/QueryInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/QueryInput.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/AutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/AutoComplete.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/auto-complete.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/auto-complete.util.spec.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/auto-complete.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/auto-complete.util.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/suffix/SuffixRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/suffix/SuffixRenderer.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/suffix/documentation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/suffix/documentation.spec.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/suffix/documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/suffix/documentation.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/suggestion-list/SuggestionsList.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/suggestion-list/SuggestionsList.styles.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/suggestion-list/SuggestionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/suggestion-list/SuggestionsList.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/auto-complete/use-previous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/auto-complete/use-previous.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/share-query/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/share-query/ShareButton.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/share-query/ShareQuery.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/share-query/ShareQuery.styles.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/share-query/ShareQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/share-query/ShareQuery.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/query-input/share-query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-input/share-query/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/query-runner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/query-runner.scss -------------------------------------------------------------------------------- /src/app/views/query-runner/request/Request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/Request.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/auth/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/auth/Auth.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/auth/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/body/RequestBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/body/RequestBody.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/body/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/body/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/feedback/FeedbackForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/feedback/FeedbackForm.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/feedback/campaignDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/feedback/campaignDefinitions.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/feedback/uiStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/feedback/uiStrings.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/headers/Headers.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/headers/Headers.styles.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/headers/HeadersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/headers/HeadersList.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/headers/RequestHeaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/headers/RequestHeaders.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/headers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/headers/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/ConsentType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/ConsentType.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/Permission.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/Permission.styles.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/PermissionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/PermissionItem.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/Permissions.Full.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/Permissions.Full.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/Permissions.Query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/Permissions.Query.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/columns.tsx -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/index.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/permissions/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/permissions/util.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/request/request.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/request/request.scss -------------------------------------------------------------------------------- /src/app/views/query-runner/util/iframe-message-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/util/iframe-message-parser.spec.ts -------------------------------------------------------------------------------- /src/app/views/query-runner/util/iframe-message-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/query-runner/util/iframe-message-parser.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/Sidebar.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/Sidebar.styles.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/history/History.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/history/History.styles.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/history/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/history/History.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/history/har-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/history/har-utils.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/history/har-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/history/har-utils.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/history/index.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/ResourceExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/ResourceExplorer.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/ResourceLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/ResourceLink.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/APICollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/APICollection.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/CollectionPermissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/CollectionPermissions.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/CommonCollectionsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/CommonCollectionsPanel.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/EditCollectionPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/EditCollectionPanel.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/EditScopePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/EditScopePanel.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/Paths.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/Paths.styles.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/Paths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/Paths.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/collection.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/collection.util.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/postman.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/postman.util.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/postman.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/postman.util.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/upload-collection.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/upload-collection.util.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/collection/upload-collection.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/collection/upload-collection.util.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/index.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/resource-explorer.utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/resource-explorer.utils.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/resource-explorer.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/resource-explorer.utils.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/resourceExplorerStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/resourceExplorerStyles.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/resourceLinkStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/resourceLinkStyles.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/resourcelink.utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/resourcelink.utils.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/resource-explorer/resourcelink.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/resource-explorer/resourcelink.utils.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/SampleQueries.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/SampleQueries.styles.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/SampleQueries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/SampleQueries.tsx -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/queries.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/sample-query-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/sample-query-utils.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/sample-query-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/sample-query-utils.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/tokens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/tokens.spec.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sample-queries/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sample-queries/tokens.ts -------------------------------------------------------------------------------- /src/app/views/sidebar/sidebar-utils/SidebarUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/app/views/sidebar/sidebar-utils/SidebarUtils.tsx -------------------------------------------------------------------------------- /src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/custom.d.ts -------------------------------------------------------------------------------- /src/graph-toolkit-examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/graph-toolkit-examples/index.js -------------------------------------------------------------------------------- /src/graph-toolkit-examples/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/graph-toolkit-examples/templates.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/messages/GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/messages/GE.json -------------------------------------------------------------------------------- /src/messages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/messages/index.js -------------------------------------------------------------------------------- /src/modules/authentication/AuthenticationWrapper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/AuthenticationWrapper.spec.ts -------------------------------------------------------------------------------- /src/modules/authentication/AuthenticationWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/AuthenticationWrapper.ts -------------------------------------------------------------------------------- /src/modules/authentication/ClaimsChallenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/ClaimsChallenge.ts -------------------------------------------------------------------------------- /src/modules/authentication/authUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/authUtils.spec.ts -------------------------------------------------------------------------------- /src/modules/authentication/authUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/authUtils.ts -------------------------------------------------------------------------------- /src/modules/authentication/authentication-error-hints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/authentication-error-hints.ts -------------------------------------------------------------------------------- /src/modules/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/index.ts -------------------------------------------------------------------------------- /src/modules/authentication/interfaces/IAuthenticationWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/interfaces/IAuthenticationWrapper.ts -------------------------------------------------------------------------------- /src/modules/authentication/interfaces/IClaimsChallenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/interfaces/IClaimsChallenge.ts -------------------------------------------------------------------------------- /src/modules/authentication/msal-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/authentication/msal-app.ts -------------------------------------------------------------------------------- /src/modules/cache/collections.cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/collections.cache.ts -------------------------------------------------------------------------------- /src/modules/cache/history-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/history-utils.spec.ts -------------------------------------------------------------------------------- /src/modules/cache/history-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/history-utils.ts -------------------------------------------------------------------------------- /src/modules/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/index.ts -------------------------------------------------------------------------------- /src/modules/cache/resources.cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/resources.cache.spec.ts -------------------------------------------------------------------------------- /src/modules/cache/resources.cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/resources.cache.ts -------------------------------------------------------------------------------- /src/modules/cache/samples.cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/samples.cache.spec.ts -------------------------------------------------------------------------------- /src/modules/cache/samples.cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/cache/samples.cache.ts -------------------------------------------------------------------------------- /src/modules/suggestions/cache-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/cache-provider.spec.ts -------------------------------------------------------------------------------- /src/modules/suggestions/cache-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/cache-provider.ts -------------------------------------------------------------------------------- /src/modules/suggestions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/index.ts -------------------------------------------------------------------------------- /src/modules/suggestions/suggestions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/suggestions.spec.ts -------------------------------------------------------------------------------- /src/modules/suggestions/suggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/suggestions.ts -------------------------------------------------------------------------------- /src/modules/suggestions/utilities/delimiters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/utilities/delimiters.ts -------------------------------------------------------------------------------- /src/modules/suggestions/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/utilities/index.ts -------------------------------------------------------------------------------- /src/modules/suggestions/utilities/suggestions-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/suggestions/utilities/suggestions-filter.ts -------------------------------------------------------------------------------- /src/modules/validation/ODataUrlABNF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/validation/ODataUrlABNF.txt -------------------------------------------------------------------------------- /src/modules/validation/abnf.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/validation/abnf.spec.ts -------------------------------------------------------------------------------- /src/modules/validation/abnf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/validation/abnf.ts -------------------------------------------------------------------------------- /src/modules/validation/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/validation/definition.ts -------------------------------------------------------------------------------- /src/modules/validation/validation-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/validation/validation-service.spec.ts -------------------------------------------------------------------------------- /src/modules/validation/validation-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/modules/validation/validation-service.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/styles/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/styles/_reset.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/telemetry/ITelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/ITelemetry.ts -------------------------------------------------------------------------------- /src/telemetry/component-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/component-names.ts -------------------------------------------------------------------------------- /src/telemetry/error-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/error-types.ts -------------------------------------------------------------------------------- /src/telemetry/event-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/event-types.ts -------------------------------------------------------------------------------- /src/telemetry/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/filters.ts -------------------------------------------------------------------------------- /src/telemetry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/index.ts -------------------------------------------------------------------------------- /src/telemetry/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/telemetry/telemetry.ts -------------------------------------------------------------------------------- /src/tests/accessibility/accessibility.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/accessibility/accessibility.spec.ts -------------------------------------------------------------------------------- /src/tests/common/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/common/resolver.js -------------------------------------------------------------------------------- /src/tests/proxy-url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/proxy-url.spec.ts -------------------------------------------------------------------------------- /src/tests/telemetry/filters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/telemetry/filters.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Feedback-button-should-provide-feedback-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/header.spec.ts-snapshots/Settings-button-should-change-theme-settings-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Access-token-tab-should-show-access-token-message-when-not-authenticated-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Access-token-tab-should-show-access-token-message-when-not-authenticated-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Access-token-tab-should-show-access-token-message-when-not-authenticated-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Access-token-tab-should-show-access-token-message-when-not-authenticated-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Permissions-should-show-permissions-for-me-endpoint-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Permissions-should-show-permissions-for-me-endpoint-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Permissions-should-show-permissions-for-me-endpoint-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Permissions-should-show-permissions-for-me-endpoint-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-add-request-headers-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Request-section-should-edit-request-headers-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-4-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-4-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-4-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Adds-message-and-gets-autocomplete-options-4-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-4-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-4-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-4-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-dropdown-menu-changes-the-version-in-the-request-URL-field-4-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-Changing-the-version-via-the-request-URL-field-changes-the-version-in-the-dropdown-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-4-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-4-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-4-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-4-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-5-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-5-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-5-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-change-version-options-5-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-should-launch-the-share-query-dialog-when-share-query-button-is-clicked-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/request.spec.ts-snapshots/Run-query-user-can-run-query-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-open-an-expanded-modal-with-response-tabs-when-Expand-is-clicked-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-a-response-for-a-successful-request-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-a-response-for-a-successful-request-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-a-response-for-a-successful-request-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-a-response-for-a-successful-request-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-an-error-message-for-an-invalid-url-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/response.spec.ts-snapshots/Response-section-should-show-toolkit-component-for-a-valid-url-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/History-tab-should-show-added-history-items-to-Today-s-collection-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-32f57-when-the-resources-explorer-button-is-clicked-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-32f57-when-the-resources-explorer-button-is-clicked-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-32f57-when-the-resources-explorer-button-is-clicked-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-32f57-when-the-resources-explorer-button-is-clicked-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a7aea-when-the-resources-explorer-button-is-clicked-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a7aea-when-the-resources-explorer-button-is-clicked-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a7aea-when-the-resources-explorer-button-is-clicked-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a7aea-when-the-resources-explorer-button-is-clicked-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a813e-when-the-resources-explorer-button-is-clicked-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a813e-when-the-resources-explorer-button-is-clicked-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a813e-when-the-resources-explorer-button-is-clicked-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-open-the-resources-e-a813e-when-the-resources-explorer-button-is-clicked-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Resources-Explorer-should-switch-between-v1-and-beta-versions-of-resources-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-4-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-4-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-4-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-4-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-5-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-5-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-5-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-search-for-a-sample-query-5-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-3-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-3-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-3-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/anonymous-experiences/sidebar.spec.ts-snapshots/Sample-Query-tab-should-select-a-sample-query-when-clicked-3-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Profile-should-open-the-permissions-panel-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Profile-should-open-the-permissions-panel-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Profile-should-open-the-permissions-panel-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Profile-should-open-the-permissions-panel-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Run-query-user-can-run-query-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Run-query-user-can-run-query-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Run-query-user-can-run-query-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/authenticated-experiences/authenticated-experiences.spec.ts-snapshots/Run-query-user-can-run-query-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/global-setup.ts -------------------------------------------------------------------------------- /src/tests/ui/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/login.ts -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-access-token-tab-in-overflow-menu-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-access-token-tab-in-overflow-menu-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-access-token-tab-in-overflow-menu-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-access-token-tab-in-overflow-menu-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-permissions-tab-in-overflow-menu-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-permissions-tab-in-overflow-menu-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-permissions-tab-in-overflow-menu-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Request-area-navigation-should-have-permissions-tab-in-overflow-menu-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-2-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-2-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-2-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-adaptive-card-tab-in-overflow-menu-2-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-code-snippets-tab-in-overflow-menu-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-code-snippets-tab-in-overflow-menu-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-code-snippets-tab-in-overflow-menu-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-code-snippets-tab-in-overflow-menu-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-expand-component-tab-in-overflow-menu-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-expand-component-tab-in-overflow-menu-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-expand-component-tab-in-overflow-menu-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-expand-component-tab-in-overflow-menu-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-toolkit-component-tab-in-overflow-menu-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-toolkit-component-tab-in-overflow-menu-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-toolkit-component-tab-in-overflow-menu-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Response-area-navigation-should-have-toolkit-component-tab-in-overflow-menu-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-history-tab-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-history-tab-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-history-tab-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-history-tab-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-resources-tab-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-resources-tab-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-resources-tab-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-resources-tab-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-sample-queries-tab-1-Chrome-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-sample-queries-tab-1-Chrome-win32.png -------------------------------------------------------------------------------- /src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-sample-queries-tab-1-Ms-Edge-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/tests/ui/responsiveness/mobile-responsive.spec.ts-snapshots/Sidebar-navigation-should-have-sample-queries-tab-1-Ms-Edge-win32.png -------------------------------------------------------------------------------- /src/themes/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/themes/dark.ts -------------------------------------------------------------------------------- /src/themes/high-contrast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/themes/high-contrast.ts -------------------------------------------------------------------------------- /src/themes/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/themes/light.ts -------------------------------------------------------------------------------- /src/themes/theme-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/themes/theme-context.ts -------------------------------------------------------------------------------- /src/themes/theme-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/themes/theme-utils.spec.ts -------------------------------------------------------------------------------- /src/types/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/action.ts -------------------------------------------------------------------------------- /src/types/adaptivecard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/adaptivecard.ts -------------------------------------------------------------------------------- /src/types/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/authentication.ts -------------------------------------------------------------------------------- /src/types/auto-complete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/auto-complete.ts -------------------------------------------------------------------------------- /src/types/devx-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/devx-api.ts -------------------------------------------------------------------------------- /src/types/dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/dimensions.ts -------------------------------------------------------------------------------- /src/types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/enums.ts -------------------------------------------------------------------------------- /src/types/har.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/har.ts -------------------------------------------------------------------------------- /src/types/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/history.ts -------------------------------------------------------------------------------- /src/types/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/image.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/open-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/open-api.ts -------------------------------------------------------------------------------- /src/types/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/permissions.ts -------------------------------------------------------------------------------- /src/types/postman-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/postman-collection.ts -------------------------------------------------------------------------------- /src/types/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/profile.ts -------------------------------------------------------------------------------- /src/types/query-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/query-response.ts -------------------------------------------------------------------------------- /src/types/query-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/query-runner.ts -------------------------------------------------------------------------------- /src/types/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/request.ts -------------------------------------------------------------------------------- /src/types/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/resources.ts -------------------------------------------------------------------------------- /src/types/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/root.ts -------------------------------------------------------------------------------- /src/types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/settings.ts -------------------------------------------------------------------------------- /src/types/share-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/share-query.ts -------------------------------------------------------------------------------- /src/types/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/sidebar.ts -------------------------------------------------------------------------------- /src/types/snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/snippets.ts -------------------------------------------------------------------------------- /src/types/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/status.ts -------------------------------------------------------------------------------- /src/types/submit-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/src/types/submit-button.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versioned-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/versioned-build.js -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/microsoft-graph-explorer-v4/HEAD/web.config --------------------------------------------------------------------------------