You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
26
+
*/
27
+
progressToken: z.optional(ProgressTokenSchema),
28
+
})
29
+
.passthrough();
30
+
22
31
constBaseRequestParamsSchema=z
23
32
.object({
24
-
_meta: z.optional(
25
-
z
26
-
.object({
27
-
/**
28
-
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
29
-
*/
30
-
progressToken: z.optional(ProgressTokenSchema),
31
-
})
32
-
.passthrough(),
33
-
),
33
+
_meta: z.optional(RequestMetaSchema),
34
34
})
35
35
.passthrough();
36
36
@@ -1240,6 +1240,7 @@ type Infer<Schema extends ZodTypeAny> = Flatten<z.infer<Schema>>;
0 commit comments