@learncard/idx-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/idx-plugin.cjs.development.js +36 -6
- package/dist/idx-plugin.cjs.development.js.map +3 -3
- package/dist/idx-plugin.cjs.production.min.js +29 -29
- package/dist/idx-plugin.cjs.production.min.js.map +3 -3
- package/dist/idx-plugin.esm.js +36 -6
- package/dist/idx-plugin.esm.js.map +3 -3
- package/package.json +4 -4
package/dist/idx-plugin.esm.js
CHANGED
|
@@ -12049,6 +12049,7 @@ var LCNProfileValidator = z.object({
|
|
|
12049
12049
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
|
12050
12050
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
|
12051
12051
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
12052
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
12052
12053
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
12053
12054
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
12054
12055
|
});
|
|
@@ -12192,6 +12193,16 @@ var BoostRecipientValidator = z.object({
|
|
|
12192
12193
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
12193
12194
|
records: BoostRecipientValidator.array()
|
|
12194
12195
|
});
|
|
12196
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
12197
|
+
to: LCNProfileValidator,
|
|
12198
|
+
from: z.string(),
|
|
12199
|
+
received: z.string().optional(),
|
|
12200
|
+
boostUris: z.array(z.string()),
|
|
12201
|
+
credentialUris: z.array(z.string()).optional()
|
|
12202
|
+
});
|
|
12203
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
12204
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
12205
|
+
});
|
|
12195
12206
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
12196
12207
|
endpoint: z.string(),
|
|
12197
12208
|
name: z.string(),
|
|
@@ -12394,7 +12405,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
12394
12405
|
"PRESENTATION_RECEIVED",
|
|
12395
12406
|
"CONSENT_FLOW_TRANSACTION",
|
|
12396
12407
|
"ISSUANCE_CLAIMED",
|
|
12397
|
-
"ISSUANCE_DELIVERED"
|
|
12408
|
+
"ISSUANCE_DELIVERED",
|
|
12409
|
+
"ISSUANCE_ERROR"
|
|
12398
12410
|
]);
|
|
12399
12411
|
var LCNNotificationMessageValidator = z.object({
|
|
12400
12412
|
title: z.string().optional(),
|
|
@@ -12511,8 +12523,10 @@ var InboxCredentialValidator = z.object({
|
|
|
12511
12523
|
createdAt: z.string(),
|
|
12512
12524
|
issuerDid: z.string(),
|
|
12513
12525
|
webhookUrl: z.string().optional(),
|
|
12514
|
-
|
|
12515
|
-
|
|
12526
|
+
signingAuthority: z.object({
|
|
12527
|
+
endpoint: z.string().optional(),
|
|
12528
|
+
name: z.string().optional()
|
|
12529
|
+
}).optional()
|
|
12516
12530
|
});
|
|
12517
12531
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
12518
12532
|
hasMore: z.boolean(),
|
|
@@ -12567,6 +12581,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
12567
12581
|
var ClaimTokenValidator = z.object({
|
|
12568
12582
|
token: z.string(),
|
|
12569
12583
|
contactMethodId: z.string(),
|
|
12584
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
12570
12585
|
createdAt: z.string(),
|
|
12571
12586
|
expiresAt: z.string(),
|
|
12572
12587
|
used: z.boolean()
|
|
@@ -67912,6 +67927,7 @@ var LCNProfileValidator2 = z2.object({
|
|
|
67912
67927
|
type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
|
67913
67928
|
notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
|
67914
67929
|
display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
|
|
67930
|
+
highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
67915
67931
|
role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
67916
67932
|
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
67917
67933
|
});
|
|
@@ -68055,6 +68071,16 @@ var BoostRecipientValidator2 = z2.object({
|
|
|
68055
68071
|
var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
|
|
68056
68072
|
records: BoostRecipientValidator2.array()
|
|
68057
68073
|
});
|
|
68074
|
+
var BoostRecipientWithChildrenValidator2 = z2.object({
|
|
68075
|
+
to: LCNProfileValidator2,
|
|
68076
|
+
from: z2.string(),
|
|
68077
|
+
received: z2.string().optional(),
|
|
68078
|
+
boostUris: z2.array(z2.string()),
|
|
68079
|
+
credentialUris: z2.array(z2.string()).optional()
|
|
68080
|
+
});
|
|
68081
|
+
var PaginatedBoostRecipientsWithChildrenValidator2 = PaginationResponseValidator2.extend({
|
|
68082
|
+
records: BoostRecipientWithChildrenValidator2.array()
|
|
68083
|
+
});
|
|
68058
68084
|
var LCNBoostClaimLinkSigningAuthorityValidator2 = z2.object({
|
|
68059
68085
|
endpoint: z2.string(),
|
|
68060
68086
|
name: z2.string(),
|
|
@@ -68257,7 +68283,8 @@ var LCNNotificationTypeEnumValidator2 = z2.enum([
|
|
|
68257
68283
|
"PRESENTATION_RECEIVED",
|
|
68258
68284
|
"CONSENT_FLOW_TRANSACTION",
|
|
68259
68285
|
"ISSUANCE_CLAIMED",
|
|
68260
|
-
"ISSUANCE_DELIVERED"
|
|
68286
|
+
"ISSUANCE_DELIVERED",
|
|
68287
|
+
"ISSUANCE_ERROR"
|
|
68261
68288
|
]);
|
|
68262
68289
|
var LCNNotificationMessageValidator2 = z2.object({
|
|
68263
68290
|
title: z2.string().optional(),
|
|
@@ -68374,8 +68401,10 @@ var InboxCredentialValidator2 = z2.object({
|
|
|
68374
68401
|
createdAt: z2.string(),
|
|
68375
68402
|
issuerDid: z2.string(),
|
|
68376
68403
|
webhookUrl: z2.string().optional(),
|
|
68377
|
-
|
|
68378
|
-
|
|
68404
|
+
signingAuthority: z2.object({
|
|
68405
|
+
endpoint: z2.string().optional(),
|
|
68406
|
+
name: z2.string().optional()
|
|
68407
|
+
}).optional()
|
|
68379
68408
|
});
|
|
68380
68409
|
var PaginatedInboxCredentialsValidator2 = z2.object({
|
|
68381
68410
|
hasMore: z2.boolean(),
|
|
@@ -68430,6 +68459,7 @@ var IssueInboxCredentialResponseValidator2 = z2.object({
|
|
|
68430
68459
|
var ClaimTokenValidator2 = z2.object({
|
|
68431
68460
|
token: z2.string(),
|
|
68432
68461
|
contactMethodId: z2.string(),
|
|
68462
|
+
autoVerifyContactMethod: z2.boolean().optional().default(false),
|
|
68433
68463
|
createdAt: z2.string(),
|
|
68434
68464
|
expiresAt: z2.string(),
|
|
68435
68465
|
used: z2.boolean()
|