appos 0.1.25-0 → 0.1.28-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.
@@ -29,7 +29,7 @@ import * as keyv0 from "keyv";
29
29
  import Keyv from "keyv";
30
30
  import { Server, Socket } from "socket.io";
31
31
  import * as express from "express";
32
- import { Express, Request, RequestHandler } from "express";
32
+ import { Locals, Request, RequestHandler } from "express";
33
33
  import { NodeHTTPCreateContextFnOptions } from "@trpc/server/adapters/node-http";
34
34
 
35
35
  //#region app/.server/primitives/logger.d.ts
@@ -8286,21 +8286,6 @@ interface AppOSRequest {
8286
8286
  */
8287
8287
  t: TFunction;
8288
8288
  }
8289
- /**
8290
- * AppOS namespace for user-extensible types and Express augmentations.
8291
- */
8292
- declare global {
8293
- namespace Express {
8294
- /**
8295
- * The request object extended with the application container.
8296
- */
8297
- interface Request extends AppOSRequest {}
8298
- /**
8299
- * The app.locals extended with typed workflows.
8300
- */
8301
- interface Locals extends AppOSLocals {}
8302
- }
8303
- }
8304
8289
  //#endregion
8305
8290
  //#region app/.server/primitives/openapi.d.ts
8306
8291
  /**
@@ -8318,7 +8303,7 @@ type OpenAPIRequest = Request & AppOSRequest;
8318
8303
  /**
8319
8304
  * Extended Locals type for OpenAPI handlers.
8320
8305
  */
8321
- type OpenAPILocals = Express.Locals & AppOSLocals;
8306
+ type OpenAPILocals = Locals & AppOSLocals;
8322
8307
  /**
8323
8308
  * Define typed response builders based on defined response schemas.
8324
8309
  */