@meshery/schemas 1.2.8 → 1.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cloudApi.d.mts +1707 -1516
- package/dist/cloudApi.d.ts +1707 -1516
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta1/support/Support.d.mts +90 -0
- package/dist/constructs/v1beta1/support/Support.d.ts +90 -0
- package/dist/constructs/v1beta1/support/Support.js +1 -0
- package/dist/constructs/v1beta1/support/Support.mjs +0 -0
- package/dist/constructs/v1beta1/support/SupportSchema.d.mts +7 -0
- package/dist/constructs/v1beta1/support/SupportSchema.d.ts +7 -0
- package/dist/constructs/v1beta1/support/SupportSchema.js +2 -0
- package/dist/constructs/v1beta1/support/SupportSchema.mjs +2 -0
- package/dist/constructs/v1beta2/model/Model.d.mts +33 -0
- package/dist/constructs/v1beta2/model/Model.d.ts +33 -0
- package/dist/constructs/v1beta2/model/ModelSchema.js +2 -2
- package/dist/constructs/v1beta2/model/ModelSchema.mjs +2 -2
- package/dist/constructs/v1beta3/connection/Connection.d.mts +42 -0
- package/dist/constructs/v1beta3/connection/Connection.d.ts +42 -0
- package/dist/constructs/v1beta3/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta3/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta3/design/Design.d.mts +25 -0
- package/dist/constructs/v1beta3/design/Design.d.ts +25 -0
- package/dist/constructs/v1beta3/design/DesignSchema.js +3 -1
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +3 -1
- package/dist/constructs/v1beta3/filter/Filter.d.mts +19 -0
- package/dist/constructs/v1beta3/filter/Filter.d.ts +19 -0
- package/dist/constructs/v1beta3/filter/FilterSchema.js +5 -1
- package/dist/constructs/v1beta3/filter/FilterSchema.mjs +5 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +10 -10
- package/dist/index.mjs +10 -10
- package/dist/mesheryApi.d.mts +16 -0
- package/dist/mesheryApi.d.ts +16 -0
- package/package.json +1 -1
package/dist/mesheryApi.d.mts
CHANGED
|
@@ -3420,6 +3420,10 @@ type GetConnectionsApiResponse = {
|
|
|
3420
3420
|
id: string;
|
|
3421
3421
|
/** Connection Name */
|
|
3422
3422
|
name: string;
|
|
3423
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3424
|
+
description?: string;
|
|
3425
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3426
|
+
url?: string;
|
|
3423
3427
|
/** Associated Credential ID */
|
|
3424
3428
|
credentialId?: string;
|
|
3425
3429
|
/** Connection Type (platform, telemetry, collaboration) */
|
|
@@ -3504,6 +3508,10 @@ type RegisterConnectionApiResponse = {
|
|
|
3504
3508
|
id: string;
|
|
3505
3509
|
/** Connection Name */
|
|
3506
3510
|
name: string;
|
|
3511
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3512
|
+
description?: string;
|
|
3513
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3514
|
+
url?: string;
|
|
3507
3515
|
/** Associated Credential ID */
|
|
3508
3516
|
credentialId?: string;
|
|
3509
3517
|
/** Connection Type (platform, telemetry, collaboration) */
|
|
@@ -3577,6 +3585,10 @@ type GetConnectionByIdApiResponse = {
|
|
|
3577
3585
|
id: string;
|
|
3578
3586
|
/** Connection Name */
|
|
3579
3587
|
name: string;
|
|
3588
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3589
|
+
description?: string;
|
|
3590
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3591
|
+
url?: string;
|
|
3580
3592
|
/** Associated Credential ID */
|
|
3581
3593
|
credentialId?: string;
|
|
3582
3594
|
/** Connection Type (platform, telemetry, collaboration) */
|
|
@@ -3632,6 +3644,10 @@ type UpdateConnectionApiResponse = {
|
|
|
3632
3644
|
id: string;
|
|
3633
3645
|
/** Connection Name */
|
|
3634
3646
|
name: string;
|
|
3647
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3648
|
+
description?: string;
|
|
3649
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3650
|
+
url?: string;
|
|
3635
3651
|
/** Associated Credential ID */
|
|
3636
3652
|
credentialId?: string;
|
|
3637
3653
|
/** Connection Type (platform, telemetry, collaboration) */
|
package/dist/mesheryApi.d.ts
CHANGED
|
@@ -3420,6 +3420,10 @@ type GetConnectionsApiResponse = {
|
|
|
3420
3420
|
id: string;
|
|
3421
3421
|
/** Connection Name */
|
|
3422
3422
|
name: string;
|
|
3423
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3424
|
+
description?: string;
|
|
3425
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3426
|
+
url?: string;
|
|
3423
3427
|
/** Associated Credential ID */
|
|
3424
3428
|
credentialId?: string;
|
|
3425
3429
|
/** Connection Type (platform, telemetry, collaboration) */
|
|
@@ -3504,6 +3508,10 @@ type RegisterConnectionApiResponse = {
|
|
|
3504
3508
|
id: string;
|
|
3505
3509
|
/** Connection Name */
|
|
3506
3510
|
name: string;
|
|
3511
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3512
|
+
description?: string;
|
|
3513
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3514
|
+
url?: string;
|
|
3507
3515
|
/** Associated Credential ID */
|
|
3508
3516
|
credentialId?: string;
|
|
3509
3517
|
/** Connection Type (platform, telemetry, collaboration) */
|
|
@@ -3577,6 +3585,10 @@ type GetConnectionByIdApiResponse = {
|
|
|
3577
3585
|
id: string;
|
|
3578
3586
|
/** Connection Name */
|
|
3579
3587
|
name: string;
|
|
3588
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3589
|
+
description?: string;
|
|
3590
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3591
|
+
url?: string;
|
|
3580
3592
|
/** Associated Credential ID */
|
|
3581
3593
|
credentialId?: string;
|
|
3582
3594
|
/** Connection Type (platform, telemetry, collaboration) */
|
|
@@ -3632,6 +3644,10 @@ type UpdateConnectionApiResponse = {
|
|
|
3632
3644
|
id: string;
|
|
3633
3645
|
/** Connection Name */
|
|
3634
3646
|
name: string;
|
|
3647
|
+
/** Human-readable description of the connection and its purpose. */
|
|
3648
|
+
description?: string;
|
|
3649
|
+
/** URL of the remote resource this connection points to (e.g. the Helm repository URL, the Kubernetes API server endpoint, the Grafana instance URL). */
|
|
3650
|
+
url?: string;
|
|
3635
3651
|
/** Associated Credential ID */
|
|
3636
3652
|
credentialId?: string;
|
|
3637
3653
|
/** Connection Type (platform, telemetry, collaboration) */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshery/schemas",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "<p style=\"text-align:center;\" align=\"center\"><a href=\"https://meshery.io\"><picture> <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/readme/meshery-logo-light-text-side.svg\"> <source media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/readme/meshery-logo-dark-text-side.svg\"> <img src=\"https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/readme/meshery-logo-dark-text-side.svg\" alt=\"Meshery Logo\" width=\"70%\" /></picture></a><br /><br /></p> <p align=\"center\"> <a href=\"https://hub.docker.com/r/meshery/meshery\" alt=\"Docker pulls\"> <img src=\"https://img.shields.io/docker/pulls/meshery/meshery.svg\" /></a> <a href=\"https://github.com/issues?q=is%3Aopen+is%3Aissue+archived%3Afalse+org%meshery+org%3Ameshery+org%3Aservice-mesh-performance+org%3Aservice-mesh-patterns+org%3A+label%3A%22help+wanted%22+\" alt=\"GitHub issues by-label\"> <img src=\"https://img.shields.io/github/issues/meshery/meshery/help%20wanted.svg?color=informational\" /></a> <a href=\"https://github.com/meshery/meshery/blob/master/LICENSE\" alt=\"LICENSE\"> <img src=\"https://img.shields.io/github/license/meshery/meshery?color=brightgreen\" /></a> <a href=\"https://artifacthub.io/packages/helm/meshery/meshery\" alt=\"Artifact Hub Meshery\"> <img src=\"https://img.shields.io/endpoint?color=brightgreen&label=Helm%20Chart&style=plastic&url=https%3A%2F%2Fartifacthub.io%2Fbadge%2Frepository%2Fartifact-hub\" /></a> <a href=\"https://goreportcard.com/report/github.com/meshery/meshery\" alt=\"Go Report Card\"> <img src=\"https://goreportcard.com/badge/github.com/meshery/meshery\" /></a> <a href=\"https://github.com/meshery/meshery/actions\" alt=\"Build Status\"> <img src=\"https://img.shields.io/github/actions/workflow/status/meshery/meshery/release-drafter.yml\" /></a> <a href=\"https://bestpractices.coreinfrastructure.org/projects/3564\" alt=\"CLI Best Practices\"> <img src=\"https://bestpractices.coreinfrastructure.org/projects/3564/badge\" /></a> <a href=\"http://discuss.meshery.io\" alt=\"Discuss Users\"> <img src=\"https://img.shields.io/discourse/users?label=discuss&logo=discourse&server=https%3A%2F%2Fdiscuss.meshery.io\" /></a> <a href=\"https://slack.meshery.io\" alt=\"Join Slack\"> <img src=\"https://img.shields.io/badge/Slack-@meshery.svg?logo=slack\" /></a> <a href=\"https://twitter.com/intent/follow?screen_name=mesheryio\" alt=\"Twitter Follow\"> <img src=\"https://img.shields.io/twitter/follow/mesheryio.svg?label=Follow+Meshery&style=social\" /></a> <a href=\"https://github.com/meshery/meshery/releases\" alt=\"Meshery Downloads\"> <img src=\"https://img.shields.io/github/downloads/meshery/meshery/total\" /></a> <!-- <a href=\"https://app.fossa.com/projects/git%2Bgithub.com%2Fmeshery%2Fmeshery?ref=badge_shield\" alt=\"License Scan Report\"> <img src=\"https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmeshery%2Fmeshery.svg?type=shield\"/></a> --> </p>",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|