@credo-ts/anoncreds 0.6.2-alpha-20251211115250 → 0.6.2-alpha-20251211125338
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/protocols/credentials/v1/messages/DidCommCredentialV1AckMessage.d.mts +2 -2
- package/build/protocols/credentials/v1/messages/DidCommCredentialV1Preview.d.mts +2 -2
- package/build/protocols/credentials/v1/messages/DidCommCredentialV1ProblemReportMessage.d.mts +2 -2
- package/build/protocols/credentials/v1/messages/DidCommIssueCredentialV1Message.d.mts +2 -2
- package/build/protocols/credentials/v1/messages/DidCommOfferCredentialV1Message.d.mts +2 -2
- package/build/protocols/credentials/v1/messages/DidCommOfferCredentialV1Message.d.mts.map +1 -1
- package/build/protocols/credentials/v1/messages/DidCommProposeCredentialV1Message.d.mts +2 -2
- package/build/protocols/credentials/v1/messages/DidCommProposeCredentialV1Message.d.mts.map +1 -1
- package/build/protocols/credentials/v1/messages/DidCommRequestCredentialV1Message.d.mts +2 -2
- package/build/protocols/proofs/v1/messages/DidCommPresentationV1AckMessage.d.mts +2 -2
- package/build/protocols/proofs/v1/messages/DidCommPresentationV1Message.d.mts +2 -2
- package/build/protocols/proofs/v1/messages/DidCommPresentationV1ProblemReportMessage.d.mts +2 -2
- package/build/protocols/proofs/v1/messages/DidCommPresentationV1ProblemReportMessage.d.mts.map +1 -1
- package/build/protocols/proofs/v1/messages/DidCommProposePresentationV1Message.d.mts +2 -2
- package/build/protocols/proofs/v1/messages/DidCommProposePresentationV1Message.d.mts.map +1 -1
- package/build/protocols/proofs/v1/messages/DidCommRequestPresentationV1Message.d.mts +2 -2
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _credo_ts_didcomm1 from "@credo-ts/didcomm";
|
|
2
2
|
import { DidCommAckMessage, DidCommAckMessageOptions } from "@credo-ts/didcomm";
|
|
3
3
|
|
|
4
4
|
//#region src/protocols/credentials/v1/messages/DidCommCredentialV1AckMessage.d.ts
|
|
@@ -9,7 +9,7 @@ type V1CredentialAckMessageOptions = DidCommAckMessageOptions;
|
|
|
9
9
|
declare class DidCommCredentialV1AckMessage extends DidCommAckMessage {
|
|
10
10
|
readonly allowDidSovPrefix = true;
|
|
11
11
|
readonly type: string;
|
|
12
|
-
static readonly type:
|
|
12
|
+
static readonly type: _credo_ts_didcomm1.ParsedMessageType;
|
|
13
13
|
}
|
|
14
14
|
//#endregion
|
|
15
15
|
export { DidCommCredentialV1AckMessage, V1CredentialAckMessageOptions };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _credo_ts_didcomm2 from "@credo-ts/didcomm";
|
|
2
2
|
import { CredentialPreviewOptions, DidCommCredentialPreviewAttribute } from "@credo-ts/didcomm";
|
|
3
3
|
|
|
4
4
|
//#region src/protocols/credentials/v1/messages/DidCommCredentialV1Preview.d.ts
|
|
@@ -12,7 +12,7 @@ import { CredentialPreviewOptions, DidCommCredentialPreviewAttribute } from "@cr
|
|
|
12
12
|
*/
|
|
13
13
|
declare class DidCommCredentialV1Preview {
|
|
14
14
|
constructor(options: CredentialPreviewOptions);
|
|
15
|
-
static readonly type:
|
|
15
|
+
static readonly type: _credo_ts_didcomm2.ParsedMessageType;
|
|
16
16
|
readonly type: string;
|
|
17
17
|
attributes: DidCommCredentialPreviewAttribute[];
|
|
18
18
|
toJSON(): Record<string, unknown>;
|
package/build/protocols/credentials/v1/messages/DidCommCredentialV1ProblemReportMessage.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _credo_ts_didcomm3 from "@credo-ts/didcomm";
|
|
2
2
|
import { DidCommProblemReportMessage, DidCommProblemReportMessageOptions } from "@credo-ts/didcomm";
|
|
3
3
|
|
|
4
4
|
//#region src/protocols/credentials/v1/messages/DidCommCredentialV1ProblemReportMessage.d.ts
|
|
@@ -9,7 +9,7 @@ type V1CredentialProblemReportMessageOptions = DidCommProblemReportMessageOption
|
|
|
9
9
|
declare class DidCommCredentialV1ProblemReportMessage extends DidCommProblemReportMessage {
|
|
10
10
|
readonly allowDidSovPrefix = true;
|
|
11
11
|
readonly type: string;
|
|
12
|
-
static readonly type:
|
|
12
|
+
static readonly type: _credo_ts_didcomm3.ParsedMessageType;
|
|
13
13
|
}
|
|
14
14
|
//#endregion
|
|
15
15
|
export { DidCommCredentialV1ProblemReportMessage, V1CredentialProblemReportMessageOptions };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnonCredsCredential } from "../../../../models/exchange.mjs";
|
|
2
2
|
import "../../../../models/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _credo_ts_didcomm4 from "@credo-ts/didcomm";
|
|
4
4
|
import { DidCommAttachment, DidCommMessage } from "@credo-ts/didcomm";
|
|
5
5
|
|
|
6
6
|
//#region src/protocols/credentials/v1/messages/DidCommIssueCredentialV1Message.d.ts
|
|
@@ -15,7 +15,7 @@ declare class DidCommIssueCredentialV1Message extends DidCommMessage {
|
|
|
15
15
|
readonly allowDidSovPrefix = true;
|
|
16
16
|
constructor(options: V1IssueCredentialMessageOptions);
|
|
17
17
|
readonly type: string;
|
|
18
|
-
static readonly type:
|
|
18
|
+
static readonly type: _credo_ts_didcomm4.ParsedMessageType;
|
|
19
19
|
comment?: string;
|
|
20
20
|
credentialAttachments: DidCommAttachment[];
|
|
21
21
|
get indyCredential(): AnonCredsCredential | null;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AnonCredsCredentialOffer } from "../../../../models/exchange.mjs";
|
|
2
2
|
import "../../../../models/index.mjs";
|
|
3
3
|
import { DidCommCredentialV1Preview } from "./DidCommCredentialV1Preview.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _credo_ts_didcomm5 from "@credo-ts/didcomm";
|
|
5
5
|
import { DidCommAttachment, DidCommMessage } from "@credo-ts/didcomm";
|
|
6
6
|
|
|
7
7
|
//#region src/protocols/credentials/v1/messages/DidCommOfferCredentialV1Message.d.ts
|
|
@@ -22,7 +22,7 @@ declare class V1OfferCredentialMessage extends DidCommMessage {
|
|
|
22
22
|
readonly allowDidSovPrefix = true;
|
|
23
23
|
constructor(options: DidCommOfferCredentialV1Message);
|
|
24
24
|
readonly type: string;
|
|
25
|
-
static readonly type:
|
|
25
|
+
static readonly type: _credo_ts_didcomm5.ParsedMessageType;
|
|
26
26
|
comment?: string;
|
|
27
27
|
credentialPreview: DidCommCredentialV1Preview;
|
|
28
28
|
offerAttachments: DidCommAttachment[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DidCommOfferCredentialV1Message.d.mts","names":[],"sources":["../../../../../src/protocols/credentials/v1/messages/DidCommOfferCredentialV1Message.ts"],"sourcesContent":[],"mappings":";;;;;;;cAOa,mCAAA;UAEI,+BAAA;;;EAFJ,gBAAA,EAKO,iBALP,EAAA;EAEI,iBAAA,EAII,0BAJ2B;EAG5B,WAAA,CAAA,EAEJ,iBAFI,EAAA;;;;AAUpB;;;AA2B6B,cA3BhB,wBAAA,SAAiC,cAAA,CA2BjB;EASD,SAAA,iBAAA,GAAA,IAAA;EAEQ,WAAA,CAAA,OAAA,EAnCN,+BAmCM;EASS,SAAA,IAAA,EAAA,MAAA;EA/CC,gBAAA,IAAA,EAGe,
|
|
1
|
+
{"version":3,"file":"DidCommOfferCredentialV1Message.d.mts","names":[],"sources":["../../../../../src/protocols/credentials/v1/messages/DidCommOfferCredentialV1Message.ts"],"sourcesContent":[],"mappings":";;;;;;;cAOa,mCAAA;UAEI,+BAAA;;;EAFJ,gBAAA,EAKO,iBALP,EAAA;EAEI,iBAAA,EAII,0BAJ2B;EAG5B,WAAA,CAAA,EAEJ,iBAFI,EAAA;;;;AAUpB;;;AA2B6B,cA3BhB,wBAAA,SAAiC,cAAA,CA2BjB;EASD,SAAA,iBAAA,GAAA,IAAA;EAEQ,WAAA,CAAA,OAAA,EAnCN,+BAmCM;EASS,SAAA,IAAA,EAAA,MAAA;EA/CC,gBAAA,IAAA,EAGe,kBAAA,CAchC,iBAjBiB;EAAc,OAAA,CAAA,EAAA,MAAA;qBA2B/B;oBASD;6BAEQ;sCASS"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DidCommCredentialV1Preview } from "./DidCommCredentialV1Preview.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _credo_ts_didcomm6 from "@credo-ts/didcomm";
|
|
3
3
|
import { DidCommAttachment, DidCommMessage } from "@credo-ts/didcomm";
|
|
4
4
|
|
|
5
5
|
//#region src/protocols/credentials/v1/messages/DidCommProposeCredentialV1Message.d.ts
|
|
@@ -24,7 +24,7 @@ declare class DidCommProposeCredentialV1Message extends DidCommMessage {
|
|
|
24
24
|
readonly allowDidSovPrefix = true;
|
|
25
25
|
constructor(options: DidCommProposeCredentialV1MessageOptions);
|
|
26
26
|
readonly type: string;
|
|
27
|
-
static readonly type:
|
|
27
|
+
static readonly type: _credo_ts_didcomm6.ParsedMessageType;
|
|
28
28
|
/**
|
|
29
29
|
* Human readable information about this Credential Proposal,
|
|
30
30
|
* so the proposal can be evaluated by human judgment.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DidCommProposeCredentialV1Message.d.mts","names":[],"sources":["../../../../../src/protocols/credentials/v1/messages/DidCommProposeCredentialV1Message.ts"],"sourcesContent":[],"mappings":";;;;;UAeiB,wCAAA;;EAAA,OAAA,CAAA,EAAA,MAAA;EAkBJ,iBAAA,CAAA,EAfS,0BAeyB;EAGjB,eAAA,CAAA,EAAA,MAAA;EAAwC,QAAA,CAAA,EAAA,MAmBzC;EAkBA,UAAA,CAAA,EAAA,MAAA;EAxC0B,aAAA,CAAA,EAAA,MAAA;EAAc,sBAAA,CAAA,EAAA,MAAA;;gBARrD;;;;;;;cAQH,iCAAA,SAA0C,cAAA;;uBAGzB;;wBAAwC,
|
|
1
|
+
{"version":3,"file":"DidCommProposeCredentialV1Message.d.mts","names":[],"sources":["../../../../../src/protocols/credentials/v1/messages/DidCommProposeCredentialV1Message.ts"],"sourcesContent":[],"mappings":";;;;;UAeiB,wCAAA;;EAAA,OAAA,CAAA,EAAA,MAAA;EAkBJ,iBAAA,CAAA,EAfS,0BAeyB;EAGjB,eAAA,CAAA,EAAA,MAAA;EAAwC,QAAA,CAAA,EAAA,MAmBzC;EAkBA,UAAA,CAAA,EAAA,MAAA;EAxC0B,aAAA,CAAA,EAAA,MAAA;EAAc,sBAAA,CAAA,EAAA,MAAA;;gBARrD;;;;;;;cAQH,iCAAA,SAA0C,cAAA;;uBAGzB;;wBAAwC,kBAAA,CAmBzC;;;;;;;;;sBAkBA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LegacyIndyCredentialRequest } from "../../../../formats/LegacyIndyDidCommCredentialFormat.mjs";
|
|
2
2
|
import "../../../../formats/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _credo_ts_didcomm0 from "@credo-ts/didcomm";
|
|
4
4
|
import { DidCommAttachment, DidCommMessage } from "@credo-ts/didcomm";
|
|
5
5
|
|
|
6
6
|
//#region src/protocols/credentials/v1/messages/DidCommRequestCredentialV1Message.d.ts
|
|
@@ -15,7 +15,7 @@ declare class DidCommRequestCredentialV1Message extends DidCommMessage {
|
|
|
15
15
|
readonly allowDidSovPrefix = true;
|
|
16
16
|
constructor(options: DidCommRequestCredentialV1MessageOptions);
|
|
17
17
|
readonly type: string;
|
|
18
|
-
static readonly type:
|
|
18
|
+
static readonly type: _credo_ts_didcomm0.ParsedMessageType;
|
|
19
19
|
comment?: string;
|
|
20
20
|
requestAttachments: DidCommAttachment[];
|
|
21
21
|
get indyCredentialRequest(): LegacyIndyCredentialRequest | null;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _credo_ts_didcomm8 from "@credo-ts/didcomm";
|
|
2
2
|
import { DidCommAckMessage } from "@credo-ts/didcomm";
|
|
3
3
|
|
|
4
4
|
//#region src/protocols/proofs/v1/messages/DidCommPresentationV1AckMessage.d.ts
|
|
5
5
|
declare class DidCommPresentationV1AckMessage extends DidCommAckMessage {
|
|
6
6
|
readonly allowDidSovPrefix = true;
|
|
7
7
|
readonly type: string;
|
|
8
|
-
static readonly type:
|
|
8
|
+
static readonly type: _credo_ts_didcomm8.ParsedMessageType;
|
|
9
9
|
}
|
|
10
10
|
//#endregion
|
|
11
11
|
export { DidCommPresentationV1AckMessage };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnonCredsProof } from "../../../../models/exchange.mjs";
|
|
2
2
|
import "../../../../models/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _credo_ts_didcomm9 from "@credo-ts/didcomm";
|
|
4
4
|
import { DidCommAttachment, DidCommMessage } from "@credo-ts/didcomm";
|
|
5
5
|
|
|
6
6
|
//#region src/protocols/proofs/v1/messages/DidCommPresentationV1Message.d.ts
|
|
@@ -21,7 +21,7 @@ declare class DidCommPresentationV1Message extends DidCommMessage {
|
|
|
21
21
|
readonly allowDidSovPrefix = true;
|
|
22
22
|
constructor(options: DidCommPresentationV1MessageOptions);
|
|
23
23
|
readonly type: string;
|
|
24
|
-
static readonly type:
|
|
24
|
+
static readonly type: _credo_ts_didcomm9.ParsedMessageType;
|
|
25
25
|
/**
|
|
26
26
|
* Provides some human readable information about this request for a presentation.
|
|
27
27
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _credo_ts_didcomm10 from "@credo-ts/didcomm";
|
|
2
2
|
import { DidCommProblemReportMessage, DidCommProblemReportMessageOptions } from "@credo-ts/didcomm";
|
|
3
3
|
|
|
4
4
|
//#region src/protocols/proofs/v1/messages/DidCommPresentationV1ProblemReportMessage.d.ts
|
|
@@ -9,7 +9,7 @@ type DidCommPresentationV1ProblemReportMessageOptions = DidCommProblemReportMess
|
|
|
9
9
|
declare class DidCommPresentationV1ProblemReportMessage extends DidCommProblemReportMessage {
|
|
10
10
|
readonly allowDidSovPrefix = true;
|
|
11
11
|
readonly type: string;
|
|
12
|
-
static readonly type:
|
|
12
|
+
static readonly type: _credo_ts_didcomm10.ParsedMessageType;
|
|
13
13
|
}
|
|
14
14
|
//#endregion
|
|
15
15
|
export { DidCommPresentationV1ProblemReportMessage, DidCommPresentationV1ProblemReportMessageOptions };
|
package/build/protocols/proofs/v1/messages/DidCommPresentationV1ProblemReportMessage.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DidCommPresentationV1ProblemReportMessage.d.mts","names":[],"sources":["../../../../../src/protocols/proofs/v1/messages/DidCommPresentationV1ProblemReportMessage.ts"],"sourcesContent":[],"mappings":";;;;KAIY,gDAAA,GAAmD;;AAA/D;AAKA;cAAa,yCAAA,SAAkD,2BAAA;;;wBAAR,
|
|
1
|
+
{"version":3,"file":"DidCommPresentationV1ProblemReportMessage.d.mts","names":[],"sources":["../../../../../src/protocols/proofs/v1/messages/DidCommPresentationV1ProblemReportMessage.ts"],"sourcesContent":[],"mappings":";;;;KAIY,gDAAA,GAAmD;;AAA/D;AAKA;cAAa,yCAAA,SAAkD,2BAAA;;;wBAAR,mBAAA,CAK1B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DidCommPresentationV1Preview } from "../models/DidCommPresentationV1Preview.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _credo_ts_didcomm11 from "@credo-ts/didcomm";
|
|
3
3
|
import { DidCommMessage } from "@credo-ts/didcomm";
|
|
4
4
|
|
|
5
5
|
//#region src/protocols/proofs/v1/messages/DidCommProposePresentationV1Message.d.ts
|
|
@@ -17,7 +17,7 @@ declare class DidCommProposePresentationV1Message extends DidCommMessage {
|
|
|
17
17
|
readonly allowDidSovPrefix = true;
|
|
18
18
|
constructor(options: DidCommProposePresentationV1MessageOptions);
|
|
19
19
|
readonly type: string;
|
|
20
|
-
static readonly type:
|
|
20
|
+
static readonly type: _credo_ts_didcomm11.ParsedMessageType;
|
|
21
21
|
/**
|
|
22
22
|
* Provides some human readable information about the proposed presentation.
|
|
23
23
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DidCommProposePresentationV1Message.d.mts","names":[],"sources":["../../../../../src/protocols/proofs/v1/messages/DidCommProposePresentationV1Message.ts"],"sourcesContent":[],"mappings":";;;;;UAMiB,0CAAA;;;EAAA,oBAAA,EAGO,4BAHmC;AAW3D;;;;;;cAAa,mCAAA,SAA4C,cAAA;;uBAE3B;;wBAA0C,
|
|
1
|
+
{"version":3,"file":"DidCommProposePresentationV1Message.d.mts","names":[],"sources":["../../../../../src/protocols/proofs/v1/messages/DidCommProposePresentationV1Message.ts"],"sourcesContent":[],"mappings":";;;;;UAMiB,0CAAA;;;EAAA,oBAAA,EAGO,4BAHmC;AAW3D;;;;;;cAAa,mCAAA,SAA4C,cAAA;;uBAE3B;;wBAA0C,mBAAA,CAY3C;;;;;;;;wBAgBG"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LegacyIndyProofRequest } from "../../../../formats/LegacyIndyDidCommProofFormat.mjs";
|
|
2
2
|
import "../../../../formats/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _credo_ts_didcomm7 from "@credo-ts/didcomm";
|
|
4
4
|
import { DidCommAttachment, DidCommMessage } from "@credo-ts/didcomm";
|
|
5
5
|
|
|
6
6
|
//#region src/protocols/proofs/v1/messages/DidCommRequestPresentationV1Message.d.ts
|
|
@@ -19,7 +19,7 @@ declare class DidCommRequestPresentationV1Message extends DidCommMessage {
|
|
|
19
19
|
readonly allowDidSovPrefix = true;
|
|
20
20
|
constructor(options: DidCommRequestPresentationV1MessageOptions);
|
|
21
21
|
readonly type: string;
|
|
22
|
-
static readonly type:
|
|
22
|
+
static readonly type: _credo_ts_didcomm7.ParsedMessageType;
|
|
23
23
|
/**
|
|
24
24
|
* Provides some human readable information about this request for a presentation.
|
|
25
25
|
*/
|
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.2-alpha-
|
|
7
|
+
"version": "0.6.2-alpha-20251211125338",
|
|
8
8
|
"files": [
|
|
9
9
|
"build"
|
|
10
10
|
],
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"class-transformer": "0.5.1",
|
|
25
25
|
"class-validator": "^0.14.1",
|
|
26
26
|
"reflect-metadata": "0.2.2",
|
|
27
|
-
"@credo-ts/core": "0.6.2-alpha-
|
|
28
|
-
"@credo-ts/didcomm": "0.6.2-alpha-
|
|
27
|
+
"@credo-ts/core": "0.6.2-alpha-20251211125338",
|
|
28
|
+
"@credo-ts/didcomm": "0.6.2-alpha-20251211125338"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@hyperledger/anoncreds-nodejs": "^0.3.4",
|
|
32
32
|
"@hyperledger/anoncreds-shared": "^0.3.4",
|
|
33
33
|
"rxjs": "^7.8.2",
|
|
34
34
|
"typescript": "~5.9.3",
|
|
35
|
-
"@credo-ts/node": "0.6.2-alpha-
|
|
35
|
+
"@credo-ts/node": "0.6.2-alpha-20251211125338"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@hyperledger/anoncreds-shared": "^0.3.4"
|