@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
package/dist/idx-plugin.esm.js
CHANGED
|
@@ -12192,6 +12192,16 @@ var BoostRecipientValidator = z.object({
|
|
|
12192
12192
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
12193
12193
|
records: BoostRecipientValidator.array()
|
|
12194
12194
|
});
|
|
12195
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
12196
|
+
to: LCNProfileValidator,
|
|
12197
|
+
from: z.string(),
|
|
12198
|
+
received: z.string().optional(),
|
|
12199
|
+
boostUris: z.array(z.string()),
|
|
12200
|
+
credentialUris: z.array(z.string()).optional()
|
|
12201
|
+
});
|
|
12202
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
12203
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
12204
|
+
});
|
|
12195
12205
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
12196
12206
|
endpoint: z.string(),
|
|
12197
12207
|
name: z.string(),
|
|
@@ -68055,6 +68065,16 @@ var BoostRecipientValidator2 = z2.object({
|
|
|
68055
68065
|
var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
|
|
68056
68066
|
records: BoostRecipientValidator2.array()
|
|
68057
68067
|
});
|
|
68068
|
+
var BoostRecipientWithChildrenValidator2 = z2.object({
|
|
68069
|
+
to: LCNProfileValidator2,
|
|
68070
|
+
from: z2.string(),
|
|
68071
|
+
received: z2.string().optional(),
|
|
68072
|
+
boostUris: z2.array(z2.string()),
|
|
68073
|
+
credentialUris: z2.array(z2.string()).optional()
|
|
68074
|
+
});
|
|
68075
|
+
var PaginatedBoostRecipientsWithChildrenValidator2 = PaginationResponseValidator2.extend({
|
|
68076
|
+
records: BoostRecipientWithChildrenValidator2.array()
|
|
68077
|
+
});
|
|
68058
68078
|
var LCNBoostClaimLinkSigningAuthorityValidator2 = z2.object({
|
|
68059
68079
|
endpoint: z2.string(),
|
|
68060
68080
|
name: z2.string(),
|