@phosart/common 0.4.51 → 0.4.52

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.
@@ -16,7 +16,7 @@ declare const ZStringOption: z.ZodObject<{
16
16
  type: z.ZodLiteral<"string">;
17
17
  }, z.z.core.$strip>;
18
18
  declare const ZBigStringOption: z.ZodObject<{
19
- type: z.ZodUnion<readonly [z.ZodLiteral<"textbox">, z.ZodLiteral<"json">, z.ZodLiteral<"markdown">]>;
19
+ type: z.ZodUnion<readonly [z.ZodLiteral<"textbox">, z.ZodLiteral<"json">, z.ZodLiteral<"markdown">, z.ZodLiteral<"yaml">]>;
20
20
  }, z.z.core.$strip>;
21
21
  declare const ZBoolOption: z.ZodObject<{
22
22
  type: z.ZodLiteral<"boolean">;
@@ -28,7 +28,7 @@ declare const ZStringList: z.ZodObject<{
28
28
  type: z.ZodLiteral<"string-list">;
29
29
  }, z.z.core.$strip>;
30
30
  export declare const ZThemeSettingsSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
31
- type: z.ZodUnion<readonly [z.ZodLiteral<"textbox">, z.ZodLiteral<"json">, z.ZodLiteral<"markdown">]>;
31
+ type: z.ZodUnion<readonly [z.ZodLiteral<"textbox">, z.ZodLiteral<"json">, z.ZodLiteral<"markdown">, z.ZodLiteral<"yaml">]>;
32
32
  }, z.z.core.$strip>, z.ZodObject<{
33
33
  type: z.ZodLiteral<"color">;
34
34
  }, z.z.core.$strip>, z.ZodObject<{
@@ -26,7 +26,7 @@ const ZMultiSelectionOption = z.object({
26
26
  });
27
27
  const ZStringOption = z.object({ type: z.literal('string') });
28
28
  const ZBigStringOption = z.object({
29
- type: z.union([z.literal('textbox'), z.literal('json'), z.literal('markdown')])
29
+ type: z.union([z.literal('textbox'), z.literal('json'), z.literal('markdown'), z.literal('yaml')])
30
30
  });
31
31
  const ZBoolOption = z.object({ type: z.literal('boolean') });
32
32
  const ZTagsOption = z.object({ type: z.literal('tag-list') });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phosart/common",
3
- "version": "0.4.51",
3
+ "version": "0.4.52",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",
@@ -28,7 +28,7 @@ const ZMultiSelectionOption = z.object({
28
28
  });
29
29
  const ZStringOption = z.object({ type: z.literal('string') });
30
30
  const ZBigStringOption = z.object({
31
- type: z.union([z.literal('textbox'), z.literal('json'), z.literal('markdown')])
31
+ type: z.union([z.literal('textbox'), z.literal('json'), z.literal('markdown'), z.literal('yaml')])
32
32
  });
33
33
  const ZBoolOption = z.object({ type: z.literal('boolean') });
34
34
  const ZTagsOption = z.object({ type: z.literal('tag-list') });