Global scope (default)
No scope parameter — the event reaches every connected client. Use for public data like product catalogs or announcements.
// Global scope (default) — all connected clients receive the event
await tagInvalidation.invalidateTags({
tags: [appTags.products.list()],
// No scope = { kind: "global" }
})