@infuro/cms-core 1.0.45 → 1.0.46
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 +19 -2
- package/dist/admin.cjs +873 -214
- package/dist/admin.d.cts +7 -1
- package/dist/admin.d.ts +7 -1
- package/dist/admin.js +874 -215
- package/dist/api.cjs +40 -37
- package/dist/api.d.cts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +8 -5
- package/dist/auth.cjs +23 -23
- package/dist/auth.d.cts +1 -0
- package/dist/auth.d.ts +1 -0
- package/dist/auth.js +2 -2
- package/dist/chunk-2KUCQVAQ.js +936 -0
- package/dist/chunk-3K5AIEIZ.js +256 -0
- package/dist/{chunk-I6NH72MO.js → chunk-57O3HZPG.js} +9 -1
- package/dist/chunk-7PMHZRF3.cjs +872 -0
- package/dist/chunk-BXYZDMTZ.cjs +953 -0
- package/dist/chunk-CQHXW4TR.js +107 -0
- package/dist/{chunk-NNQBWDCI.js → chunk-CRYKVJTO.js} +55 -959
- package/dist/chunk-DBPSJYLZ.js +47 -0
- package/dist/{chunk-TAHX46EI.cjs → chunk-FBKDMRQL.cjs} +9 -1
- package/dist/chunk-GUSHM5HN.js +862 -0
- package/dist/chunk-HY3AXLOI.cjs +265 -0
- package/dist/chunk-L3525VXI.js +243 -0
- package/dist/{chunk-ZMRQ72F6.cjs → chunk-NBY4NVTY.cjs} +3 -3
- package/dist/chunk-OY2YTBMP.cjs +50 -0
- package/dist/{chunk-BLR6H5GL.js → chunk-SF2XKMCI.js} +3 -3
- package/dist/{chunk-22FFHLTO.cjs → chunk-TCSGFAWB.cjs} +56 -970
- package/dist/{chunk-F5XFHYTG.cjs → chunk-UDVLFVEC.cjs} +661 -382
- package/dist/{chunk-MVXLRANV.js → chunk-UKC3HYXI.js} +591 -323
- package/dist/chunk-V25RDUOU.cjs +248 -0
- package/dist/chunk-XMRMZ6NQ.cjs +109 -0
- package/dist/cli.cjs +9 -4
- package/dist/cli.js +9 -4
- package/dist/{email-queue-TPZWLTIV.cjs → email-queue-6NJY6HNM.cjs} +7 -5
- package/dist/email-queue-OI2HSCGE.js +4 -0
- package/dist/erp-order-invoice-3GXDE443.js +3 -0
- package/dist/erp-order-invoice-EYYNR526.cjs +24 -0
- package/dist/index.cjs +391 -364
- package/dist/index.d.cts +267 -14
- package/dist/index.d.ts +267 -14
- package/dist/index.js +12 -110
- package/dist/migrations/1781810000000-OrderItemsVariantId.ts +44 -0
- package/dist/migrations/1781900000000-UserInviteStatusToken.ts +46 -0
- package/dist/migrations/1782000000000-ComboSlug.ts +58 -0
- package/dist/migrations/1782100000000-DiscountDeviceType.ts +20 -0
- package/dist/order-inventory-2MYRKEPC.cjs +39 -0
- package/dist/order-inventory-76V4XIGW.js +2 -0
- package/dist/order-notification-dispatcher-SBQAMM5V.cjs +21 -0
- package/dist/{order-notification-dispatcher-XWIJYDGA.js → order-notification-dispatcher-ZJZB2HUN.js} +5 -2
- package/dist/retire-soft-deleted-unique-5VXBA5XX.cjs +15 -0
- package/dist/retire-soft-deleted-unique-NXQIH4BC.js +2 -0
- package/dist/send-order-placed-emails-B5ZVJT7T.cjs +15 -0
- package/dist/send-order-placed-emails-WPI37KRZ.js +6 -0
- package/package.json +5 -4
- package/src/admin/admin.css +27 -24
- package/dist/chunk-5ELSW2UP.js +0 -150
- package/dist/chunk-PNOKNSG2.cjs +0 -222
- package/dist/chunk-WEMDMVHQ.js +0 -216
- package/dist/chunk-XW5ATPRW.cjs +0 -155
- package/dist/email-queue-CGZBVVAS.js +0 -2
- package/dist/erp-order-invoice-3YISSOWW.js +0 -3
- package/dist/erp-order-invoice-ZR5F2KTA.cjs +0 -12
- package/dist/order-notification-dispatcher-RU7BTGGX.cjs +0 -18
package/dist/admin.d.cts
CHANGED
|
@@ -123,6 +123,9 @@ interface CustomCrudColumn {
|
|
|
123
123
|
* Example: `{ field: 'status', displayName: 'Status', type: 'select', options: [{ value: 'new', label: 'New' }, ...] }`
|
|
124
124
|
*
|
|
125
125
|
* For `type: 'multiSelect'`: checkbox list; use `relationApi` or static `options` (values stored as string[]).
|
|
126
|
+
*
|
|
127
|
+
* For `type: 'image'`: URL + file upload via `ImageOrUrlField` (image or video URL string).
|
|
128
|
+
* For `type: 'file'`: upload-only control.
|
|
126
129
|
*/
|
|
127
130
|
options?: CrudFilterSelectOption[];
|
|
128
131
|
/** Initial value when creating a row (works with `select` and plain fields). */
|
|
@@ -146,6 +149,8 @@ interface CustomCrudColumn {
|
|
|
146
149
|
/** When true, column is omitted from the list table but still available in Add/Edit. */
|
|
147
150
|
hideInTable?: boolean;
|
|
148
151
|
hideInEdit?: boolean;
|
|
152
|
+
/** When true, omit from Add/Edit form entirely (still shown in list unless hideInTable). */
|
|
153
|
+
hideInForm?: boolean;
|
|
149
154
|
}
|
|
150
155
|
interface CrudFilter {
|
|
151
156
|
/** Query param name (e.g. status, dateFrom, paymentRef). List filter: select, dateRange, or text. */
|
|
@@ -320,7 +325,7 @@ type CreateEditFormProps = {
|
|
|
320
325
|
isOpen: boolean;
|
|
321
326
|
onClose: () => void;
|
|
322
327
|
/** Called only after a successful POST/PUT so parents can refetch lists without reloading on cancel. */
|
|
323
|
-
onSaveSuccess?: () => void;
|
|
328
|
+
onSaveSuccess?: (result?: Record<string, unknown>) => void;
|
|
324
329
|
apiEndpoint: string;
|
|
325
330
|
columns: any[];
|
|
326
331
|
existingData?: Record<string, unknown> | null;
|
|
@@ -559,6 +564,7 @@ declare function resolveCategoryRelatedProductLabels(config: Record<string, Cate
|
|
|
559
564
|
/**
|
|
560
565
|
* Theme + toast wrapper for admin. SessionProvider must live at the app root
|
|
561
566
|
* (see README providers.tsx) — do not nest a second SessionProvider here.
|
|
567
|
+
* Admin is light-only; browser/OS dark preference is ignored.
|
|
562
568
|
*/
|
|
563
569
|
declare function CmsProviders({ children }: {
|
|
564
570
|
children: React.ReactNode;
|
package/dist/admin.d.ts
CHANGED
|
@@ -123,6 +123,9 @@ interface CustomCrudColumn {
|
|
|
123
123
|
* Example: `{ field: 'status', displayName: 'Status', type: 'select', options: [{ value: 'new', label: 'New' }, ...] }`
|
|
124
124
|
*
|
|
125
125
|
* For `type: 'multiSelect'`: checkbox list; use `relationApi` or static `options` (values stored as string[]).
|
|
126
|
+
*
|
|
127
|
+
* For `type: 'image'`: URL + file upload via `ImageOrUrlField` (image or video URL string).
|
|
128
|
+
* For `type: 'file'`: upload-only control.
|
|
126
129
|
*/
|
|
127
130
|
options?: CrudFilterSelectOption[];
|
|
128
131
|
/** Initial value when creating a row (works with `select` and plain fields). */
|
|
@@ -146,6 +149,8 @@ interface CustomCrudColumn {
|
|
|
146
149
|
/** When true, column is omitted from the list table but still available in Add/Edit. */
|
|
147
150
|
hideInTable?: boolean;
|
|
148
151
|
hideInEdit?: boolean;
|
|
152
|
+
/** When true, omit from Add/Edit form entirely (still shown in list unless hideInTable). */
|
|
153
|
+
hideInForm?: boolean;
|
|
149
154
|
}
|
|
150
155
|
interface CrudFilter {
|
|
151
156
|
/** Query param name (e.g. status, dateFrom, paymentRef). List filter: select, dateRange, or text. */
|
|
@@ -320,7 +325,7 @@ type CreateEditFormProps = {
|
|
|
320
325
|
isOpen: boolean;
|
|
321
326
|
onClose: () => void;
|
|
322
327
|
/** Called only after a successful POST/PUT so parents can refetch lists without reloading on cancel. */
|
|
323
|
-
onSaveSuccess?: () => void;
|
|
328
|
+
onSaveSuccess?: (result?: Record<string, unknown>) => void;
|
|
324
329
|
apiEndpoint: string;
|
|
325
330
|
columns: any[];
|
|
326
331
|
existingData?: Record<string, unknown> | null;
|
|
@@ -559,6 +564,7 @@ declare function resolveCategoryRelatedProductLabels(config: Record<string, Cate
|
|
|
559
564
|
/**
|
|
560
565
|
* Theme + toast wrapper for admin. SessionProvider must live at the app root
|
|
561
566
|
* (see README providers.tsx) — do not nest a second SessionProvider here.
|
|
567
|
+
* Admin is light-only; browser/OS dark preference is ignored.
|
|
562
568
|
*/
|
|
563
569
|
declare function CmsProviders({ children }: {
|
|
564
570
|
children: React.ReactNode;
|