@meshery/schemas 0.8.126 → 0.8.127
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/{Core-Wy_3jcVT.d.mts → Core-vaTzd8cz.d.mts} +4 -2
- package/dist/{Core-Wy_3jcVT.d.ts → Core-vaTzd8cz.d.ts} +4 -2
- package/dist/cloudApi.d.mts +12 -0
- package/dist/cloudApi.d.ts +12 -0
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1alpha1/capability/Capability.d.mts +3 -1
- package/dist/constructs/v1alpha1/capability/Capability.d.ts +3 -1
- package/dist/constructs/v1alpha1/capability/CapabilitySchema.d.mts +2 -2
- package/dist/constructs/v1alpha1/capability/CapabilitySchema.d.ts +2 -2
- package/dist/constructs/v1alpha1/capability/CapabilitySchema.js +1 -1
- package/dist/constructs/v1alpha1/capability/CapabilitySchema.mjs +1 -1
- package/dist/constructs/v1alpha1/core/Core.d.mts +1 -1
- package/dist/constructs/v1alpha1/core/Core.d.ts +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.d.mts +3 -3
- package/dist/constructs/v1alpha1/core/CoreSchema.d.ts +3 -3
- package/dist/constructs/v1alpha1/core/CoreSchema.js +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1alpha3/relationship/Relationship.d.mts +6 -2
- package/dist/constructs/v1alpha3/relationship/Relationship.d.ts +6 -2
- package/dist/constructs/v1alpha3/relationship/RelationshipSchema.d.mts +4 -4
- package/dist/constructs/v1alpha3/relationship/RelationshipSchema.d.ts +4 -4
- package/dist/constructs/v1alpha3/relationship/RelationshipSchema.js +1 -1
- package/dist/constructs/v1alpha3/relationship/RelationshipSchema.mjs +1 -1
- package/dist/constructs/v1beta1/component/Component.d.mts +28 -5
- package/dist/constructs/v1beta1/component/Component.d.ts +28 -5
- package/dist/constructs/v1beta1/component/ComponentSchema.d.mts +34 -19
- package/dist/constructs/v1beta1/component/ComponentSchema.d.ts +34 -19
- package/dist/constructs/v1beta1/component/ComponentSchema.js +2 -2
- package/dist/constructs/v1beta1/component/ComponentSchema.mjs +2 -2
- package/dist/constructs/v1beta1/connection/Connection.d.mts +96 -6
- package/dist/constructs/v1beta1/connection/Connection.d.ts +96 -6
- package/dist/constructs/v1beta1/connection/ConnectionSchema.d.mts +156 -66
- package/dist/constructs/v1beta1/connection/ConnectionSchema.d.ts +156 -66
- package/dist/constructs/v1beta1/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta1/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta1/environment/Environment.d.mts +52 -0
- package/dist/constructs/v1beta1/environment/Environment.d.ts +52 -0
- package/dist/constructs/v1beta1/environment/EnvironmentSchema.d.mts +96 -36
- package/dist/constructs/v1beta1/environment/EnvironmentSchema.d.ts +96 -36
- package/dist/constructs/v1beta1/environment/EnvironmentSchema.js +1 -1
- package/dist/constructs/v1beta1/environment/EnvironmentSchema.mjs +1 -1
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.mts +148 -32
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.ts +148 -32
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.d.mts +160 -100
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.d.ts +160 -100
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.js +12 -12
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +12 -12
- package/dist/constructs/v1beta1/model/Model.d.mts +22 -3
- package/dist/constructs/v1beta1/model/Model.d.ts +22 -3
- package/dist/constructs/v1beta1/model/ModelSchema.d.mts +30 -15
- package/dist/constructs/v1beta1/model/ModelSchema.d.ts +30 -15
- package/dist/constructs/v1beta1/model/ModelSchema.js +2 -2
- package/dist/constructs/v1beta1/model/ModelSchema.mjs +2 -2
- package/dist/constructs/v1beta1/pattern/Pattern.d.mts +148 -32
- package/dist/constructs/v1beta1/pattern/Pattern.d.ts +148 -32
- package/dist/constructs/v1beta1/pattern/PatternSchema.d.mts +160 -100
- package/dist/constructs/v1beta1/pattern/PatternSchema.d.ts +160 -100
- package/dist/constructs/v1beta1/pattern/PatternSchema.js +12 -12
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +12 -12
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +16 -16
- package/dist/index.mjs +16 -16
- package/dist/mesheryApi.d.mts +8 -0
- package/dist/mesheryApi.d.ts +8 -0
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
|
@@ -81,6 +81,19 @@ interface components {
|
|
|
81
81
|
* @description ID
|
|
82
82
|
*/
|
|
83
83
|
id: string;
|
|
84
|
+
/**
|
|
85
|
+
* @description Specifies the version of the schema to which the environment conforms.
|
|
86
|
+
* @default environments.meshery.io/v1beta1
|
|
87
|
+
* @example [
|
|
88
|
+
* "v1",
|
|
89
|
+
* "v1alpha1",
|
|
90
|
+
* "v2beta3",
|
|
91
|
+
* "v1.custom-suffix",
|
|
92
|
+
* "models.meshery.io/v1beta1",
|
|
93
|
+
* "capability.meshery.io/v1alpha1"
|
|
94
|
+
* ]
|
|
95
|
+
*/
|
|
96
|
+
schemaVersion: string;
|
|
84
97
|
/** @description Environment name */
|
|
85
98
|
name: string;
|
|
86
99
|
/** @description Environment description */
|
|
@@ -112,7 +125,9 @@ interface components {
|
|
|
112
125
|
* "v1",
|
|
113
126
|
* "v1alpha1",
|
|
114
127
|
* "v2beta3",
|
|
115
|
-
* "v1.custom-suffix"
|
|
128
|
+
* "v1.custom-suffix",
|
|
129
|
+
* "models.meshery.io/v1beta1",
|
|
130
|
+
* "capability.meshery.io/v1alpha1"
|
|
116
131
|
* ]
|
|
117
132
|
*/
|
|
118
133
|
schemaVersion: string;
|
|
@@ -166,6 +181,19 @@ interface components {
|
|
|
166
181
|
* @description ID
|
|
167
182
|
*/
|
|
168
183
|
id: string;
|
|
184
|
+
/**
|
|
185
|
+
* @description Specifies the version of the schema to which the environment conforms.
|
|
186
|
+
* @default environments.meshery.io/v1beta1
|
|
187
|
+
* @example [
|
|
188
|
+
* "v1",
|
|
189
|
+
* "v1alpha1",
|
|
190
|
+
* "v2beta3",
|
|
191
|
+
* "v1.custom-suffix",
|
|
192
|
+
* "models.meshery.io/v1beta1",
|
|
193
|
+
* "capability.meshery.io/v1alpha1"
|
|
194
|
+
* ]
|
|
195
|
+
*/
|
|
196
|
+
schemaVersion: string;
|
|
169
197
|
/** @description Environment name */
|
|
170
198
|
name: string;
|
|
171
199
|
/** @description Environment description */
|
|
@@ -197,7 +225,9 @@ interface components {
|
|
|
197
225
|
* "v1",
|
|
198
226
|
* "v1alpha1",
|
|
199
227
|
* "v2beta3",
|
|
200
|
-
* "v1.custom-suffix"
|
|
228
|
+
* "v1.custom-suffix",
|
|
229
|
+
* "models.meshery.io/v1beta1",
|
|
230
|
+
* "capability.meshery.io/v1alpha1"
|
|
201
231
|
* ]
|
|
202
232
|
*/
|
|
203
233
|
schemaVersion: string;
|
|
@@ -425,6 +455,19 @@ interface operations {
|
|
|
425
455
|
* @description ID
|
|
426
456
|
*/
|
|
427
457
|
id: string;
|
|
458
|
+
/**
|
|
459
|
+
* @description Specifies the version of the schema to which the environment conforms.
|
|
460
|
+
* @default environments.meshery.io/v1beta1
|
|
461
|
+
* @example [
|
|
462
|
+
* "v1",
|
|
463
|
+
* "v1alpha1",
|
|
464
|
+
* "v2beta3",
|
|
465
|
+
* "v1.custom-suffix",
|
|
466
|
+
* "models.meshery.io/v1beta1",
|
|
467
|
+
* "capability.meshery.io/v1alpha1"
|
|
468
|
+
* ]
|
|
469
|
+
*/
|
|
470
|
+
schemaVersion: string;
|
|
428
471
|
/** @description Environment name */
|
|
429
472
|
name: string;
|
|
430
473
|
/** @description Environment description */
|
|
@@ -456,7 +499,9 @@ interface operations {
|
|
|
456
499
|
* "v1",
|
|
457
500
|
* "v1alpha1",
|
|
458
501
|
* "v2beta3",
|
|
459
|
-
* "v1.custom-suffix"
|
|
502
|
+
* "v1.custom-suffix",
|
|
503
|
+
* "models.meshery.io/v1beta1",
|
|
504
|
+
* "capability.meshery.io/v1alpha1"
|
|
460
505
|
* ]
|
|
461
506
|
*/
|
|
462
507
|
schemaVersion: string;
|
|
@@ -530,6 +575,19 @@ interface operations {
|
|
|
530
575
|
* @description ID
|
|
531
576
|
*/
|
|
532
577
|
id: string;
|
|
578
|
+
/**
|
|
579
|
+
* @description Specifies the version of the schema to which the environment conforms.
|
|
580
|
+
* @default environments.meshery.io/v1beta1
|
|
581
|
+
* @example [
|
|
582
|
+
* "v1",
|
|
583
|
+
* "v1alpha1",
|
|
584
|
+
* "v2beta3",
|
|
585
|
+
* "v1.custom-suffix",
|
|
586
|
+
* "models.meshery.io/v1beta1",
|
|
587
|
+
* "capability.meshery.io/v1alpha1"
|
|
588
|
+
* ]
|
|
589
|
+
*/
|
|
590
|
+
schemaVersion: string;
|
|
533
591
|
/** @description Environment name */
|
|
534
592
|
name: string;
|
|
535
593
|
/** @description Environment description */
|
|
@@ -561,7 +619,9 @@ interface operations {
|
|
|
561
619
|
* "v1",
|
|
562
620
|
* "v1alpha1",
|
|
563
621
|
* "v2beta3",
|
|
564
|
-
* "v1.custom-suffix"
|
|
622
|
+
* "v1.custom-suffix",
|
|
623
|
+
* "models.meshery.io/v1beta1",
|
|
624
|
+
* "capability.meshery.io/v1alpha1"
|
|
565
625
|
* ]
|
|
566
626
|
*/
|
|
567
627
|
schemaVersion: string;
|
|
@@ -666,6 +726,19 @@ interface operations {
|
|
|
666
726
|
* @description ID
|
|
667
727
|
*/
|
|
668
728
|
id: string;
|
|
729
|
+
/**
|
|
730
|
+
* @description Specifies the version of the schema to which the environment conforms.
|
|
731
|
+
* @default environments.meshery.io/v1beta1
|
|
732
|
+
* @example [
|
|
733
|
+
* "v1",
|
|
734
|
+
* "v1alpha1",
|
|
735
|
+
* "v2beta3",
|
|
736
|
+
* "v1.custom-suffix",
|
|
737
|
+
* "models.meshery.io/v1beta1",
|
|
738
|
+
* "capability.meshery.io/v1alpha1"
|
|
739
|
+
* ]
|
|
740
|
+
*/
|
|
741
|
+
schemaVersion: string;
|
|
669
742
|
/** @description Environment name */
|
|
670
743
|
name: string;
|
|
671
744
|
/** @description Environment description */
|
|
@@ -697,7 +770,9 @@ interface operations {
|
|
|
697
770
|
* "v1",
|
|
698
771
|
* "v1alpha1",
|
|
699
772
|
* "v2beta3",
|
|
700
|
-
* "v1.custom-suffix"
|
|
773
|
+
* "v1.custom-suffix",
|
|
774
|
+
* "models.meshery.io/v1beta1",
|
|
775
|
+
* "capability.meshery.io/v1alpha1"
|
|
701
776
|
* ]
|
|
702
777
|
*/
|
|
703
778
|
schemaVersion: string;
|
|
@@ -768,6 +843,19 @@ interface operations {
|
|
|
768
843
|
* @description ID
|
|
769
844
|
*/
|
|
770
845
|
id: string;
|
|
846
|
+
/**
|
|
847
|
+
* @description Specifies the version of the schema to which the environment conforms.
|
|
848
|
+
* @default environments.meshery.io/v1beta1
|
|
849
|
+
* @example [
|
|
850
|
+
* "v1",
|
|
851
|
+
* "v1alpha1",
|
|
852
|
+
* "v2beta3",
|
|
853
|
+
* "v1.custom-suffix",
|
|
854
|
+
* "models.meshery.io/v1beta1",
|
|
855
|
+
* "capability.meshery.io/v1alpha1"
|
|
856
|
+
* ]
|
|
857
|
+
*/
|
|
858
|
+
schemaVersion: string;
|
|
771
859
|
/** @description Environment name */
|
|
772
860
|
name: string;
|
|
773
861
|
/** @description Environment description */
|
|
@@ -799,7 +887,9 @@ interface operations {
|
|
|
799
887
|
* "v1",
|
|
800
888
|
* "v1alpha1",
|
|
801
889
|
* "v2beta3",
|
|
802
|
-
* "v1.custom-suffix"
|
|
890
|
+
* "v1.custom-suffix",
|
|
891
|
+
* "models.meshery.io/v1beta1",
|
|
892
|
+
* "capability.meshery.io/v1alpha1"
|
|
803
893
|
* ]
|
|
804
894
|
*/
|
|
805
895
|
schemaVersion: string;
|