@clxmedia/types 1.0.37 → 1.0.38
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.
|
@@ -341,6 +341,14 @@ export type CLXFormStep = {
|
|
|
341
341
|
sections: CLXFormSection[];
|
|
342
342
|
conditions?: CLXFormRuleSet;
|
|
343
343
|
};
|
|
344
|
+
export type FormStatCount = {
|
|
345
|
+
complete: number;
|
|
346
|
+
total: number;
|
|
347
|
+
};
|
|
348
|
+
export type FormStats = {
|
|
349
|
+
optional: FormStatCount;
|
|
350
|
+
required: FormStatCount;
|
|
351
|
+
};
|
|
344
352
|
export type CLXFormLayout = {
|
|
345
353
|
form: {
|
|
346
354
|
slug: string;
|
|
@@ -348,7 +356,5 @@ export type CLXFormLayout = {
|
|
|
348
356
|
description?: string;
|
|
349
357
|
};
|
|
350
358
|
steps: CLXFormStep[];
|
|
351
|
-
|
|
352
|
-
totalCount?: number;
|
|
353
|
-
updated_at?: number;
|
|
359
|
+
stats?: FormStats;
|
|
354
360
|
};
|