@triveria/wallet 0.0.245 → 0.0.246

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.
Files changed (2) hide show
  1. package/api.d.ts +20 -1
  2. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -1043,7 +1043,7 @@ export interface EbsiSpecificWalletData {
1043
1043
  'configuration': EbsiConfiguration;
1044
1044
  }
1045
1045
  /**
1046
- * Configuration for EUDI trust framework. Field didTrustFramework is used when the wallet uses did as its identifier.
1046
+ * Configuration for EUDI trust framework. The field didTrustFramework marks which DID TF is used when the wallet uses did as its identifier.
1047
1047
  * @export
1048
1048
  * @interface EudiConfiguration
1049
1049
  */
@@ -1200,6 +1200,19 @@ export interface IdTokenSendRequest {
1200
1200
  */
1201
1201
  'requestUrl': string;
1202
1202
  }
1203
+ /**
1204
+ * Configuration for IDTL trust framework
1205
+ * @export
1206
+ * @interface IdtlConfiguration
1207
+ */
1208
+ export interface IdtlConfiguration {
1209
+ /**
1210
+ * Defines if a wallet is onboarded
1211
+ * @type {boolean}
1212
+ * @memberof IdtlConfiguration
1213
+ */
1214
+ 'isOnboarded': boolean;
1215
+ }
1203
1216
  /**
1204
1217
  * Request for authorization flow credential issuance process start. Consists of offered credential\'s types and credential offer endpoint (most commonly only schema)
1205
1218
  * @export
@@ -2320,6 +2333,12 @@ export interface WalletConfig {
2320
2333
  * @memberof WalletConfig
2321
2334
  */
2322
2335
  'EUDI'?: EudiConfiguration;
2336
+ /**
2337
+ *
2338
+ * @type {IdtlConfiguration}
2339
+ * @memberof WalletConfig
2340
+ */
2341
+ 'IDTL'?: IdtlConfiguration;
2323
2342
  /**
2324
2343
  *
2325
2344
  * @type {SigningKeyIdentifier}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triveria/wallet",
3
3
  "private": false,
4
- "version": "0.0.245",
4
+ "version": "0.0.246",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {