feat: support for follow packs
This commit is contained in:
parent
cdab9aa19e
commit
b21855c294
27 changed files with 384 additions and 24 deletions
|
|
@ -81,13 +81,14 @@ export const ExtendedKind = {
|
|||
VOICE_COMMENT: 1244,
|
||||
FAVORITE_RELAYS: 10012,
|
||||
BLOSSOM_SERVER_LIST: 10063,
|
||||
FOLLOW_PACK: 39089,
|
||||
RELAY_REVIEW: 31987,
|
||||
GROUP_METADATA: 39000,
|
||||
ADDRESSABLE_NORMAL_VIDEO: 34235,
|
||||
ADDRESSABLE_SHORT_VIDEO: 34236
|
||||
}
|
||||
|
||||
export const SUPPORTED_KINDS = [
|
||||
export const ALLOWED_FILTER_KINDS = [
|
||||
kinds.ShortTextNote,
|
||||
kinds.Repost,
|
||||
kinds.GenericRepost,
|
||||
|
|
@ -100,12 +101,17 @@ export const SUPPORTED_KINDS = [
|
|||
ExtendedKind.VOICE_COMMENT,
|
||||
kinds.Highlights,
|
||||
kinds.LongFormArticle,
|
||||
ExtendedKind.RELAY_REVIEW,
|
||||
kinds.Emojisets,
|
||||
ExtendedKind.ADDRESSABLE_NORMAL_VIDEO,
|
||||
ExtendedKind.ADDRESSABLE_SHORT_VIDEO
|
||||
]
|
||||
|
||||
export const SUPPORTED_KINDS = [
|
||||
...ALLOWED_FILTER_KINDS,
|
||||
ExtendedKind.RELAY_REVIEW,
|
||||
kinds.Emojisets,
|
||||
ExtendedKind.FOLLOW_PACK
|
||||
]
|
||||
|
||||
export const URL_REGEX =
|
||||
/https?:\/\/[\w\p{L}\p{N}\p{M}&.\-/?=#@%+_:!~*]+[^\s.,;:'")\]}!?,。;:"'!?】)]/giu
|
||||
export const WS_URL_REGEX =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue