@learncard/didkey-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/didkey-plugin.cjs.development.js +12 -0
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +3 -3
- package/dist/didkey-plugin.esm.js +12 -0
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -101,6 +101,7 @@ var require_types_cjs_development = __commonJS({
|
|
101
101
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
102
102
|
BoostQueryValidator: () => BoostQueryValidator,
|
103
103
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
104
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
|
104
105
|
BoostValidator: () => BoostValidator,
|
105
106
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator,
|
106
107
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator,
|
@@ -176,6 +177,7 @@ var require_types_cjs_development = __commonJS({
|
|
176
177
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
177
178
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
178
179
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
180
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
|
179
181
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
180
182
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
|
181
183
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
@@ -4863,6 +4865,16 @@ var require_types_cjs_development = __commonJS({
|
|
4863
4865
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
4864
4866
|
records: BoostRecipientValidator.array()
|
4865
4867
|
});
|
4868
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
4869
|
+
to: LCNProfileValidator,
|
4870
|
+
from: z.string(),
|
4871
|
+
received: z.string().optional(),
|
4872
|
+
boostUris: z.array(z.string()),
|
4873
|
+
credentialUris: z.array(z.string()).optional()
|
4874
|
+
});
|
4875
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
4876
|
+
records: BoostRecipientWithChildrenValidator.array()
|
4877
|
+
});
|
4866
4878
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
4867
4879
|
endpoint: z.string(),
|
4868
4880
|
name: z.string(),
|