@sphereon/ssi-sdk.oid4vci-holder 0.34.1-feature.SSISDK.62.225 → 0.34.1-feature.SSISDK.62.239
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 +6 -15
- package/dist/index.js.map +1 -1
- package/package.json +24 -24
- package/src/agent/OID4VCIHolder.ts +9 -16
- package/src/services/OID4VCIHolderService.ts +0 -3
package/dist/index.js
CHANGED
|
@@ -56,7 +56,7 @@ 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";
|
|
@@ -1812,9 +1812,6 @@ var getCredentialConfigsSupportedBySingleTypeOrId = /* @__PURE__ */ __name(async
|
|
|
1812
1812
|
}
|
|
1813
1813
|
__name(createIdFromTypes, "createIdFromTypes");
|
|
1814
1814
|
if (configurationId) {
|
|
1815
|
-
if (!format) {
|
|
1816
|
-
return Promise.reject(Error("format parameter missing from input"));
|
|
1817
|
-
}
|
|
1818
1815
|
const allSupported2 = client.getCredentialsSupported(format);
|
|
1819
1816
|
return Object.fromEntries(Object.entries(allSupported2).filter(([id, supported]) => id === configurationId || supported.id === configurationId || createIdFromTypes(supported) === configurationId));
|
|
1820
1817
|
}
|
|
@@ -2291,7 +2288,6 @@ var OID4VCIHolder = class _OID4VCIHolder {
|
|
|
2291
2288
|
formats = Array.from(new Set(authFormats));
|
|
2292
2289
|
}
|
|
2293
2290
|
let oid4vciClient;
|
|
2294
|
-
let types = void 0;
|
|
2295
2291
|
let offer;
|
|
2296
2292
|
if (requestData.existingClientState) {
|
|
2297
2293
|
oid4vciClient = await OpenID4VCIClient2.fromState({
|
|
@@ -2327,23 +2323,18 @@ var OID4VCIHolder = class _OID4VCIHolder {
|
|
|
2327
2323
|
});
|
|
2328
2324
|
}
|
|
2329
2325
|
}
|
|
2326
|
+
let configurationIds = [];
|
|
2330
2327
|
if (offer) {
|
|
2331
|
-
|
|
2332
|
-
const config = oid4vciClient.endpointMetadata.credentialIssuerMetadata?.credential_configurations_supported[configId];
|
|
2333
|
-
return config ? [
|
|
2334
|
-
config
|
|
2335
|
-
] : [];
|
|
2336
|
-
});
|
|
2337
|
-
types = credentialsSupported2.map((credentialSupported) => getTypesFromCredentialSupported2(credentialSupported));
|
|
2328
|
+
configurationIds = offer.original_credential_offer.credential_configuration_ids;
|
|
2338
2329
|
} else {
|
|
2339
|
-
|
|
2330
|
+
configurationIds = asArray2(authorizationRequestOpts.authorizationDetails).filter((authDetails) => typeof authDetails !== "string").map((authReqOpts) => authReqOpts.credential_configuration_id).filter((id) => !!id);
|
|
2340
2331
|
}
|
|
2341
|
-
const serverMetadata = await oid4vciClient.retrieveServerMetadata();
|
|
2342
2332
|
const credentialsSupported = await getCredentialConfigsSupportedMerged({
|
|
2343
2333
|
client: oid4vciClient,
|
|
2344
2334
|
vcFormatPreferences: formats,
|
|
2345
|
-
|
|
2335
|
+
configurationIds
|
|
2346
2336
|
});
|
|
2337
|
+
const serverMetadata = await oid4vciClient.retrieveServerMetadata();
|
|
2347
2338
|
const credentialBranding = await getCredentialBranding({
|
|
2348
2339
|
credentialsSupported,
|
|
2349
2340
|
context
|