@microsoft/ccf-app 2.0.0-dev6 → 2.0.0-dev7

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/global.d.ts CHANGED
@@ -239,7 +239,7 @@ export interface CCFHistorical {
239
239
  * to completely fetch and validate. The call should be repeated later with
240
240
  * the same arguments to retrieve the requested entries. This state is kept
241
241
  * until it is deleted for one of the following reasons:
242
- * - A call to {@linkcode dropCachedStateRange}
242
+ * - A call to {@linkcode dropCachedStates}
243
243
  * - `seconds_until_expiry` seconds elapse without calling this function
244
244
  * - This handle is used to request a different seqno or range
245
245
  *
package/historical.d.ts CHANGED
@@ -7,7 +7,7 @@ export declare const historicalState: import("./global.js").HistoricalState | un
7
7
  */
8
8
  export declare const getStateRange: (handle: number, startSeqno: number, endSeqno: number, secondsUntilExpiry: number) => import("./global.js").HistoricalState[] | null;
9
9
  /**
10
- * @inheritDoc CCFHistorical.dropCachedStateRange
10
+ * @inheritDoc CCFHistorical.dropCachedStates
11
11
  */
12
12
  export declare const dropCachedStates: (handle: number) => boolean;
13
13
  export { HistoricalState, Receipt, Proof, ProofElement } from "./global";
package/historical.js CHANGED
@@ -37,6 +37,6 @@ export const historicalState = ccf.historicalState;
37
37
  */
38
38
  export const getStateRange = ccf.historical.getStateRange.bind(ccf.historical);
39
39
  /**
40
- * @inheritDoc CCFHistorical.dropCachedStateRange
40
+ * @inheritDoc CCFHistorical.dropCachedStates
41
41
  */
42
42
  export const dropCachedStates = ccf.historical.dropCachedStates.bind(ccf.historical);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/ccf-app",
3
- "version": "2.0.0-dev6",
3
+ "version": "2.0.0-dev7",
4
4
  "description": "CCF app support package",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -19,15 +19,15 @@
19
19
  "license": "Apache-2.0",
20
20
  "devDependencies": {
21
21
  "@types/chai": "^4.2.15",
22
- "@types/mocha": "^8.2.2",
23
- "@types/node": "14.17.27",
24
- "@types/node-forge": "^0.9.7",
22
+ "@types/mocha": "^9.0.0",
23
+ "@types/node": "16.11.12",
24
+ "@types/node-forge": "^0.10.9",
25
25
  "chai": "^4.3.4",
26
26
  "cross-env": "^7.0.3",
27
27
  "mocha": "^9.1.3",
28
28
  "node-forge": "^0.10.0",
29
- "ts-node": "^9.1.1",
30
- "typedoc": "^0.20.34",
31
- "typescript": "4.2.4"
29
+ "ts-node": "^10.4.0",
30
+ "typedoc": "^0.22.7",
31
+ "typescript": "^4.2.4"
32
32
  }
33
33
  }