@agoric/time 0.3.3-dev-1eed398.0 → 0.3.3-dev-20dd848.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/time",
3
- "version": "0.3.3-dev-1eed398.0+1eed398",
3
+ "version": "0.3.3-dev-20dd848.0+20dd848",
4
4
  "description": "Timestamps, time math, timer service API definition",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
32
32
  "dependencies": {
33
- "@agoric/assert": "0.6.1-dev-1eed398.0+1eed398",
33
+ "@agoric/assert": "0.6.1-dev-20dd848.0+20dd848",
34
34
  "@endo/nat": "^4.1.28",
35
35
  "@endo/patterns": "^0.2.3"
36
36
  },
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "1eed3986cd191d3aa36302a3d1037263d3ea7857"
55
+ "gitHead": "20dd84862b8d625d0fe5c935c307b9762a347df9"
56
56
  }
package/src/timeMath.js CHANGED
@@ -4,13 +4,14 @@ import { RelativeTimeRecordShape, TimestampRecordShape } from './typeGuards.js';
4
4
 
5
5
  const { Fail, quote: q } = assert;
6
6
  /**
7
+ * @typedef {import('@endo/marshal').RankComparison} RankComparison
8
+ *
7
9
  * @typedef {import('./types').TimerBrand} TimerBrand
8
10
  * @typedef {import('./types').Timestamp} Timestamp
9
11
  * @typedef {import('./types').RelativeTime} RelativeTime
10
12
  * @typedef {import('./types').RelativeTimeValue} RelativeTimeValue
11
13
  * @typedef {import('./types').TimestampValue} TimestampValue
12
14
  * @typedef {import('./types').TimeMathType} TimeMathType
13
- *
14
15
  */
15
16
 
16
17
  /**
package/src/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable no-use-before-define, no-undef */
2
2
  import type { ERef } from '@endo/eventual-send';
3
3
 
4
- import type { RankComparison } from '@agoric/store';
4
+ import type { RankComparison } from '@endo/marshal';
5
5
 
6
6
  /// <reference types="@agoric/notifier/src/types.js"/>
7
7