@triveria/wallet 0.0.164 → 0.0.165
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 +19 -1
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -1327,12 +1327,30 @@ export interface PresentationDefinitionInputConstraint {
|
|
|
1327
1327
|
* @interface PresentationDefinitionInputConstraintField
|
|
1328
1328
|
*/
|
|
1329
1329
|
export interface PresentationDefinitionInputConstraintField {
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @type {string}
|
|
1333
|
+
* @memberof PresentationDefinitionInputConstraintField
|
|
1334
|
+
*/
|
|
1335
|
+
'id'?: string;
|
|
1336
|
+
/**
|
|
1337
|
+
*
|
|
1338
|
+
* @type {string}
|
|
1339
|
+
* @memberof PresentationDefinitionInputConstraintField
|
|
1340
|
+
*/
|
|
1341
|
+
'name'?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof PresentationDefinitionInputConstraintField
|
|
1346
|
+
*/
|
|
1347
|
+
'purpose'?: string;
|
|
1330
1348
|
/**
|
|
1331
1349
|
*
|
|
1332
1350
|
* @type {object}
|
|
1333
1351
|
* @memberof PresentationDefinitionInputConstraintField
|
|
1334
1352
|
*/
|
|
1335
|
-
'filter'
|
|
1353
|
+
'filter'?: object;
|
|
1336
1354
|
/**
|
|
1337
1355
|
*
|
|
1338
1356
|
* @type {Array<string>}
|