@agoric/time 0.3.3-upgrade-18a-dev-61134db.0 → 0.3.3-upgrade-19-dev-2a71f04.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 +8 -8
- package/src/types.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/time",
|
|
3
|
-
"version": "0.3.3-upgrade-
|
|
3
|
+
"version": "0.3.3-upgrade-19-dev-2a71f04.0+2a71f04",
|
|
4
4
|
"description": "Timestamps, time math, timer service API definition",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@agoric/store": "0.9.3-upgrade-
|
|
35
|
-
"@endo/errors": "^1.2.
|
|
36
|
-
"@endo/nat": "^5.0.
|
|
37
|
-
"@endo/patterns": "^1.4.
|
|
34
|
+
"@agoric/store": "0.9.3-upgrade-19-dev-2a71f04.0+2a71f04",
|
|
35
|
+
"@endo/errors": "^1.2.9",
|
|
36
|
+
"@endo/nat": "^5.0.14",
|
|
37
|
+
"@endo/patterns": "^1.4.8"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@endo/far": "^1.1.
|
|
41
|
-
"@endo/init": "^1.1.
|
|
40
|
+
"@endo/far": "^1.1.10",
|
|
41
|
+
"@endo/init": "^1.1.8",
|
|
42
42
|
"ava": "^5.3.0"
|
|
43
43
|
},
|
|
44
44
|
"ava": {
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"typeCoverage": {
|
|
61
61
|
"atLeast": 88.75
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "2a71f04176f1a27be8e0356595d3dcd62f6d9186"
|
|
64
64
|
}
|
package/src/types.ts
CHANGED
|
@@ -182,7 +182,7 @@ export interface TimerServiceCommon {
|
|
|
182
182
|
// XXX copied from Remotable helper return type
|
|
183
183
|
export type TimerService = TimerServiceCommon &
|
|
184
184
|
RemotableObject<'TimerService'> &
|
|
185
|
-
RemotableBrand<
|
|
185
|
+
RemotableBrand<object, TimerServiceCommon>;
|
|
186
186
|
|
|
187
187
|
/**
|
|
188
188
|
* Read-only access to a TimeService's current time. This allows reading the
|