@shopify/hydrogen 2026.4.0 → 2026.4.1

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.
@@ -27,11 +27,11 @@ type CreateRequestHandlerOptions<Context = unknown> = {
27
27
  };
28
28
  /**
29
29
  * Creates a request handler for Hydrogen apps using React Router.
30
+ * @publicDocs
30
31
  */
31
32
  declare function createRequestHandler<Context = unknown>({ build, mode, poweredByHeader, getLoadContext, collectTrackingInformation, }: CreateRequestHandlerOptions<Context>): (request: Request) => Promise<Response>;
32
33
 
33
34
  type RequestEventPayload = {
34
- __fromVite?: boolean;
35
35
  url: string;
36
36
  eventType: 'request' | 'subrequest';
37
37
  requestId?: string | null;