@meshery/schemas 1.1.2 → 1.2.1

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/README.md CHANGED
@@ -48,6 +48,8 @@ Meshery schemas offer a powerful system designed for:
48
48
 
49
49
  For an explanation of Meshery's terminology regarding schemas, definitions, declarations, and instances, please see [Contributor's Guide to Models](https://docs.meshery.io/project/contributing/contributing-models).
50
50
 
51
+ For identifier-naming rules (wire casing, DB tag separation, URL/path/query-param conventions, operationId form), see [`docs/identifier-naming-contributor-guide.md`](docs/identifier-naming-contributor-guide.md) — the canonical, reader-friendly directory for the camelCase-on-the-wire contract that this repository and every downstream consumer share.
52
+
51
53
  ## Contributing
52
54
  --> **For an explanation of the directory structure of this repository and how to contribute changes to Meshery's schemas, see [Contributor's Guide to Schema-Driven Development](https://docs.meshery.io/project/contributing/contributing-schemas).**
53
55
 
@@ -292,6 +294,8 @@ post:
292
294
 
293
295
  ## Naming Conventions
294
296
 
297
+ > This section is the inline authority; for the reader-friendly directory (26-row naming table with before/after and do/don't examples), see [`docs/identifier-naming-contributor-guide.md`](docs/identifier-naming-contributor-guide.md).
298
+
295
299
  - Property names
296
300
  - Use camelCase for property fields (e.g., `schemaVersion`, `displayName`, `componentsCount`).
297
301
  - Identifier fields use lowerCamelCase with "Id" suffix (e.g., `modelId`, `registrantId`, `categoryId`).
@@ -3468,6 +3468,12 @@ type GetSchedulesApiResponse = {
3468
3468
  /** Cron expression defining the schedule's recurrence (e.g. "0 0 * * *" for daily at midnight).
3469
3469
  */
3470
3470
  cronExpression: string;
3471
+ /** Server-computed timestamp of the schedule's most recent execution. Null until the first run completes. Server-managed; clients must not set this on create/update.
3472
+ */
3473
+ lastRun?: string;
3474
+ /** Server-computed timestamp of the schedule's next planned execution, derived from the cron expression. Server-managed; clients must not set this on create/update.
3475
+ */
3476
+ nextRun?: string;
3471
3477
  /** Timestamp when the schedule was created. */
3472
3478
  createdAt?: string;
3473
3479
  /** Timestamp when the schedule was last updated. */
@@ -3494,6 +3500,12 @@ type UpsertScheduleApiResponse = {
3494
3500
  /** Cron expression defining the schedule's recurrence (e.g. "0 0 * * *" for daily at midnight).
3495
3501
  */
3496
3502
  cronExpression: string;
3503
+ /** Server-computed timestamp of the schedule's most recent execution. Null until the first run completes. Server-managed; clients must not set this on create/update.
3504
+ */
3505
+ lastRun?: string;
3506
+ /** Server-computed timestamp of the schedule's next planned execution, derived from the cron expression. Server-managed; clients must not set this on create/update.
3507
+ */
3508
+ nextRun?: string;
3497
3509
  /** Timestamp when the schedule was created. */
3498
3510
  createdAt?: string;
3499
3511
  /** Timestamp when the schedule was last updated. */
@@ -3522,6 +3534,12 @@ type GetScheduleApiResponse = {
3522
3534
  /** Cron expression defining the schedule's recurrence (e.g. "0 0 * * *" for daily at midnight).
3523
3535
  */
3524
3536
  cronExpression: string;
3537
+ /** Server-computed timestamp of the schedule's most recent execution. Null until the first run completes. Server-managed; clients must not set this on create/update.
3538
+ */
3539
+ lastRun?: string;
3540
+ /** Server-computed timestamp of the schedule's next planned execution, derived from the cron expression. Server-managed; clients must not set this on create/update.
3541
+ */
3542
+ nextRun?: string;
3525
3543
  /** Timestamp when the schedule was created. */
3526
3544
  createdAt?: string;
3527
3545
  /** Timestamp when the schedule was last updated. */
@@ -3677,6 +3695,9 @@ type ListUsersNotInTeamApiResponse = {
3677
3695
  total_count?: number;
3678
3696
  /** The data of the teammemberspage. */
3679
3697
  data?: {
3698
+ /** Timestamp when the user joined the team. Server-computed from the earliest matching row in `users_teams_mapping` for this (team, user) pair. Server-managed; clients cannot set this.
3699
+ */
3700
+ joinedAt?: string;
3680
3701
  [key: string]: any;
3681
3702
  }[];
3682
3703
  };
@@ -5647,6 +5668,24 @@ type GetPatternsApiResponse = {
5647
5668
  };
5648
5669
  /** Visibility scope (private, public, published). */
5649
5670
  visibility?: string;
5671
+ /** 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.
5672
+ */
5673
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
5674
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
5675
+ */
5676
+ viewCount?: number;
5677
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
5678
+ */
5679
+ downloadCount?: number;
5680
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
5681
+ */
5682
+ cloneCount?: number;
5683
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
5684
+ */
5685
+ deploymentCount?: number;
5686
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
5687
+ */
5688
+ shareCount?: number;
5650
5689
  /** Timestamp of design creation. */
5651
5690
  createdAt?: string;
5652
5691
  /** Timestamp of last design modification. */
@@ -6564,6 +6603,24 @@ type UpsertPatternApiResponse = {
6564
6603
  };
6565
6604
  /** Visibility scope (private, public, published). */
6566
6605
  visibility?: string;
6606
+ /** 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.
6607
+ */
6608
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
6609
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
6610
+ */
6611
+ viewCount?: number;
6612
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
6613
+ */
6614
+ downloadCount?: number;
6615
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
6616
+ */
6617
+ cloneCount?: number;
6618
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
6619
+ */
6620
+ deploymentCount?: number;
6621
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
6622
+ */
6623
+ shareCount?: number;
6567
6624
  /** Timestamp of design creation. */
6568
6625
  createdAt?: string;
6569
6626
  /** Timestamp of last design modification. */
@@ -7459,6 +7516,24 @@ type UpsertPatternApiArg = {
7459
7516
  };
7460
7517
  /** Visibility scope (private, public, published). */
7461
7518
  visibility?: string;
7519
+ /** 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.
7520
+ */
7521
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
7522
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
7523
+ */
7524
+ viewCount?: number;
7525
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
7526
+ */
7527
+ downloadCount?: number;
7528
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
7529
+ */
7530
+ cloneCount?: number;
7531
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
7532
+ */
7533
+ deploymentCount?: number;
7534
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
7535
+ */
7536
+ shareCount?: number;
7462
7537
  /** Timestamp of design creation. */
7463
7538
  createdAt?: string;
7464
7539
  /** Timestamp of last design modification. */
@@ -8392,6 +8467,24 @@ type GetPatternApiResponse = {
8392
8467
  };
8393
8468
  /** Visibility scope (private, public, published). */
8394
8469
  visibility?: string;
8470
+ /** 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.
8471
+ */
8472
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
8473
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
8474
+ */
8475
+ viewCount?: number;
8476
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
8477
+ */
8478
+ downloadCount?: number;
8479
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
8480
+ */
8481
+ cloneCount?: number;
8482
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
8483
+ */
8484
+ deploymentCount?: number;
8485
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
8486
+ */
8487
+ shareCount?: number;
8395
8488
  /** Timestamp of design creation. */
8396
8489
  createdAt?: string;
8397
8490
  /** Timestamp of last design modification. */
@@ -9291,6 +9384,24 @@ type ClonePatternApiResponse = {
9291
9384
  };
9292
9385
  /** Visibility scope (private, public, published). */
9293
9386
  visibility?: string;
9387
+ /** 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.
9388
+ */
9389
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
9390
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
9391
+ */
9392
+ viewCount?: number;
9393
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
9394
+ */
9395
+ downloadCount?: number;
9396
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
9397
+ */
9398
+ cloneCount?: number;
9399
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
9400
+ */
9401
+ deploymentCount?: number;
9402
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
9403
+ */
9404
+ shareCount?: number;
9294
9405
  /** Timestamp of design creation. */
9295
9406
  createdAt?: string;
9296
9407
  /** Timestamp of last design modification. */
@@ -10222,6 +10333,24 @@ type GetCatalogContentApiResponse = {
10222
10333
  };
10223
10334
  /** Visibility scope (private, public, published). */
10224
10335
  visibility?: string;
10336
+ /** 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.
10337
+ */
10338
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
10339
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
10340
+ */
10341
+ viewCount?: number;
10342
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
10343
+ */
10344
+ downloadCount?: number;
10345
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
10346
+ */
10347
+ cloneCount?: number;
10348
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
10349
+ */
10350
+ deploymentCount?: number;
10351
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
10352
+ */
10353
+ shareCount?: number;
10225
10354
  /** Timestamp of design creation. */
10226
10355
  createdAt?: string;
10227
10356
  /** Timestamp of last design modification. */
@@ -3468,6 +3468,12 @@ type GetSchedulesApiResponse = {
3468
3468
  /** Cron expression defining the schedule's recurrence (e.g. "0 0 * * *" for daily at midnight).
3469
3469
  */
3470
3470
  cronExpression: string;
3471
+ /** Server-computed timestamp of the schedule's most recent execution. Null until the first run completes. Server-managed; clients must not set this on create/update.
3472
+ */
3473
+ lastRun?: string;
3474
+ /** Server-computed timestamp of the schedule's next planned execution, derived from the cron expression. Server-managed; clients must not set this on create/update.
3475
+ */
3476
+ nextRun?: string;
3471
3477
  /** Timestamp when the schedule was created. */
3472
3478
  createdAt?: string;
3473
3479
  /** Timestamp when the schedule was last updated. */
@@ -3494,6 +3500,12 @@ type UpsertScheduleApiResponse = {
3494
3500
  /** Cron expression defining the schedule's recurrence (e.g. "0 0 * * *" for daily at midnight).
3495
3501
  */
3496
3502
  cronExpression: string;
3503
+ /** Server-computed timestamp of the schedule's most recent execution. Null until the first run completes. Server-managed; clients must not set this on create/update.
3504
+ */
3505
+ lastRun?: string;
3506
+ /** Server-computed timestamp of the schedule's next planned execution, derived from the cron expression. Server-managed; clients must not set this on create/update.
3507
+ */
3508
+ nextRun?: string;
3497
3509
  /** Timestamp when the schedule was created. */
3498
3510
  createdAt?: string;
3499
3511
  /** Timestamp when the schedule was last updated. */
@@ -3522,6 +3534,12 @@ type GetScheduleApiResponse = {
3522
3534
  /** Cron expression defining the schedule's recurrence (e.g. "0 0 * * *" for daily at midnight).
3523
3535
  */
3524
3536
  cronExpression: string;
3537
+ /** Server-computed timestamp of the schedule's most recent execution. Null until the first run completes. Server-managed; clients must not set this on create/update.
3538
+ */
3539
+ lastRun?: string;
3540
+ /** Server-computed timestamp of the schedule's next planned execution, derived from the cron expression. Server-managed; clients must not set this on create/update.
3541
+ */
3542
+ nextRun?: string;
3525
3543
  /** Timestamp when the schedule was created. */
3526
3544
  createdAt?: string;
3527
3545
  /** Timestamp when the schedule was last updated. */
@@ -3677,6 +3695,9 @@ type ListUsersNotInTeamApiResponse = {
3677
3695
  total_count?: number;
3678
3696
  /** The data of the teammemberspage. */
3679
3697
  data?: {
3698
+ /** Timestamp when the user joined the team. Server-computed from the earliest matching row in `users_teams_mapping` for this (team, user) pair. Server-managed; clients cannot set this.
3699
+ */
3700
+ joinedAt?: string;
3680
3701
  [key: string]: any;
3681
3702
  }[];
3682
3703
  };
@@ -5647,6 +5668,24 @@ type GetPatternsApiResponse = {
5647
5668
  };
5648
5669
  /** Visibility scope (private, public, published). */
5649
5670
  visibility?: string;
5671
+ /** 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.
5672
+ */
5673
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
5674
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
5675
+ */
5676
+ viewCount?: number;
5677
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
5678
+ */
5679
+ downloadCount?: number;
5680
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
5681
+ */
5682
+ cloneCount?: number;
5683
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
5684
+ */
5685
+ deploymentCount?: number;
5686
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
5687
+ */
5688
+ shareCount?: number;
5650
5689
  /** Timestamp of design creation. */
5651
5690
  createdAt?: string;
5652
5691
  /** Timestamp of last design modification. */
@@ -6564,6 +6603,24 @@ type UpsertPatternApiResponse = {
6564
6603
  };
6565
6604
  /** Visibility scope (private, public, published). */
6566
6605
  visibility?: string;
6606
+ /** 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.
6607
+ */
6608
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
6609
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
6610
+ */
6611
+ viewCount?: number;
6612
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
6613
+ */
6614
+ downloadCount?: number;
6615
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
6616
+ */
6617
+ cloneCount?: number;
6618
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
6619
+ */
6620
+ deploymentCount?: number;
6621
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
6622
+ */
6623
+ shareCount?: number;
6567
6624
  /** Timestamp of design creation. */
6568
6625
  createdAt?: string;
6569
6626
  /** Timestamp of last design modification. */
@@ -7459,6 +7516,24 @@ type UpsertPatternApiArg = {
7459
7516
  };
7460
7517
  /** Visibility scope (private, public, published). */
7461
7518
  visibility?: string;
7519
+ /** 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.
7520
+ */
7521
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
7522
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
7523
+ */
7524
+ viewCount?: number;
7525
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
7526
+ */
7527
+ downloadCount?: number;
7528
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
7529
+ */
7530
+ cloneCount?: number;
7531
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
7532
+ */
7533
+ deploymentCount?: number;
7534
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
7535
+ */
7536
+ shareCount?: number;
7462
7537
  /** Timestamp of design creation. */
7463
7538
  createdAt?: string;
7464
7539
  /** Timestamp of last design modification. */
@@ -8392,6 +8467,24 @@ type GetPatternApiResponse = {
8392
8467
  };
8393
8468
  /** Visibility scope (private, public, published). */
8394
8469
  visibility?: string;
8470
+ /** 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.
8471
+ */
8472
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
8473
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
8474
+ */
8475
+ viewCount?: number;
8476
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
8477
+ */
8478
+ downloadCount?: number;
8479
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
8480
+ */
8481
+ cloneCount?: number;
8482
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
8483
+ */
8484
+ deploymentCount?: number;
8485
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
8486
+ */
8487
+ shareCount?: number;
8395
8488
  /** Timestamp of design creation. */
8396
8489
  createdAt?: string;
8397
8490
  /** Timestamp of last design modification. */
@@ -9291,6 +9384,24 @@ type ClonePatternApiResponse = {
9291
9384
  };
9292
9385
  /** Visibility scope (private, public, published). */
9293
9386
  visibility?: string;
9387
+ /** 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.
9388
+ */
9389
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
9390
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
9391
+ */
9392
+ viewCount?: number;
9393
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
9394
+ */
9395
+ downloadCount?: number;
9396
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
9397
+ */
9398
+ cloneCount?: number;
9399
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
9400
+ */
9401
+ deploymentCount?: number;
9402
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
9403
+ */
9404
+ shareCount?: number;
9294
9405
  /** Timestamp of design creation. */
9295
9406
  createdAt?: string;
9296
9407
  /** Timestamp of last design modification. */
@@ -10222,6 +10333,24 @@ type GetCatalogContentApiResponse = {
10222
10333
  };
10223
10334
  /** Visibility scope (private, public, published). */
10224
10335
  visibility?: string;
10336
+ /** 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.
10337
+ */
10338
+ designType?: "Design" | "Helm Chart" | "Docker Compose" | "Kubernetes Manifest";
10339
+ /** Server-aggregated count of views on this design in the catalog. Present on list/catalog responses; server-managed and ignored on writes.
10340
+ */
10341
+ viewCount?: number;
10342
+ /** Server-aggregated count of downloads of this design from the catalog. Server-managed and ignored on writes.
10343
+ */
10344
+ downloadCount?: number;
10345
+ /** Server-aggregated count of times this design has been cloned from the catalog. Server-managed and ignored on writes.
10346
+ */
10347
+ cloneCount?: number;
10348
+ /** Server-aggregated count of deployments originated from this design. Server-managed and ignored on writes.
10349
+ */
10350
+ deploymentCount?: number;
10351
+ /** Server-aggregated count of share events for this design. Server-managed and ignored on writes.
10352
+ */
10353
+ shareCount?: number;
10225
10354
  /** Timestamp of design creation. */
10226
10355
  createdAt?: string;
10227
10356
  /** Timestamp of last design modification. */