@learncard/ceramic-plugin 1.0.44 → 1.0.46
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 +10 -0
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +36 -36
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +10 -0
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -54530,6 +54530,16 @@ var BoostRecipientValidator = z.object({
|
|
|
54530
54530
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
54531
54531
|
records: BoostRecipientValidator.array()
|
|
54532
54532
|
});
|
|
54533
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
54534
|
+
to: LCNProfileValidator,
|
|
54535
|
+
from: z.string(),
|
|
54536
|
+
received: z.string().optional(),
|
|
54537
|
+
boostUris: z.array(z.string()),
|
|
54538
|
+
credentialUris: z.array(z.string()).optional()
|
|
54539
|
+
});
|
|
54540
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
54541
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
54542
|
+
});
|
|
54533
54543
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
54534
54544
|
endpoint: z.string(),
|
|
54535
54545
|
name: z.string(),
|