@learncard/ceramic-plugin 1.0.44 → 1.0.47
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 +18 -3
- 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 +18 -3
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -54391,6 +54391,7 @@ var LCNProfileValidator = z.object({
|
|
|
54391
54391
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
|
54392
54392
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
|
54393
54393
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
54394
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
54394
54395
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
54395
54396
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
54396
54397
|
});
|
|
@@ -54534,6 +54535,16 @@ var BoostRecipientValidator = z.object({
|
|
|
54534
54535
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
54535
54536
|
records: BoostRecipientValidator.array()
|
|
54536
54537
|
});
|
|
54538
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
54539
|
+
to: LCNProfileValidator,
|
|
54540
|
+
from: z.string(),
|
|
54541
|
+
received: z.string().optional(),
|
|
54542
|
+
boostUris: z.array(z.string()),
|
|
54543
|
+
credentialUris: z.array(z.string()).optional()
|
|
54544
|
+
});
|
|
54545
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
54546
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
54547
|
+
});
|
|
54537
54548
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
54538
54549
|
endpoint: z.string(),
|
|
54539
54550
|
name: z.string(),
|
|
@@ -54736,7 +54747,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
54736
54747
|
"PRESENTATION_RECEIVED",
|
|
54737
54748
|
"CONSENT_FLOW_TRANSACTION",
|
|
54738
54749
|
"ISSUANCE_CLAIMED",
|
|
54739
|
-
"ISSUANCE_DELIVERED"
|
|
54750
|
+
"ISSUANCE_DELIVERED",
|
|
54751
|
+
"ISSUANCE_ERROR"
|
|
54740
54752
|
]);
|
|
54741
54753
|
var LCNNotificationMessageValidator = z.object({
|
|
54742
54754
|
title: z.string().optional(),
|
|
@@ -54853,8 +54865,10 @@ var InboxCredentialValidator = z.object({
|
|
|
54853
54865
|
createdAt: z.string(),
|
|
54854
54866
|
issuerDid: z.string(),
|
|
54855
54867
|
webhookUrl: z.string().optional(),
|
|
54856
|
-
|
|
54857
|
-
|
|
54868
|
+
signingAuthority: z.object({
|
|
54869
|
+
endpoint: z.string().optional(),
|
|
54870
|
+
name: z.string().optional()
|
|
54871
|
+
}).optional()
|
|
54858
54872
|
});
|
|
54859
54873
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
54860
54874
|
hasMore: z.boolean(),
|
|
@@ -54909,6 +54923,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
54909
54923
|
var ClaimTokenValidator = z.object({
|
|
54910
54924
|
token: z.string(),
|
|
54911
54925
|
contactMethodId: z.string(),
|
|
54926
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
54912
54927
|
createdAt: z.string(),
|
|
54913
54928
|
expiresAt: z.string(),
|
|
54914
54929
|
used: z.boolean()
|