Skip to content

Commit

Permalink
Merge pull request #895 from samchon/features/metadata
Browse files Browse the repository at this point in the history
Fix #893 - erase `@internal` tag from `IMetadataDictionary`.
  • Loading branch information
samchon authored Nov 30, 2023
2 parents 2067670 + c85d940 commit 0822daa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typia",
"version": "5.3.2",
"version": "5.3.3",
"description": "Superfast runtime validators with only one line",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
"suppress-warnings": "^1.0.2",
"tstl": "^2.5.13",
"uuid": "^9.0.1",
"typia": "D:\\github\\samchon\\typia\\typia-5.3.2.tgz"
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
}
}
2 changes: 1 addition & 1 deletion packages/errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"typescript": "^5.3.2"
},
"dependencies": {
"typia": "D:\\github\\samchon\\typia\\typia-5.3.2.tgz"
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
}
}
2 changes: 1 addition & 1 deletion packages/test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
"suppress-warnings": "^1.0.2",
"tstl": "^2.5.13",
"uuid": "^9.0.1",
"typia": "D:\\github\\samchon\\typia\\typia-5.3.2.tgz"
"typia": "D:\\github\\samchon\\typia\\typia-5.3.3.tgz"
}
}
4 changes: 2 additions & 2 deletions packages/typescript-json/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-json",
"version": "5.3.2",
"version": "5.3.3",
"description": "Superfast runtime validators with only one line",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -56,7 +56,7 @@
},
"homepage": "https://typia.io",
"dependencies": {
"typia": "5.3.2"
"typia": "5.3.3"
},
"peerDependencies": {
"typescript": ">=4.8.0 <5.4.0"
Expand Down
1 change: 1 addition & 0 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export * as protobuf from "./protobuf";
export * as reflect from "./reflect";
export * as tags from "./tags";

export * from "./schemas/metadata/IJsDocTagInfo";
export * from "./schemas/json/IJsonApplication";
export * from "./schemas/json/IJsonComponents";
export * from "./schemas/json/IJsonSchema";
Expand Down
3 changes: 0 additions & 3 deletions src/schemas/metadata/IMetadataDictionary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ import { MetadataArrayType } from "./MetadataArrayType";
import { MetadataObject } from "./MetadataObject";
import { MetadataTupleType } from "./MetadataTupleType";

/**
* @internal
*/
export interface IMetadataDictionary {
objects: Map<string, MetadataObject>;
aliases: Map<string, MetadataAlias>;
Expand Down

0 comments on commit 0822daa

Please sign in to comment.