@microsoft/ccf-app 7.0.0-dev8 → 7.0.0-rc0

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/consensus.d.ts CHANGED
@@ -10,4 +10,4 @@ export declare const getStatusForTxId: (view: number, seqno: number) => import("
10
10
  * @inheritDoc global!CCFConsensus.getViewForSeqno
11
11
  */
12
12
  export declare const getViewForSeqno: (seqno: number) => number | null;
13
- export { TransactionStatus } from "./global";
13
+ export type { TransactionStatus } from "./global";
package/crypto.d.ts CHANGED
@@ -90,4 +90,4 @@ export declare const pubEddsaJwkToPem: (jwk: import("./global.js").JsonWebKeyEdD
90
90
  * @inheritDoc global!CCFCrypto.eddsaJwkToPem
91
91
  */
92
92
  export declare const eddsaJwkToPem: (jwk: import("./global.js").JsonWebKeyEdDSAPrivate) => string;
93
- export { WrapAlgoParams, AesKwpParams, RsaOaepParams, RsaOaepAesKwpParams, CryptoKeyPair, DigestAlgorithm, SigningAlgorithm, } from "./global";
93
+ export type { WrapAlgoParams, AesKwpParams, RsaOaepParams, RsaOaepAesKwpParams, CryptoKeyPair, DigestAlgorithm, SigningAlgorithm, } from "./global";
package/endpoints.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * @module
6
6
  */
7
- import { JsonCompatible } from "./global.js";
7
+ import { type JsonCompatible } from "./global.js";
8
8
  /**
9
9
  * The body of a request.
10
10
  *
package/historical.d.ts CHANGED
@@ -10,4 +10,4 @@ export declare const getStateRange: (handle: number, startSeqno: number, endSeqn
10
10
  * @inheritDoc global!CCFHistorical.dropCachedStates
11
11
  */
12
12
  export declare const dropCachedStates: (handle: number) => boolean;
13
- export { HistoricalState, Receipt, Proof, ProofElement } from "./global";
13
+ export type { HistoricalState, Receipt, Proof, ProofElement } from "./global";
package/kv.d.ts CHANGED
@@ -33,8 +33,8 @@
33
33
  *
34
34
  * @module
35
35
  */
36
- import { KvMap } from "./global.js";
37
- import { DataConverter } from "./converters.js";
36
+ import { type KvMap } from "./global.js";
37
+ import { type DataConverter } from "./converters.js";
38
38
  export declare class TypedKvMap<K, V> {
39
39
  private kv;
40
40
  private kt;
@@ -92,4 +92,4 @@ export declare function typedKvSet<K, V>(nameOrMap: string | KvMap, kt: DataConv
92
92
  * @inheritDoc global!CCF.kv
93
93
  */
94
94
  export declare const rawKv: import("./global.js").KvMaps;
95
- export { KvMap, KvSet, KvMaps } from "./global";
95
+ export type { KvMap, KvSet, KvMaps } from "./global";
package/kv.js CHANGED
@@ -36,6 +36,7 @@
36
36
  * @module
37
37
  */
38
38
  import { ccf } from "./global.js";
39
+ import {} from "./converters.js";
39
40
  export class TypedKvMap {
40
41
  constructor(kv, kt, vt) {
41
42
  this.kv = kv;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/microsoft/ccf"
6
6
  },
7
- "version": "7.0.0-dev8",
7
+ "version": "7.0.0-rc0",
8
8
  "description": "CCF app support package",
9
9
  "main": "index.js",
10
10
  "files": [
@@ -32,10 +32,13 @@
32
32
  "mocha": "^11.7.5",
33
33
  "node-forge": "^1.2.0",
34
34
  "ts-node": "^10.9.2",
35
- "typedoc": "^0.28.10",
36
- "typescript": "^5.9.2"
35
+ "typedoc": "^0.28.18",
36
+ "typescript": "^6.0.2"
37
37
  },
38
38
  "bin": {
39
39
  "ccf-build-bundle": "scripts/build_bundle.js"
40
+ },
41
+ "dependencies": {
42
+ "colors": "1.4.0"
40
43
  }
41
44
  }