@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/admin.cjs +1 -1
- package/dist/admin.js +1 -1
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/migrations/1774700000000-CollectionVariants.ts +13 -0
- package/package.json +1 -1
package/dist/admin.cjs
CHANGED
|
@@ -401,7 +401,7 @@ var defaultValue = {
|
|
|
401
401
|
var AdminConfigContext = (0, import_react4.createContext)(defaultValue);
|
|
402
402
|
|
|
403
403
|
// src/lib/cms-version.ts
|
|
404
|
-
var CMS_VERSION = true ? "1.0.
|
|
404
|
+
var CMS_VERSION = true ? "1.0.19" : "0.0.0";
|
|
405
405
|
|
|
406
406
|
// src/components/Admin/Sidebar.tsx
|
|
407
407
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
package/dist/admin.js
CHANGED
|
@@ -351,7 +351,7 @@ var defaultValue = {
|
|
|
351
351
|
var AdminConfigContext = createContext(defaultValue);
|
|
352
352
|
|
|
353
353
|
// src/lib/cms-version.ts
|
|
354
|
-
var CMS_VERSION = true ? "1.0.
|
|
354
|
+
var CMS_VERSION = true ? "1.0.19" : "0.0.0";
|
|
355
355
|
|
|
356
356
|
// src/components/Admin/Sidebar.tsx
|
|
357
357
|
import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
package/dist/index.cjs
CHANGED
|
@@ -6769,6 +6769,7 @@ var Collection = class {
|
|
|
6769
6769
|
description;
|
|
6770
6770
|
image;
|
|
6771
6771
|
metadata;
|
|
6772
|
+
variants;
|
|
6772
6773
|
active;
|
|
6773
6774
|
sortOrder;
|
|
6774
6775
|
createdAt;
|
|
@@ -6811,6 +6812,9 @@ __decorateClass([
|
|
|
6811
6812
|
__decorateClass([
|
|
6812
6813
|
(0, import_typeorm31.Column)("jsonb", { nullable: true })
|
|
6813
6814
|
], Collection.prototype, "metadata", 2);
|
|
6815
|
+
__decorateClass([
|
|
6816
|
+
(0, import_typeorm31.Column)("jsonb", { nullable: true })
|
|
6817
|
+
], Collection.prototype, "variants", 2);
|
|
6814
6818
|
__decorateClass([
|
|
6815
6819
|
(0, import_typeorm31.Column)("boolean", { default: true })
|
|
6816
6820
|
], Collection.prototype, "active", 2);
|