@learncard/ceramic-plugin 1.0.0 → 1.0.2
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/ceramic-plugin.cjs.development.js +7 -5
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +27 -27
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +7 -5
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -5
|
@@ -51974,11 +51974,13 @@ var JWEValidator = mod.object({
|
|
|
51974
51974
|
aad: mod.string().optional(),
|
|
51975
51975
|
recipients: JWERecipientValidator.array().optional()
|
|
51976
51976
|
});
|
|
51977
|
-
var
|
|
51978
|
-
|
|
51979
|
-
|
|
51977
|
+
var EncryptedRecordValidator = mod.object({ encryptedRecord: JWEValidator, fields: mod.string().array() }).catchall(mod.any());
|
|
51978
|
+
var PaginatedEncryptedRecordsValidator = PaginationResponseValidator.extend({
|
|
51979
|
+
records: EncryptedRecordValidator.array()
|
|
51980
|
+
});
|
|
51981
|
+
var EncryptedCredentialRecordValidator = EncryptedRecordValidator.extend({
|
|
51980
51982
|
id: mod.string()
|
|
51981
|
-
})
|
|
51983
|
+
});
|
|
51982
51984
|
var PaginatedEncryptedCredentialRecordsValidator = PaginationResponseValidator.extend({
|
|
51983
51985
|
records: EncryptedCredentialRecordValidator.array()
|
|
51984
51986
|
});
|
|
@@ -52015,7 +52017,7 @@ var BoostValidator = mod.object({
|
|
|
52015
52017
|
var BoostRecipientValidator = mod.object({
|
|
52016
52018
|
to: LCNProfileValidator,
|
|
52017
52019
|
from: mod.string(),
|
|
52018
|
-
received: mod.string()
|
|
52020
|
+
received: mod.string().optional()
|
|
52019
52021
|
});
|
|
52020
52022
|
var LCNNotificationTypeEnumValidator = mod.enum([
|
|
52021
52023
|
"CONNECTION_REQUEST",
|