@learncard/ceramic-plugin 1.0.43 → 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 +14 -4
- 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 +14 -4
- 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(),
|
|
@@ -54567,12 +54577,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
|
|
|
54567
54577
|
var ConsentFlowContractValidator = z.object({
|
|
54568
54578
|
read: z.object({
|
|
54569
54579
|
anonymize: z.boolean().optional(),
|
|
54570
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
54571
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
54580
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
54581
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
54572
54582
|
}).default({}),
|
|
54573
54583
|
write: z.object({
|
|
54574
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
54575
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
54584
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
54585
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
54576
54586
|
}).default({})
|
|
54577
54587
|
});
|
|
54578
54588
|
var ConsentFlowContractDetailsValidator = z.object({
|