@learncard/network-plugin 1.4.16 → 1.4.18
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/lcn-plugin.cjs.development.js +6 -4
- package/dist/lcn-plugin.cjs.development.js.map +2 -2
- package/dist/lcn-plugin.cjs.production.min.js +1 -1
- package/dist/lcn-plugin.cjs.production.min.js.map +3 -3
- package/dist/lcn-plugin.esm.js +6 -4
- package/dist/lcn-plugin.esm.js.map +2 -2
- package/package.json +8 -8
|
@@ -4572,11 +4572,13 @@ var JWEValidator = mod.object({
|
|
|
4572
4572
|
aad: mod.string().optional(),
|
|
4573
4573
|
recipients: JWERecipientValidator.array().optional()
|
|
4574
4574
|
});
|
|
4575
|
-
var
|
|
4576
|
-
|
|
4577
|
-
|
|
4575
|
+
var EncryptedRecordValidator = mod.object({ encryptedRecord: JWEValidator, fields: mod.string().array() }).catchall(mod.any());
|
|
4576
|
+
var PaginatedEncryptedRecordsValidator = PaginationResponseValidator.extend({
|
|
4577
|
+
records: EncryptedRecordValidator.array()
|
|
4578
|
+
});
|
|
4579
|
+
var EncryptedCredentialRecordValidator = EncryptedRecordValidator.extend({
|
|
4578
4580
|
id: mod.string()
|
|
4579
|
-
})
|
|
4581
|
+
});
|
|
4580
4582
|
var PaginatedEncryptedCredentialRecordsValidator = PaginationResponseValidator.extend({
|
|
4581
4583
|
records: EncryptedCredentialRecordValidator.array()
|
|
4582
4584
|
});
|