@meshery/schemas 1.0.1 → 1.0.3
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 +18 -18
- package/dist/cloudApi.d.ts +18 -18
- package/dist/constructs/v1alpha1/core/CoreSchema.js +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta1/component/Component.d.mts +2 -2
- package/dist/constructs/v1beta1/component/Component.d.ts +2 -2
- package/dist/constructs/v1beta1/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta1/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta1/connection/Connection.d.mts +18 -18
- package/dist/constructs/v1beta1/connection/Connection.d.ts +18 -18
- package/dist/constructs/v1beta1/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta1/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta1/core/CoreSchema.js +1 -1
- package/dist/constructs/v1beta1/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.mts +8 -8
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.ts +8 -8
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.js +8 -8
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +8 -8
- package/dist/constructs/v1beta1/model/Model.d.mts +2 -2
- package/dist/constructs/v1beta1/model/Model.d.ts +2 -2
- package/dist/constructs/v1beta1/model/ModelSchema.js +1 -1
- package/dist/constructs/v1beta1/model/ModelSchema.mjs +1 -1
- package/dist/constructs/v1beta1/pattern/Pattern.d.mts +22 -22
- package/dist/constructs/v1beta1/pattern/Pattern.d.ts +22 -22
- package/dist/constructs/v1beta1/pattern/PatternSchema.js +22 -22
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +22 -22
- package/dist/constructs/v1beta1/workspace/Workspace.d.mts +4 -4
- package/dist/constructs/v1beta1/workspace/Workspace.d.ts +4 -4
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.js +4 -4
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.mjs +4 -4
- package/dist/constructs/v1beta2/component/Component.d.mts +2 -2
- package/dist/constructs/v1beta2/component/Component.d.ts +2 -2
- package/dist/constructs/v1beta2/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta2/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta2/connection/Connection.d.mts +6 -6
- package/dist/constructs/v1beta2/connection/Connection.d.ts +6 -6
- package/dist/constructs/v1beta2/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta2/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta2/core/CoreSchema.js +1 -1
- package/dist/constructs/v1beta2/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta2/design/Design.d.mts +22 -22
- package/dist/constructs/v1beta2/design/Design.d.ts +22 -22
- package/dist/constructs/v1beta2/design/DesignSchema.js +22 -22
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +22 -22
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.js +1 -1
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.mjs +1 -1
- package/dist/index.js +53 -53
- package/dist/index.mjs +53 -53
- package/dist/mesheryApi.d.mts +9 -9
- package/dist/mesheryApi.d.ts +9 -9
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
|
@@ -553,11 +553,11 @@ interface components {
|
|
|
553
553
|
* Format: uuid
|
|
554
554
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
555
555
|
*/
|
|
556
|
-
|
|
556
|
+
credentialId?: string;
|
|
557
557
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
558
558
|
type: string;
|
|
559
559
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
560
|
-
|
|
560
|
+
subType: string;
|
|
561
561
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
562
562
|
kind: string;
|
|
563
563
|
/** @description Additional connection metadata */
|
|
@@ -2903,11 +2903,11 @@ interface operations {
|
|
|
2903
2903
|
* Format: uuid
|
|
2904
2904
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
2905
2905
|
*/
|
|
2906
|
-
|
|
2906
|
+
credentialId?: string;
|
|
2907
2907
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
2908
2908
|
type: string;
|
|
2909
2909
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
2910
|
-
|
|
2910
|
+
subType: string;
|
|
2911
2911
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
2912
2912
|
kind: string;
|
|
2913
2913
|
/** @description Additional connection metadata */
|
|
@@ -553,11 +553,11 @@ interface components {
|
|
|
553
553
|
* Format: uuid
|
|
554
554
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
555
555
|
*/
|
|
556
|
-
|
|
556
|
+
credentialId?: string;
|
|
557
557
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
558
558
|
type: string;
|
|
559
559
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
560
|
-
|
|
560
|
+
subType: string;
|
|
561
561
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
562
562
|
kind: string;
|
|
563
563
|
/** @description Additional connection metadata */
|
|
@@ -2903,11 +2903,11 @@ interface operations {
|
|
|
2903
2903
|
* Format: uuid
|
|
2904
2904
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
2905
2905
|
*/
|
|
2906
|
-
|
|
2906
|
+
credentialId?: string;
|
|
2907
2907
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
2908
2908
|
type: string;
|
|
2909
2909
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
2910
|
-
|
|
2910
|
+
subType: string;
|
|
2911
2911
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
2912
2912
|
kind: string;
|
|
2913
2913
|
/** @description Additional connection metadata */
|