@zyacreatives/shared 1.5.1 → 1.5.2

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.
@@ -17,8 +17,8 @@ export declare const CreateDisciplinesOutputSchema: z.ZodObject<{
17
17
  disciplines: z.ZodArray<z.ZodString>;
18
18
  }, z.core.$strip>;
19
19
  export declare const GetDisciplinesInputSchema: z.ZodObject<{
20
- withTags: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>>;
21
- getDefault: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>>;
20
+ withTags: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>;
21
+ getDefault: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>;
22
22
  slugs: z.ZodOptional<z.ZodString>;
23
23
  }, z.core.$strip>;
24
24
  export declare const GetDisciplinesOutputSchema: z.ZodObject<{
@@ -46,7 +46,6 @@ exports.GetDisciplinesInputSchema = zod_openapi_1.z
46
46
  withTags: zod_openapi_1.z
47
47
  .union([zod_openapi_1.z.literal("true"), zod_openapi_1.z.literal("false")])
48
48
  .optional()
49
- .default("false")
50
49
  .openapi({
51
50
  description: "Whether to include tags in the response.",
52
51
  example: "true",
@@ -54,7 +53,6 @@ exports.GetDisciplinesInputSchema = zod_openapi_1.z
54
53
  getDefault: zod_openapi_1.z
55
54
  .union([zod_openapi_1.z.literal("true"), zod_openapi_1.z.literal("false")])
56
55
  .optional()
57
- .default("false")
58
56
  .openapi({
59
57
  description: "Fetch the default list of disciplines (non user-added disciplines).",
60
58
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -50,7 +50,6 @@ export const GetDisciplinesInputSchema = z
50
50
  withTags: z
51
51
  .union([z.literal("true"), z.literal("false")])
52
52
  .optional()
53
- .default("false")
54
53
  .openapi({
55
54
  description: "Whether to include tags in the response.",
56
55
  example: "true",
@@ -58,7 +57,6 @@ export const GetDisciplinesInputSchema = z
58
57
  getDefault: z
59
58
  .union([z.literal("true"), z.literal("false")])
60
59
  .optional()
61
- .default("false")
62
60
  .openapi({
63
61
  description:
64
62
  "Fetch the default list of disciplines (non user-added disciplines).",