@learncard/ceramic-plugin 1.0.46 → 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 +8 -3
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +1 -1
- package/dist/ceramic-plugin.cjs.production.min.js.map +2 -2
- package/dist/ceramic-plugin.esm.js +8 -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
|
});
|
|
@@ -54746,7 +54747,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
54746
54747
|
"PRESENTATION_RECEIVED",
|
|
54747
54748
|
"CONSENT_FLOW_TRANSACTION",
|
|
54748
54749
|
"ISSUANCE_CLAIMED",
|
|
54749
|
-
"ISSUANCE_DELIVERED"
|
|
54750
|
+
"ISSUANCE_DELIVERED",
|
|
54751
|
+
"ISSUANCE_ERROR"
|
|
54750
54752
|
]);
|
|
54751
54753
|
var LCNNotificationMessageValidator = z.object({
|
|
54752
54754
|
title: z.string().optional(),
|
|
@@ -54863,8 +54865,10 @@ var InboxCredentialValidator = z.object({
|
|
|
54863
54865
|
createdAt: z.string(),
|
|
54864
54866
|
issuerDid: z.string(),
|
|
54865
54867
|
webhookUrl: z.string().optional(),
|
|
54866
|
-
|
|
54867
|
-
|
|
54868
|
+
signingAuthority: z.object({
|
|
54869
|
+
endpoint: z.string().optional(),
|
|
54870
|
+
name: z.string().optional()
|
|
54871
|
+
}).optional()
|
|
54868
54872
|
});
|
|
54869
54873
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
54870
54874
|
hasMore: z.boolean(),
|
|
@@ -54919,6 +54923,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
54919
54923
|
var ClaimTokenValidator = z.object({
|
|
54920
54924
|
token: z.string(),
|
|
54921
54925
|
contactMethodId: z.string(),
|
|
54926
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
54922
54927
|
createdAt: z.string(),
|
|
54923
54928
|
expiresAt: z.string(),
|
|
54924
54929
|
used: z.boolean()
|