@sphereon/ssi-sdk.oid4vci-holder 0.34.1-fix.223 → 0.34.1-fix.226
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 +5 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -16
- package/dist/index.js.map +1 -1
- package/package.json +20 -20
- package/src/agent/OID4VCIHolder.ts +10 -17
- package/src/services/OID4VCIHolderService.ts +0 -3
package/dist/index.js
CHANGED
|
@@ -56,13 +56,13 @@ var require_nl = __commonJS({
|
|
|
56
56
|
|
|
57
57
|
// src/agent/OID4VCIHolder.ts
|
|
58
58
|
import { CredentialOfferClient, MetadataClient, OpenID4VCIClient as OpenID4VCIClient2 } from "@sphereon/oid4vci-client";
|
|
59
|
-
import { DefaultURISchemes,
|
|
59
|
+
import { DefaultURISchemes, getTypesFromObject as getTypesFromObject2 } from "@sphereon/oid4vci-common";
|
|
60
60
|
import { SupportedDidMethodEnum as SupportedDidMethodEnum2 } from "@sphereon/ssi-sdk-ext.did-utils";
|
|
61
61
|
import { isManagedIdentifierDidOpts, isManagedIdentifierDidResult as isManagedIdentifierDidResult2, isManagedIdentifierJwkResult, isManagedIdentifierKidResult, isManagedIdentifierResult as isManagedIdentifierResult2, isManagedIdentifierX5cOpts, isManagedIdentifierX5cResult } from "@sphereon/ssi-sdk-ext.identifier-resolution";
|
|
62
62
|
import { signatureAlgorithmFromKey } from "@sphereon/ssi-sdk-ext.key-utils";
|
|
63
63
|
import { defaultHasher as defaultHasher2 } from "@sphereon/ssi-sdk.core";
|
|
64
64
|
import { ConnectionType, CorrelationIdentifierType, CredentialCorrelationType, ensureRawDocument, IdentityOrigin } from "@sphereon/ssi-sdk.data-store";
|
|
65
|
-
import { CredentialMapper as CredentialMapper2, JoseSignatureAlgorithm as JoseSignatureAlgorithm2, Loggers, parseDid
|
|
65
|
+
import { CredentialMapper as CredentialMapper2, CredentialRole, JoseSignatureAlgorithm as JoseSignatureAlgorithm2, Loggers, parseDid } from "@sphereon/ssi-types";
|
|
66
66
|
import { asArray as asArray2, computeEntryHash } from "@veramo/utils";
|
|
67
67
|
import { decodeJWT } from "did-jwt";
|
|
68
68
|
import { v4 as uuidv42 } from "uuid";
|
|
@@ -1810,9 +1810,6 @@ var getCredentialConfigsSupportedBySingleTypeOrId = /* @__PURE__ */ __name(async
|
|
|
1810
1810
|
}
|
|
1811
1811
|
__name(createIdFromTypes, "createIdFromTypes");
|
|
1812
1812
|
if (configurationId) {
|
|
1813
|
-
if (!format) {
|
|
1814
|
-
return Promise.reject(Error("format parameter missing from input"));
|
|
1815
|
-
}
|
|
1816
1813
|
const allSupported2 = client.getCredentialsSupported(format);
|
|
1817
1814
|
return Object.fromEntries(Object.entries(allSupported2).filter(([id, supported]) => id === configurationId || supported.id === configurationId || createIdFromTypes(supported) === configurationId));
|
|
1818
1815
|
}
|
|
@@ -2290,7 +2287,6 @@ var OID4VCIHolder = class _OID4VCIHolder {
|
|
|
2290
2287
|
formats = Array.from(new Set(authFormats));
|
|
2291
2288
|
}
|
|
2292
2289
|
let oid4vciClient;
|
|
2293
|
-
let types = void 0;
|
|
2294
2290
|
let offer;
|
|
2295
2291
|
if (requestData.existingClientState) {
|
|
2296
2292
|
oid4vciClient = await OpenID4VCIClient2.fromState({
|
|
@@ -2326,23 +2322,18 @@ var OID4VCIHolder = class _OID4VCIHolder {
|
|
|
2326
2322
|
});
|
|
2327
2323
|
}
|
|
2328
2324
|
}
|
|
2325
|
+
let configurationIds = [];
|
|
2329
2326
|
if (offer) {
|
|
2330
|
-
|
|
2331
|
-
const config = oid4vciClient.endpointMetadata.credentialIssuerMetadata?.credential_configurations_supported[configId];
|
|
2332
|
-
return config ? [
|
|
2333
|
-
config
|
|
2334
|
-
] : [];
|
|
2335
|
-
});
|
|
2336
|
-
types = credentialsSupported2.map((credentialSupported) => getTypesFromCredentialSupported2(credentialSupported));
|
|
2327
|
+
configurationIds = offer.original_credential_offer.credential_configuration_ids;
|
|
2337
2328
|
} else {
|
|
2338
|
-
|
|
2329
|
+
configurationIds = asArray2(authorizationRequestOpts.authorizationDetails).filter((authDetails) => typeof authDetails !== "string").map((authReqOpts) => authReqOpts.credential_configuration_id).filter((id) => !!id);
|
|
2339
2330
|
}
|
|
2340
|
-
const serverMetadata = await oid4vciClient.retrieveServerMetadata();
|
|
2341
2331
|
const credentialsSupported = await getCredentialConfigsSupportedMerged({
|
|
2342
2332
|
client: oid4vciClient,
|
|
2343
2333
|
vcFormatPreferences: formats,
|
|
2344
|
-
|
|
2334
|
+
configurationIds
|
|
2345
2335
|
});
|
|
2336
|
+
const serverMetadata = await oid4vciClient.retrieveServerMetadata();
|
|
2346
2337
|
const credentialBranding = await getCredentialBranding({
|
|
2347
2338
|
credentialsSupported,
|
|
2348
2339
|
context
|