@pooflabs/core 0.0.32 → 0.0.34
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.
- package/dist/client/operations.d.ts +73 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +276 -43
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +275 -44
- package/dist/index.mjs.map +1 -1
- package/dist/utils/server-session-manager.d.ts +1 -0
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export interface ServerSession {
|
|
|
15
15
|
export declare class ServerSessionManager {
|
|
16
16
|
static readonly instance: ServerSessionManager;
|
|
17
17
|
private session;
|
|
18
|
+
private pendingSession;
|
|
18
19
|
private constructor();
|
|
19
20
|
getSession(): Promise<ServerSession>;
|
|
20
21
|
setSession(session: ServerSession): void;
|