@agoric/zoe 0.26.3-dev-b1d610d.0 → 0.26.3-dev-92f2510.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/zoe",
|
|
3
|
-
"version": "0.26.3-dev-
|
|
3
|
+
"version": "0.26.3-dev-92f2510.0+92f2510",
|
|
4
4
|
"description": "Zoe: the Smart Contract Framework for Offer Enforcement",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/zoeService/zoe.js",
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
47
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
48
|
-
"@agoric/internal": "0.3.3-dev-
|
|
49
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
50
|
-
"@agoric/store": "0.9.3-dev-
|
|
51
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
52
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
53
|
-
"@agoric/time": "0.3.3-dev-
|
|
54
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
55
|
-
"@agoric/vow": "0.1.1-dev-
|
|
56
|
-
"@agoric/zone": "0.2.3-dev-
|
|
46
|
+
"@agoric/base-zone": "0.1.1-dev-92f2510.0+92f2510",
|
|
47
|
+
"@agoric/ertp": "0.16.3-dev-92f2510.0+92f2510",
|
|
48
|
+
"@agoric/internal": "0.3.3-dev-92f2510.0+92f2510",
|
|
49
|
+
"@agoric/notifier": "0.6.3-dev-92f2510.0+92f2510",
|
|
50
|
+
"@agoric/store": "0.9.3-dev-92f2510.0+92f2510",
|
|
51
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-92f2510.0+92f2510",
|
|
52
|
+
"@agoric/swingset-vat": "0.32.3-dev-92f2510.0+92f2510",
|
|
53
|
+
"@agoric/time": "0.3.3-dev-92f2510.0+92f2510",
|
|
54
|
+
"@agoric/vat-data": "0.5.3-dev-92f2510.0+92f2510",
|
|
55
|
+
"@agoric/vow": "0.1.1-dev-92f2510.0+92f2510",
|
|
56
|
+
"@agoric/zone": "0.2.3-dev-92f2510.0+92f2510",
|
|
57
57
|
"@endo/bundle-source": "^3.2.3",
|
|
58
58
|
"@endo/captp": "^4.2.0",
|
|
59
59
|
"@endo/common": "^1.2.2",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"yargs-parser": "^21.1.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@agoric/kmarshal": "0.1.1-dev-
|
|
73
|
+
"@agoric/kmarshal": "0.1.1-dev-92f2510.0+92f2510",
|
|
74
74
|
"@endo/init": "^1.1.2",
|
|
75
75
|
"ava": "^5.3.0",
|
|
76
76
|
"c8": "^9.1.0",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"typeCoverage": {
|
|
144
144
|
"atLeast": 84.99
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "92f2510ab86a27b2f3473edfca72bd8bf647dadc"
|
|
147
147
|
}
|
|
@@ -9,14 +9,14 @@ export const PublicTopicShape: import("@endo/patterns").Matcher;
|
|
|
9
9
|
* }} PublicTopic
|
|
10
10
|
*/
|
|
11
11
|
/**
|
|
12
|
-
* A {PublicTopic} in which the `storagePath` is always a resolved string.
|
|
12
|
+
* A {PublicTopic} in which the `storagePath` is always a resolved string and the `subscriber is remote.
|
|
13
13
|
*
|
|
14
14
|
* Useful when working with Vows and async-flow.
|
|
15
15
|
*
|
|
16
16
|
* @template {object} T topic value
|
|
17
17
|
* @typedef {{
|
|
18
18
|
* description?: string,
|
|
19
|
-
* subscriber: Subscriber<T
|
|
19
|
+
* subscriber: Remote<Subscriber<T>>,
|
|
20
20
|
* storagePath: string,
|
|
21
21
|
* }} ResolvedPublicTopic
|
|
22
22
|
*/
|
|
@@ -28,13 +28,13 @@ export type PublicTopic<T extends unknown> = {
|
|
|
28
28
|
storagePath: ERef<string>;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
* A {PublicTopic} in which the `storagePath` is always a resolved string.
|
|
31
|
+
* A {PublicTopic} in which the `storagePath` is always a resolved string and the `subscriber is remote.
|
|
32
32
|
*
|
|
33
33
|
* Useful when working with Vows and async-flow.
|
|
34
34
|
*/
|
|
35
35
|
export type ResolvedPublicTopic<T extends unknown> = {
|
|
36
36
|
description?: string;
|
|
37
|
-
subscriber: Subscriber<T
|
|
37
|
+
subscriber: Remote<Subscriber<T>>;
|
|
38
38
|
storagePath: string;
|
|
39
39
|
};
|
|
40
40
|
export type TopicsRecord = {
|
|
@@ -44,4 +44,5 @@ export type ResolvedTopicsRecord = {
|
|
|
44
44
|
[topicName: string]: ResolvedPublicTopic<unknown>;
|
|
45
45
|
};
|
|
46
46
|
import { SubscriberShape } from '@agoric/notifier';
|
|
47
|
+
import type { Remote } from '@agoric/internal';
|
|
47
48
|
//# sourceMappingURL=topics.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"topics.d.ts","sourceRoot":"","sources":["topics.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"topics.d.ts","sourceRoot":"","sources":["topics.js"],"names":[],"mappings":";AAUA,gEAME;AAEF;;;;;;;GAOG;AAEH;;;;;;;;;;;GAWG;AAEH,iEAA0E;AAoBnE,kCALM,CAAC,eACH,MAAM,eACN,OAAO,eAAe,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,OAAO,eAAe,EAAE,mBAAmB,CAAC,CAAC,CAAC,GACrF,WAAW,CAAC,CAAC,CAAC,CAU1B;wBAjDqB,CAAC,oBACV;IACZ,WAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAc,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC9B,WAAe,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAC3B;;;;;;gCAQkB,CAAC,oBACV;IACZ,WAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAc,EAAE,OAAO,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;IACtC,WAAe,EAAE,MAAM,CAAC;CACrB;2BAMS;IACZ,CAAK,SAAS,EAAE,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;CAC3C;mCAIS;IACZ,CAAK,SAAS,EAAE,MAAM,GAAG,mBAAmB,CAAC,OAAO,CAAC,CAAC;CACnD;gCAnD4B,kBAAkB;4BAKzB,kBAAkB"}
|
|
@@ -2,6 +2,10 @@ import { SubscriberShape } from '@agoric/notifier';
|
|
|
2
2
|
import { M } from '@agoric/store';
|
|
3
3
|
import { E } from '@endo/far';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* @import {Remote} from '@agoric/internal';
|
|
7
|
+
*/
|
|
8
|
+
|
|
5
9
|
export { SubscriberShape };
|
|
6
10
|
|
|
7
11
|
export const PublicTopicShape = M.splitRecord(
|
|
@@ -22,14 +26,14 @@ export const PublicTopicShape = M.splitRecord(
|
|
|
22
26
|
*/
|
|
23
27
|
|
|
24
28
|
/**
|
|
25
|
-
* A {PublicTopic} in which the `storagePath` is always a resolved string.
|
|
29
|
+
* A {PublicTopic} in which the `storagePath` is always a resolved string and the `subscriber is remote.
|
|
26
30
|
*
|
|
27
31
|
* Useful when working with Vows and async-flow.
|
|
28
32
|
*
|
|
29
33
|
* @template {object} T topic value
|
|
30
34
|
* @typedef {{
|
|
31
35
|
* description?: string,
|
|
32
|
-
* subscriber: Subscriber<T
|
|
36
|
+
* subscriber: Remote<Subscriber<T>>,
|
|
33
37
|
* storagePath: string,
|
|
34
38
|
* }} ResolvedPublicTopic
|
|
35
39
|
*/
|