appos 0.1.22-0 → 0.1.23-0

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.
@@ -8331,9 +8331,9 @@ type HandlerParams<TParams extends z.ZodSchema | undefined = undefined, TQuery e
8331
8331
  description: string;
8332
8332
  schema: z.ZodSchema;
8333
8333
  }>> = {
8334
- request: Request;
8334
+ request: Request & AppOSRequest;
8335
8335
  params: TParams extends z.ZodSchema ? z.infer<TParams> : Record<string, unknown>;
8336
- context: Express.Locals;
8336
+ context: Express.Locals & AppOSLocals;
8337
8337
  body: TBody extends z.ZodSchema ? z.infer<TBody> : unknown;
8338
8338
  query: TQuery extends z.ZodSchema ? z.infer<TQuery> : Record<string, unknown>;
8339
8339
  headers: THeaders extends z.ZodSchema ? z.infer<THeaders> : Record<string, string>;