@sphereon/ssi-sdk-ext.identifier-resolution 0.28.1-feature.jose.vcdm.26 → 0.28.1-feature.jose.vcdm.50
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 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
- package/src/functions/LegacySupport.ts +1 -1
- package/src/functions/externalIdentifierFunctions.ts +1 -1
- package/src/functions/managedIdentifierFunctions.ts +2 -0
package/dist/index.cjs
CHANGED
|
@@ -11439,6 +11439,8 @@ async function getManagedDidIdentifier(opts, context) {
|
|
|
11439
11439
|
const keys = identifier?.keys;
|
|
11440
11440
|
const extendedKey = await (0, import_ssi_sdk_ext.getFirstKeyWithRelation)({
|
|
11441
11441
|
...opts,
|
|
11442
|
+
// Make sure we use offline mode if no pref was supplied. We are looking for managed DIDs after all. Could be it is not published yet
|
|
11443
|
+
offlineWhenNoDIDRegistered: opts.offlineWhenNoDIDRegistered ?? true,
|
|
11442
11444
|
identifier,
|
|
11443
11445
|
vmRelationship: opts.vmRelationship ?? "verificationMethod"
|
|
11444
11446
|
}, context);
|