@learncard/idx-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/idx-plugin.cjs.development.js +20 -0
- 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 +20 -0
- package/dist/idx-plugin.esm.js.map +3 -3
- package/package.json +4 -4
|
@@ -12198,6 +12198,16 @@ var BoostRecipientValidator = z.object({
|
|
|
12198
12198
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
12199
12199
|
records: BoostRecipientValidator.array()
|
|
12200
12200
|
});
|
|
12201
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
12202
|
+
to: LCNProfileValidator,
|
|
12203
|
+
from: z.string(),
|
|
12204
|
+
received: z.string().optional(),
|
|
12205
|
+
boostUris: z.array(z.string()),
|
|
12206
|
+
credentialUris: z.array(z.string()).optional()
|
|
12207
|
+
});
|
|
12208
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
12209
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
12210
|
+
});
|
|
12201
12211
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
12202
12212
|
endpoint: z.string(),
|
|
12203
12213
|
name: z.string(),
|
|
@@ -68061,6 +68071,16 @@ var BoostRecipientValidator2 = z2.object({
|
|
|
68061
68071
|
var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
|
|
68062
68072
|
records: BoostRecipientValidator2.array()
|
|
68063
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
|
+
});
|
|
68064
68084
|
var LCNBoostClaimLinkSigningAuthorityValidator2 = z2.object({
|
|
68065
68085
|
endpoint: z2.string(),
|
|
68066
68086
|
name: z2.string(),
|