Proto commits in hyperledger/identus-edge-agent-sdk-ts

These 7 commits are when the Protocol Buffers files have changed:

Commit:669ee28
Author:Javier Ribó
Committer:GitHub

fix!: v8 refactor + deprecations (#511) Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com> Signed-off-by: Allain Magyar <allain.magyar@iohk.io> Co-authored-by: Allain Magyar <allain.magyar@iohk.io> BREAKING CHANCES: If core internals where not in use, this breaking changes are likely to not affect you, except if you weren't relying on the Agent but using the internals directly for some things. ### Future deprecation notice The following items have been marked as deprecated and will be removed in a future version of the SDK, but are still available. - CreatePrismDID and CreatePrismDIDArgs from @hyperledger/identus-sdk, can still be used but is deprecated. We are introducing a new simplified function CreatePrismDIDWithKeys and type CreatePrismDIDWithKeysArgs from @hyperledger/identus-sdk ### Deprecated exports - No more default export in @hyperledger/identus-sdk. ```typescript // 7.x import SDK from "@hyperledger/identus-sdk"; // 8.x import * as SDK from "@hyperledger/identus-sdk"; ``` - CreateOOBOffer and CreateOOBOfferArgs from @hyperledger/identus-sdk. ```typescript // 7.x import { CreateOOBOffer, type CreateOOBOfferArgs } from "@hyperledger/identus-sdk"; // 8.x import { CreateOOBOffer, type CreateOOBOfferArgs } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - RunProtocol and RunProtocolArgs from @hyperledger/identus-sdk The RunProtocol becomes internal as its only managed by the SDK internals, the functionality is exposed through the Agent class. Internally ```agent.handle``` uses the RunProtocol task to run the protocol, message is of type ```Domain.Message```. ```typescript agent.handle(message) ``` - CreateOOBPresentationRequest and CreateOOBPresentationRequestArgs from @hyperledger/identus-sdk. ```typescript // 7.x import { CreateOOBPresentationRequest, type CreateOOBPresentationRequestArgs } from "@hyperledger/identus-sdk"; // 8.x import { CreateOOBPresentationRequest, type CreateOOBPresentationRequestArgs } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - DIDCommConnection from @hyperledger/identus-sdk ```typescript // 7.x import { DIDCommConnection } from "@hyperledger/identus-sdk"; // 8.x import { DIDCommConnection } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - HandshakeRequest and HandshakeRequestBody from @hyperledger/identus-sdk ```typescript // 7.x import { HandshakeRequest, type HandshakeRequestBody } from "@hyperledger/identus-sdk"; // 8.x import { HandshakeRequest, type HandshakeRequestBody } from "@hyperledger/identus-sdk/plugins/oea"; ``` - CredentialFormat from @hyperledger/identus-sdk ```typescript // 7.x import { type CredentialFormat } from "@hyperledger/identus-sdk"; // 8.x import { type CredentialFormat } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - RequestCredential from @hyperledger/identus-sdk ```typescript // 7.x import { RequestCredential } from "@hyperledger/identus-sdk"; // 8.x import { RequestCredential } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - IssueCredential and IssueCredentialBody from @hyperledger/identus-sdk ```typescript // 7.x import { IssueCredential, type IssueCredentialBody } from "@hyperledger/identus-sdk"; // 8.x import { IssueCredential, type IssueCredentialBody } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - OfferCredential and OfferCredentialBody from @hyperledger/identus-sdk ```typescript // 7.x import { OfferCredential, type OfferCredentialBody } from "@hyperledger/identus-sdk"; // 8.x import { OfferCredential, type OfferCredentialBody } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - OutOfBandInvitation and OutOfBandInvitationBody from @hyperledger/identus-sdk ```typescript // 7.x import { OutOfBandInvitation, type OutOfBandInvitationBody } from "@hyperledger/identus-sdk"; // 8.x import { OutOfBandInvitation, type OutOfBandInvitationBody } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - BasicMessage and BasicMessageBody from @hyperledger/identus-sdk ```typescript // 7.x import { BasicMessage, type BasicMessageBody } from "@hyperledger/identus-sdk"; // 8.x import { BasicMessage, type BasicMessageBody } from "@hyperledger/identus-sdk/plugins/didcomm"; ``` - Presentation and PresentationBody from @hyperledger/identus-sdk ```typescript // 7.x import { Presentation, type PresentationBody } from "@hyperledger/identus-sdk"; // 8.x import { Presentation, type PresentationBody } from "@hyperledger/identus-sdk/plugins/oea"; ``` - ProposePresentation and ProposePresentationBody from @hyperledger/identus-sdk ```typescript // 7.x import { ProposePresentation, type ProposePresentationBody } from "@hyperledger/identus-sdk"; // 8.x import { ProposePresentation, type ProposePresentationBody } from "@hyperledger/identus-sdk/plugins/oea"; ``` - RequestPresentation and RequestPresentationBody from @hyperledger/identus-sdk ```typescript // 7.x import { RequestPresentation, type RequestPresentationBody } from "@hyperledger/identus-sdk"; // 8.x import { RequestPresentation, type RequestPresentationBody } from "@hyperledger/identus-sdk/plugins/oea"; ``` - CreatePresentationRequest and CreatePresentationRequestArgs from @hyperledger/identus-sdk ```typescript // 7.x import { CreatePresentationRequest, type CreatePresentationRequestArgs } from "@hyperledger/identus-sdk"; // 8.x import { CreatePresentationRequest, type CreatePresentationRequestArgs } from "@hyperledger/identus-sdk/plugins/oea"; ``` - TaskContext from @hyperledger/identus-sdk ```typescript // 7.x import { type TaskContext } from "@hyperledger/identus-sdk"; // 8.x import { type CreatePresentationRequestTaskContext } from "@hyperledger/identus-sdk/plugins/oea"; ``` - CreatePresentation and CreatePresentationArgs from @hyperledger/identus-sdk ```typescript // 7.x import { CreatePresentation, type CreatePresentationArgs } from "@hyperledger/identus-sdk"; // 8.x import { CreatePresentation, type CreatePresentationArgs } from "@hyperledger/identus-sdk/plugins/oea"; ``` - Tasks from @hyperledger/identus-sdk This object is no longer available but the corresponding imports are available in the plugin modules. @hyperledger/identus-sdk/plugins/didcomm @hyperledger/identus-sdk/plugins/dif @hyperledger/identus-sdk/plugins/anoncreds @hyperledger/identus-sdk/plugins/oea @hyperledger/identus-sdk/plugins/oidc

The documentation is generated from this commit.

Commit:fee8761
Author:Francisco Javier Ribo Labrador

fix: updating protos to allow creating long form with 1 single create and update operation Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com>

Commit:1a3abf6
Author:Javier Ribó
Committer:Curtish

feat: castor create signed prism did operation (#347) Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com>

Commit:9b59124
Author:Javier Ribó
Committer:GitHub

feat: castor create signed prism did operation (#347) Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com>

Commit:138b570
Author:Francisco Javier Ribo Labrador
Committer:Francisco Javier Ribo Labrador

fix: improving protos to now create signed prism did operations on castor Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com>

Commit:07df69b
Author:Javier Ribó
Committer:Francisco Javier Ribó Labrador

fix(sdk): Add Proper Nodejs support + refactor into SRC (#58) Co-authored-by: Milos Dzepina <milos.dzepina@iohk.io> Signed-off-by: Francisco Javier Ribó Labrador <elribonazo@gmail.com>

Commit:cf80967
Author:Javier Ribó
Committer:Francisco Javier Ribó Labrador

feat(Castor) Implement All castor interface except for signature verification. (#5) * Add tested mnemonic generation * implementing Apollo with minimal test coverage. * Port Amtlr grammar. * Add prism generated code protos, ported to typescript. * Improve sha256 depencency for a more light weight fully compatible impl. * Implement Dependency free peer did creation and resolution. * Implement testing for PrismDID Resolution and fix tests. Signed-off-by: Francisco Javier Ribó Labrador <elribonazo@gmail.com>