@fireproof/core-svc-protocol 0.24.9 → 0.24.11
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/package.json +7 -7
- package/transport.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fireproof/core-svc-protocol",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.11",
|
|
4
4
|
"description": "Fireproof service layer protocols and interfaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"url": "https://github.com/fireproof-storage/fireproof/issues"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@adviser/cement": "~0.5.
|
|
37
|
-
"@fireproof/core-runtime": "0.24.
|
|
38
|
-
"@fireproof/core-types-base": "0.24.
|
|
39
|
-
"@fireproof/core-types-blockstore": "0.24.
|
|
40
|
-
"cborg": "~4.
|
|
41
|
-
"zod": "~4.3.
|
|
36
|
+
"@adviser/cement": "~0.5.22",
|
|
37
|
+
"@fireproof/core-runtime": "0.24.11",
|
|
38
|
+
"@fireproof/core-types-base": "0.24.11",
|
|
39
|
+
"@fireproof/core-types-blockstore": "0.24.11",
|
|
40
|
+
"cborg": "~4.5.8",
|
|
41
|
+
"zod": "~4.3.6"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/transport.d.ts
CHANGED
|
@@ -143,7 +143,7 @@ export declare class FPApiPostMessageTransport implements FPTransport {
|
|
|
143
143
|
name: string;
|
|
144
144
|
refId: string;
|
|
145
145
|
};
|
|
146
|
-
}, ctx: FPTransportTargetCTX], unknown>;
|
|
146
|
+
}, ctx: FPTransportTargetCTX], unknown, unknown>;
|
|
147
147
|
readonly onRecv: import("@adviser/cement").ReturnOnFunc<[msg: Readonly<{
|
|
148
148
|
tid: string;
|
|
149
149
|
src: string;
|
|
@@ -261,7 +261,7 @@ export declare class FPApiPostMessageTransport implements FPTransport {
|
|
|
261
261
|
name: string;
|
|
262
262
|
refId: string;
|
|
263
263
|
};
|
|
264
|
-
}, ctx: FPTransportOriginCTX], unknown>;
|
|
264
|
+
}, ctx: FPTransportOriginCTX], unknown, unknown>;
|
|
265
265
|
constructor(sthis: SuperThis, fpWindow: FPWebWindow);
|
|
266
266
|
start(): Promise<Result<void, Error>>;
|
|
267
267
|
recv(fn: (msg: MsgType, ctx: FPTransportOriginCTX) => void): () => void;
|