@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
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(),
|
|
@@ -12225,12 +12235,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
|
|
|
12225
12235
|
var ConsentFlowContractValidator = z.object({
|
|
12226
12236
|
read: z.object({
|
|
12227
12237
|
anonymize: z.boolean().optional(),
|
|
12228
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
12229
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
12238
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
12239
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
12230
12240
|
}).default({}),
|
|
12231
12241
|
write: z.object({
|
|
12232
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
12233
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
12242
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
12243
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
12234
12244
|
}).default({})
|
|
12235
12245
|
});
|
|
12236
12246
|
var ConsentFlowContractDetailsValidator = z.object({
|
|
@@ -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(),
|
|
@@ -68088,12 +68108,12 @@ var ConsentFlowTermsStatusValidator2 = z2.enum(["live", "stale", "withdrawn"]);
|
|
|
68088
68108
|
var ConsentFlowContractValidator2 = z2.object({
|
|
68089
68109
|
read: z2.object({
|
|
68090
68110
|
anonymize: z2.boolean().optional(),
|
|
68091
|
-
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
|
|
68092
|
-
personal: z2.record(z2.object({ required: z2.boolean() })).default({})
|
|
68111
|
+
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
|
|
68112
|
+
personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
|
|
68093
68113
|
}).default({}),
|
|
68094
68114
|
write: z2.object({
|
|
68095
|
-
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
|
|
68096
|
-
personal: z2.record(z2.object({ required: z2.boolean() })).default({})
|
|
68115
|
+
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
|
|
68116
|
+
personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
|
|
68097
68117
|
}).default({})
|
|
68098
68118
|
});
|
|
68099
68119
|
var ConsentFlowContractDetailsValidator2 = z2.object({
|