@interncom/diplomatic 0.12.4 → 0.12.6
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/cli/index.mjs +2 -2
- package/dist/cli/shared/worker/spawn.d.ts +2 -0
- package/dist/web/index.mjs +1 -1
- package/dist/web/shared/worker/spawn.d.ts +2 -0
- package/dist/web/types.d.ts +1 -0
- package/dist/web/worker/client.d.ts +4 -4
- package/dist/web/worker/protocol.d.ts +5 -7
- package/dist/web/worker.mjs +1 -1
- package/package.json +1 -1
|
@@ -3,3 +3,5 @@
|
|
|
3
3
|
* Does not inject seed — use {@link Enclave.spawnSyncWorker} for that.
|
|
4
4
|
*/
|
|
5
5
|
export declare function spawnDiplomaticSyncWorker(): Worker;
|
|
6
|
+
/** postMessage via the load-time snapshot (not the live prototype). */
|
|
7
|
+
export declare function postToDiplomaticWorker(worker: Worker, data: unknown, transfer?: Transferable[]): void;
|
package/dist/web/types.d.ts
CHANGED
|
@@ -60,10 +60,10 @@ export declare class WorkerClient implements IClient<URL> {
|
|
|
60
60
|
* `connected` stays false until the worker reports otherwise.
|
|
61
61
|
*/
|
|
62
62
|
private hydrateStateFromStore;
|
|
63
|
-
/**
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
private
|
|
63
|
+
/** Seed + host from the local store. Worker never owns these. */
|
|
64
|
+
private loadSession;
|
|
65
|
+
/** Queue depths + progress from the worker (after setSeed). */
|
|
66
|
+
private pullRemoteXfer;
|
|
67
67
|
private requireWorker;
|
|
68
68
|
/** Lightweight RPC check after setSeed. */
|
|
69
69
|
ping(): Promise<void>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Status } from "../shared/consts";
|
|
2
2
|
import type { SyncProgressEvent } from "../progress";
|
|
3
|
-
import type {
|
|
3
|
+
import type { IDiplomaticClientXferState } from "../types";
|
|
4
4
|
/** Host identity as plain data (URL → string for structured clone). */
|
|
5
5
|
export interface SerializedHost {
|
|
6
6
|
handle: string;
|
|
@@ -66,9 +66,6 @@ export type WorkerCmd = {
|
|
|
66
66
|
} | {
|
|
67
67
|
id: number;
|
|
68
68
|
op: "export";
|
|
69
|
-
} | {
|
|
70
|
-
id: number;
|
|
71
|
-
op: "getClientState";
|
|
72
69
|
} | {
|
|
73
70
|
id: number;
|
|
74
71
|
op: "getXferState";
|
|
@@ -91,9 +88,11 @@ export type WorkerEvent = {
|
|
|
91
88
|
| {
|
|
92
89
|
kind: "initError";
|
|
93
90
|
message: string;
|
|
94
|
-
}
|
|
91
|
+
}
|
|
92
|
+
/** Socket state only. Seed/host stay on the main-thread store. */
|
|
93
|
+
| {
|
|
95
94
|
kind: "clientState";
|
|
96
|
-
|
|
95
|
+
connected: boolean;
|
|
97
96
|
}
|
|
98
97
|
/** Queues + sync phase progress (see IDiplomaticClientXferState.progress). */
|
|
99
98
|
| {
|
|
@@ -114,6 +113,5 @@ export declare function isWorkerEvent(data: unknown): data is WorkerEvent;
|
|
|
114
113
|
export declare function isWorkerCmd(data: unknown): data is WorkerCmd;
|
|
115
114
|
/** Narrow helpers for typed replies (avoid casts at call sites). */
|
|
116
115
|
export declare function statusFromUnknown(v: unknown): Status | undefined;
|
|
117
|
-
export declare function clientStateFromUnknown(v: unknown): IDiplomaticClientState | undefined;
|
|
118
116
|
export declare function progressFromUnknown(v: unknown): SyncProgressEvent | undefined;
|
|
119
117
|
export declare function xferStateFromUnknown(v: unknown): IDiplomaticClientXferState | undefined;
|