@learncard/network-brain-client 2.3.16 → 2.3.19
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/CHANGELOG.md +23 -0
- package/dist/brain-client.cjs.development.js +12 -0
- package/dist/brain-client.cjs.development.js.map +2 -2
- package/dist/brain-client.cjs.production.min.js +1 -1
- package/dist/brain-client.cjs.production.min.js.map +3 -3
- package/dist/brain-client.esm.js +12 -0
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
- package/tsconfig.json +1 -1
package/dist/brain-client.esm.js
CHANGED
|
@@ -95,6 +95,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
95
95
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
|
96
96
|
BoostQueryValidator: () => BoostQueryValidator,
|
|
97
97
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
|
98
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
|
|
98
99
|
BoostValidator: () => BoostValidator,
|
|
99
100
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator,
|
|
100
101
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator,
|
|
@@ -170,6 +171,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
170
171
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
|
171
172
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
|
172
173
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
|
174
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
|
|
173
175
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
|
174
176
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
|
|
175
177
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
|
@@ -4857,6 +4859,16 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
4857
4859
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
4858
4860
|
records: BoostRecipientValidator.array()
|
|
4859
4861
|
});
|
|
4862
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
|
4863
|
+
to: LCNProfileValidator,
|
|
4864
|
+
from: z.string(),
|
|
4865
|
+
received: z.string().optional(),
|
|
4866
|
+
boostUris: z.array(z.string()),
|
|
4867
|
+
credentialUris: z.array(z.string()).optional()
|
|
4868
|
+
});
|
|
4869
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
|
4870
|
+
records: BoostRecipientWithChildrenValidator.array()
|
|
4871
|
+
});
|
|
4860
4872
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
|
4861
4873
|
endpoint: z.string(),
|
|
4862
4874
|
name: z.string(),
|