@learncard/learn-cloud-plugin 2.1.36 → 2.1.39
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/learn-cloud-plugin.cjs.development.js +22 -0
- package/dist/learn-cloud-plugin.cjs.development.js.map +3 -3
- package/dist/learn-cloud-plugin.cjs.production.min.js +7 -7
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +3 -3
- package/dist/learn-cloud-plugin.esm.js +22 -0
- package/dist/learn-cloud-plugin.esm.js.map +3 -3
- package/package.json +7 -7
|
@@ -8147,6 +8147,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
8147
8147
|
BoostPermissionsValidator: () => BoostPermissionsValidator2,
|
|
8148
8148
|
BoostQueryValidator: () => BoostQueryValidator2,
|
|
8149
8149
|
BoostRecipientValidator: () => BoostRecipientValidator2,
|
|
8150
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator2,
|
|
8150
8151
|
BoostValidator: () => BoostValidator2,
|
|
8151
8152
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator2,
|
|
8152
8153
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator2,
|
|
@@ -8222,6 +8223,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
8222
8223
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator2,
|
|
8223
8224
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator2,
|
|
8224
8225
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator2,
|
|
8226
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator2,
|
|
8225
8227
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator2,
|
|
8226
8228
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator2,
|
|
8227
8229
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator2,
|
|
@@ -12909,6 +12911,16 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12909
12911
|
var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
|
|
12910
12912
|
records: BoostRecipientValidator2.array()
|
|
12911
12913
|
});
|
|
12914
|
+
var BoostRecipientWithChildrenValidator2 = z2.object({
|
|
12915
|
+
to: LCNProfileValidator2,
|
|
12916
|
+
from: z2.string(),
|
|
12917
|
+
received: z2.string().optional(),
|
|
12918
|
+
boostUris: z2.array(z2.string()),
|
|
12919
|
+
credentialUris: z2.array(z2.string()).optional()
|
|
12920
|
+
});
|
|
12921
|
+
var PaginatedBoostRecipientsWithChildrenValidator2 = PaginationResponseValidator2.extend({
|
|
12922
|
+
records: BoostRecipientWithChildrenValidator2.array()
|
|
12923
|
+
});
|
|
12912
12924
|
var LCNBoostClaimLinkSigningAuthorityValidator2 = z2.object({
|
|
12913
12925
|
endpoint: z2.string(),
|
|
12914
12926
|
name: z2.string(),
|
|
@@ -17913,6 +17925,16 @@ var BoostRecipientValidator = z.object({
|
|
|
17913
17925
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
17914
17926
|
records: BoostRecipientValidator.array()
|
|
17915
17927
|
});
|
|
17928
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
17929
|
+
to: LCNProfileValidator,
|
|
17930
|
+
from: z.string(),
|
|
17931
|
+
received: z.string().optional(),
|
|
17932
|
+
boostUris: z.array(z.string()),
|
|
17933
|
+
credentialUris: z.array(z.string()).optional()
|
|
17934
|
+
});
|
|
17935
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
17936
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
17937
|
+
});
|
|
17916
17938
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
17917
17939
|
endpoint: z.string(),
|
|
17918
17940
|
name: z.string(),
|