@credo-ts/indy-vdr 0.6.1-alpha-20251208105733 → 0.6.1-alpha-20251209100250
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/build/IndyVdrApi.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import { IndyVdrPoolConfig } from "./pool/IndyVdrPool.mjs";
|
|
|
2
2
|
import { IndyVdrPoolService } from "./pool/IndyVdrPoolService.mjs";
|
|
3
3
|
import "./pool/index.mjs";
|
|
4
4
|
import { AgentContext } from "@credo-ts/core";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _hyperledger_indy_vdr_shared0 from "@hyperledger/indy-vdr-shared";
|
|
6
6
|
|
|
7
7
|
//#region src/IndyVdrApi.d.ts
|
|
8
8
|
declare class IndyVdrApi {
|
|
@@ -21,7 +21,7 @@ declare class IndyVdrApi {
|
|
|
21
21
|
*/
|
|
22
22
|
getAllPoolTransactions(): Promise<PromiseSettledResult<{
|
|
23
23
|
config: IndyVdrPoolConfig;
|
|
24
|
-
transactions:
|
|
24
|
+
transactions: _hyperledger_indy_vdr_shared0.Transactions;
|
|
25
25
|
}>[]>;
|
|
26
26
|
/**
|
|
27
27
|
* This method endorses a transaction. The transaction can be either a string or a JSON object.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AgentContext, Kms } from "@credo-ts/core";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _hyperledger_indy_vdr_shared1 from "@hyperledger/indy-vdr-shared";
|
|
3
3
|
import { IndyVdrRequest, RequestResponseType } from "@hyperledger/indy-vdr-shared";
|
|
4
4
|
|
|
5
5
|
//#region src/pool/IndyVdrPool.d.ts
|
|
@@ -42,7 +42,7 @@ declare class IndyVdrPool {
|
|
|
42
42
|
/**
|
|
43
43
|
* Get the transactions for a pool
|
|
44
44
|
*/
|
|
45
|
-
get transactions(): Promise<
|
|
45
|
+
get transactions(): Promise<_hyperledger_indy_vdr_shared1.Transactions>;
|
|
46
46
|
private get pool();
|
|
47
47
|
close(): void;
|
|
48
48
|
prepareWriteRequest<Request extends IndyVdrRequest>(agentContext: AgentContext, request: Request, signingKey: Kms.PublicJwk<Kms.Ed25519PublicJwk>, endorserDid?: string): Promise<Request>;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
".": "./build/index.mjs",
|
|
5
5
|
"./package.json": "./package.json"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.6.1-alpha-
|
|
7
|
+
"version": "0.6.1-alpha-20251209100250",
|
|
8
8
|
"files": [
|
|
9
9
|
"build"
|
|
10
10
|
],
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"directory": "packages/indy-vdr"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@credo-ts/anoncreds": "0.6.1-alpha-
|
|
23
|
-
"@credo-ts/core": "0.6.1-alpha-
|
|
22
|
+
"@credo-ts/anoncreds": "0.6.1-alpha-20251209100250",
|
|
23
|
+
"@credo-ts/core": "0.6.1-alpha-20251209100250"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@hyperledger/indy-vdr-nodejs": "^0.2.3",
|