@meshery/schemas 1.1.1 → 1.2.0
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 +1565 -1436
- package/dist/cloudApi.d.ts +1565 -1436
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta1/credential/CredentialSchema.js +1 -1
- package/dist/constructs/v1beta1/credential/CredentialSchema.mjs +1 -1
- package/dist/constructs/v1beta1/role/RoleSchema.js +1 -1
- package/dist/constructs/v1beta1/role/RoleSchema.mjs +1 -1
- package/dist/constructs/v1beta1/schedule/ScheduleSchema.js +1 -1
- package/dist/constructs/v1beta1/schedule/ScheduleSchema.mjs +1 -1
- package/dist/constructs/v1beta1/token/TokenSchema.js +1 -1
- package/dist/constructs/v1beta1/token/TokenSchema.mjs +1 -1
- package/dist/constructs/v1beta2/credential/CredentialSchema.js +1 -1
- package/dist/constructs/v1beta2/credential/CredentialSchema.mjs +1 -1
- package/dist/constructs/v1beta2/role/RoleSchema.js +1 -1
- package/dist/constructs/v1beta2/role/RoleSchema.mjs +1 -1
- package/dist/constructs/v1beta2/schedule/Schedule.d.mts +50 -0
- package/dist/constructs/v1beta2/schedule/Schedule.d.ts +50 -0
- package/dist/constructs/v1beta2/schedule/ScheduleSchema.js +16 -6
- package/dist/constructs/v1beta2/schedule/ScheduleSchema.mjs +16 -6
- package/dist/constructs/v1beta2/team/Team.d.mts +23 -5
- package/dist/constructs/v1beta2/team/Team.d.ts +23 -5
- package/dist/constructs/v1beta2/team/TeamSchema.js +1 -1
- package/dist/constructs/v1beta2/team/TeamSchema.mjs +1 -1
- package/dist/constructs/v1beta2/token/TokenSchema.js +1 -1
- package/dist/constructs/v1beta2/token/TokenSchema.mjs +1 -1
- package/dist/constructs/v1beta3/design/Design.d.mts +360 -0
- package/dist/constructs/v1beta3/design/Design.d.ts +360 -0
- package/dist/constructs/v1beta3/design/DesignSchema.js +70 -10
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +70 -10
- package/dist/constructs/v1beta3/token/TokenSchema.js +1 -1
- package/dist/constructs/v1beta3/token/TokenSchema.mjs +1 -1
- package/dist/mesheryApi.d.mts +549 -546
- package/dist/mesheryApi.d.ts +549 -546
- package/package.json +1 -1
|
@@ -2970,6 +2970,42 @@ interface components {
|
|
|
2970
2970
|
};
|
|
2971
2971
|
/** @description Visibility scope (private, public, published). */
|
|
2972
2972
|
visibility?: string;
|
|
2973
|
+
/**
|
|
2974
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
2975
|
+
*
|
|
2976
|
+
* @enum {string}
|
|
2977
|
+
*/
|
|
2978
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
2979
|
+
/**
|
|
2980
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
2981
|
+
*
|
|
2982
|
+
* @default 0
|
|
2983
|
+
*/
|
|
2984
|
+
viewCount?: number;
|
|
2985
|
+
/**
|
|
2986
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
2987
|
+
*
|
|
2988
|
+
* @default 0
|
|
2989
|
+
*/
|
|
2990
|
+
downloadCount?: number;
|
|
2991
|
+
/**
|
|
2992
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
2993
|
+
*
|
|
2994
|
+
* @default 0
|
|
2995
|
+
*/
|
|
2996
|
+
cloneCount?: number;
|
|
2997
|
+
/**
|
|
2998
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
2999
|
+
*
|
|
3000
|
+
* @default 0
|
|
3001
|
+
*/
|
|
3002
|
+
deploymentCount?: number;
|
|
3003
|
+
/**
|
|
3004
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
3005
|
+
*
|
|
3006
|
+
* @default 0
|
|
3007
|
+
*/
|
|
3008
|
+
shareCount?: number;
|
|
2973
3009
|
/**
|
|
2974
3010
|
* Format: date-time
|
|
2975
3011
|
* @description Timestamp of design creation.
|
|
@@ -4446,6 +4482,42 @@ interface components {
|
|
|
4446
4482
|
};
|
|
4447
4483
|
/** @description Visibility scope (private, public, published). */
|
|
4448
4484
|
visibility?: string;
|
|
4485
|
+
/**
|
|
4486
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
4487
|
+
*
|
|
4488
|
+
* @enum {string}
|
|
4489
|
+
*/
|
|
4490
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
4491
|
+
/**
|
|
4492
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
4493
|
+
*
|
|
4494
|
+
* @default 0
|
|
4495
|
+
*/
|
|
4496
|
+
viewCount?: number;
|
|
4497
|
+
/**
|
|
4498
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
4499
|
+
*
|
|
4500
|
+
* @default 0
|
|
4501
|
+
*/
|
|
4502
|
+
downloadCount?: number;
|
|
4503
|
+
/**
|
|
4504
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
4505
|
+
*
|
|
4506
|
+
* @default 0
|
|
4507
|
+
*/
|
|
4508
|
+
cloneCount?: number;
|
|
4509
|
+
/**
|
|
4510
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
4511
|
+
*
|
|
4512
|
+
* @default 0
|
|
4513
|
+
*/
|
|
4514
|
+
deploymentCount?: number;
|
|
4515
|
+
/**
|
|
4516
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
4517
|
+
*
|
|
4518
|
+
* @default 0
|
|
4519
|
+
*/
|
|
4520
|
+
shareCount?: number;
|
|
4449
4521
|
/**
|
|
4450
4522
|
* Format: date-time
|
|
4451
4523
|
* @description Timestamp of design creation.
|
|
@@ -5934,6 +6006,42 @@ interface components {
|
|
|
5934
6006
|
};
|
|
5935
6007
|
/** @description Visibility scope (private, public, published). */
|
|
5936
6008
|
visibility?: string;
|
|
6009
|
+
/**
|
|
6010
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
6011
|
+
*
|
|
6012
|
+
* @enum {string}
|
|
6013
|
+
*/
|
|
6014
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
6015
|
+
/**
|
|
6016
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
6017
|
+
*
|
|
6018
|
+
* @default 0
|
|
6019
|
+
*/
|
|
6020
|
+
viewCount?: number;
|
|
6021
|
+
/**
|
|
6022
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
6023
|
+
*
|
|
6024
|
+
* @default 0
|
|
6025
|
+
*/
|
|
6026
|
+
downloadCount?: number;
|
|
6027
|
+
/**
|
|
6028
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
6029
|
+
*
|
|
6030
|
+
* @default 0
|
|
6031
|
+
*/
|
|
6032
|
+
cloneCount?: number;
|
|
6033
|
+
/**
|
|
6034
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
6035
|
+
*
|
|
6036
|
+
* @default 0
|
|
6037
|
+
*/
|
|
6038
|
+
deploymentCount?: number;
|
|
6039
|
+
/**
|
|
6040
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
6041
|
+
*
|
|
6042
|
+
* @default 0
|
|
6043
|
+
*/
|
|
6044
|
+
shareCount?: number;
|
|
5937
6045
|
/**
|
|
5938
6046
|
* Format: date-time
|
|
5939
6047
|
* @description Timestamp of design creation.
|
|
@@ -7490,6 +7598,42 @@ interface components {
|
|
|
7490
7598
|
};
|
|
7491
7599
|
/** @description Visibility scope (private, public, published). */
|
|
7492
7600
|
visibility?: string;
|
|
7601
|
+
/**
|
|
7602
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
7603
|
+
*
|
|
7604
|
+
* @enum {string}
|
|
7605
|
+
*/
|
|
7606
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
7607
|
+
/**
|
|
7608
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
7609
|
+
*
|
|
7610
|
+
* @default 0
|
|
7611
|
+
*/
|
|
7612
|
+
viewCount?: number;
|
|
7613
|
+
/**
|
|
7614
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
7615
|
+
*
|
|
7616
|
+
* @default 0
|
|
7617
|
+
*/
|
|
7618
|
+
downloadCount?: number;
|
|
7619
|
+
/**
|
|
7620
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
7621
|
+
*
|
|
7622
|
+
* @default 0
|
|
7623
|
+
*/
|
|
7624
|
+
cloneCount?: number;
|
|
7625
|
+
/**
|
|
7626
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
7627
|
+
*
|
|
7628
|
+
* @default 0
|
|
7629
|
+
*/
|
|
7630
|
+
deploymentCount?: number;
|
|
7631
|
+
/**
|
|
7632
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
7633
|
+
*
|
|
7634
|
+
* @default 0
|
|
7635
|
+
*/
|
|
7636
|
+
shareCount?: number;
|
|
7493
7637
|
/**
|
|
7494
7638
|
* Format: date-time
|
|
7495
7639
|
* @description Timestamp of design creation.
|
|
@@ -9162,6 +9306,42 @@ interface operations {
|
|
|
9162
9306
|
};
|
|
9163
9307
|
/** @description Visibility scope (private, public, published). */
|
|
9164
9308
|
visibility?: string;
|
|
9309
|
+
/**
|
|
9310
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
9311
|
+
*
|
|
9312
|
+
* @enum {string}
|
|
9313
|
+
*/
|
|
9314
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
9315
|
+
/**
|
|
9316
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
9317
|
+
*
|
|
9318
|
+
* @default 0
|
|
9319
|
+
*/
|
|
9320
|
+
viewCount?: number;
|
|
9321
|
+
/**
|
|
9322
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
9323
|
+
*
|
|
9324
|
+
* @default 0
|
|
9325
|
+
*/
|
|
9326
|
+
downloadCount?: number;
|
|
9327
|
+
/**
|
|
9328
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
9329
|
+
*
|
|
9330
|
+
* @default 0
|
|
9331
|
+
*/
|
|
9332
|
+
cloneCount?: number;
|
|
9333
|
+
/**
|
|
9334
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
9335
|
+
*
|
|
9336
|
+
* @default 0
|
|
9337
|
+
*/
|
|
9338
|
+
deploymentCount?: number;
|
|
9339
|
+
/**
|
|
9340
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
9341
|
+
*
|
|
9342
|
+
* @default 0
|
|
9343
|
+
*/
|
|
9344
|
+
shareCount?: number;
|
|
9165
9345
|
/**
|
|
9166
9346
|
* Format: date-time
|
|
9167
9347
|
* @description Timestamp of design creation.
|
|
@@ -10654,6 +10834,42 @@ interface operations {
|
|
|
10654
10834
|
};
|
|
10655
10835
|
/** @description Visibility scope (private, public, published). */
|
|
10656
10836
|
visibility?: string;
|
|
10837
|
+
/**
|
|
10838
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
10839
|
+
*
|
|
10840
|
+
* @enum {string}
|
|
10841
|
+
*/
|
|
10842
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
10843
|
+
/**
|
|
10844
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
10845
|
+
*
|
|
10846
|
+
* @default 0
|
|
10847
|
+
*/
|
|
10848
|
+
viewCount?: number;
|
|
10849
|
+
/**
|
|
10850
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
10851
|
+
*
|
|
10852
|
+
* @default 0
|
|
10853
|
+
*/
|
|
10854
|
+
downloadCount?: number;
|
|
10855
|
+
/**
|
|
10856
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
10857
|
+
*
|
|
10858
|
+
* @default 0
|
|
10859
|
+
*/
|
|
10860
|
+
cloneCount?: number;
|
|
10861
|
+
/**
|
|
10862
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
10863
|
+
*
|
|
10864
|
+
* @default 0
|
|
10865
|
+
*/
|
|
10866
|
+
deploymentCount?: number;
|
|
10867
|
+
/**
|
|
10868
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
10869
|
+
*
|
|
10870
|
+
* @default 0
|
|
10871
|
+
*/
|
|
10872
|
+
shareCount?: number;
|
|
10657
10873
|
/**
|
|
10658
10874
|
* Format: date-time
|
|
10659
10875
|
* @description Timestamp of design creation.
|
|
@@ -12148,6 +12364,42 @@ interface operations {
|
|
|
12148
12364
|
};
|
|
12149
12365
|
/** @description Visibility scope (private, public, published). */
|
|
12150
12366
|
visibility?: string;
|
|
12367
|
+
/**
|
|
12368
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
12369
|
+
*
|
|
12370
|
+
* @enum {string}
|
|
12371
|
+
*/
|
|
12372
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
12373
|
+
/**
|
|
12374
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
12375
|
+
*
|
|
12376
|
+
* @default 0
|
|
12377
|
+
*/
|
|
12378
|
+
viewCount?: number;
|
|
12379
|
+
/**
|
|
12380
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
12381
|
+
*
|
|
12382
|
+
* @default 0
|
|
12383
|
+
*/
|
|
12384
|
+
downloadCount?: number;
|
|
12385
|
+
/**
|
|
12386
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
12387
|
+
*
|
|
12388
|
+
* @default 0
|
|
12389
|
+
*/
|
|
12390
|
+
cloneCount?: number;
|
|
12391
|
+
/**
|
|
12392
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
12393
|
+
*
|
|
12394
|
+
* @default 0
|
|
12395
|
+
*/
|
|
12396
|
+
deploymentCount?: number;
|
|
12397
|
+
/**
|
|
12398
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
12399
|
+
*
|
|
12400
|
+
* @default 0
|
|
12401
|
+
*/
|
|
12402
|
+
shareCount?: number;
|
|
12151
12403
|
/**
|
|
12152
12404
|
* Format: date-time
|
|
12153
12405
|
* @description Timestamp of design creation.
|
|
@@ -13796,6 +14048,42 @@ interface operations {
|
|
|
13796
14048
|
};
|
|
13797
14049
|
/** @description Visibility scope (private, public, published). */
|
|
13798
14050
|
visibility?: string;
|
|
14051
|
+
/**
|
|
14052
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
14053
|
+
*
|
|
14054
|
+
* @enum {string}
|
|
14055
|
+
*/
|
|
14056
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
14057
|
+
/**
|
|
14058
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
14059
|
+
*
|
|
14060
|
+
* @default 0
|
|
14061
|
+
*/
|
|
14062
|
+
viewCount?: number;
|
|
14063
|
+
/**
|
|
14064
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
14065
|
+
*
|
|
14066
|
+
* @default 0
|
|
14067
|
+
*/
|
|
14068
|
+
downloadCount?: number;
|
|
14069
|
+
/**
|
|
14070
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
14071
|
+
*
|
|
14072
|
+
* @default 0
|
|
14073
|
+
*/
|
|
14074
|
+
cloneCount?: number;
|
|
14075
|
+
/**
|
|
14076
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
14077
|
+
*
|
|
14078
|
+
* @default 0
|
|
14079
|
+
*/
|
|
14080
|
+
deploymentCount?: number;
|
|
14081
|
+
/**
|
|
14082
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
14083
|
+
*
|
|
14084
|
+
* @default 0
|
|
14085
|
+
*/
|
|
14086
|
+
shareCount?: number;
|
|
13799
14087
|
/**
|
|
13800
14088
|
* Format: date-time
|
|
13801
14089
|
* @description Timestamp of design creation.
|
|
@@ -15327,6 +15615,42 @@ interface operations {
|
|
|
15327
15615
|
};
|
|
15328
15616
|
/** @description Visibility scope (private, public, published). */
|
|
15329
15617
|
visibility?: string;
|
|
15618
|
+
/**
|
|
15619
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
15620
|
+
*
|
|
15621
|
+
* @enum {string}
|
|
15622
|
+
*/
|
|
15623
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
15624
|
+
/**
|
|
15625
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
15626
|
+
*
|
|
15627
|
+
* @default 0
|
|
15628
|
+
*/
|
|
15629
|
+
viewCount?: number;
|
|
15630
|
+
/**
|
|
15631
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
15632
|
+
*
|
|
15633
|
+
* @default 0
|
|
15634
|
+
*/
|
|
15635
|
+
downloadCount?: number;
|
|
15636
|
+
/**
|
|
15637
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
15638
|
+
*
|
|
15639
|
+
* @default 0
|
|
15640
|
+
*/
|
|
15641
|
+
cloneCount?: number;
|
|
15642
|
+
/**
|
|
15643
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
15644
|
+
*
|
|
15645
|
+
* @default 0
|
|
15646
|
+
*/
|
|
15647
|
+
deploymentCount?: number;
|
|
15648
|
+
/**
|
|
15649
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
15650
|
+
*
|
|
15651
|
+
* @default 0
|
|
15652
|
+
*/
|
|
15653
|
+
shareCount?: number;
|
|
15330
15654
|
/**
|
|
15331
15655
|
* Format: date-time
|
|
15332
15656
|
* @description Timestamp of design creation.
|
|
@@ -16998,6 +17322,42 @@ interface operations {
|
|
|
16998
17322
|
};
|
|
16999
17323
|
/** @description Visibility scope (private, public, published). */
|
|
17000
17324
|
visibility?: string;
|
|
17325
|
+
/**
|
|
17326
|
+
* @description Discriminator identifying the source format of the design body. Projected server-side (not stored in a column of its own); for catalog listings the server derives it from the attached catalog metadata, for user-owned designs the server derives it from the import source. Use this field to branch rendering between native Meshery designs and imported Helm charts, Kubernetes manifests, and Docker Compose files.
|
|
17327
|
+
*
|
|
17328
|
+
* @enum {string}
|
|
17329
|
+
*/
|
|
17330
|
+
designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
|
|
17331
|
+
/**
|
|
17332
|
+
* @description Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
|
|
17333
|
+
*
|
|
17334
|
+
* @default 0
|
|
17335
|
+
*/
|
|
17336
|
+
viewCount?: number;
|
|
17337
|
+
/**
|
|
17338
|
+
* @description Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
|
|
17339
|
+
*
|
|
17340
|
+
* @default 0
|
|
17341
|
+
*/
|
|
17342
|
+
downloadCount?: number;
|
|
17343
|
+
/**
|
|
17344
|
+
* @description Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
|
|
17345
|
+
*
|
|
17346
|
+
* @default 0
|
|
17347
|
+
*/
|
|
17348
|
+
cloneCount?: number;
|
|
17349
|
+
/**
|
|
17350
|
+
* @description Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
|
|
17351
|
+
*
|
|
17352
|
+
* @default 0
|
|
17353
|
+
*/
|
|
17354
|
+
deploymentCount?: number;
|
|
17355
|
+
/**
|
|
17356
|
+
* @description Server-aggregated count of share events for this design. Server-managed and ignored on writes.
|
|
17357
|
+
*
|
|
17358
|
+
* @default 0
|
|
17359
|
+
*/
|
|
17360
|
+
shareCount?: number;
|
|
17001
17361
|
/**
|
|
17002
17362
|
* Format: date-time
|
|
17003
17363
|
* @description Timestamp of design creation.
|