@typia/interface 13.0.0-dev.20260430 → 13.0.0-dev.20260502
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.
package/lib/openapi/OpenApi.d.ts
CHANGED
|
@@ -140,7 +140,10 @@ export declare namespace OpenApi {
|
|
|
140
140
|
summary?: string;
|
|
141
141
|
/** Path description. */
|
|
142
142
|
description?: string;
|
|
143
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Additional non-standard HTTP method operations (e.g., LINK, UNLINK,
|
|
145
|
+
* PURGE).
|
|
146
|
+
*/
|
|
144
147
|
additionalOperations?: Record<string, IOperation>;
|
|
145
148
|
}
|
|
146
149
|
/** API operation metadata. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typia/interface",
|
|
3
|
-
"version": "13.0.0-dev.
|
|
3
|
+
"version": "13.0.0-dev.20260502",
|
|
4
4
|
"description": "Superfast runtime validators with only one line",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@typescript/native-preview": "7.0.0-dev.20260429.1",
|
|
26
26
|
"rimraf": "^6.1.2",
|
|
27
|
-
"ttsc": "^0.
|
|
27
|
+
"ttsc": "^0.7.2"
|
|
28
28
|
},
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"files": [
|
package/src/openapi/OpenApi.ts
CHANGED
|
@@ -185,7 +185,10 @@ export namespace OpenApi {
|
|
|
185
185
|
/** Path description. */
|
|
186
186
|
description?: string;
|
|
187
187
|
|
|
188
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Additional non-standard HTTP method operations (e.g., LINK, UNLINK,
|
|
190
|
+
* PURGE).
|
|
191
|
+
*/
|
|
189
192
|
additionalOperations?: Record<string, IOperation>;
|
|
190
193
|
}
|
|
191
194
|
|