Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: operation id repeated error #1306

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,15 @@ object IssueEndpoints {
.description("The credential issuance record was created successfully, and is returned in the response body.")
)
.out(jsonBody[IssueCredentialRecord].description("The issue credential record."))
.name("createCredentialOffer")
.summary("As a credential issuer, create a new credential offer that will be sent to a holder Agent.")
.name("createCredentialOfferInvitation")
.summary(
"As a credential issuer, create a new credential offer Invitation that will be delivered as out-of-band to a peer Agent."
)
.description("""
|Creates a new credential offer that will be delivered, through a previously established DIDComm connection, to a holder Agent.
|The subsequent credential offer message adheres to the [Issue Credential Protocol 3.0 - Offer Credential](https://github.com/decentralized-identity/waci-didcomm/tree/main/issue_credential#offer-credential) specification.
|The created offer can be of two types: 'JWT' or 'AnonCreds'.
|Creates a new credential offer invitation to be delivered as an out-of-band message.
|The invitation message adheres to the OOB specification as outlined [here](https://identity.foundation/didcomm-messaging/spec/#invitation),
|with the credential offer message attached according to the [Issue Credential Protocol 3.0 - Offer Credential specification](https://github.com/decentralized-identity/waci-didcomm/tree/main/issue_credential#offer-credential).
|The created offer attachment can be of three types: 'JWT', 'AnonCreds', or 'SDJWT'.
|""".stripMargin)
.tag(tagName)

Expand Down
Loading