@meshery/schemas 1.3.31 → 1.3.32
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 +7 -5
- package/dist/cloudApi.d.ts +7 -5
- package/dist/constructs/v1beta1/system/System.d.ts +764 -14
- package/dist/constructs/v1beta1/system/SystemSchema.js +1 -1
- package/dist/constructs/v1beta1/system/SystemSchema.mjs +1 -1
- package/dist/constructs/v1beta3/connection/Connection.d.ts +235 -15
- package/dist/constructs/v1beta3/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta3/connection/ConnectionSchema.mjs +1 -1
- package/dist/index.d.mts +537 -40
- package/dist/index.d.ts +537 -40
- package/dist/mesheryApi.d.mts +1500 -250
- package/dist/mesheryApi.d.ts +1500 -250
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -6761,13 +6761,13 @@ type GetKubernetesContextApiResponse = {
|
|
|
6761
6761
|
cluster?: object;
|
|
6762
6762
|
/** API server URL of the Kubernetes cluster. */
|
|
6763
6763
|
server?: string;
|
|
6764
|
-
/**
|
|
6764
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6765
6765
|
owner?: string;
|
|
6766
|
-
/**
|
|
6766
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6767
6767
|
createdBy?: string;
|
|
6768
|
-
/**
|
|
6768
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6769
6769
|
mesheryInstanceId?: string;
|
|
6770
|
-
/**
|
|
6770
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6771
6771
|
kubernetesServerId?: string;
|
|
6772
6772
|
/** How Meshery is deployed relative to the cluster (e.g. in_cluster, out_of_cluster). */
|
|
6773
6773
|
deploymentType?: string;
|
|
@@ -6777,8 +6777,10 @@ type GetKubernetesContextApiResponse = {
|
|
|
6777
6777
|
createdAt?: string;
|
|
6778
6778
|
/** Timestamp when the underlying connection was last updated. */
|
|
6779
6779
|
updatedAt?: string;
|
|
6780
|
-
/**
|
|
6780
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6781
6781
|
connectionId?: string;
|
|
6782
|
+
/** Whether this context's API server answered the probe run while its kubeconfig was processed. Discovery and import surface unreachable contexts too, so they can still be registered; reachability only gates the connected transition. */
|
|
6783
|
+
reachable?: boolean;
|
|
6782
6784
|
}[];
|
|
6783
6785
|
};
|
|
6784
6786
|
type GetKubernetesContextApiArg = {
|
package/dist/cloudApi.d.ts
CHANGED
|
@@ -6761,13 +6761,13 @@ type GetKubernetesContextApiResponse = {
|
|
|
6761
6761
|
cluster?: object;
|
|
6762
6762
|
/** API server URL of the Kubernetes cluster. */
|
|
6763
6763
|
server?: string;
|
|
6764
|
-
/**
|
|
6764
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6765
6765
|
owner?: string;
|
|
6766
|
-
/**
|
|
6766
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6767
6767
|
createdBy?: string;
|
|
6768
|
-
/**
|
|
6768
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6769
6769
|
mesheryInstanceId?: string;
|
|
6770
|
-
/**
|
|
6770
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6771
6771
|
kubernetesServerId?: string;
|
|
6772
6772
|
/** How Meshery is deployed relative to the cluster (e.g. in_cluster, out_of_cluster). */
|
|
6773
6773
|
deploymentType?: string;
|
|
@@ -6777,8 +6777,10 @@ type GetKubernetesContextApiResponse = {
|
|
|
6777
6777
|
createdAt?: string;
|
|
6778
6778
|
/** Timestamp when the underlying connection was last updated. */
|
|
6779
6779
|
updatedAt?: string;
|
|
6780
|
-
/**
|
|
6780
|
+
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6781
6781
|
connectionId?: string;
|
|
6782
|
+
/** Whether this context's API server answered the probe run while its kubeconfig was processed. Discovery and import surface unreachable contexts too, so they can still be registered; reachability only gates the connected transition. */
|
|
6783
|
+
reachable?: boolean;
|
|
6782
6784
|
}[];
|
|
6783
6785
|
};
|
|
6784
6786
|
type GetKubernetesContextApiArg = {
|