@triveria/wallet 0.0.300 → 0.0.301
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/api.d.ts +4 -4
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -540,13 +540,13 @@ export interface EntityOnboardingRequest {
|
|
|
540
540
|
*/
|
|
541
541
|
export interface EudiConfiguration {
|
|
542
542
|
/**
|
|
543
|
-
* URL of EUDI Trusted
|
|
543
|
+
* URL of the EUDI List of Trusted Lists. The trust anchors come from the lists it points at rather than from the LoTL itself, so a URL naming a plain trusted list is rejected.
|
|
544
544
|
*/
|
|
545
|
-
'
|
|
545
|
+
'etsiLotlUrl': string;
|
|
546
546
|
/**
|
|
547
|
-
* Base64 encoded certificates
|
|
547
|
+
* Base64 encoded certificates the LoTL signature is pinned to. Each list the LoTL points at is pinned separately, by the certificates its own pointer names.
|
|
548
548
|
*/
|
|
549
|
-
'
|
|
549
|
+
'trustedLotlCertificates': Array<string>;
|
|
550
550
|
'didTrustFramework'?: TrustFrameworkType;
|
|
551
551
|
}
|
|
552
552
|
/**
|