@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
|
@@ -8160,6 +8160,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
8160
8160
|
BoostPermissionsValidator: () => BoostPermissionsValidator2,
|
|
8161
8161
|
BoostQueryValidator: () => BoostQueryValidator2,
|
|
8162
8162
|
BoostRecipientValidator: () => BoostRecipientValidator2,
|
|
8163
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator2,
|
|
8163
8164
|
BoostValidator: () => BoostValidator2,
|
|
8164
8165
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator2,
|
|
8165
8166
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator2,
|
|
@@ -8235,6 +8236,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
8235
8236
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator2,
|
|
8236
8237
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator2,
|
|
8237
8238
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator2,
|
|
8239
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator2,
|
|
8238
8240
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator2,
|
|
8239
8241
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator2,
|
|
8240
8242
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator2,
|
|
@@ -12922,6 +12924,16 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12922
12924
|
var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
|
|
12923
12925
|
records: BoostRecipientValidator2.array()
|
|
12924
12926
|
});
|
|
12927
|
+
var BoostRecipientWithChildrenValidator2 = z2.object({
|
|
12928
|
+
to: LCNProfileValidator2,
|
|
12929
|
+
from: z2.string(),
|
|
12930
|
+
received: z2.string().optional(),
|
|
12931
|
+
boostUris: z2.array(z2.string()),
|
|
12932
|
+
credentialUris: z2.array(z2.string()).optional()
|
|
12933
|
+
});
|
|
12934
|
+
var PaginatedBoostRecipientsWithChildrenValidator2 = PaginationResponseValidator2.extend({
|
|
12935
|
+
records: BoostRecipientWithChildrenValidator2.array()
|
|
12936
|
+
});
|
|
12925
12937
|
var LCNBoostClaimLinkSigningAuthorityValidator2 = z2.object({
|
|
12926
12938
|
endpoint: z2.string(),
|
|
12927
12939
|
name: z2.string(),
|
|
@@ -17926,6 +17938,16 @@ var BoostRecipientValidator = z.object({
|
|
|
17926
17938
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
17927
17939
|
records: BoostRecipientValidator.array()
|
|
17928
17940
|
});
|
|
17941
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
17942
|
+
to: LCNProfileValidator,
|
|
17943
|
+
from: z.string(),
|
|
17944
|
+
received: z.string().optional(),
|
|
17945
|
+
boostUris: z.array(z.string()),
|
|
17946
|
+
credentialUris: z.array(z.string()).optional()
|
|
17947
|
+
});
|
|
17948
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
17949
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
17950
|
+
});
|
|
17929
17951
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
17930
17952
|
endpoint: z.string(),
|
|
17931
17953
|
name: z.string(),
|