@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
|
@@ -54534,6 +54534,16 @@ var BoostRecipientValidator = z.object({
|
|
|
54534
54534
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
54535
54535
|
records: BoostRecipientValidator.array()
|
|
54536
54536
|
});
|
|
54537
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
54538
|
+
to: LCNProfileValidator,
|
|
54539
|
+
from: z.string(),
|
|
54540
|
+
received: z.string().optional(),
|
|
54541
|
+
boostUris: z.array(z.string()),
|
|
54542
|
+
credentialUris: z.array(z.string()).optional()
|
|
54543
|
+
});
|
|
54544
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
54545
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
54546
|
+
});
|
|
54537
54547
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
54538
54548
|
endpoint: z.string(),
|
|
54539
54549
|
name: z.string(),
|