├── .azdo └── pipelines │ └── azure-dev.yml ├── .devcontainer ├── devcontainer.json └── on-create.sh ├── .editorconfig ├── .gitattributes ├── .github ├── agents │ ├── speckit.analyze.agent.md │ ├── speckit.checklist.agent.md │ ├── speckit.clarify.agent.md │ ├── speckit.constitution.agent.md │ ├── speckit.implement.agent.md │ ├── speckit.plan.agent.md │ ├── speckit.specify.agent.md │ ├── speckit.tasks.agent.md │ └── speckit.taskstoissues.agent.md ├── prompts │ ├── speckit.analyze.prompt.md │ ├── speckit.checklist.prompt.md │ ├── speckit.clarify.prompt.md │ ├── speckit.constitution.prompt.md │ ├── speckit.implement.prompt.md │ ├── speckit.plan.prompt.md │ ├── speckit.specify.prompt.md │ ├── speckit.tasks.prompt.md │ └── speckit.taskstoissues.prompt.md └── workflows │ └── azure-dev.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .specify ├── memory │ ├── api-integration.md │ ├── architecture.md │ ├── authentication.md │ ├── components.md │ ├── configuration.md │ ├── constitution.md │ ├── data-flow.md │ ├── dependencies.md │ ├── deployment.md │ ├── folder-structure.md │ ├── index.md │ ├── patterns.md │ ├── routing.md │ ├── services.md │ ├── state-management.md │ ├── testing-strategy.md │ └── todo.md ├── scripts │ └── powershell │ │ ├── check-prerequisites.ps1 │ │ ├── common.ps1 │ │ ├── create-new-feature.ps1 │ │ ├── setup-plan.ps1 │ │ └── update-agent-context.ps1 └── templates │ ├── agent-file-template.md │ ├── checklist-template.md │ ├── plan-template.md │ ├── spec-template.md │ └── tasks-template.md ├── .stylelintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure.yaml ├── config.example.json ├── eslint.config.mjs ├── index.html ├── infra ├── abbreviations.json ├── core │ ├── gateway │ │ └── apicenter.bicep │ ├── host │ │ └── staticwebapp.bicep │ ├── monitor │ │ ├── applicationinsights-dashboard.bicep │ │ ├── applicationinsights.bicep │ │ ├── loganalytics.bicep │ │ └── monitoring.bicep │ └── security │ │ ├── keyvault-access.bicep │ │ ├── keyvault-secret.bicep │ │ ├── keyvault.bicep │ │ └── role.bicep ├── hooks │ ├── load_azd_env.ps1 │ ├── load_azd_env.sh │ ├── login.ps1 │ ├── login.sh │ ├── postprovision.ps1 │ ├── postprovision.sh │ ├── predeploy.ps1 │ ├── predeploy.sh │ ├── predown.ps1 │ ├── predown.sh │ ├── preprovision.ps1 │ ├── preprovision.sh │ ├── preup.ps1 │ └── preup.sh ├── main.bicep ├── main.parameters.json └── scripts │ ├── Get-AzdVariable.ps1 │ ├── Set-GitHubVariables.ps1 │ ├── get-azdvariable.sh │ └── set-githubvariables.sh ├── package.json ├── src ├── App.tsx ├── Layout.tsx ├── RootProvider.tsx ├── assets │ ├── accessDenied.svg │ ├── devPortal.png │ ├── logo.svg │ ├── noResults.svg │ ├── semanticSearch.svg │ ├── vsCodeInsidersLogo.svg │ └── vsCodeLogo.svg ├── atoms │ ├── apiListLayoutAtom.ts │ ├── apiListSortingAtom.ts │ ├── apiSearchFiltersAtom.ts │ ├── appServicesAtom.ts │ ├── configAtom.ts │ ├── isAccessDeniedAtom.ts │ ├── isAnonymousAccessEnabledAtom.ts │ ├── isAuthenticatedAtom.ts │ └── recentSearchesAtom.ts ├── components │ ├── ApiAuthForm │ │ ├── ApiAuthForm.module.scss │ │ ├── ApiAuthForm.tsx │ │ └── index.ts │ ├── CopyLink │ │ ├── CopyLink.module.scss │ │ ├── CopyLink.tsx │ │ └── index.ts │ ├── CustomMetadata │ │ ├── CustomMetadata.module.scss │ │ ├── CustomMetadata.tsx │ │ └── index.ts │ ├── EmptyStateMessage │ │ ├── EmptyStateMessage.module.scss │ │ ├── EmptyStateMessage.tsx │ │ └── index.ts │ ├── Footer │ │ ├── Footer.module.scss │ │ ├── Footer.tsx │ │ └── index.tsx │ ├── Header │ │ ├── AuthBtn │ │ │ ├── AuthBtn.module.scss │ │ │ ├── AuthBtn.tsx │ │ │ └── index.ts │ │ ├── Header.module.scss │ │ ├── Header.tsx │ │ └── index.ts │ ├── MarkdownRenderer │ │ ├── MarkdownRenderer.tsx │ │ └── index.ts │ ├── ParamSchemaDefinition │ │ ├── ParamSchemaDefinition.module.scss │ │ ├── ParamSchemaDefinition.tsx │ │ └── index.ts │ ├── RefLink │ │ ├── RefLink.tsx │ │ └── index.ts │ ├── SemanticSearchToggle │ │ ├── SemanticSearchToggle.module.scss │ │ ├── SemanticSearchToggle.tsx │ │ └── index.ts │ └── TestConsoleError │ │ ├── TestConsoleError.module.scss │ │ ├── TestConsoleError.tsx │ │ └── index.ts ├── config │ └── apiFilters.ts ├── constants.ts ├── constants │ ├── HttpStatusCodes.ts │ ├── QueryKeys.ts │ └── urlParams.ts ├── experiences │ ├── ActiveFiltersBadges │ │ ├── ActiveFiltersBadges.module.scss │ │ ├── ActiveFiltersBadges.tsx │ │ └── index.ts │ ├── ApiAccessAuthForm │ │ ├── ApiAccessAuthForm.tsx │ │ └── index.ts │ ├── ApiAdditionalInfo │ │ ├── ApiAdditionalInfo.module.scss │ │ ├── ApiAdditionalInfo.tsx │ │ └── index.ts │ ├── ApiDefinitionSelect │ │ ├── ApiDefinitionSelect.module.scss │ │ ├── ApiDefinitionSelect.tsx │ │ └── index.ts │ ├── ApiFilters │ │ ├── ApiFilters.module.scss │ │ ├── ApiFilters.tsx │ │ └── index.ts │ ├── ApiInfoOptions │ │ ├── ApiInfoOptions.module.scss │ │ ├── ApiInfoOptions.tsx │ │ └── index.ts │ ├── ApiList │ │ ├── ApiList.module.scss │ │ ├── ApiList.tsx │ │ ├── apiAdapter.ts │ │ └── index.ts │ ├── ApiListLayoutSwitch │ │ ├── ApiListLayoutSwitch.module.scss │ │ ├── ApiListLayoutSwitch.tsx │ │ └── index.ts │ ├── ApiListSortingSelect │ │ ├── ApiListSortingSelect.tsx │ │ └── index.ts │ ├── ApiOperationDetails │ │ ├── ApiOperationDetails.module.scss │ │ ├── ApiOperationDetails.tsx │ │ ├── DefaultOperationDetails │ │ │ ├── DefaultOperationDetails.tsx │ │ │ └── index.ts │ │ ├── McpResourceOperationDetails │ │ │ ├── McpResourceOperationDetails.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types.ts │ ├── ApiOperationsSelect │ │ ├── ApiOperationsSelect.tsx │ │ ├── index.ts │ │ └── utils.ts │ ├── ApiSearchBox │ │ ├── ApiSearchAutoComplete │ │ │ ├── ApiSearchAutoComplete.module.scss │ │ │ ├── ApiSearchAutoComplete.tsx │ │ │ └── index.ts │ │ ├── ApiSearchBox.module.scss │ │ ├── ApiSearchBox.tsx │ │ ├── SemanticSearchInfo │ │ │ ├── SemanticSearchInfo.module.scss │ │ │ ├── SemanticSearchInfo.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── HttpTestConsole │ │ ├── HttpTestConsole.module.scss │ │ ├── HttpTestConsole.tsx │ │ ├── index.ts │ │ └── utils.ts │ └── McpTestConsole │ │ ├── McpTestConsole.module.scss │ │ ├── McpTestConsole.tsx │ │ └── index.ts ├── globals.scss ├── hooks │ ├── useApi.ts │ ├── useApiAuthSchemes.ts │ ├── useApiAuthorization.ts │ ├── useApiDefinition.ts │ ├── useApiDefinitions.ts │ ├── useApiDeployments.ts │ ├── useApiService.ts │ ├── useApiSpec.ts │ ├── useApiSpecUrl.ts │ ├── useApiVersions.ts │ ├── useApis.ts │ ├── useAuthService.ts │ ├── useDeploymentEnvironment.ts │ ├── useHttpTestRequestController.ts │ ├── useMcpTestRunController.ts │ ├── useMetadataSchemas.ts │ ├── useRecentSearches.ts │ ├── useSearchFilters.ts │ ├── useSearchQuery.ts │ ├── useSelectedOperation.ts │ └── useServer.ts ├── main.tsx ├── pages │ ├── ApiInfo │ │ ├── ApiInfo.module.scss │ │ ├── ApiInfo.tsx │ │ └── index.ts │ ├── ApiSpec │ │ ├── ApiSpec.module.scss │ │ ├── ApiSpec.tsx │ │ ├── ApiSpecPageLayout │ │ │ ├── ApiSpecPageLayout.module.scss │ │ │ ├── ApiSpecPageLayout.tsx │ │ │ └── index.ts │ │ ├── DefaultApiSpecPage │ │ │ ├── DefaultApiSpecPage.tsx │ │ │ └── index.ts │ │ ├── McpSpecPage │ │ │ ├── McpMetadataBasedAuthForm │ │ │ │ ├── McpMetadataBasedAuthForm.tsx │ │ │ │ └── index.ts │ │ │ ├── McpSpecPage.module.scss │ │ │ ├── McpSpecPage.tsx │ │ │ └── index.ts │ │ └── index.ts │ └── Home │ │ ├── Home.module.scss │ │ ├── Home.tsx │ │ └── index.ts ├── services │ ├── ApiService.ts │ ├── HttpService.ts │ ├── LocalStorageService.ts │ ├── LocationsService.ts │ ├── McpService.ts │ ├── MsalAuthService.ts │ └── OAuthService.ts ├── specReaders │ ├── getSpecReader.ts │ ├── graphqlReader.ts │ ├── mcpReader.ts │ ├── openApiResolverProxy.ts │ ├── openApiV2Reader.ts │ └── openApiV3Reader.ts ├── styles │ ├── screen.scss │ └── variables.scss ├── types │ ├── api.ts │ ├── apiAuth.ts │ ├── apiDefinition.ts │ ├── apiDeployment.ts │ ├── apiEnvironment.ts │ ├── apiFilters.ts │ ├── apiSpec.ts │ ├── apiVersion.ts │ ├── appConfig.ts │ ├── config.ts │ ├── layouts.ts │ ├── mcp.ts │ ├── metadataSchema.ts │ ├── msalSettings.ts │ ├── server.ts │ ├── services │ │ ├── IApiService.ts │ │ └── IAuthService.ts │ └── sorting.ts ├── utils │ ├── apiDefinitions.ts │ ├── apiOperations.ts │ ├── apiSpec.ts │ ├── apimProxy.ts │ ├── dom.ts │ ├── graphql.tsx │ ├── mcp.ts │ ├── openApi.tsx │ └── promise.ts └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.azdo/pipelines/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.azdo/pipelines/azure-dev.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/on-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.devcontainer/on-create.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/agents/speckit.analyze.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.analyze.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.checklist.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.checklist.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.clarify.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.clarify.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.constitution.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.constitution.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.implement.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.implement.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.plan.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.plan.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.specify.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.specify.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.tasks.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.tasks.agent.md -------------------------------------------------------------------------------- /.github/agents/speckit.taskstoissues.agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/agents/speckit.taskstoissues.agent.md -------------------------------------------------------------------------------- /.github/prompts/speckit.analyze.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: speckit.analyze 3 | --- 4 | -------------------------------------------------------------------------------- /.github/prompts/speckit.checklist.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/prompts/speckit.checklist.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.clarify.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: speckit.clarify 3 | --- 4 | -------------------------------------------------------------------------------- /.github/prompts/speckit.constitution.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: speckit.constitution 3 | --- 4 | -------------------------------------------------------------------------------- /.github/prompts/speckit.implement.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/prompts/speckit.implement.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.plan.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: speckit.plan 3 | --- 4 | -------------------------------------------------------------------------------- /.github/prompts/speckit.specify.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/prompts/speckit.specify.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.tasks.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: speckit.tasks 3 | --- 4 | -------------------------------------------------------------------------------- /.github/prompts/speckit.taskstoissues.prompt.md: -------------------------------------------------------------------------------- 1 | --- 2 | agent: speckit.taskstoissues 3 | --- 4 | -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.github/workflows/azure-dev.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .prettierrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.specify/memory/api-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/api-integration.md -------------------------------------------------------------------------------- /.specify/memory/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/architecture.md -------------------------------------------------------------------------------- /.specify/memory/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/authentication.md -------------------------------------------------------------------------------- /.specify/memory/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/components.md -------------------------------------------------------------------------------- /.specify/memory/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/configuration.md -------------------------------------------------------------------------------- /.specify/memory/constitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/constitution.md -------------------------------------------------------------------------------- /.specify/memory/data-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/data-flow.md -------------------------------------------------------------------------------- /.specify/memory/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/dependencies.md -------------------------------------------------------------------------------- /.specify/memory/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/deployment.md -------------------------------------------------------------------------------- /.specify/memory/folder-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/folder-structure.md -------------------------------------------------------------------------------- /.specify/memory/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/index.md -------------------------------------------------------------------------------- /.specify/memory/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/patterns.md -------------------------------------------------------------------------------- /.specify/memory/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/routing.md -------------------------------------------------------------------------------- /.specify/memory/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/services.md -------------------------------------------------------------------------------- /.specify/memory/state-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/state-management.md -------------------------------------------------------------------------------- /.specify/memory/testing-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/testing-strategy.md -------------------------------------------------------------------------------- /.specify/memory/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/memory/todo.md -------------------------------------------------------------------------------- /.specify/scripts/powershell/check-prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/scripts/powershell/check-prerequisites.ps1 -------------------------------------------------------------------------------- /.specify/scripts/powershell/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/scripts/powershell/common.ps1 -------------------------------------------------------------------------------- /.specify/scripts/powershell/create-new-feature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/scripts/powershell/create-new-feature.ps1 -------------------------------------------------------------------------------- /.specify/scripts/powershell/setup-plan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/scripts/powershell/setup-plan.ps1 -------------------------------------------------------------------------------- /.specify/scripts/powershell/update-agent-context.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/scripts/powershell/update-agent-context.ps1 -------------------------------------------------------------------------------- /.specify/templates/agent-file-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/templates/agent-file-template.md -------------------------------------------------------------------------------- /.specify/templates/checklist-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/templates/checklist-template.md -------------------------------------------------------------------------------- /.specify/templates/plan-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/templates/plan-template.md -------------------------------------------------------------------------------- /.specify/templates/spec-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/templates/spec-template.md -------------------------------------------------------------------------------- /.specify/templates/tasks-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.specify/templates/tasks-template.md -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/azure.yaml -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/config.example.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/index.html -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/core/gateway/apicenter.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/gateway/apicenter.bicep -------------------------------------------------------------------------------- /infra/core/host/staticwebapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/host/staticwebapp.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights-dashboard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/monitor/applicationinsights-dashboard.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/monitor/applicationinsights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/loganalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/monitor/loganalytics.bicep -------------------------------------------------------------------------------- /infra/core/monitor/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/monitor/monitoring.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/security/keyvault-access.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/security/keyvault-secret.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/security/keyvault.bicep -------------------------------------------------------------------------------- /infra/core/security/role.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/core/security/role.bicep -------------------------------------------------------------------------------- /infra/hooks/load_azd_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/load_azd_env.ps1 -------------------------------------------------------------------------------- /infra/hooks/load_azd_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/load_azd_env.sh -------------------------------------------------------------------------------- /infra/hooks/login.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/login.ps1 -------------------------------------------------------------------------------- /infra/hooks/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/login.sh -------------------------------------------------------------------------------- /infra/hooks/postprovision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/postprovision.ps1 -------------------------------------------------------------------------------- /infra/hooks/postprovision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/postprovision.sh -------------------------------------------------------------------------------- /infra/hooks/predeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/predeploy.ps1 -------------------------------------------------------------------------------- /infra/hooks/predeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/predeploy.sh -------------------------------------------------------------------------------- /infra/hooks/predown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/predown.ps1 -------------------------------------------------------------------------------- /infra/hooks/predown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/predown.sh -------------------------------------------------------------------------------- /infra/hooks/preprovision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/preprovision.ps1 -------------------------------------------------------------------------------- /infra/hooks/preprovision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/preprovision.sh -------------------------------------------------------------------------------- /infra/hooks/preup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/preup.ps1 -------------------------------------------------------------------------------- /infra/hooks/preup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/hooks/preup.sh -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/scripts/Get-AzdVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/scripts/Get-AzdVariable.ps1 -------------------------------------------------------------------------------- /infra/scripts/Set-GitHubVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/scripts/Set-GitHubVariables.ps1 -------------------------------------------------------------------------------- /infra/scripts/get-azdvariable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/scripts/get-azdvariable.sh -------------------------------------------------------------------------------- /infra/scripts/set-githubvariables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/infra/scripts/set-githubvariables.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/Layout.tsx -------------------------------------------------------------------------------- /src/RootProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/RootProvider.tsx -------------------------------------------------------------------------------- /src/assets/accessDenied.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/accessDenied.svg -------------------------------------------------------------------------------- /src/assets/devPortal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/devPortal.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/noResults.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/noResults.svg -------------------------------------------------------------------------------- /src/assets/semanticSearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/semanticSearch.svg -------------------------------------------------------------------------------- /src/assets/vsCodeInsidersLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/vsCodeInsidersLogo.svg -------------------------------------------------------------------------------- /src/assets/vsCodeLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/assets/vsCodeLogo.svg -------------------------------------------------------------------------------- /src/atoms/apiListLayoutAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/apiListLayoutAtom.ts -------------------------------------------------------------------------------- /src/atoms/apiListSortingAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/apiListSortingAtom.ts -------------------------------------------------------------------------------- /src/atoms/apiSearchFiltersAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/apiSearchFiltersAtom.ts -------------------------------------------------------------------------------- /src/atoms/appServicesAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/appServicesAtom.ts -------------------------------------------------------------------------------- /src/atoms/configAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/configAtom.ts -------------------------------------------------------------------------------- /src/atoms/isAccessDeniedAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/isAccessDeniedAtom.ts -------------------------------------------------------------------------------- /src/atoms/isAnonymousAccessEnabledAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/isAnonymousAccessEnabledAtom.ts -------------------------------------------------------------------------------- /src/atoms/isAuthenticatedAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/isAuthenticatedAtom.ts -------------------------------------------------------------------------------- /src/atoms/recentSearchesAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/atoms/recentSearchesAtom.ts -------------------------------------------------------------------------------- /src/components/ApiAuthForm/ApiAuthForm.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/ApiAuthForm/ApiAuthForm.module.scss -------------------------------------------------------------------------------- /src/components/ApiAuthForm/ApiAuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/ApiAuthForm/ApiAuthForm.tsx -------------------------------------------------------------------------------- /src/components/ApiAuthForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/ApiAuthForm/index.ts -------------------------------------------------------------------------------- /src/components/CopyLink/CopyLink.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/CopyLink/CopyLink.module.scss -------------------------------------------------------------------------------- /src/components/CopyLink/CopyLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/CopyLink/CopyLink.tsx -------------------------------------------------------------------------------- /src/components/CopyLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/CopyLink/index.ts -------------------------------------------------------------------------------- /src/components/CustomMetadata/CustomMetadata.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/CustomMetadata/CustomMetadata.module.scss -------------------------------------------------------------------------------- /src/components/CustomMetadata/CustomMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/CustomMetadata/CustomMetadata.tsx -------------------------------------------------------------------------------- /src/components/CustomMetadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/CustomMetadata/index.ts -------------------------------------------------------------------------------- /src/components/EmptyStateMessage/EmptyStateMessage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/EmptyStateMessage/EmptyStateMessage.module.scss -------------------------------------------------------------------------------- /src/components/EmptyStateMessage/EmptyStateMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/EmptyStateMessage/EmptyStateMessage.tsx -------------------------------------------------------------------------------- /src/components/EmptyStateMessage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/EmptyStateMessage/index.ts -------------------------------------------------------------------------------- /src/components/Footer/Footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Footer/Footer.module.scss -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Header/AuthBtn/AuthBtn.module.scss: -------------------------------------------------------------------------------- 1 | .authBtn { 2 | min-width: unset; 3 | background: var(--blue-2); 4 | } 5 | -------------------------------------------------------------------------------- /src/components/Header/AuthBtn/AuthBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Header/AuthBtn/AuthBtn.tsx -------------------------------------------------------------------------------- /src/components/Header/AuthBtn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Header/AuthBtn/index.ts -------------------------------------------------------------------------------- /src/components/Header/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Header/Header.module.scss -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/Header/index.ts -------------------------------------------------------------------------------- /src/components/MarkdownRenderer/MarkdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/MarkdownRenderer/MarkdownRenderer.tsx -------------------------------------------------------------------------------- /src/components/MarkdownRenderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/MarkdownRenderer/index.ts -------------------------------------------------------------------------------- /src/components/ParamSchemaDefinition/ParamSchemaDefinition.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/ParamSchemaDefinition/ParamSchemaDefinition.module.scss -------------------------------------------------------------------------------- /src/components/ParamSchemaDefinition/ParamSchemaDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/ParamSchemaDefinition/ParamSchemaDefinition.tsx -------------------------------------------------------------------------------- /src/components/ParamSchemaDefinition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/ParamSchemaDefinition/index.ts -------------------------------------------------------------------------------- /src/components/RefLink/RefLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/RefLink/RefLink.tsx -------------------------------------------------------------------------------- /src/components/RefLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/RefLink/index.ts -------------------------------------------------------------------------------- /src/components/SemanticSearchToggle/SemanticSearchToggle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/SemanticSearchToggle/SemanticSearchToggle.module.scss -------------------------------------------------------------------------------- /src/components/SemanticSearchToggle/SemanticSearchToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/SemanticSearchToggle/SemanticSearchToggle.tsx -------------------------------------------------------------------------------- /src/components/SemanticSearchToggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/SemanticSearchToggle/index.ts -------------------------------------------------------------------------------- /src/components/TestConsoleError/TestConsoleError.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/TestConsoleError/TestConsoleError.module.scss -------------------------------------------------------------------------------- /src/components/TestConsoleError/TestConsoleError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/TestConsoleError/TestConsoleError.tsx -------------------------------------------------------------------------------- /src/components/TestConsoleError/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/components/TestConsoleError/index.ts -------------------------------------------------------------------------------- /src/config/apiFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/config/apiFilters.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/constants/HttpStatusCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/constants/HttpStatusCodes.ts -------------------------------------------------------------------------------- /src/constants/QueryKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/constants/QueryKeys.ts -------------------------------------------------------------------------------- /src/constants/urlParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/constants/urlParams.ts -------------------------------------------------------------------------------- /src/experiences/ActiveFiltersBadges/ActiveFiltersBadges.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ActiveFiltersBadges/ActiveFiltersBadges.module.scss -------------------------------------------------------------------------------- /src/experiences/ActiveFiltersBadges/ActiveFiltersBadges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ActiveFiltersBadges/ActiveFiltersBadges.tsx -------------------------------------------------------------------------------- /src/experiences/ActiveFiltersBadges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ActiveFiltersBadges/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiAccessAuthForm/ApiAccessAuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiAccessAuthForm/ApiAccessAuthForm.tsx -------------------------------------------------------------------------------- /src/experiences/ApiAccessAuthForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiAccessAuthForm/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiAdditionalInfo/ApiAdditionalInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiAdditionalInfo/ApiAdditionalInfo.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiAdditionalInfo/ApiAdditionalInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiAdditionalInfo/ApiAdditionalInfo.tsx -------------------------------------------------------------------------------- /src/experiences/ApiAdditionalInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiAdditionalInfo/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiDefinitionSelect/ApiDefinitionSelect.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiDefinitionSelect/ApiDefinitionSelect.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiDefinitionSelect/ApiDefinitionSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiDefinitionSelect/ApiDefinitionSelect.tsx -------------------------------------------------------------------------------- /src/experiences/ApiDefinitionSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiDefinitionSelect/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiFilters/ApiFilters.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiFilters/ApiFilters.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiFilters/ApiFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiFilters/ApiFilters.tsx -------------------------------------------------------------------------------- /src/experiences/ApiFilters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiFilters/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiInfoOptions/ApiInfoOptions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiInfoOptions/ApiInfoOptions.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiInfoOptions/ApiInfoOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiInfoOptions/ApiInfoOptions.tsx -------------------------------------------------------------------------------- /src/experiences/ApiInfoOptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiInfoOptions/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiList/ApiList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiList/ApiList.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiList/ApiList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiList/ApiList.tsx -------------------------------------------------------------------------------- /src/experiences/ApiList/apiAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiList/apiAdapter.ts -------------------------------------------------------------------------------- /src/experiences/ApiList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiList/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiListLayoutSwitch/ApiListLayoutSwitch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiListLayoutSwitch/ApiListLayoutSwitch.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiListLayoutSwitch/ApiListLayoutSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiListLayoutSwitch/ApiListLayoutSwitch.tsx -------------------------------------------------------------------------------- /src/experiences/ApiListLayoutSwitch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiListLayoutSwitch/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiListSortingSelect/ApiListSortingSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiListSortingSelect/ApiListSortingSelect.tsx -------------------------------------------------------------------------------- /src/experiences/ApiListSortingSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiListSortingSelect/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/ApiOperationDetails.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/ApiOperationDetails.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/ApiOperationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/ApiOperationDetails.tsx -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/DefaultOperationDetails/DefaultOperationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/DefaultOperationDetails/DefaultOperationDetails.tsx -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/DefaultOperationDetails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/DefaultOperationDetails/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/McpResourceOperationDetails/McpResourceOperationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/McpResourceOperationDetails/McpResourceOperationDetails.tsx -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/McpResourceOperationDetails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/McpResourceOperationDetails/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiOperationDetails/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationDetails/types.ts -------------------------------------------------------------------------------- /src/experiences/ApiOperationsSelect/ApiOperationsSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationsSelect/ApiOperationsSelect.tsx -------------------------------------------------------------------------------- /src/experiences/ApiOperationsSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationsSelect/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiOperationsSelect/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiOperationsSelect/utils.ts -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/ApiSearchAutoComplete/ApiSearchAutoComplete.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/ApiSearchAutoComplete/ApiSearchAutoComplete.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/ApiSearchAutoComplete/ApiSearchAutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/ApiSearchAutoComplete/ApiSearchAutoComplete.tsx -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/ApiSearchAutoComplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/ApiSearchAutoComplete/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/ApiSearchBox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/ApiSearchBox.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/ApiSearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/ApiSearchBox.tsx -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/SemanticSearchInfo/SemanticSearchInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/SemanticSearchInfo/SemanticSearchInfo.module.scss -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/SemanticSearchInfo/SemanticSearchInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/SemanticSearchInfo/SemanticSearchInfo.tsx -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/SemanticSearchInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/SemanticSearchInfo/index.ts -------------------------------------------------------------------------------- /src/experiences/ApiSearchBox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/ApiSearchBox/index.ts -------------------------------------------------------------------------------- /src/experiences/HttpTestConsole/HttpTestConsole.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/HttpTestConsole/HttpTestConsole.module.scss -------------------------------------------------------------------------------- /src/experiences/HttpTestConsole/HttpTestConsole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/HttpTestConsole/HttpTestConsole.tsx -------------------------------------------------------------------------------- /src/experiences/HttpTestConsole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/HttpTestConsole/index.ts -------------------------------------------------------------------------------- /src/experiences/HttpTestConsole/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/HttpTestConsole/utils.ts -------------------------------------------------------------------------------- /src/experiences/McpTestConsole/McpTestConsole.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/McpTestConsole/McpTestConsole.module.scss -------------------------------------------------------------------------------- /src/experiences/McpTestConsole/McpTestConsole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/McpTestConsole/McpTestConsole.tsx -------------------------------------------------------------------------------- /src/experiences/McpTestConsole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/experiences/McpTestConsole/index.ts -------------------------------------------------------------------------------- /src/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/globals.scss -------------------------------------------------------------------------------- /src/hooks/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApi.ts -------------------------------------------------------------------------------- /src/hooks/useApiAuthSchemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiAuthSchemes.ts -------------------------------------------------------------------------------- /src/hooks/useApiAuthorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiAuthorization.ts -------------------------------------------------------------------------------- /src/hooks/useApiDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiDefinition.ts -------------------------------------------------------------------------------- /src/hooks/useApiDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiDefinitions.ts -------------------------------------------------------------------------------- /src/hooks/useApiDeployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiDeployments.ts -------------------------------------------------------------------------------- /src/hooks/useApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiService.ts -------------------------------------------------------------------------------- /src/hooks/useApiSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiSpec.ts -------------------------------------------------------------------------------- /src/hooks/useApiSpecUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiSpecUrl.ts -------------------------------------------------------------------------------- /src/hooks/useApiVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApiVersions.ts -------------------------------------------------------------------------------- /src/hooks/useApis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useApis.ts -------------------------------------------------------------------------------- /src/hooks/useAuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useAuthService.ts -------------------------------------------------------------------------------- /src/hooks/useDeploymentEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useDeploymentEnvironment.ts -------------------------------------------------------------------------------- /src/hooks/useHttpTestRequestController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useHttpTestRequestController.ts -------------------------------------------------------------------------------- /src/hooks/useMcpTestRunController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useMcpTestRunController.ts -------------------------------------------------------------------------------- /src/hooks/useMetadataSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useMetadataSchemas.ts -------------------------------------------------------------------------------- /src/hooks/useRecentSearches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useRecentSearches.ts -------------------------------------------------------------------------------- /src/hooks/useSearchFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useSearchFilters.ts -------------------------------------------------------------------------------- /src/hooks/useSearchQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useSearchQuery.ts -------------------------------------------------------------------------------- /src/hooks/useSelectedOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useSelectedOperation.ts -------------------------------------------------------------------------------- /src/hooks/useServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/hooks/useServer.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/ApiInfo/ApiInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiInfo/ApiInfo.module.scss -------------------------------------------------------------------------------- /src/pages/ApiInfo/ApiInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiInfo/ApiInfo.tsx -------------------------------------------------------------------------------- /src/pages/ApiInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiInfo/index.ts -------------------------------------------------------------------------------- /src/pages/ApiSpec/ApiSpec.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/ApiSpec.module.scss -------------------------------------------------------------------------------- /src/pages/ApiSpec/ApiSpec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/ApiSpec.tsx -------------------------------------------------------------------------------- /src/pages/ApiSpec/ApiSpecPageLayout/ApiSpecPageLayout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/ApiSpecPageLayout/ApiSpecPageLayout.module.scss -------------------------------------------------------------------------------- /src/pages/ApiSpec/ApiSpecPageLayout/ApiSpecPageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/ApiSpecPageLayout/ApiSpecPageLayout.tsx -------------------------------------------------------------------------------- /src/pages/ApiSpec/ApiSpecPageLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/ApiSpecPageLayout/index.ts -------------------------------------------------------------------------------- /src/pages/ApiSpec/DefaultApiSpecPage/DefaultApiSpecPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/DefaultApiSpecPage/DefaultApiSpecPage.tsx -------------------------------------------------------------------------------- /src/pages/ApiSpec/DefaultApiSpecPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/DefaultApiSpecPage/index.ts -------------------------------------------------------------------------------- /src/pages/ApiSpec/McpSpecPage/McpMetadataBasedAuthForm/McpMetadataBasedAuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/McpSpecPage/McpMetadataBasedAuthForm/McpMetadataBasedAuthForm.tsx -------------------------------------------------------------------------------- /src/pages/ApiSpec/McpSpecPage/McpMetadataBasedAuthForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/McpSpecPage/McpMetadataBasedAuthForm/index.ts -------------------------------------------------------------------------------- /src/pages/ApiSpec/McpSpecPage/McpSpecPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/McpSpecPage/McpSpecPage.module.scss -------------------------------------------------------------------------------- /src/pages/ApiSpec/McpSpecPage/McpSpecPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/McpSpecPage/McpSpecPage.tsx -------------------------------------------------------------------------------- /src/pages/ApiSpec/McpSpecPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/McpSpecPage/index.ts -------------------------------------------------------------------------------- /src/pages/ApiSpec/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/ApiSpec/index.ts -------------------------------------------------------------------------------- /src/pages/Home/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/Home/Home.module.scss -------------------------------------------------------------------------------- /src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/pages/Home/index.ts -------------------------------------------------------------------------------- /src/services/ApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/ApiService.ts -------------------------------------------------------------------------------- /src/services/HttpService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/HttpService.ts -------------------------------------------------------------------------------- /src/services/LocalStorageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/LocalStorageService.ts -------------------------------------------------------------------------------- /src/services/LocationsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/LocationsService.ts -------------------------------------------------------------------------------- /src/services/McpService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/McpService.ts -------------------------------------------------------------------------------- /src/services/MsalAuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/MsalAuthService.ts -------------------------------------------------------------------------------- /src/services/OAuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/services/OAuthService.ts -------------------------------------------------------------------------------- /src/specReaders/getSpecReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/specReaders/getSpecReader.ts -------------------------------------------------------------------------------- /src/specReaders/graphqlReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/specReaders/graphqlReader.ts -------------------------------------------------------------------------------- /src/specReaders/mcpReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/specReaders/mcpReader.ts -------------------------------------------------------------------------------- /src/specReaders/openApiResolverProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/specReaders/openApiResolverProxy.ts -------------------------------------------------------------------------------- /src/specReaders/openApiV2Reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/specReaders/openApiV2Reader.ts -------------------------------------------------------------------------------- /src/specReaders/openApiV3Reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/specReaders/openApiV3Reader.ts -------------------------------------------------------------------------------- /src/styles/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/styles/screen.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /src/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/api.ts -------------------------------------------------------------------------------- /src/types/apiAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiAuth.ts -------------------------------------------------------------------------------- /src/types/apiDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiDefinition.ts -------------------------------------------------------------------------------- /src/types/apiDeployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiDeployment.ts -------------------------------------------------------------------------------- /src/types/apiEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiEnvironment.ts -------------------------------------------------------------------------------- /src/types/apiFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiFilters.ts -------------------------------------------------------------------------------- /src/types/apiSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiSpec.ts -------------------------------------------------------------------------------- /src/types/apiVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/apiVersion.ts -------------------------------------------------------------------------------- /src/types/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/appConfig.ts -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/config.ts -------------------------------------------------------------------------------- /src/types/layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/layouts.ts -------------------------------------------------------------------------------- /src/types/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/mcp.ts -------------------------------------------------------------------------------- /src/types/metadataSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/metadataSchema.ts -------------------------------------------------------------------------------- /src/types/msalSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/msalSettings.ts -------------------------------------------------------------------------------- /src/types/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/server.ts -------------------------------------------------------------------------------- /src/types/services/IApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/services/IApiService.ts -------------------------------------------------------------------------------- /src/types/services/IAuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/services/IAuthService.ts -------------------------------------------------------------------------------- /src/types/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/types/sorting.ts -------------------------------------------------------------------------------- /src/utils/apiDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/apiDefinitions.ts -------------------------------------------------------------------------------- /src/utils/apiOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/apiOperations.ts -------------------------------------------------------------------------------- /src/utils/apiSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/apiSpec.ts -------------------------------------------------------------------------------- /src/utils/apimProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/apimProxy.ts -------------------------------------------------------------------------------- /src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/dom.ts -------------------------------------------------------------------------------- /src/utils/graphql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/graphql.tsx -------------------------------------------------------------------------------- /src/utils/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/mcp.ts -------------------------------------------------------------------------------- /src/utils/openApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/openApi.tsx -------------------------------------------------------------------------------- /src/utils/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/src/utils/promise.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/APICenter-Portal-Starter/HEAD/vite.config.ts --------------------------------------------------------------------------------