@orpc/contract 1.7.7 → 1.7.8
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/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -68,6 +68,13 @@ interface Route {
|
|
|
68
68
|
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
69
69
|
*/
|
|
70
70
|
path?: HTTPPath;
|
|
71
|
+
/**
|
|
72
|
+
* The operation ID of the endpoint.
|
|
73
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
74
|
+
*
|
|
75
|
+
* @default Concatenation of router segments
|
|
76
|
+
*/
|
|
77
|
+
operationId?: string;
|
|
71
78
|
/**
|
|
72
79
|
* The summary of the procedure.
|
|
73
80
|
* This option is typically relevant when integrating with OpenAPI.
|
|
@@ -166,7 +173,7 @@ interface Route {
|
|
|
166
173
|
*
|
|
167
174
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata Operation Metadata Docs}
|
|
168
175
|
*/
|
|
169
|
-
spec?: OpenAPIV3_1.OperationObject;
|
|
176
|
+
spec?: OpenAPIV3_1.OperationObject | ((current: OpenAPIV3_1.OperationObject) => OpenAPIV3_1.OperationObject);
|
|
170
177
|
}
|
|
171
178
|
declare function mergeRoute(a: Route, b: Route): Route;
|
|
172
179
|
declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
|
package/dist/index.d.ts
CHANGED
|
@@ -68,6 +68,13 @@ interface Route {
|
|
|
68
68
|
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
69
69
|
*/
|
|
70
70
|
path?: HTTPPath;
|
|
71
|
+
/**
|
|
72
|
+
* The operation ID of the endpoint.
|
|
73
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
74
|
+
*
|
|
75
|
+
* @default Concatenation of router segments
|
|
76
|
+
*/
|
|
77
|
+
operationId?: string;
|
|
71
78
|
/**
|
|
72
79
|
* The summary of the procedure.
|
|
73
80
|
* This option is typically relevant when integrating with OpenAPI.
|
|
@@ -166,7 +173,7 @@ interface Route {
|
|
|
166
173
|
*
|
|
167
174
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata Operation Metadata Docs}
|
|
168
175
|
*/
|
|
169
|
-
spec?: OpenAPIV3_1.OperationObject;
|
|
176
|
+
spec?: OpenAPIV3_1.OperationObject | ((current: OpenAPIV3_1.OperationObject) => OpenAPIV3_1.OperationObject);
|
|
170
177
|
}
|
|
171
178
|
declare function mergeRoute(a: Route, b: Route): Route;
|
|
172
179
|
declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/contract",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.8",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@standard-schema/spec": "^1.0.0",
|
|
28
28
|
"openapi-types": "^12.1.3",
|
|
29
|
-
"@orpc/client": "1.7.
|
|
30
|
-
"@orpc/shared": "1.7.
|
|
29
|
+
"@orpc/client": "1.7.8",
|
|
30
|
+
"@orpc/shared": "1.7.8"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"arktype": "2.1.20",
|