@sphereon/ssi-sdk.ebsi-support 0.36.1-feature.SSISDK.82.and.SSISDK.70.37 → 0.36.1-next.11
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/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +24 -24
- package/src/functions/Attestation.ts +1 -2
- package/src/types/IEbsiSupport.ts +1 -2
package/dist/index.d.cts
CHANGED
|
@@ -7,7 +7,7 @@ import { PresentationDefinitionV2, Format } from '@sphereon/pex-models';
|
|
|
7
7
|
import { ManagedIdentifierDidResult, IIdentifierResolution, ManagedIdentifierDidOpts } from '@sphereon/ssi-sdk-ext.identifier-resolution';
|
|
8
8
|
import { IJwtService } from '@sphereon/ssi-sdk-ext.jwt-service';
|
|
9
9
|
import { Party, IBasicCredentialLocaleBranding } from '@sphereon/ssi-sdk.data-store-types';
|
|
10
|
-
import { PrepareStartArgs, IssuanceOpts, IOID4VCIHolder,
|
|
10
|
+
import { PrepareStartArgs, IssuanceOpts, IOID4VCIHolder, ErrorDetails, MappedCredentialToAccept } from '@sphereon/ssi-sdk.oid4vci-holder';
|
|
11
11
|
import { IPresentationExchange } from '@sphereon/ssi-sdk.presentation-exchange';
|
|
12
12
|
import { IDidAuthSiopOpAuthenticator } from '@sphereon/ssi-sdk.siopv2-oid4vp-op-auth';
|
|
13
13
|
import { _ExtendedIKey } from '@veramo/utils';
|
|
@@ -637,7 +637,6 @@ type CreateAttestationAuthRequestURLArgs = {
|
|
|
637
637
|
type GetAttestationArgs = {
|
|
638
638
|
clientId: string;
|
|
639
639
|
authReqResult: AttestationAuthRequestUrlResult;
|
|
640
|
-
walletType?: WalletType;
|
|
641
640
|
opts?: {
|
|
642
641
|
timeout: number;
|
|
643
642
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { PresentationDefinitionV2, Format } from '@sphereon/pex-models';
|
|
|
7
7
|
import { ManagedIdentifierDidResult, IIdentifierResolution, ManagedIdentifierDidOpts } from '@sphereon/ssi-sdk-ext.identifier-resolution';
|
|
8
8
|
import { IJwtService } from '@sphereon/ssi-sdk-ext.jwt-service';
|
|
9
9
|
import { Party, IBasicCredentialLocaleBranding } from '@sphereon/ssi-sdk.data-store-types';
|
|
10
|
-
import { PrepareStartArgs, IssuanceOpts, IOID4VCIHolder,
|
|
10
|
+
import { PrepareStartArgs, IssuanceOpts, IOID4VCIHolder, ErrorDetails, MappedCredentialToAccept } from '@sphereon/ssi-sdk.oid4vci-holder';
|
|
11
11
|
import { IPresentationExchange } from '@sphereon/ssi-sdk.presentation-exchange';
|
|
12
12
|
import { IDidAuthSiopOpAuthenticator } from '@sphereon/ssi-sdk.siopv2-oid4vp-op-auth';
|
|
13
13
|
import { _ExtendedIKey } from '@veramo/utils';
|
|
@@ -637,7 +637,6 @@ type CreateAttestationAuthRequestURLArgs = {
|
|
|
637
637
|
type GetAttestationArgs = {
|
|
638
638
|
clientId: string;
|
|
639
639
|
authReqResult: AttestationAuthRequestUrlResult;
|
|
640
|
-
walletType?: WalletType;
|
|
641
640
|
opts?: {
|
|
642
641
|
timeout: number;
|
|
643
642
|
};
|
package/dist/index.js
CHANGED
|
@@ -2394,7 +2394,7 @@ var ebsiCreateAttestationAuthRequestURL = /* @__PURE__ */ __name(async ({ client
|
|
|
2394
2394
|
]
|
|
2395
2395
|
};
|
|
2396
2396
|
}, "ebsiCreateAttestationAuthRequestURL");
|
|
2397
|
-
var ebsiGetAttestationInterpreter = /* @__PURE__ */ __name(async ({ clientId, authReqResult
|
|
2397
|
+
var ebsiGetAttestationInterpreter = /* @__PURE__ */ __name(async ({ clientId, authReqResult }, context) => {
|
|
2398
2398
|
const identifier = authReqResult.identifier;
|
|
2399
2399
|
const vciStateCallbacks = /* @__PURE__ */ new Map();
|
|
2400
2400
|
const vpStateCallbacks = /* @__PURE__ */ new Map();
|
|
@@ -2414,8 +2414,7 @@ var ebsiGetAttestationInterpreter = /* @__PURE__ */ __name(async ({ clientId, au
|
|
|
2414
2414
|
SupportedDidMethodEnum.DID_EBSI,
|
|
2415
2415
|
SupportedDidMethodEnum.DID_KEY
|
|
2416
2416
|
],
|
|
2417
|
-
stateNavigationListener: OID4VCICallbackStateListener(vciStateCallbacks)
|
|
2418
|
-
walletType: walletType ?? "NATURAL_PERSON"
|
|
2417
|
+
stateNavigationListener: OID4VCICallbackStateListener(vciStateCallbacks)
|
|
2419
2418
|
});
|
|
2420
2419
|
const vpLinkHandler = new Siopv2OID4VPLinkHandler({
|
|
2421
2420
|
protocols: [
|