@learncard/didkey-plugin 1.0.43 → 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 +16 -4
- 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 +16 -4
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -77,6 +77,7 @@ var require_types_cjs_development = __commonJS({
|
|
77
77
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
78
78
|
BoostQueryValidator: () => BoostQueryValidator,
|
79
79
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
80
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
|
80
81
|
BoostValidator: () => BoostValidator,
|
81
82
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator,
|
82
83
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator,
|
@@ -152,6 +153,7 @@ var require_types_cjs_development = __commonJS({
|
|
152
153
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
153
154
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
154
155
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
156
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
|
155
157
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
156
158
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
|
157
159
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
@@ -4839,6 +4841,16 @@ var require_types_cjs_development = __commonJS({
|
|
4839
4841
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
4840
4842
|
records: BoostRecipientValidator.array()
|
4841
4843
|
});
|
4844
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
4845
|
+
to: LCNProfileValidator,
|
4846
|
+
from: z.string(),
|
4847
|
+
received: z.string().optional(),
|
4848
|
+
boostUris: z.array(z.string()),
|
4849
|
+
credentialUris: z.array(z.string()).optional()
|
4850
|
+
});
|
4851
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
4852
|
+
records: BoostRecipientWithChildrenValidator.array()
|
4853
|
+
});
|
4842
4854
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
4843
4855
|
endpoint: z.string(),
|
4844
4856
|
name: z.string(),
|
@@ -4872,12 +4884,12 @@ var require_types_cjs_development = __commonJS({
|
|
4872
4884
|
var ConsentFlowContractValidator = z.object({
|
4873
4885
|
read: z.object({
|
4874
4886
|
anonymize: z.boolean().optional(),
|
4875
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
4876
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
4887
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
4888
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
4877
4889
|
}).default({}),
|
4878
4890
|
write: z.object({
|
4879
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
4880
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
4891
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
4892
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
4881
4893
|
}).default({})
|
4882
4894
|
});
|
4883
4895
|
var ConsentFlowContractDetailsValidator = z.object({
|