@openframe-org/criteria-set-protocol 2.1.1 → 2.1.3

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.
@@ -2,15 +2,9 @@ import { z } from "zod";
2
2
  export declare const DASHBOARD_CATEGORY_LISTING_TYPES: readonly ["per-criteria", "per-task"];
3
3
  export declare const dashboardCategoryListingTypeSchema: z.ZodEnum<["per-criteria", "per-task"]>;
4
4
  export declare const criteriaSetOptionsSchema: z.ZodObject<{
5
- /**
6
- * @deprecated Use dashboardRenderingType = renderDetailedViewInDashboard === false ? 'per-criteria' : 'per-task'
7
- */
8
- renderDetailedViewInDashboard: z.ZodOptional<z.ZodBoolean>;
9
5
  dashboardRenderingType: z.ZodOptional<z.ZodString>;
10
6
  }, "strip", z.ZodTypeAny, {
11
- renderDetailedViewInDashboard?: boolean | undefined;
12
7
  dashboardRenderingType?: string | undefined;
13
8
  }, {
14
- renderDetailedViewInDashboard?: boolean | undefined;
15
9
  dashboardRenderingType?: string | undefined;
16
10
  }>;
@@ -9,13 +9,6 @@ exports.DASHBOARD_CATEGORY_LISTING_TYPES = [
9
9
  exports.dashboardCategoryListingTypeSchema = zod_1.z.enum(exports.DASHBOARD_CATEGORY_LISTING_TYPES);
10
10
  exports.criteriaSetOptionsSchema = zod_1.z
11
11
  .object({
12
- /**
13
- * @deprecated Use dashboardRenderingType = renderDetailedViewInDashboard === false ? 'per-criteria' : 'per-task'
14
- */
15
- renderDetailedViewInDashboard: zod_1.z
16
- .boolean()
17
- .optional()
18
- .describe("Deprecated. Use dashboardRenderingType = renderDetailedViewInDashboard === false ? 'per-criteria' : 'per-task'"),
19
12
  dashboardRenderingType: zod_1.z
20
13
  .string()
21
14
  .optional()