@agoric/orchestration 0.1.1-dev-caaec05.0 → 0.1.1-dev-8edf902.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/orchestration",
3
- "version": "0.1.1-dev-caaec05.0+caaec05",
3
+ "version": "0.1.1-dev-8edf902.0+8edf902",
4
4
  "description": "Chain abstraction for Agoric's orchestration clients",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -33,20 +33,20 @@
33
33
  },
34
34
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
35
35
  "dependencies": {
36
- "@agoric/assert": "0.6.1-dev-caaec05.0+caaec05",
37
- "@agoric/async-flow": "0.1.1-dev-caaec05.0+caaec05",
38
- "@agoric/cosmic-proto": "0.4.1-dev-caaec05.0+caaec05",
39
- "@agoric/ertp": "0.16.3-dev-caaec05.0+caaec05",
40
- "@agoric/internal": "0.3.3-dev-caaec05.0+caaec05",
41
- "@agoric/network": "0.1.1-dev-caaec05.0+caaec05",
42
- "@agoric/notifier": "0.6.3-dev-caaec05.0+caaec05",
43
- "@agoric/store": "0.9.3-dev-caaec05.0+caaec05",
44
- "@agoric/time": "0.3.3-dev-caaec05.0+caaec05",
45
- "@agoric/vat-data": "0.5.3-dev-caaec05.0+caaec05",
46
- "@agoric/vats": "0.15.2-dev-caaec05.0+caaec05",
47
- "@agoric/vow": "0.1.1-dev-caaec05.0+caaec05",
48
- "@agoric/zoe": "0.26.3-dev-caaec05.0+caaec05",
49
- "@agoric/zone": "0.2.3-dev-caaec05.0+caaec05",
36
+ "@agoric/assert": "0.6.1-dev-8edf902.0+8edf902",
37
+ "@agoric/async-flow": "0.1.1-dev-8edf902.0+8edf902",
38
+ "@agoric/cosmic-proto": "0.4.1-dev-8edf902.0+8edf902",
39
+ "@agoric/ertp": "0.16.3-dev-8edf902.0+8edf902",
40
+ "@agoric/internal": "0.3.3-dev-8edf902.0+8edf902",
41
+ "@agoric/network": "0.1.1-dev-8edf902.0+8edf902",
42
+ "@agoric/notifier": "0.6.3-dev-8edf902.0+8edf902",
43
+ "@agoric/store": "0.9.3-dev-8edf902.0+8edf902",
44
+ "@agoric/time": "0.3.3-dev-8edf902.0+8edf902",
45
+ "@agoric/vat-data": "0.5.3-dev-8edf902.0+8edf902",
46
+ "@agoric/vats": "0.15.2-dev-8edf902.0+8edf902",
47
+ "@agoric/vow": "0.1.1-dev-8edf902.0+8edf902",
48
+ "@agoric/zoe": "0.26.3-dev-8edf902.0+8edf902",
49
+ "@agoric/zone": "0.2.3-dev-8edf902.0+8edf902",
50
50
  "@endo/base64": "^1.0.5",
51
51
  "@endo/errors": "^1.2.2",
52
52
  "@endo/far": "^1.1.2",
@@ -91,5 +91,5 @@
91
91
  "typeCoverage": {
92
92
  "atLeast": 97.1
93
93
  },
94
- "gitHead": "caaec0575a562eab9786f56584c9bb5d7ac5c747"
94
+ "gitHead": "8edf90288c8a7b248ec4961d342063e2b8c52303"
95
95
  }
@@ -12,10 +12,11 @@ export function provideOrchestration(zcf: ZCF, baggage: Baggage, remotePowers: O
12
12
  }>;
13
13
  vowTools: {
14
14
  when: <T, TResult1 = import("@agoric/vow").EUnwrap<T>, TResult2 = never>(specimenP: T, onFulfilled?: ((value: import("@agoric/vow").EUnwrap<T>) => TResult1 | PromiseLike<TResult1>) | undefined, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined) => Promise<TResult1 | TResult2>;
15
- watch: <T = any, TResult1 = T, TResult2 = never, C extends any[] = any[]>(specimenP: import("@agoric/vow").ERef<T | import("@agoric/vow").Vow<T>>, watcher?: import("@agoric/vow").Watcher<T, TResult1, TResult2, C> | undefined, ...watcherArgs: C) => import("@agoric/vow").Vow<Exclude<TResult1, void> | Exclude<TResult2, void> extends never ? TResult1 : Exclude<TResult1, void> | Exclude<TResult2, void>>;
15
+ watch: <T = any, TResult1 = T, TResult2 = never, C extends any[] = any[]>(specimenP: import("@agoric/vow").EVow<T>, watcher?: import("@agoric/vow").Watcher<T, TResult1, TResult2, C> | undefined, ...watcherArgs: C) => import("@agoric/vow").Vow<Exclude<TResult1, void> | Exclude<TResult2, void> extends never ? TResult1 : Exclude<TResult1, void> | Exclude<TResult2, void>>;
16
16
  makeVowKit: <T>() => import("@agoric/vow").VowKit<T>;
17
- allVows: (vows: unknown[]) => import("@agoric/vow").Vow<any[]>;
17
+ allVows: (maybeVows: import("@agoric/vow").EVow<unknown>[]) => import("@agoric/vow").Vow<any[]>;
18
18
  asVow: <T extends unknown>(fn: (...args: any[]) => import("@agoric/vow").Vow<Awaited<T>> | Awaited<T> | import("@agoric/vow").PromiseVow<T>) => import("@agoric/vow").Vow<Awaited<T>>;
19
+ asPromise: import("@agoric/vow").AsPromiseFunction;
19
20
  };
20
21
  zone: import("@agoric/base-zone").Zone;
21
22
  orchestrate<GuestReturn, HostReturn, GuestContext, HostContext, GuestArgs extends any[], HostArgs extends any[]>(durableName: string, hostCtx: HostContext, guestFn: (guestOrc: import("../orchestration-api.js").Orchestrator, guestCtx: GuestContext, ...args: GuestArgs) => Promise<GuestReturn>): (...args: HostArgs) => Promise<HostReturn>;
@@ -1 +1 @@
1
- {"version":3,"file":"start-helper.d.ts","sourceRoot":"","sources":["start-helper.js"],"names":[],"mappings":"AAwCO,0CALI,GAAG,WACH,OAAO,gBACP,mBAAmB,cACnB,UAAU;;;;;;;;;;;;;;;;;wCAyCV,GAAG;;;4PA6BS,GACjB,4CAA4E,GAAG;;;;;;EAFpF;kCArFY;IACZ,UAAc,EAAE,OAAO,UAAU,CAAC,CAAC;IACnC,oBAAwB,EAAE,OAAO,oBAAoB,CAAC,CAAC;IACvD,WAAe,EAAE,OAAO,WAAW,CAAC,CAAC;IACrC,YAAgB,EAAE,OAAO,YAAY,CAAC,CAAC;IACvC,WAAe,EAAE,OAAO,OAAO,CAAC,CAAC;CAC9B;6BAbsB,kBAAkB;gCAFf,gCAAgC;4BAIpC,aAAa;0CACC,eAAe;kCAJX,cAAc;6BAE/B,cAAc"}
1
+ {"version":3,"file":"start-helper.d.ts","sourceRoot":"","sources":["start-helper.js"],"names":[],"mappings":"AAwCO,0CALI,GAAG,WACH,OAAO,gBACP,mBAAmB,cACnB,UAAU;;;;;;;;;;;;;;;;;wCAyCV,GAAG;;;;4PA6BS,GACjB,4CAA4E,GAAG;;;;;;EAFpF;kCArFY;IACZ,UAAc,EAAE,OAAO,UAAU,CAAC,CAAC;IACnC,oBAAwB,EAAE,OAAO,oBAAoB,CAAC,CAAC;IACvD,WAAe,EAAE,OAAO,WAAW,CAAC,CAAC;IACrC,YAAgB,EAAE,OAAO,YAAY,CAAC,CAAC;IACvC,WAAe,EAAE,OAAO,OAAO,CAAC,CAAC;CAC9B;6BAbsB,kBAAkB;gCAFf,gCAAgC;4BAIpC,aAAa;0CACC,eAAe;kCAJX,cAAc;6BAE/B,cAAc"}