typia 5.5.9 → 5.5.10

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.
@@ -19,6 +19,7 @@ export declare namespace IJsonSchema {
19
19
  maxLength?: undefined | (number & Type<"uint32">);
20
20
  pattern?: undefined | string;
21
21
  format?: undefined | "binary" | "byte" | "password" | "regex" | "uuid" | "email" | "hostname" | "idn-email" | "idn-hostname" | "iri" | "iri-reference" | "ipv4" | "ipv6" | "uri" | "uri-reference" | "uri-template" | "url" | "date-time" | "date" | "time" | "duration" | "json-pointer" | "relative-json-pointer" | (string & {});
22
+ contentMediaType?: undefined | string;
22
23
  "x-typia-typeTags"?: undefined | IMetadataTypeTag[];
23
24
  }
24
25
  interface INumber extends IAtomic<"number"> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typia",
3
- "version": "5.5.9",
3
+ "version": "5.5.10",
4
4
  "description": "Superfast runtime validators with only one line",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -68,6 +68,7 @@ export namespace IJsonSchema {
68
68
  | "json-pointer"
69
69
  | "relative-json-pointer"
70
70
  | (string & {});
71
+ contentMediaType?: undefined | string;
71
72
  "x-typia-typeTags"?: undefined | IMetadataTypeTag[];
72
73
  }
73
74
  export interface INumber extends IAtomic<"number"> {