@agoric/time 0.3.3-upgrade-17-dev-ec448b0.0 → 0.3.3-upgrade-18-dev-d7c994b.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/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from './src/timeMath.js';
2
2
  export * from './src/typeGuards.js';
3
3
  // eslint-disable-next-line import/export -- just types
4
- export * from './src/types.js';
4
+ export * from './src/types-index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/time",
3
- "version": "0.3.3-upgrade-17-dev-ec448b0.0+ec448b0",
3
+ "version": "0.3.3-upgrade-18-dev-d7c994b.0+d7c994b",
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-17-dev-ec448b0.0+ec448b0",
35
- "@endo/errors": "^1.2.5",
36
- "@endo/nat": "^5.0.10",
37
- "@endo/patterns": "^1.4.3"
34
+ "@agoric/store": "0.9.3-upgrade-18-dev-d7c994b.0+d7c994b",
35
+ "@endo/errors": "^1.2.7",
36
+ "@endo/nat": "^5.0.12",
37
+ "@endo/patterns": "^1.4.6"
38
38
  },
39
39
  "devDependencies": {
40
- "@endo/far": "^1.1.5",
41
- "@endo/init": "^1.1.4",
40
+ "@endo/far": "^1.1.8",
41
+ "@endo/init": "^1.1.6",
42
42
  "ava": "^5.3.0"
43
43
  },
44
44
  "ava": {
@@ -60,5 +60,5 @@
60
60
  "typeCoverage": {
61
61
  "atLeast": 88.72
62
62
  },
63
- "gitHead": "ec448b081ac21cbe217f210e06f0b8f7989e73d6"
63
+ "gitHead": "d7c994b8d33c0cd22b257f3e33b579588ab6c6d8"
64
64
  }
@@ -0,0 +1 @@
1
+ export type * from './types.js';
@@ -1,9 +1,8 @@
1
+ /* eslint-disable no-use-before-define */
1
2
  import type { ERef, RemotableBrand } from '@endo/eventual-send';
2
3
 
3
4
  import type { RankComparison, RemotableObject } from '@endo/marshal';
4
5
 
5
- /// <reference types="@agoric/notifier/src/types.js" />
6
-
7
6
  // These aren't in the global runtime environment. They are just types that are
8
7
  // meant to be globally accessible as a side-effect of importing this module.
9
8
  /**
File without changes