Barazo lexicon schemas and TypeScript types barazo.forum
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(validation): export didRegex from package root (#44)

Allows consumers to import didRegex instead of duplicating the pattern.

Ref: barazo-forum/barazo-workspace#31

authored by

Guido X Jansen and committed by
GitHub
2e183356 8f2761b7

+2
+1
src/index.ts
··· 36 36 selfLabelSchema, 37 37 facetSchema, 38 38 communityRefSchema, 39 + didRegex, 39 40 type TopicPostInput, 40 41 type TopicReplyInput, 41 42 type ReactionInput,
+1
src/validation/index.ts
··· 11 11 export { selfLabelsSchema, selfLabelSchema } from './self-labels.js' 12 12 export { facetSchema } from './facet.js' 13 13 export { communityRefSchema, type CommunityRefInput } from './community-ref.js' 14 + export { didRegex } from './patterns.js'