@infuro/cms-core 1.0.44 → 1.0.45
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 +541 -407
- package/dist/admin.d.cts +1 -1
- package/dist/admin.d.ts +1 -1
- package/dist/admin.js +541 -407
- package/dist/api.cjs +32 -32
- package/dist/api.d.cts +2 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +1 -1
- package/dist/{chunk-P2IWWBJV.cjs → chunk-F5XFHYTG.cjs} +703 -269
- package/dist/{chunk-SQGBHYJF.js → chunk-MVXLRANV.js} +700 -271
- package/dist/index.cjs +241 -201
- package/dist/index.d.cts +42 -7
- package/dist/index.d.ts +42 -7
- package/dist/index.js +21 -2
- package/dist/migrations/1781800000000-CustomerPhoneNullable.ts +53 -0
- package/package.json +1 -1
package/dist/admin.d.cts
CHANGED
|
@@ -326,7 +326,7 @@ type CreateEditFormProps = {
|
|
|
326
326
|
existingData?: Record<string, unknown> | null;
|
|
327
327
|
/** When creating: pre-fill the modal from this row (POST only; omit `id` in payload). */
|
|
328
328
|
duplicateSeed?: Record<string, unknown> | null;
|
|
329
|
-
/** Resource key from config
|
|
329
|
+
/** Resource key from config. */
|
|
330
330
|
resource?: string;
|
|
331
331
|
};
|
|
332
332
|
declare function CreateEditForm({ isOpen, onClose, onSaveSuccess, apiEndpoint, columns, existingData, duplicateSeed, resource, }: CreateEditFormProps): react_jsx_runtime.JSX.Element | null;
|
package/dist/admin.d.ts
CHANGED
|
@@ -326,7 +326,7 @@ type CreateEditFormProps = {
|
|
|
326
326
|
existingData?: Record<string, unknown> | null;
|
|
327
327
|
/** When creating: pre-fill the modal from this row (POST only; omit `id` in payload). */
|
|
328
328
|
duplicateSeed?: Record<string, unknown> | null;
|
|
329
|
-
/** Resource key from config
|
|
329
|
+
/** Resource key from config. */
|
|
330
330
|
resource?: string;
|
|
331
331
|
};
|
|
332
332
|
declare function CreateEditForm({ isOpen, onClose, onSaveSuccess, apiEndpoint, columns, existingData, duplicateSeed, resource, }: CreateEditFormProps): react_jsx_runtime.JSX.Element | null;
|