@learncard/types 5.8.1 → 5.8.3
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/lcn.d.ts +461 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +12 -0
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +12 -0
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
@@ -38,6 +38,7 @@ __export(src_exports, {
|
|
38
38
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
39
39
|
BoostQueryValidator: () => BoostQueryValidator,
|
40
40
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
41
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
|
41
42
|
BoostValidator: () => BoostValidator,
|
42
43
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator,
|
43
44
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator,
|
@@ -113,6 +114,7 @@ __export(src_exports, {
|
|
113
114
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
114
115
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
115
116
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
117
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
|
116
118
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
117
119
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
|
118
120
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
@@ -4880,6 +4882,16 @@ var BoostRecipientValidator = z.object({
|
|
4880
4882
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
4881
4883
|
records: BoostRecipientValidator.array()
|
4882
4884
|
});
|
4885
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
4886
|
+
to: LCNProfileValidator,
|
4887
|
+
from: z.string(),
|
4888
|
+
received: z.string().optional(),
|
4889
|
+
boostUris: z.array(z.string()),
|
4890
|
+
credentialUris: z.array(z.string()).optional()
|
4891
|
+
});
|
4892
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
4893
|
+
records: BoostRecipientWithChildrenValidator.array()
|
4894
|
+
});
|
4883
4895
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
4884
4896
|
endpoint: z.string(),
|
4885
4897
|
name: z.string(),
|