@infuro/cms-core 1.0.18 → 1.0.19

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/index.d.cts CHANGED
@@ -1048,6 +1048,7 @@ declare class Collection {
1048
1048
  description: string | null;
1049
1049
  image: string | null;
1050
1050
  metadata: Record<string, unknown> | null;
1051
+ variants: Array<Record<string, unknown>> | null;
1051
1052
  active: boolean;
1052
1053
  sortOrder: number;
1053
1054
  createdAt: Date;
package/dist/index.d.ts CHANGED
@@ -1048,6 +1048,7 @@ declare class Collection {
1048
1048
  description: string | null;
1049
1049
  image: string | null;
1050
1050
  metadata: Record<string, unknown> | null;
1051
+ variants: Array<Record<string, unknown>> | null;
1051
1052
  active: boolean;
1052
1053
  sortOrder: number;
1053
1054
  createdAt: Date;
package/dist/index.js CHANGED
@@ -6605,6 +6605,7 @@ var Collection = class {
6605
6605
  description;
6606
6606
  image;
6607
6607
  metadata;
6608
+ variants;
6608
6609
  active;
6609
6610
  sortOrder;
6610
6611
  createdAt;
@@ -6647,6 +6648,9 @@ __decorateClass([
6647
6648
  __decorateClass([
6648
6649
  Column26("jsonb", { nullable: true })
6649
6650
  ], Collection.prototype, "metadata", 2);
6651
+ __decorateClass([
6652
+ Column26("jsonb", { nullable: true })
6653
+ ], Collection.prototype, "variants", 2);
6650
6654
  __decorateClass([
6651
6655
  Column26("boolean", { default: true })
6652
6656
  ], Collection.prototype, "active", 2);