@meshery/schemas 1.0.2 → 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 +1446 -1446
- package/dist/cloudApi.d.ts +1446 -1446
- 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 +4 -4
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +4 -4
- 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 +11 -11
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +11 -11
- 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 +2 -2
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.mjs +2 -2
- 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 +11 -11
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +11 -11
- package/dist/index.js +28 -28
- package/dist/index.mjs +28 -28
- package/dist/mesheryApi.d.mts +391 -391
- package/dist/mesheryApi.d.ts +391 -391
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
|
@@ -241,11 +241,11 @@ interface components {
|
|
|
241
241
|
* Format: uuid
|
|
242
242
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
243
243
|
*/
|
|
244
|
-
|
|
244
|
+
credentialId?: string;
|
|
245
245
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
246
246
|
type: string;
|
|
247
247
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
248
|
-
|
|
248
|
+
subType: string;
|
|
249
249
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
250
250
|
kind: string;
|
|
251
251
|
/** @description Additional connection metadata */
|
|
@@ -1645,11 +1645,11 @@ interface components {
|
|
|
1645
1645
|
* Format: uuid
|
|
1646
1646
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
1647
1647
|
*/
|
|
1648
|
-
|
|
1648
|
+
credentialId?: string;
|
|
1649
1649
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
1650
1650
|
type: string;
|
|
1651
1651
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
1652
|
-
|
|
1652
|
+
subType: string;
|
|
1653
1653
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
1654
1654
|
kind: string;
|
|
1655
1655
|
/** @description Additional connection metadata */
|
|
@@ -3058,11 +3058,11 @@ interface components {
|
|
|
3058
3058
|
* Format: uuid
|
|
3059
3059
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
3060
3060
|
*/
|
|
3061
|
-
|
|
3061
|
+
credentialId?: string;
|
|
3062
3062
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
3063
3063
|
type: string;
|
|
3064
3064
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
3065
|
-
|
|
3065
|
+
subType: string;
|
|
3066
3066
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
3067
3067
|
kind: string;
|
|
3068
3068
|
/** @description Additional connection metadata */
|
|
@@ -4480,11 +4480,11 @@ interface components {
|
|
|
4480
4480
|
* Format: uuid
|
|
4481
4481
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
4482
4482
|
*/
|
|
4483
|
-
|
|
4483
|
+
credentialId?: string;
|
|
4484
4484
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
4485
4485
|
type: string;
|
|
4486
4486
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
4487
|
-
|
|
4487
|
+
subType: string;
|
|
4488
4488
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
4489
4489
|
kind: string;
|
|
4490
4490
|
/** @description Additional connection metadata */
|
|
@@ -5914,11 +5914,11 @@ interface components {
|
|
|
5914
5914
|
* Format: uuid
|
|
5915
5915
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
5916
5916
|
*/
|
|
5917
|
-
|
|
5917
|
+
credentialId?: string;
|
|
5918
5918
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
5919
5919
|
type: string;
|
|
5920
5920
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
5921
|
-
|
|
5921
|
+
subType: string;
|
|
5922
5922
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
5923
5923
|
kind: string;
|
|
5924
5924
|
/** @description Additional connection metadata */
|
|
@@ -7468,11 +7468,11 @@ interface operations {
|
|
|
7468
7468
|
* Format: uuid
|
|
7469
7469
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
7470
7470
|
*/
|
|
7471
|
-
|
|
7471
|
+
credentialId?: string;
|
|
7472
7472
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
7473
7473
|
type: string;
|
|
7474
7474
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
7475
|
-
|
|
7475
|
+
subType: string;
|
|
7476
7476
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
7477
7477
|
kind: string;
|
|
7478
7478
|
/** @description Additional connection metadata */
|
|
@@ -8903,11 +8903,11 @@ interface operations {
|
|
|
8903
8903
|
* Format: uuid
|
|
8904
8904
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
8905
8905
|
*/
|
|
8906
|
-
|
|
8906
|
+
credentialId?: string;
|
|
8907
8907
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
8908
8908
|
type: string;
|
|
8909
8909
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
8910
|
-
|
|
8910
|
+
subType: string;
|
|
8911
8911
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
8912
8912
|
kind: string;
|
|
8913
8913
|
/** @description Additional connection metadata */
|
|
@@ -10338,11 +10338,11 @@ interface operations {
|
|
|
10338
10338
|
* Format: uuid
|
|
10339
10339
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
10340
10340
|
*/
|
|
10341
|
-
|
|
10341
|
+
credentialId?: string;
|
|
10342
10342
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
10343
10343
|
type: string;
|
|
10344
10344
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
10345
|
-
|
|
10345
|
+
subType: string;
|
|
10346
10346
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
10347
10347
|
kind: string;
|
|
10348
10348
|
/** @description Additional connection metadata */
|
|
@@ -11919,11 +11919,11 @@ interface operations {
|
|
|
11919
11919
|
* Format: uuid
|
|
11920
11920
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
11921
11921
|
*/
|
|
11922
|
-
|
|
11922
|
+
credentialId?: string;
|
|
11923
11923
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
11924
11924
|
type: string;
|
|
11925
11925
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
11926
|
-
|
|
11926
|
+
subType: string;
|
|
11927
11927
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
11928
11928
|
kind: string;
|
|
11929
11929
|
/** @description Additional connection metadata */
|
|
@@ -13393,11 +13393,11 @@ interface operations {
|
|
|
13393
13393
|
* Format: uuid
|
|
13394
13394
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
13395
13395
|
*/
|
|
13396
|
-
|
|
13396
|
+
credentialId?: string;
|
|
13397
13397
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
13398
13398
|
type: string;
|
|
13399
13399
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
13400
|
-
|
|
13400
|
+
subType: string;
|
|
13401
13401
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
13402
13402
|
kind: string;
|
|
13403
13403
|
/** @description Additional connection metadata */
|
|
@@ -14968,11 +14968,11 @@ interface operations {
|
|
|
14968
14968
|
* Format: uuid
|
|
14969
14969
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
14970
14970
|
*/
|
|
14971
|
-
|
|
14971
|
+
credentialId?: string;
|
|
14972
14972
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
14973
14973
|
type: string;
|
|
14974
14974
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
14975
|
-
|
|
14975
|
+
subType: string;
|
|
14976
14976
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
14977
14977
|
kind: string;
|
|
14978
14978
|
/** @description Additional connection metadata */
|