@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
|
@@ -51970,11 +51970,13 @@ var JWEValidator = mod.object({
|
|
|
51970
51970
|
aad: mod.string().optional(),
|
|
51971
51971
|
recipients: JWERecipientValidator.array().optional()
|
|
51972
51972
|
});
|
|
51973
|
-
var
|
|
51974
|
-
|
|
51975
|
-
|
|
51973
|
+
var EncryptedRecordValidator = mod.object({ encryptedRecord: JWEValidator, fields: mod.string().array() }).catchall(mod.any());
|
|
51974
|
+
var PaginatedEncryptedRecordsValidator = PaginationResponseValidator.extend({
|
|
51975
|
+
records: EncryptedRecordValidator.array()
|
|
51976
|
+
});
|
|
51977
|
+
var EncryptedCredentialRecordValidator = EncryptedRecordValidator.extend({
|
|
51976
51978
|
id: mod.string()
|
|
51977
|
-
})
|
|
51979
|
+
});
|
|
51978
51980
|
var PaginatedEncryptedCredentialRecordsValidator = PaginationResponseValidator.extend({
|
|
51979
51981
|
records: EncryptedCredentialRecordValidator.array()
|
|
51980
51982
|
});
|
|
@@ -52011,7 +52013,7 @@ var BoostValidator = mod.object({
|
|
|
52011
52013
|
var BoostRecipientValidator = mod.object({
|
|
52012
52014
|
to: LCNProfileValidator,
|
|
52013
52015
|
from: mod.string(),
|
|
52014
|
-
received: mod.string()
|
|
52016
|
+
received: mod.string().optional()
|
|
52015
52017
|
});
|
|
52016
52018
|
var LCNNotificationTypeEnumValidator = mod.enum([
|
|
52017
52019
|
"CONNECTION_REQUEST",
|