├── .ci ├── Dockerfile.test-image └── docker-compose.yml ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── select-gateway-image │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── .reusable_build.yml │ ├── .reusable_e2e_tests.yml │ ├── .reusable_test_image.yml │ ├── backport.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .nvmrc ├── .stylelintrc.cjs ├── .vscode └── extensions.json ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── eslint.config.mjs ├── index.html ├── kongponent-utility-classes.js ├── media ├── Plugin configuration tooltip.png ├── Plugin list.png └── Service edit.png ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico └── robots.txt ├── src ├── App.vue ├── assets │ ├── fonts │ │ └── Inter │ │ │ ├── Inter-Black.woff2 │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-ExtraBold.woff2 │ │ │ ├── Inter-ExtraLight.woff2 │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Medium.woff2 │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.woff2 │ │ │ ├── Inter-Thin.woff2 │ │ │ └── OFL.txt │ ├── icon-chart.svg │ ├── icon-cloud.svg │ ├── icon-grow.svg │ ├── icon-multiple.svg │ ├── icon-speed.svg │ ├── icon-stardust.svg │ ├── kong-text-black.svg │ ├── konnect-preview.png │ └── logo.svg ├── components │ ├── HeaderBackButton.vue │ ├── HeaderEditButton.vue │ ├── KonnectCTA.vue │ ├── MakeAWish.vue │ ├── NavbarLogo.vue │ ├── PageHeader.vue │ └── SupportText.vue ├── composables │ ├── useBaseGeneralConfig.ts │ ├── useCopyEventHandlers.ts │ ├── useDetailGeneralConfig.ts │ ├── useDocsLink.ts │ ├── useFormGeneralConfig.ts │ ├── useFormRedirect.ts │ ├── useGatewayFeatureSupported.ts │ ├── useI18n.ts │ ├── useListGeneralConfig.ts │ ├── useListRedirect.ts │ ├── useRedirect.ts │ ├── useTabs.ts │ └── useToaster.ts ├── config.ts ├── global.d.ts ├── locales │ └── en.json ├── main.ts ├── monaco-workers.ts ├── pages │ ├── NotFound.vue │ ├── ca-certificates │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── certificates │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── consumers │ │ ├── ConsumerCredentials.vue │ │ ├── CredentialForm.vue │ │ ├── CredentialList.vue │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── data-plane-nodes │ │ └── List.vue │ ├── key-sets │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── keys │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── overview │ │ └── Overview.vue │ ├── plugins │ │ ├── Detail.vue │ │ ├── Form.vue │ │ ├── List.vue │ │ ├── PluginMeta.ts │ │ └── Select.vue │ ├── routes │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── services │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue │ ├── snis │ │ ├── Form.vue │ │ └── List.vue │ ├── upstreams │ │ ├── Detail.vue │ │ ├── Form.vue │ │ ├── List.vue │ │ └── TargetList.vue │ └── vaults │ │ ├── Detail.vue │ │ ├── Form.vue │ │ └── List.vue ├── registerGlobalComponents.ts ├── router.ts ├── services │ └── apiService.ts ├── stores │ ├── info.ts │ └── types.ts ├── styles │ ├── bootstrap-grid.css │ ├── fonts.css │ ├── form.scss │ ├── index.ts │ ├── inputs.scss │ ├── reboot.scss │ └── typography.scss ├── types │ ├── entity.ts │ └── index.ts └── utils │ └── index.ts ├── tests └── playwright │ ├── base-test.ts │ ├── commands │ ├── autocompleteDeleteModal.ts │ ├── clearKongResources.ts │ ├── clickConfigurationCopy.ts │ ├── clickEntityListAction.ts │ ├── clickHeaderAction.ts │ ├── createKongResource.ts │ ├── deleteKongResource.ts │ ├── expandAdvancedFields.ts │ ├── expectEmptyEntityList.ts │ ├── fetchKongResource.ts │ ├── fillEntityForm.ts │ ├── getPageHeaderAction.ts │ ├── getPropertyValue.ts │ ├── selectMethods.ts │ ├── selectOption.ts │ ├── selectService.ts │ ├── switchDetailTab.ts │ ├── type.ts │ ├── waitAndDismissToast.ts │ └── withNavigation.ts │ ├── env.d.ts │ ├── fixtures │ ├── certificates.ts │ ├── jwk.ts │ └── pem.ts │ ├── helpers │ ├── console.ts │ └── misc.ts │ ├── package.json │ ├── pages │ ├── ca-certificates.ts │ ├── certificates.ts │ ├── consumers.ts │ ├── data-plane-nodes.ts │ ├── index.ts │ ├── key-sets.ts │ ├── keys.ts │ ├── plugins.ts │ ├── routes.ts │ ├── services.ts │ ├── snis.ts │ ├── upstreams.ts │ └── vaults.ts │ ├── playwright.config.ts │ ├── pnpm-lock.yaml │ ├── specs │ ├── ca-certificates │ │ └── 01-CACertificates.spec.ts │ ├── certificates │ │ └── 01-Certificates.spec.ts │ ├── consumers │ │ ├── 01-Consumers.spec.ts │ │ ├── 02-ConsumerCredentials.spec.ts │ │ └── 03-ConsumerPlugins.spec.ts │ ├── data-plane-nodes │ │ └── 01-DataPlaneNodes.spec.ts │ ├── key-sets │ │ ├── 01-KeySets.spec.ts │ │ └── 02-Keys.spec.ts │ ├── keys │ │ └── 01-Keys.spec.ts │ ├── misc │ │ ├── 01-EntityListPagination.spec.ts │ │ └── 02-NotFound.spec.ts │ ├── plugins │ │ ├── 01-Plugins.spec.ts │ │ └── 02-PluginFilter.spec.ts │ ├── routes-expressions │ │ └── 01-Routes.spec.ts │ ├── routes │ │ ├── 01-Routes.spec.ts │ │ └── 02-RoutesPlugins.spec.ts │ ├── services │ │ ├── 01-Service.spec.ts │ │ ├── 02-ServiceRoutes.spec.ts │ │ ├── 03-ServicePlugins.spec.ts │ │ └── 04-Filtering.spec.ts │ ├── snis │ │ ├── 01-SNIs.spec.ts │ │ └── 02-SNIsFilter.spec.ts │ ├── upstreams │ │ ├── 01-Upstreams.spec.ts │ │ ├── 02-UpstreamTargets.spec.ts │ │ └── 03-UpstreamFilter.spec.ts │ └── vaults │ │ └── 01-Vaults.spec.ts │ └── tsconfig.json ├── tsconfig.json └── vite.config.ts /.ci/Dockerfile.test-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.ci/Dockerfile.test-image -------------------------------------------------------------------------------- /.ci/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.ci/docker-compose.yml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | KM_TEST_API_URL=http://127.0.0.1:8001 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/select-gateway-image/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/actions/select-gateway-image/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/.reusable_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/workflows/.reusable_build.yml -------------------------------------------------------------------------------- /.github/workflows/.reusable_e2e_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/workflows/.reusable_e2e_tests.yml -------------------------------------------------------------------------------- /.github/workflows/.reusable_test_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/workflows/.reusable_test_image.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm lint-staged 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.20.4 2 | -------------------------------------------------------------------------------- /.stylelintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/.stylelintrc.cjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/index.html -------------------------------------------------------------------------------- /kongponent-utility-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/kongponent-utility-classes.js -------------------------------------------------------------------------------- /media/Plugin configuration tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/media/Plugin configuration tooltip.png -------------------------------------------------------------------------------- /media/Plugin list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/media/Plugin list.png -------------------------------------------------------------------------------- /media/Service edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/media/Service edit.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /kconfig.js 3 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/fonts/Inter/OFL.txt -------------------------------------------------------------------------------- /src/assets/icon-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/icon-chart.svg -------------------------------------------------------------------------------- /src/assets/icon-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/icon-cloud.svg -------------------------------------------------------------------------------- /src/assets/icon-grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/icon-grow.svg -------------------------------------------------------------------------------- /src/assets/icon-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/icon-multiple.svg -------------------------------------------------------------------------------- /src/assets/icon-speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/icon-speed.svg -------------------------------------------------------------------------------- /src/assets/icon-stardust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/icon-stardust.svg -------------------------------------------------------------------------------- /src/assets/kong-text-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/kong-text-black.svg -------------------------------------------------------------------------------- /src/assets/konnect-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/konnect-preview.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/HeaderBackButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/HeaderBackButton.vue -------------------------------------------------------------------------------- /src/components/HeaderEditButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/HeaderEditButton.vue -------------------------------------------------------------------------------- /src/components/KonnectCTA.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/KonnectCTA.vue -------------------------------------------------------------------------------- /src/components/MakeAWish.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/MakeAWish.vue -------------------------------------------------------------------------------- /src/components/NavbarLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/NavbarLogo.vue -------------------------------------------------------------------------------- /src/components/PageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/PageHeader.vue -------------------------------------------------------------------------------- /src/components/SupportText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/components/SupportText.vue -------------------------------------------------------------------------------- /src/composables/useBaseGeneralConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useBaseGeneralConfig.ts -------------------------------------------------------------------------------- /src/composables/useCopyEventHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useCopyEventHandlers.ts -------------------------------------------------------------------------------- /src/composables/useDetailGeneralConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useDetailGeneralConfig.ts -------------------------------------------------------------------------------- /src/composables/useDocsLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useDocsLink.ts -------------------------------------------------------------------------------- /src/composables/useFormGeneralConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useFormGeneralConfig.ts -------------------------------------------------------------------------------- /src/composables/useFormRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useFormRedirect.ts -------------------------------------------------------------------------------- /src/composables/useGatewayFeatureSupported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useGatewayFeatureSupported.ts -------------------------------------------------------------------------------- /src/composables/useI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useI18n.ts -------------------------------------------------------------------------------- /src/composables/useListGeneralConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useListGeneralConfig.ts -------------------------------------------------------------------------------- /src/composables/useListRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useListRedirect.ts -------------------------------------------------------------------------------- /src/composables/useRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useRedirect.ts -------------------------------------------------------------------------------- /src/composables/useTabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useTabs.ts -------------------------------------------------------------------------------- /src/composables/useToaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/composables/useToaster.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/monaco-workers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/monaco-workers.ts -------------------------------------------------------------------------------- /src/pages/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/NotFound.vue -------------------------------------------------------------------------------- /src/pages/ca-certificates/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/ca-certificates/Detail.vue -------------------------------------------------------------------------------- /src/pages/ca-certificates/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/ca-certificates/Form.vue -------------------------------------------------------------------------------- /src/pages/ca-certificates/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/ca-certificates/List.vue -------------------------------------------------------------------------------- /src/pages/certificates/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/certificates/Detail.vue -------------------------------------------------------------------------------- /src/pages/certificates/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/certificates/Form.vue -------------------------------------------------------------------------------- /src/pages/certificates/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/certificates/List.vue -------------------------------------------------------------------------------- /src/pages/consumers/ConsumerCredentials.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/consumers/ConsumerCredentials.vue -------------------------------------------------------------------------------- /src/pages/consumers/CredentialForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/consumers/CredentialForm.vue -------------------------------------------------------------------------------- /src/pages/consumers/CredentialList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/consumers/CredentialList.vue -------------------------------------------------------------------------------- /src/pages/consumers/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/consumers/Detail.vue -------------------------------------------------------------------------------- /src/pages/consumers/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/consumers/Form.vue -------------------------------------------------------------------------------- /src/pages/consumers/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/consumers/List.vue -------------------------------------------------------------------------------- /src/pages/data-plane-nodes/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/data-plane-nodes/List.vue -------------------------------------------------------------------------------- /src/pages/key-sets/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/key-sets/Detail.vue -------------------------------------------------------------------------------- /src/pages/key-sets/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/key-sets/Form.vue -------------------------------------------------------------------------------- /src/pages/key-sets/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/key-sets/List.vue -------------------------------------------------------------------------------- /src/pages/keys/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/keys/Detail.vue -------------------------------------------------------------------------------- /src/pages/keys/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/keys/Form.vue -------------------------------------------------------------------------------- /src/pages/keys/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/keys/List.vue -------------------------------------------------------------------------------- /src/pages/overview/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/overview/Overview.vue -------------------------------------------------------------------------------- /src/pages/plugins/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/plugins/Detail.vue -------------------------------------------------------------------------------- /src/pages/plugins/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/plugins/Form.vue -------------------------------------------------------------------------------- /src/pages/plugins/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/plugins/List.vue -------------------------------------------------------------------------------- /src/pages/plugins/PluginMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/plugins/PluginMeta.ts -------------------------------------------------------------------------------- /src/pages/plugins/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/plugins/Select.vue -------------------------------------------------------------------------------- /src/pages/routes/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/routes/Detail.vue -------------------------------------------------------------------------------- /src/pages/routes/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/routes/Form.vue -------------------------------------------------------------------------------- /src/pages/routes/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/routes/List.vue -------------------------------------------------------------------------------- /src/pages/services/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/services/Detail.vue -------------------------------------------------------------------------------- /src/pages/services/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/services/Form.vue -------------------------------------------------------------------------------- /src/pages/services/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/services/List.vue -------------------------------------------------------------------------------- /src/pages/snis/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/snis/Form.vue -------------------------------------------------------------------------------- /src/pages/snis/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/snis/List.vue -------------------------------------------------------------------------------- /src/pages/upstreams/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/upstreams/Detail.vue -------------------------------------------------------------------------------- /src/pages/upstreams/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/upstreams/Form.vue -------------------------------------------------------------------------------- /src/pages/upstreams/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/upstreams/List.vue -------------------------------------------------------------------------------- /src/pages/upstreams/TargetList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/upstreams/TargetList.vue -------------------------------------------------------------------------------- /src/pages/vaults/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/vaults/Detail.vue -------------------------------------------------------------------------------- /src/pages/vaults/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/vaults/Form.vue -------------------------------------------------------------------------------- /src/pages/vaults/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/pages/vaults/List.vue -------------------------------------------------------------------------------- /src/registerGlobalComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/registerGlobalComponents.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/services/apiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/services/apiService.ts -------------------------------------------------------------------------------- /src/stores/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/stores/info.ts -------------------------------------------------------------------------------- /src/stores/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/stores/types.ts -------------------------------------------------------------------------------- /src/styles/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/bootstrap-grid.css -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/form.scss -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/inputs.scss -------------------------------------------------------------------------------- /src/styles/reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/reboot.scss -------------------------------------------------------------------------------- /src/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/styles/typography.scss -------------------------------------------------------------------------------- /src/types/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/types/entity.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity' 2 | -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tests/playwright/base-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/base-test.ts -------------------------------------------------------------------------------- /tests/playwright/commands/autocompleteDeleteModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/autocompleteDeleteModal.ts -------------------------------------------------------------------------------- /tests/playwright/commands/clearKongResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/clearKongResources.ts -------------------------------------------------------------------------------- /tests/playwright/commands/clickConfigurationCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/clickConfigurationCopy.ts -------------------------------------------------------------------------------- /tests/playwright/commands/clickEntityListAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/clickEntityListAction.ts -------------------------------------------------------------------------------- /tests/playwright/commands/clickHeaderAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/clickHeaderAction.ts -------------------------------------------------------------------------------- /tests/playwright/commands/createKongResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/createKongResource.ts -------------------------------------------------------------------------------- /tests/playwright/commands/deleteKongResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/deleteKongResource.ts -------------------------------------------------------------------------------- /tests/playwright/commands/expandAdvancedFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/expandAdvancedFields.ts -------------------------------------------------------------------------------- /tests/playwright/commands/expectEmptyEntityList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/expectEmptyEntityList.ts -------------------------------------------------------------------------------- /tests/playwright/commands/fetchKongResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/fetchKongResource.ts -------------------------------------------------------------------------------- /tests/playwright/commands/fillEntityForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/fillEntityForm.ts -------------------------------------------------------------------------------- /tests/playwright/commands/getPageHeaderAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/getPageHeaderAction.ts -------------------------------------------------------------------------------- /tests/playwright/commands/getPropertyValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/getPropertyValue.ts -------------------------------------------------------------------------------- /tests/playwright/commands/selectMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/selectMethods.ts -------------------------------------------------------------------------------- /tests/playwright/commands/selectOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/selectOption.ts -------------------------------------------------------------------------------- /tests/playwright/commands/selectService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/selectService.ts -------------------------------------------------------------------------------- /tests/playwright/commands/switchDetailTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/switchDetailTab.ts -------------------------------------------------------------------------------- /tests/playwright/commands/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/type.ts -------------------------------------------------------------------------------- /tests/playwright/commands/waitAndDismissToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/waitAndDismissToast.ts -------------------------------------------------------------------------------- /tests/playwright/commands/withNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/commands/withNavigation.ts -------------------------------------------------------------------------------- /tests/playwright/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/env.d.ts -------------------------------------------------------------------------------- /tests/playwright/fixtures/certificates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/fixtures/certificates.ts -------------------------------------------------------------------------------- /tests/playwright/fixtures/jwk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/fixtures/jwk.ts -------------------------------------------------------------------------------- /tests/playwright/fixtures/pem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/fixtures/pem.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/helpers/console.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/helpers/misc.ts -------------------------------------------------------------------------------- /tests/playwright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/package.json -------------------------------------------------------------------------------- /tests/playwright/pages/ca-certificates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/ca-certificates.ts -------------------------------------------------------------------------------- /tests/playwright/pages/certificates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/certificates.ts -------------------------------------------------------------------------------- /tests/playwright/pages/consumers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/consumers.ts -------------------------------------------------------------------------------- /tests/playwright/pages/data-plane-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/data-plane-nodes.ts -------------------------------------------------------------------------------- /tests/playwright/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/index.ts -------------------------------------------------------------------------------- /tests/playwright/pages/key-sets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/key-sets.ts -------------------------------------------------------------------------------- /tests/playwright/pages/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/keys.ts -------------------------------------------------------------------------------- /tests/playwright/pages/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/plugins.ts -------------------------------------------------------------------------------- /tests/playwright/pages/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/routes.ts -------------------------------------------------------------------------------- /tests/playwright/pages/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/services.ts -------------------------------------------------------------------------------- /tests/playwright/pages/snis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/snis.ts -------------------------------------------------------------------------------- /tests/playwright/pages/upstreams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/upstreams.ts -------------------------------------------------------------------------------- /tests/playwright/pages/vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pages/vaults.ts -------------------------------------------------------------------------------- /tests/playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/playwright.config.ts -------------------------------------------------------------------------------- /tests/playwright/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/pnpm-lock.yaml -------------------------------------------------------------------------------- /tests/playwright/specs/ca-certificates/01-CACertificates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/ca-certificates/01-CACertificates.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/certificates/01-Certificates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/certificates/01-Certificates.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/consumers/01-Consumers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/consumers/01-Consumers.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/consumers/02-ConsumerCredentials.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/consumers/02-ConsumerCredentials.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/consumers/03-ConsumerPlugins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/consumers/03-ConsumerPlugins.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/data-plane-nodes/01-DataPlaneNodes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/data-plane-nodes/01-DataPlaneNodes.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/key-sets/01-KeySets.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/key-sets/01-KeySets.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/key-sets/02-Keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/key-sets/02-Keys.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/keys/01-Keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/keys/01-Keys.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/misc/01-EntityListPagination.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/misc/01-EntityListPagination.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/misc/02-NotFound.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/misc/02-NotFound.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/plugins/01-Plugins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/plugins/01-Plugins.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/plugins/02-PluginFilter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/plugins/02-PluginFilter.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/routes-expressions/01-Routes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/routes-expressions/01-Routes.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/routes/01-Routes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/routes/01-Routes.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/routes/02-RoutesPlugins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/routes/02-RoutesPlugins.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/services/01-Service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/services/01-Service.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/services/02-ServiceRoutes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/services/02-ServiceRoutes.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/services/03-ServicePlugins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/services/03-ServicePlugins.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/services/04-Filtering.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/services/04-Filtering.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/snis/01-SNIs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/snis/01-SNIs.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/snis/02-SNIsFilter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/snis/02-SNIsFilter.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/upstreams/01-Upstreams.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/upstreams/01-Upstreams.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/upstreams/02-UpstreamTargets.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/upstreams/02-UpstreamTargets.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/upstreams/03-UpstreamFilter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/upstreams/03-UpstreamFilter.spec.ts -------------------------------------------------------------------------------- /tests/playwright/specs/vaults/01-Vaults.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/specs/vaults/01-Vaults.spec.ts -------------------------------------------------------------------------------- /tests/playwright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tests/playwright/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-manager/HEAD/vite.config.ts --------------------------------------------------------------------------------