Skip to content

Commit 0822daa

Browse files
authored
Merge pull request #895 from samchon/features/metadata
Fix #893 - erase `@internal` tag from `IMetadataDictionary`.
2 parents 2067670 + c85d940 commit 0822daa

7 files changed

Lines changed: 7 additions & 9 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typia",
3-
"version": "5.3.2",
3+
"version": "5.3.3",
44
"description": "Superfast runtime validators with only one line",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",

packages/benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@
7373
"suppress-warnings": "^1.0.2",
7474
"tstl": "^2.5.13",
7575
"uuid": "^9.0.1",
76-
"typia": "D:\\github\\samchon\\typia\\typia-5.3.2.tgz"
76+
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
7777
}
7878
}

packages/errors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"typescript": "^5.3.2"
3333
},
3434
"dependencies": {
35-
"typia": "D:\\github\\samchon\\typia\\typia-5.3.2.tgz"
35+
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
3636
}
3737
}

packages/test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646
"suppress-warnings": "^1.0.2",
4747
"tstl": "^2.5.13",
4848
"uuid": "^9.0.1",
49-
"typia": "D:\\github\\samchon\\typia\\typia-5.3.2.tgz"
49+
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
5050
}
5151
}

packages/typescript-json/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-json",
3-
"version": "5.3.2",
3+
"version": "5.3.3",
44
"description": "Superfast runtime validators with only one line",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
@@ -56,7 +56,7 @@
5656
},
5757
"homepage": "https://typia.io",
5858
"dependencies": {
59-
"typia": "5.3.2"
59+
"typia": "5.3.3"
6060
},
6161
"peerDependencies": {
6262
"typescript": ">=4.8.0 <5.4.0"

src/module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export * as protobuf from "./protobuf";
1313
export * as reflect from "./reflect";
1414
export * as tags from "./tags";
1515

16+
export * from "./schemas/metadata/IJsDocTagInfo";
1617
export * from "./schemas/json/IJsonApplication";
1718
export * from "./schemas/json/IJsonComponents";
1819
export * from "./schemas/json/IJsonSchema";

src/schemas/metadata/IMetadataDictionary.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import { MetadataArrayType } from "./MetadataArrayType";
33
import { MetadataObject } from "./MetadataObject";
44
import { MetadataTupleType } from "./MetadataTupleType";
55

6-
/**
7-
* @internal
8-
*/
96
export interface IMetadataDictionary {
107
objects: Map<string, MetadataObject>;
118
aliases: Map<string, MetadataAlias>;

0 commit comments

Comments
 (0)