@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
package/dist/lcn-plugin.esm.js
CHANGED
|
@@ -4547,11 +4547,13 @@ var JWEValidator = mod.object({
|
|
|
4547
4547
|
aad: mod.string().optional(),
|
|
4548
4548
|
recipients: JWERecipientValidator.array().optional()
|
|
4549
4549
|
});
|
|
4550
|
-
var
|
|
4551
|
-
|
|
4552
|
-
|
|
4550
|
+
var EncryptedRecordValidator = mod.object({ encryptedRecord: JWEValidator, fields: mod.string().array() }).catchall(mod.any());
|
|
4551
|
+
var PaginatedEncryptedRecordsValidator = PaginationResponseValidator.extend({
|
|
4552
|
+
records: EncryptedRecordValidator.array()
|
|
4553
|
+
});
|
|
4554
|
+
var EncryptedCredentialRecordValidator = EncryptedRecordValidator.extend({
|
|
4553
4555
|
id: mod.string()
|
|
4554
|
-
})
|
|
4556
|
+
});
|
|
4555
4557
|
var PaginatedEncryptedCredentialRecordsValidator = PaginationResponseValidator.extend({
|
|
4556
4558
|
records: EncryptedCredentialRecordValidator.array()
|
|
4557
4559
|
});
|