MCP TypeScript SDK (V2)
    Preparing search index...

    Variable ResourceUpdatedNotificationSchemaConst

    ResourceUpdatedNotificationSchema: ZodObject<
        {
            method: ZodLiteral<"notifications/resources/updated">;
            params: ZodObject<
                {
                    _meta: ZodOptional<
                        ZodObject<
                            {
                                "io.modelcontextprotocol/related-task": ZodOptional<
                                    ZodObject<{ taskId: ZodString }, $strip>,
                                >;
                                progressToken: ZodOptional<ZodUnion<readonly [ZodString, ZodNumber]>>;
                            },
                            $loose,
                        >,
                    >;
                    uri: ZodString;
                },
                $strip,
            >;
        },
        $strip,
    > = ...

    A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request.