├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── fbug_report.md │ ├── feature_request.md │ ├── meshery-extensions_bug.md │ ├── meshery-extensions_feature.md │ ├── meshery-ui_bug.md │ ├── meshery-ui_feature.md │ └── models.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── comment-preview-on-pr │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── app │ │ └── main.py ├── agents.md ├── assets │ └── images │ │ ├── Meshery-celebration-Dark.svg │ │ ├── Meshery-celebration-Light.svg │ │ ├── binding_relationship.png │ │ ├── buttons │ │ ├── community.png │ │ ├── landscape.png │ │ └── smps.png │ │ ├── clone.png │ │ ├── fork.png │ │ ├── git-signoff-vscode.png │ │ ├── hierarchical_relationship.png │ │ ├── image-hub │ │ └── layer5-image-hub.png │ │ ├── layer5 │ │ ├── 5-light-bg.png │ │ └── layer5-tag-white-bg.png │ │ ├── meshery │ │ ├── full logo │ │ │ ├── meshery-logo-dark-tex-shadow.png │ │ │ ├── meshery-logo-dark-text-shadow.svg │ │ │ ├── meshery-logo-dark-text-side.png │ │ │ ├── meshery-logo-dark-text-side.svg │ │ │ ├── meshery-logo-dark-text.png │ │ │ ├── meshery-logo-dark-text.svg │ │ │ ├── meshery-logo-light-text-pad.png │ │ │ ├── meshery-logo-light-text-pad.svg │ │ │ ├── meshery-logo-light-text-shadow.png │ │ │ ├── meshery-logo-light-text-shadow.svg │ │ │ ├── meshery-logo-light-text-side.png │ │ │ ├── meshery-logo-light-text-side.svg │ │ │ ├── meshery-logo-light-text.png │ │ │ ├── meshery-logo-light-text.svg │ │ │ ├── meshery-logo-shadow-light-white-text-side.png │ │ │ ├── meshery-logo-shadow-light-white-text-side.svg │ │ │ ├── meshery-logo-white-text-shadow.png │ │ │ ├── meshery-logo-white-text-shadow.svg │ │ │ ├── meshery-logo-white-text-side.png │ │ │ ├── meshery-logo-white-text-side.svg │ │ │ ├── meshery-logo-white-text.png │ │ │ └── meshery-logo-white-text.svg │ │ ├── icon-only │ │ │ ├── meshery-light-icon-shadow.png │ │ │ ├── meshery-light-icon-shadow.svg │ │ │ ├── meshery-light-icon.png │ │ │ ├── meshery-light-icon.svg │ │ │ ├── meshery-white-icon.png │ │ │ └── meshery-white-icon.svg │ │ ├── meshery-logo-dark-text-side.png │ │ ├── meshery-logo-dark-text-side.svg │ │ ├── meshery-logo-dark-text.png │ │ ├── meshery-logo-light-text-side.svg │ │ ├── meshery-logo-tag-dark-text-side.png │ │ ├── meshery-logo-tag-light-text-side.png │ │ ├── meshery-logo.svg │ │ └── text-only │ │ │ ├── meshery-text-dark.png │ │ │ ├── meshery-text-dark.svg │ │ │ ├── meshery-text-white.png │ │ │ └── meshery-text-white.svg │ │ ├── mount_edge_relationship.png │ │ ├── network_policy_edge_relationship.png │ │ ├── readme │ │ ├── Layer5-MeshMentors.png │ │ ├── Meshery-Grafana-Charts.png │ │ ├── Meshery-client-architecture.svg │ │ ├── cncf-black.png │ │ ├── cncf-black.svg │ │ ├── cncf-horizontal-color.svg │ │ ├── cncf-white.png │ │ ├── cncf-white.svg │ │ ├── community.png │ │ ├── community.svg │ │ ├── deploying-linkerd-with-meshery.png │ │ ├── layer5-community-sign.png │ │ ├── meshery-logo-dark-text-side.svg │ │ ├── meshery-logo-dark-text.svg │ │ ├── meshery-logo-light-text-side.svg │ │ ├── meshery-logo-light-text.svg │ │ ├── meshery-policies-2.png │ │ ├── meshery-wasm.png │ │ ├── meshery_benchmark_screen.png │ │ ├── meshery_lifecycle_management.png │ │ ├── meshery_multi_mesh.png │ │ ├── mesheryctl.png │ │ ├── meshmap.gif │ │ ├── nginx.svg │ │ ├── opa-logo.svg │ │ ├── service mesh performance example.gif │ │ ├── slack.svg │ │ ├── smi-conformance-with-meshery.png │ │ ├── smp-dark-text.svg │ │ ├── traefik.svg │ │ └── webassembly_logo.svg │ │ ├── sibling_relationship.png │ │ ├── slack.png │ │ ├── smp-dark-text.svg │ │ └── twitter.png ├── config.yml ├── dependabot.yml ├── label-commenter-config.yml ├── labeler.yml ├── release-drafter.yml ├── security-insights.yml └── workflows │ ├── generate-artifacts-from-schemas.yml │ ├── label-commenter.yml │ ├── labeler.yml │ ├── publish-npm-package.yml │ ├── release-drafter.yml │ ├── release-notes.yml │ ├── slack.yml │ └── swagger.yml ├── .gitignore ├── CHANGELOG.md ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── SECURITY.md ├── _config.yml ├── artifacthub ├── artifacthub-repo.yml └── designs │ └── kubernetes_basic │ └── 1.0.0 │ ├── README.md │ ├── artifacthub-pkg.yml │ └── design.yml ├── compile-json-schema.mjs ├── compile-types.sh ├── config.yml ├── generate-golang.sh ├── go.mod ├── go.sum ├── index.md ├── meshery-schemas-0.8.90.tgz ├── models ├── conversion │ └── hub.go ├── core │ ├── core.go │ ├── datatype_map.go │ ├── datatype_map_test.go │ ├── datatype_null_time.go │ ├── datatype_null_time_test.go │ ├── helpers.go │ ├── helpers_test.go │ └── parameters.go ├── v1alpha1 │ ├── capability │ │ └── capability.go │ └── core │ │ ├── core.go │ │ └── helpers.go ├── v1alpha2 │ ├── catalog │ │ └── catalog.go │ ├── design_conversion.go │ └── patterns.go ├── v1alpha3 │ ├── const.go │ └── relationship │ │ ├── relationship.go │ │ └── relationship_helper.go └── v1beta1 │ ├── academy │ ├── academy.go │ └── helpers.go │ ├── badge │ └── badge.go │ ├── category │ ├── category.go │ └── category_helper.go │ ├── component │ ├── component.go │ └── component_helper.go │ ├── connection │ ├── connection.go │ ├── connection_helper.go │ └── meshsync_deployment_mode_test.go │ ├── const.go │ ├── environment │ ├── environment.go │ └── environment_helper.go │ ├── evaluation │ └── evaluation.go │ ├── event │ └── event.go │ ├── feature │ └── feature.go │ ├── import.go │ ├── invitation │ └── invitation.go │ ├── model │ ├── model.go │ └── model_helper.go │ ├── organization │ ├── helpers.go │ └── organization.go │ ├── pattern │ ├── design_conversion.go │ ├── evaluation_models.go │ └── pattern.go │ ├── plan │ ├── helpers.go │ └── plan.go │ ├── subcategory │ └── subcategory.go │ ├── subscription │ ├── helpers.go │ └── subscription.go │ ├── user │ └── user.go │ └── workspace │ └── workspace.go ├── openapi.config.yml ├── package.json ├── schema.go ├── schemas ├── base_cloud.yml ├── base_meshery.yml ├── cloud_openapi.yml ├── constructs │ ├── core.json │ ├── core_template.json │ ├── core_template.yaml │ ├── v1alpha1 │ │ ├── capability │ │ │ ├── capability.json │ │ │ ├── capability_template.json │ │ │ ├── capability_template.yaml │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── catalog_data.json │ │ ├── catalog_data_template.json │ │ ├── catalog_data_template.yaml │ │ ├── component.json │ │ ├── component_template.json │ │ ├── component_template.yaml │ │ ├── core │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── model.json │ │ ├── model_template.json │ │ ├── model_template.yaml │ │ ├── relationship.json │ │ ├── relationship_template.json │ │ ├── relationship_template.yaml │ │ ├── selector.json │ │ ├── selector_template.json │ │ └── selector_template.yaml │ ├── v1alpha2 │ │ ├── catalog │ │ │ ├── catalog.json │ │ │ ├── catalog_template.json │ │ │ ├── catalog_template.yaml │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── design.json │ │ ├── design_template.json │ │ ├── design_template.yaml │ │ ├── relationship.json │ │ ├── relationship_template.json │ │ ├── relationship_template.yaml │ │ ├── selector.json │ │ ├── selector_template.json │ │ └── selector_template.yaml │ ├── v1alpha3 │ │ ├── relationship.json │ │ ├── relationship_template.json │ │ ├── relationship_template.yaml │ │ ├── selector.json │ │ ├── selector_template.json │ │ └── selector_template.yaml │ ├── v1beta1 │ │ ├── academy │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── badge │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── category │ │ │ ├── category.json │ │ │ ├── category_template.json │ │ │ ├── category_template.yaml │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── component │ │ │ ├── component.json │ │ │ ├── component_template.json │ │ │ ├── component_template.yaml │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── connection │ │ │ ├── connection.json │ │ │ ├── connection_page.json │ │ │ ├── connection_page_template.json │ │ │ ├── connection_page_template.yaml │ │ │ ├── connection_template.json │ │ │ ├── connection_template.yaml │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── design │ │ │ ├── design.json │ │ │ ├── design_template.json │ │ │ ├── design_template.yaml │ │ │ └── openapi.yml │ │ ├── environment │ │ │ ├── environment.json │ │ │ ├── environment_template.json │ │ │ ├── environment_template.yaml │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── evaluation │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── event │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── feature │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── invitation │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── model │ │ │ ├── merged-openapi.yml │ │ │ ├── model.json │ │ │ ├── model_template.json │ │ │ ├── model_template.yaml │ │ │ └── openapi.yml │ │ ├── organization │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── pattern │ │ │ └── merged-openapi.yml │ │ ├── plan │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── subcategory │ │ │ ├── merged-openapi.yml │ │ │ ├── openapi.yml │ │ │ ├── subcategory.json │ │ │ ├── subcategory_template.json │ │ │ └── subcategory_template.yaml │ │ ├── subscription │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ ├── user │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ │ └── workspace │ │ │ ├── merged-openapi.yml │ │ │ └── openapi.yml │ └── v1beta2-draft │ │ ├── catalog_data.json │ │ ├── catalog_data_template.json │ │ ├── catalog_data_template.yaml │ │ ├── draft-v1beta2.json │ │ ├── draft-v1beta2_template.json │ │ └── draft-v1beta2_template.yaml ├── merged_openapi.yml ├── meshery_openapi.yml └── openapi.yml ├── scripts ├── convert-openapi-yml-to-json.js ├── filterOpenapiByTag.js ├── oapi-codegen-config.yml └── ref-resolver.js ├── tsconfig.json ├── tsup.config.ts └── typescript ├── README.md ├── Users └── l │ └── code │ └── schemas │ └── schemas │ └── SchemasOpenApiSchema.ts ├── constructs ├── CoreSchema.ts ├── core.d.ts ├── v1alpha1 │ ├── ComponentSchema.ts │ ├── ModelSchema.ts │ ├── RelationshipSchema.ts │ ├── capability │ │ ├── CapabilityOpenApiSchema.ts │ │ ├── CapabilitySchema.ts │ │ └── capability.d.ts │ ├── catalog_data.d.ts │ ├── component.d.ts │ ├── core │ │ └── CoreOpenApiSchema.ts │ ├── model.d.ts │ ├── relationship.d.ts │ └── selector.d.ts ├── v1alpha2 │ ├── RelationshipSchema.ts │ ├── catalog │ │ ├── CatalogOpenApiSchema.ts │ │ └── catalog.d.ts │ ├── design.d.ts │ ├── relationship.d.ts │ └── selector.d.ts ├── v1alpha3 │ ├── RelationshipSchema.ts │ ├── V1alpha3OpenApiSchema.ts │ ├── relationship.d.ts │ └── selector.d.ts ├── v1beta1 │ ├── ConnectionSchema.ts │ ├── academy │ │ └── AcademyOpenApiSchema.ts │ ├── badge │ │ └── BadgeOpenApiSchema.ts │ ├── category │ │ ├── CategoryOpenApiSchema.ts │ │ ├── CategorySchema.ts │ │ └── category.d.ts │ ├── component │ │ ├── ComponentOpenApiSchema.ts │ │ ├── ComponentSchema.ts │ │ └── component.d.ts │ ├── connection.d.ts │ ├── connection │ │ ├── ConnectionOpenApiSchema.ts │ │ ├── connection.d.ts │ │ └── connection_page.d.ts │ ├── design │ │ ├── DesignOpenApiSchema.ts │ │ └── design.d.ts │ ├── environment │ │ ├── EnvironmentOpenApiSchema.ts │ │ └── environment.d.ts │ ├── evaluation │ │ └── EvaluationOpenApiSchema.ts │ ├── event │ │ └── EventOpenApiSchema.ts │ ├── feature │ │ └── FeatureOpenApiSchema.ts │ ├── invitation │ │ └── InvitationOpenApiSchema.ts │ ├── model │ │ ├── ModelOpenApiSchema.ts │ │ ├── ModelSchema.ts │ │ └── model.d.ts │ ├── organization │ │ └── OrganizationOpenApiSchema.ts │ ├── plan │ │ └── PlanOpenApiSchema.ts │ ├── subcategory │ │ ├── SubcategoryOpenApiSchema.ts │ │ └── subcategory.d.ts │ ├── subscription │ │ └── SubscriptionOpenApiSchema.ts │ ├── user │ │ └── UserOpenApiSchema.ts │ └── workspace │ │ └── WorkspaceOpenApiSchema.ts └── v1beta2-draft │ ├── catalog_data.d.ts │ └── draft-v1beta2.d.ts ├── home ├── aabid │ └── workplace │ │ └── layer5 │ │ └── schemas │ │ └── schemas │ │ └── SchemasOpenApiSchema.ts └── runner │ └── work │ └── schemas │ └── schemas │ └── schemas │ └── SchemasOpenApiSchema.ts ├── index.ts ├── openapi.d.ts └── rtk ├── api.ts ├── cloud-rtk-config.ts ├── cloud.ts ├── meshery-rtk-config.ts └── meshery.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fbug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/fbug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meshery-extensions_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/meshery-extensions_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meshery-extensions_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/meshery-extensions_feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meshery-ui_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/meshery-ui_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meshery-ui_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/meshery-ui_feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/ISSUE_TEMPLATE/models.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/comment-preview-on-pr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/actions/comment-preview-on-pr/Dockerfile -------------------------------------------------------------------------------- /.github/actions/comment-preview-on-pr/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/actions/comment-preview-on-pr/action.yml -------------------------------------------------------------------------------- /.github/actions/comment-preview-on-pr/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/actions/comment-preview-on-pr/app/main.py -------------------------------------------------------------------------------- /.github/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/agents.md -------------------------------------------------------------------------------- /.github/assets/images/Meshery-celebration-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/Meshery-celebration-Dark.svg -------------------------------------------------------------------------------- /.github/assets/images/Meshery-celebration-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/Meshery-celebration-Light.svg -------------------------------------------------------------------------------- /.github/assets/images/binding_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/binding_relationship.png -------------------------------------------------------------------------------- /.github/assets/images/buttons/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/buttons/community.png -------------------------------------------------------------------------------- /.github/assets/images/buttons/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/buttons/landscape.png -------------------------------------------------------------------------------- /.github/assets/images/buttons/smps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/buttons/smps.png -------------------------------------------------------------------------------- /.github/assets/images/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/clone.png -------------------------------------------------------------------------------- /.github/assets/images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/fork.png -------------------------------------------------------------------------------- /.github/assets/images/git-signoff-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/git-signoff-vscode.png -------------------------------------------------------------------------------- /.github/assets/images/hierarchical_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/hierarchical_relationship.png -------------------------------------------------------------------------------- /.github/assets/images/image-hub/layer5-image-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/image-hub/layer5-image-hub.png -------------------------------------------------------------------------------- /.github/assets/images/layer5/5-light-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/layer5/5-light-bg.png -------------------------------------------------------------------------------- /.github/assets/images/layer5/layer5-tag-white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/layer5/layer5-tag-white-bg.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-dark-tex-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-dark-tex-shadow.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-dark-text-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-dark-text-shadow.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-dark-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-dark-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-dark-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-dark-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-dark-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-dark-text.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-dark-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-dark-text.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text-pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text-pad.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text-pad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text-pad.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text-shadow.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text-shadow.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-light-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-light-text.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-shadow-light-white-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-shadow-light-white-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-shadow-light-white-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-shadow-light-white-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-white-text-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-white-text-shadow.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-white-text-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-white-text-shadow.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-white-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-white-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-white-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-white-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-white-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-white-text.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/full logo/meshery-logo-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/full logo/meshery-logo-white-text.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/icon-only/meshery-light-icon-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/icon-only/meshery-light-icon-shadow.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/icon-only/meshery-light-icon-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/icon-only/meshery-light-icon-shadow.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/icon-only/meshery-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/icon-only/meshery-light-icon.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/icon-only/meshery-light-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/icon-only/meshery-light-icon.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/icon-only/meshery-white-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/icon-only/meshery-white-icon.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/icon-only/meshery-white-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/icon-only/meshery-white-icon.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo-dark-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo-dark-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo-dark-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo-dark-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo-dark-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo-dark-text.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo-light-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo-light-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo-tag-dark-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo-tag-dark-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo-tag-light-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo-tag-light-text-side.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/meshery-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/meshery-logo.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/text-only/meshery-text-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/text-only/meshery-text-dark.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/text-only/meshery-text-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/text-only/meshery-text-dark.svg -------------------------------------------------------------------------------- /.github/assets/images/meshery/text-only/meshery-text-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/text-only/meshery-text-white.png -------------------------------------------------------------------------------- /.github/assets/images/meshery/text-only/meshery-text-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/meshery/text-only/meshery-text-white.svg -------------------------------------------------------------------------------- /.github/assets/images/mount_edge_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/mount_edge_relationship.png -------------------------------------------------------------------------------- /.github/assets/images/network_policy_edge_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/network_policy_edge_relationship.png -------------------------------------------------------------------------------- /.github/assets/images/readme/Layer5-MeshMentors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/Layer5-MeshMentors.png -------------------------------------------------------------------------------- /.github/assets/images/readme/Meshery-Grafana-Charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/Meshery-Grafana-Charts.png -------------------------------------------------------------------------------- /.github/assets/images/readme/Meshery-client-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/Meshery-client-architecture.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/cncf-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/cncf-black.png -------------------------------------------------------------------------------- /.github/assets/images/readme/cncf-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/cncf-black.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/cncf-horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/cncf-horizontal-color.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/cncf-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/cncf-white.png -------------------------------------------------------------------------------- /.github/assets/images/readme/cncf-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/cncf-white.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/community.png -------------------------------------------------------------------------------- /.github/assets/images/readme/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/community.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/deploying-linkerd-with-meshery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/deploying-linkerd-with-meshery.png -------------------------------------------------------------------------------- /.github/assets/images/readme/layer5-community-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/layer5-community-sign.png -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery-logo-dark-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery-logo-dark-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery-logo-dark-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery-logo-dark-text.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery-logo-light-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery-logo-light-text-side.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery-logo-light-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery-logo-light-text.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery-policies-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery-policies-2.png -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery-wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery-wasm.png -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery_benchmark_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery_benchmark_screen.png -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery_lifecycle_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery_lifecycle_management.png -------------------------------------------------------------------------------- /.github/assets/images/readme/meshery_multi_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshery_multi_mesh.png -------------------------------------------------------------------------------- /.github/assets/images/readme/mesheryctl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/mesheryctl.png -------------------------------------------------------------------------------- /.github/assets/images/readme/meshmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/meshmap.gif -------------------------------------------------------------------------------- /.github/assets/images/readme/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/nginx.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/opa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/opa-logo.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/service mesh performance example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/service mesh performance example.gif -------------------------------------------------------------------------------- /.github/assets/images/readme/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/slack.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/smi-conformance-with-meshery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/smi-conformance-with-meshery.png -------------------------------------------------------------------------------- /.github/assets/images/readme/smp-dark-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/smp-dark-text.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/traefik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/traefik.svg -------------------------------------------------------------------------------- /.github/assets/images/readme/webassembly_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/readme/webassembly_logo.svg -------------------------------------------------------------------------------- /.github/assets/images/sibling_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/sibling_relationship.png -------------------------------------------------------------------------------- /.github/assets/images/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/slack.png -------------------------------------------------------------------------------- /.github/assets/images/smp-dark-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/smp-dark-text.svg -------------------------------------------------------------------------------- /.github/assets/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/assets/images/twitter.png -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/security-insights.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/security-insights.yml -------------------------------------------------------------------------------- /.github/workflows/generate-artifacts-from-schemas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/generate-artifacts-from-schemas.yml -------------------------------------------------------------------------------- /.github/workflows/label-commenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/label-commenter.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/publish-npm-package.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/slack.yml -------------------------------------------------------------------------------- /.github/workflows/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.github/workflows/swagger.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | See https://docs.meshery.io/project/releases 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | schemas.meshery.io 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/_config.yml -------------------------------------------------------------------------------- /artifacthub/artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/artifacthub/artifacthub-repo.yml -------------------------------------------------------------------------------- /artifacthub/designs/kubernetes_basic/1.0.0/README.md: -------------------------------------------------------------------------------- 1 | Basic Kubernetes design deploying a service and pod -------------------------------------------------------------------------------- /artifacthub/designs/kubernetes_basic/1.0.0/artifacthub-pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/artifacthub/designs/kubernetes_basic/1.0.0/artifacthub-pkg.yml -------------------------------------------------------------------------------- /artifacthub/designs/kubernetes_basic/1.0.0/design.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/artifacthub/designs/kubernetes_basic/1.0.0/design.yml -------------------------------------------------------------------------------- /compile-json-schema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/compile-json-schema.mjs -------------------------------------------------------------------------------- /compile-types.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/compile-types.sh -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/config.yml -------------------------------------------------------------------------------- /generate-golang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/generate-golang.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/go.sum -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/index.md -------------------------------------------------------------------------------- /meshery-schemas-0.8.90.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/meshery-schemas-0.8.90.tgz -------------------------------------------------------------------------------- /models/conversion/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/conversion/hub.go -------------------------------------------------------------------------------- /models/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/core.go -------------------------------------------------------------------------------- /models/core/datatype_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/datatype_map.go -------------------------------------------------------------------------------- /models/core/datatype_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/datatype_map_test.go -------------------------------------------------------------------------------- /models/core/datatype_null_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/datatype_null_time.go -------------------------------------------------------------------------------- /models/core/datatype_null_time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/datatype_null_time_test.go -------------------------------------------------------------------------------- /models/core/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/helpers.go -------------------------------------------------------------------------------- /models/core/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/helpers_test.go -------------------------------------------------------------------------------- /models/core/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/core/parameters.go -------------------------------------------------------------------------------- /models/v1alpha1/capability/capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha1/capability/capability.go -------------------------------------------------------------------------------- /models/v1alpha1/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha1/core/core.go -------------------------------------------------------------------------------- /models/v1alpha1/core/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha1/core/helpers.go -------------------------------------------------------------------------------- /models/v1alpha2/catalog/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha2/catalog/catalog.go -------------------------------------------------------------------------------- /models/v1alpha2/design_conversion.go: -------------------------------------------------------------------------------- 1 | package v1alpha2 2 | 3 | func(p *PatternFile) Hub(){} 4 | -------------------------------------------------------------------------------- /models/v1alpha2/patterns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha2/patterns.go -------------------------------------------------------------------------------- /models/v1alpha3/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha3/const.go -------------------------------------------------------------------------------- /models/v1alpha3/relationship/relationship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha3/relationship/relationship.go -------------------------------------------------------------------------------- /models/v1alpha3/relationship/relationship_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1alpha3/relationship/relationship_helper.go -------------------------------------------------------------------------------- /models/v1beta1/academy/academy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/academy/academy.go -------------------------------------------------------------------------------- /models/v1beta1/academy/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/academy/helpers.go -------------------------------------------------------------------------------- /models/v1beta1/badge/badge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/badge/badge.go -------------------------------------------------------------------------------- /models/v1beta1/category/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/category/category.go -------------------------------------------------------------------------------- /models/v1beta1/category/category_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/category/category_helper.go -------------------------------------------------------------------------------- /models/v1beta1/component/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/component/component.go -------------------------------------------------------------------------------- /models/v1beta1/component/component_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/component/component_helper.go -------------------------------------------------------------------------------- /models/v1beta1/connection/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/connection/connection.go -------------------------------------------------------------------------------- /models/v1beta1/connection/connection_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/connection/connection_helper.go -------------------------------------------------------------------------------- /models/v1beta1/connection/meshsync_deployment_mode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/connection/meshsync_deployment_mode_test.go -------------------------------------------------------------------------------- /models/v1beta1/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/const.go -------------------------------------------------------------------------------- /models/v1beta1/environment/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/environment/environment.go -------------------------------------------------------------------------------- /models/v1beta1/environment/environment_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/environment/environment_helper.go -------------------------------------------------------------------------------- /models/v1beta1/evaluation/evaluation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/evaluation/evaluation.go -------------------------------------------------------------------------------- /models/v1beta1/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/event/event.go -------------------------------------------------------------------------------- /models/v1beta1/feature/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/feature/feature.go -------------------------------------------------------------------------------- /models/v1beta1/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/import.go -------------------------------------------------------------------------------- /models/v1beta1/invitation/invitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/invitation/invitation.go -------------------------------------------------------------------------------- /models/v1beta1/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/model/model.go -------------------------------------------------------------------------------- /models/v1beta1/model/model_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/model/model_helper.go -------------------------------------------------------------------------------- /models/v1beta1/organization/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/organization/helpers.go -------------------------------------------------------------------------------- /models/v1beta1/organization/organization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/organization/organization.go -------------------------------------------------------------------------------- /models/v1beta1/pattern/design_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/pattern/design_conversion.go -------------------------------------------------------------------------------- /models/v1beta1/pattern/evaluation_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/pattern/evaluation_models.go -------------------------------------------------------------------------------- /models/v1beta1/pattern/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/pattern/pattern.go -------------------------------------------------------------------------------- /models/v1beta1/plan/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/plan/helpers.go -------------------------------------------------------------------------------- /models/v1beta1/plan/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/plan/plan.go -------------------------------------------------------------------------------- /models/v1beta1/subcategory/subcategory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/subcategory/subcategory.go -------------------------------------------------------------------------------- /models/v1beta1/subscription/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/subscription/helpers.go -------------------------------------------------------------------------------- /models/v1beta1/subscription/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/subscription/subscription.go -------------------------------------------------------------------------------- /models/v1beta1/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/user/user.go -------------------------------------------------------------------------------- /models/v1beta1/workspace/workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/models/v1beta1/workspace/workspace.go -------------------------------------------------------------------------------- /openapi.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/openapi.config.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/package.json -------------------------------------------------------------------------------- /schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schema.go -------------------------------------------------------------------------------- /schemas/base_cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/base_cloud.yml -------------------------------------------------------------------------------- /schemas/base_meshery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/base_meshery.yml -------------------------------------------------------------------------------- /schemas/cloud_openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/cloud_openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/core.json -------------------------------------------------------------------------------- /schemas/constructs/core_template.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /schemas/constructs/core_template.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/capability/capability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/capability/capability.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/capability/capability_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/capability/capability_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/capability/capability_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/capability/capability_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/capability/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/capability/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/capability/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/capability/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/catalog_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/catalog_data.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/catalog_data_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/catalog_data_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/catalog_data_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/catalog_data_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/component.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/component_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/component_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/component_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/component_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/core/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/core/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/core/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/core/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/model.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/model_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/model_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/model_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/model_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/relationship.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/relationship_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/relationship_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/relationship_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/relationship_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha1/selector.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/selector_template.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /schemas/constructs/v1alpha1/selector_template.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/catalog/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/catalog/catalog.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/catalog/catalog_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/catalog/catalog_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/catalog/catalog_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/catalog/catalog_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/catalog/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/catalog/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/catalog/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/catalog/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/design.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/design_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/design_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/design_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/design_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/relationship.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/relationship_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/relationship_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/relationship_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/relationship_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha2/selector.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/selector_template.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /schemas/constructs/v1alpha2/selector_template.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /schemas/constructs/v1alpha3/relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha3/relationship.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha3/relationship_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha3/relationship_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha3/relationship_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha3/relationship_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1alpha3/selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1alpha3/selector.json -------------------------------------------------------------------------------- /schemas/constructs/v1alpha3/selector_template.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /schemas/constructs/v1alpha3/selector_template.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/academy/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/academy/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/academy/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/academy/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/badge/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/badge/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/badge/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/badge/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/category/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/category/category.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/category/category_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/category/category_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/category/category_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/category/category_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/category/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/category/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/category/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/category/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/component/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/component/component.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/component/component_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/component/component_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/component/component_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/component/component_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/component/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/component/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/component/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/component/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/connection.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/connection_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/connection_page.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/connection_page_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/connection_page_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/connection_page_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/connection_page_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/connection_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/connection_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/connection_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/connection_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/connection/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/connection/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/design/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/design/design.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/design/design_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/design/design_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/design/design_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/design/design_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/design/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/design/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/environment/environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/environment/environment.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/environment/environment_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/environment/environment_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/environment/environment_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/environment/environment_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/environment/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/environment/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/environment/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/environment/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/evaluation/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/evaluation/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/evaluation/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/evaluation/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/event/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/event/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/event/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/event/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/feature/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/feature/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/feature/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/feature/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/invitation/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/invitation/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/invitation/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/invitation/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/model/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/model/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/model/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/model/model.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/model/model_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/model/model_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/model/model_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/model/model_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/model/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/model/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/organization/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/organization/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/organization/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/organization/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/pattern/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/pattern/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/plan/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/plan/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/plan/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/plan/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subcategory/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/subcategory/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subcategory/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/subcategory/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subcategory/subcategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/subcategory/subcategory.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subcategory/subcategory_template.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subcategory/subcategory_template.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subscription/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/subscription/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/subscription/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/subscription/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/user/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/user/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/user/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/user/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/workspace/merged-openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/workspace/merged-openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta1/workspace/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta1/workspace/openapi.yml -------------------------------------------------------------------------------- /schemas/constructs/v1beta2-draft/catalog_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta2-draft/catalog_data.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta2-draft/catalog_data_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta2-draft/catalog_data_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta2-draft/catalog_data_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta2-draft/catalog_data_template.yaml -------------------------------------------------------------------------------- /schemas/constructs/v1beta2-draft/draft-v1beta2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta2-draft/draft-v1beta2.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta2-draft/draft-v1beta2_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta2-draft/draft-v1beta2_template.json -------------------------------------------------------------------------------- /schemas/constructs/v1beta2-draft/draft-v1beta2_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/constructs/v1beta2-draft/draft-v1beta2_template.yaml -------------------------------------------------------------------------------- /schemas/merged_openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/merged_openapi.yml -------------------------------------------------------------------------------- /schemas/meshery_openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/meshery_openapi.yml -------------------------------------------------------------------------------- /schemas/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/schemas/openapi.yml -------------------------------------------------------------------------------- /scripts/convert-openapi-yml-to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/scripts/convert-openapi-yml-to-json.js -------------------------------------------------------------------------------- /scripts/filterOpenapiByTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/scripts/filterOpenapiByTag.js -------------------------------------------------------------------------------- /scripts/oapi-codegen-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/scripts/oapi-codegen-config.yml -------------------------------------------------------------------------------- /scripts/ref-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/scripts/ref-resolver.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/README.md -------------------------------------------------------------------------------- /typescript/Users/l/code/schemas/schemas/SchemasOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/Users/l/code/schemas/schemas/SchemasOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/CoreSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/CoreSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/core.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/ComponentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/ComponentSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/ModelSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/ModelSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/RelationshipSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/RelationshipSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/capability/CapabilityOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/capability/CapabilityOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/capability/CapabilitySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/capability/CapabilitySchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/capability/capability.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/capability/capability.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/catalog_data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/catalog_data.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/component.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/core/CoreOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/core/CoreOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/model.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/relationship.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/relationship.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha1/selector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha1/selector.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha2/RelationshipSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha2/RelationshipSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha2/catalog/CatalogOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha2/catalog/CatalogOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha2/catalog/catalog.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha2/catalog/catalog.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha2/design.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha2/design.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha2/relationship.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha2/relationship.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha2/selector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha2/selector.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha3/RelationshipSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha3/RelationshipSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha3/V1alpha3OpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha3/V1alpha3OpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha3/relationship.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha3/relationship.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1alpha3/selector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1alpha3/selector.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/ConnectionSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/ConnectionSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/academy/AcademyOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/academy/AcademyOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/badge/BadgeOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/badge/BadgeOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/category/CategoryOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/category/CategoryOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/category/CategorySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/category/CategorySchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/category/category.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/category/category.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/component/ComponentOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/component/ComponentOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/component/ComponentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/component/ComponentSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/component/component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/component/component.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/connection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/connection.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/connection/ConnectionOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/connection/ConnectionOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/connection/connection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/connection/connection.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/connection/connection_page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/connection/connection_page.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/design/DesignOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/design/DesignOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/design/design.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/design/design.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/environment/EnvironmentOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/environment/EnvironmentOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/environment/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/environment/environment.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/evaluation/EvaluationOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/evaluation/EvaluationOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/event/EventOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/event/EventOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/feature/FeatureOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/feature/FeatureOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/invitation/InvitationOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/invitation/InvitationOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/model/ModelOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/model/ModelOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/model/ModelSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/model/ModelSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/model/model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/model/model.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/organization/OrganizationOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/organization/OrganizationOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/plan/PlanOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/plan/PlanOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/subcategory/SubcategoryOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/subcategory/SubcategoryOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/subcategory/subcategory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/subcategory/subcategory.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/subscription/SubscriptionOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/subscription/SubscriptionOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/user/UserOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/user/UserOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta1/workspace/WorkspaceOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta1/workspace/WorkspaceOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta2-draft/catalog_data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta2-draft/catalog_data.d.ts -------------------------------------------------------------------------------- /typescript/constructs/v1beta2-draft/draft-v1beta2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/constructs/v1beta2-draft/draft-v1beta2.d.ts -------------------------------------------------------------------------------- /typescript/home/aabid/workplace/layer5/schemas/schemas/SchemasOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/home/aabid/workplace/layer5/schemas/schemas/SchemasOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/home/runner/work/schemas/schemas/schemas/SchemasOpenApiSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/home/runner/work/schemas/schemas/schemas/SchemasOpenApiSchema.ts -------------------------------------------------------------------------------- /typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/index.ts -------------------------------------------------------------------------------- /typescript/openapi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/openapi.d.ts -------------------------------------------------------------------------------- /typescript/rtk/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/rtk/api.ts -------------------------------------------------------------------------------- /typescript/rtk/cloud-rtk-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/rtk/cloud-rtk-config.ts -------------------------------------------------------------------------------- /typescript/rtk/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/rtk/cloud.ts -------------------------------------------------------------------------------- /typescript/rtk/meshery-rtk-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/rtk/meshery-rtk-config.ts -------------------------------------------------------------------------------- /typescript/rtk/meshery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/schemas/HEAD/typescript/rtk/meshery.ts --------------------------------------------------------------------------------