@fugood/buttress-server 2.25.1-beta.2 → 2.25.1-beta.5

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/lib/types.d.ts CHANGED
@@ -147,7 +147,7 @@ export type StreamReaderEntry = {
147
147
  export type Session = {
148
148
  streams: Map<string, ReadableStream<EventStream>>;
149
149
  streamReaders: Map<string, StreamReaderEntry>;
150
- generators: Set<string>;
150
+ generators: Map<string, number>;
151
151
  fileManager: import('./utils/SessionFileManager').SessionFileManager;
152
152
  initializedContexts: Set<string>;
153
153
  timeout: ReturnType<typeof setTimeout> | null;
@@ -4,6 +4,7 @@ export declare class SessionFileManager {
4
4
  sessionId: string;
5
5
  private sessionDir;
6
6
  private registry;
7
+ private uploadSeq;
7
8
  constructor(sessionId: string, tempDir: string);
8
9
  register(filename: string, realPath: string, opts?: {
9
10
  owned?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/buttress-server",
3
- "version": "2.25.1-beta.2",
3
+ "version": "2.25.1-beta.5",
4
4
  "main": "lib/index.mjs",
5
5
  "types": "lib/index.d.ts",
6
6
  "type": "module",
@@ -69,5 +69,5 @@
69
69
  "tsdown": "^0.22.4",
70
70
  "typescript": "^7.0.2"
71
71
  },
72
- "gitHead": "681321c58a5484c661e9feae0b2c3cf2cbea5c16"
72
+ "gitHead": "48c91ea8d51ff6a53ad5c207da91cd77b929c9c5"
73
73
  }