@learncard/idx-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/idx-plugin.cjs.development.js +28 -8
- 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 +28 -8
- 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(),
|
|
@@ -12231,12 +12241,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
|
|
|
12231
12241
|
var ConsentFlowContractValidator = z.object({
|
|
12232
12242
|
read: z.object({
|
|
12233
12243
|
anonymize: z.boolean().optional(),
|
|
12234
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
12235
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
12244
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
12245
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
12236
12246
|
}).default({}),
|
|
12237
12247
|
write: z.object({
|
|
12238
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
12239
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
12248
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
12249
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
12240
12250
|
}).default({})
|
|
12241
12251
|
});
|
|
12242
12252
|
var ConsentFlowContractDetailsValidator = z.object({
|
|
@@ -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(),
|
|
@@ -68094,12 +68114,12 @@ var ConsentFlowTermsStatusValidator2 = z2.enum(["live", "stale", "withdrawn"]);
|
|
|
68094
68114
|
var ConsentFlowContractValidator2 = z2.object({
|
|
68095
68115
|
read: z2.object({
|
|
68096
68116
|
anonymize: z2.boolean().optional(),
|
|
68097
|
-
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
|
|
68098
|
-
personal: z2.record(z2.object({ required: z2.boolean() })).default({})
|
|
68117
|
+
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
|
|
68118
|
+
personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
|
|
68099
68119
|
}).default({}),
|
|
68100
68120
|
write: z2.object({
|
|
68101
|
-
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
|
|
68102
|
-
personal: z2.record(z2.object({ required: z2.boolean() })).default({})
|
|
68121
|
+
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
|
|
68122
|
+
personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
|
|
68103
68123
|
}).default({})
|
|
68104
68124
|
});
|
|
68105
68125
|
var ConsentFlowContractDetailsValidator2 = z2.object({
|