@agoric/orchestration 0.1.1-dev-9cdb01d.0 → 0.1.1-dev-6ee57ba.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-9cdb01d.0+9cdb01d",
3
+ "version": "0.1.1-dev-6ee57ba.0+6ee57ba",
4
4
  "description": "Chain abstraction for Agoric's orchestration clients",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -33,19 +33,19 @@
33
33
  },
34
34
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
35
35
  "dependencies": {
36
- "@agoric/async-flow": "0.1.1-dev-9cdb01d.0+9cdb01d",
37
- "@agoric/cosmic-proto": "0.4.1-dev-9cdb01d.0+9cdb01d",
38
- "@agoric/ertp": "0.16.3-dev-9cdb01d.0+9cdb01d",
39
- "@agoric/internal": "0.3.3-dev-9cdb01d.0+9cdb01d",
40
- "@agoric/network": "0.1.1-dev-9cdb01d.0+9cdb01d",
41
- "@agoric/notifier": "0.6.3-dev-9cdb01d.0+9cdb01d",
42
- "@agoric/store": "0.9.3-dev-9cdb01d.0+9cdb01d",
43
- "@agoric/time": "0.3.3-dev-9cdb01d.0+9cdb01d",
44
- "@agoric/vat-data": "0.5.3-dev-9cdb01d.0+9cdb01d",
45
- "@agoric/vats": "0.15.2-dev-9cdb01d.0+9cdb01d",
46
- "@agoric/vow": "0.1.1-dev-9cdb01d.0+9cdb01d",
47
- "@agoric/zoe": "0.26.3-dev-9cdb01d.0+9cdb01d",
48
- "@agoric/zone": "0.2.3-dev-9cdb01d.0+9cdb01d",
36
+ "@agoric/async-flow": "0.1.1-dev-6ee57ba.0+6ee57ba",
37
+ "@agoric/cosmic-proto": "0.4.1-dev-6ee57ba.0+6ee57ba",
38
+ "@agoric/ertp": "0.16.3-dev-6ee57ba.0+6ee57ba",
39
+ "@agoric/internal": "0.3.3-dev-6ee57ba.0+6ee57ba",
40
+ "@agoric/network": "0.1.1-dev-6ee57ba.0+6ee57ba",
41
+ "@agoric/notifier": "0.6.3-dev-6ee57ba.0+6ee57ba",
42
+ "@agoric/store": "0.9.3-dev-6ee57ba.0+6ee57ba",
43
+ "@agoric/time": "0.3.3-dev-6ee57ba.0+6ee57ba",
44
+ "@agoric/vat-data": "0.5.3-dev-6ee57ba.0+6ee57ba",
45
+ "@agoric/vats": "0.15.2-dev-6ee57ba.0+6ee57ba",
46
+ "@agoric/vow": "0.1.1-dev-6ee57ba.0+6ee57ba",
47
+ "@agoric/zoe": "0.26.3-dev-6ee57ba.0+6ee57ba",
48
+ "@agoric/zone": "0.2.3-dev-6ee57ba.0+6ee57ba",
49
49
  "@endo/base64": "^1.0.7",
50
50
  "@endo/errors": "^1.2.5",
51
51
  "@endo/far": "^1.1.5",
@@ -54,7 +54,7 @@
54
54
  "@noble/hashes": "^1.5.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@agoric/swingset-liveslots": "0.10.3-dev-9cdb01d.0+9cdb01d",
57
+ "@agoric/swingset-liveslots": "0.10.3-dev-6ee57ba.0+6ee57ba",
58
58
  "@chain-registry/client": "^1.47.4",
59
59
  "@cosmjs/amino": "^0.32.3",
60
60
  "@cosmjs/proto-signing": "^0.32.3",
@@ -94,5 +94,5 @@
94
94
  "typeCoverage": {
95
95
  "atLeast": 97.6
96
96
  },
97
- "gitHead": "9cdb01dde5fdc3418fc9d615ab640d9f859555e6"
97
+ "gitHead": "6ee57ba11bfa5f9202e8d4405c2e57ebfe3667ae"
98
98
  }
@@ -23,7 +23,15 @@ export function provideOrchestration(zcf: ZCF, baggage: Baggage, remotePowers: O
23
23
  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>;
24
24
  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>>;
25
25
  makeVowKit: <T>() => import("@agoric/vow").VowKit<T>;
26
- allVows: (maybeVows: import("@agoric/vow").EVow<unknown>[]) => import("@agoric/vow").Vow<any[]>;
26
+ all: (maybeVows: unknown[]) => import("@agoric/vow").Vow<any[]>;
27
+ allVows: (maybeVows: unknown[]) => import("@agoric/vow").Vow<any[]>;
28
+ allSettled: (maybeVows: unknown[]) => import("@agoric/vow").Vow<({
29
+ status: "fulfilled";
30
+ value: any;
31
+ } | {
32
+ status: "rejected";
33
+ reason: any;
34
+ })[]>;
27
35
  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>>;
28
36
  asPromise: import("@agoric/vow").AsPromiseFunction;
29
37
  retriable: <F extends (...args: any[]) => Promise<any>>(fnZone: Zone, name: string, fn: F) => F extends (...args: infer Args) => Promise<infer R> ? (...args: Args) => import("@agoric/vow").Vow<R> : never;
@@ -1 +1 @@
1
- {"version":3,"file":"start-helper.d.ts","sourceRoot":"","sources":["start-helper.js"],"names":[],"mappings":"AA6CO,0CANI,GAAG,WACH,OAAO,gBACP,mBAAmB,cACnB,UAAU;+BAqGR,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;wCAnEH,GAAG;;+BAjDT,GAAG,+EAOa,GAAG,yCAAyC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuItE;AA8BM,kCAdgC,EAAE,SAA3B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAE,EAGhC,EAAE,SAFM,mBAAmB,GAAG;IAC/B,UAAU,EAAE,UAAU,CAAC;CACvB,EACQ,CAAC,cACH,CACN,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,EACZ,WAAW,EAAE,EAAE,EACf,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,kBAAkB,KACtB,OAAO,CAAC,CAAC,CAAC,GACL,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE,OAAO,EAAE,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,CAYzE;kCAxLU;IACR,UAAU,EAAE,OAAO,UAAU,CAAC,CAAC;IAC/B,oBAAoB,EAAE,OAAO,uBAAuB,CAAC,CAAC;IACtD,WAAW,EAAE,OAAO,WAAW,CAAC,CAAC;IACjC,YAAY,EAAE,OAAO,YAAY,CAAC,CAAC;IACnC,WAAW,EAAE,OAAO,OAAO,CAAC,CAAC;CAC9B;iCA8IU,IAAI,CAAC,UAAU,CAAC,OAAO,oBAAoB,CAAC,EAAE,MAAM,CAAC;6BA5JzC,kBAAkB;0BAGrB,cAAc;gCALR,gCAAgC;4BAIpC,aAAa;6CAEI,2BAA2B;kCAL1B,cAAc;6BAE/B,cAAc"}
1
+ {"version":3,"file":"start-helper.d.ts","sourceRoot":"","sources":["start-helper.js"],"names":[],"mappings":"AA6CO,0CANI,GAAG,WACH,OAAO,gBACP,mBAAmB,cACnB,UAAU;+BAqGR,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAnEH,GAAG;;+BAhDD,GAAG,+EAMoD,GAAG,yCAG9D,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoId;AA8BM,kCAdgC,EAAE,SAA3B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAE,EAGhC,EAAE,SAFM,mBAAmB,GAAG;IAC/B,UAAU,EAAE,UAAU,CAAC;CACvB,EACQ,CAAC,cACH,CACN,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,EACZ,WAAW,EAAE,EAAE,EACf,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,kBAAkB,KACtB,OAAO,CAAC,CAAC,CAAC,GACL,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE,OAAO,EAAE,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,CAYzE;kCAxLU;IACR,UAAU,EAAE,OAAO,UAAU,CAAC,CAAC;IAC/B,oBAAoB,EAAE,OAAO,uBAAuB,CAAC,CAAC;IACtD,WAAW,EAAE,OAAO,WAAW,CAAC,CAAC;IACjC,YAAY,EAAE,OAAO,YAAY,CAAC,CAAC;IACnC,WAAW,EAAE,OAAO,OAAO,CAAC,CAAC;CAC9B;iCA8IU,IAAI,CAAC,UAAU,CAAC,OAAO,oBAAoB,CAAC,EAAE,MAAM,CAAC;6BA5JzC,kBAAkB;0BAGrB,cAAc;gCALR,gCAAgC;4BAIpC,aAAa;6CAEI,2BAA2B;kCAL1B,cAAc;6BAE/B,cAAc"}