import client from lex instead of lex-client
This commit is contained in:
@@ -100,7 +100,6 @@
|
||||
"dependencies": {
|
||||
"@atproto/common-web": "0.5.6",
|
||||
"@atproto/lex": "0.2.2",
|
||||
"@atproto/lex-client": "0.2.4",
|
||||
"@atproto/lex-password-session": "0.1.7",
|
||||
"@atproto/syntax": "0.7.2",
|
||||
"@bitdrift/react-native": "^0.6.8",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {createContext, useCallback, useContext, useEffect, useMemo} from 'react'
|
||||
import * as AgeRange from 'expo-age-range'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {getPreferences} from '@bsky.app/sdk'
|
||||
import {createAsyncStoragePersister} from '@tanstack/query-async-storage-persister'
|
||||
import {focusManager, QueryClient, useQuery} from '@tanstack/react-query'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {Platform} from 'react-native'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {useMutation} from '@tanstack/react-query'
|
||||
|
||||
import {wait} from '#/lib/async/wait'
|
||||
|
||||
@@ -3,7 +3,7 @@ import {Alert, View} from 'react-native'
|
||||
import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
||||
import * as Contacts from 'expo-contacts'
|
||||
import {type Un$Typed} from '@atproto/lex'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {toDatetimeString} from '@atproto/syntax'
|
||||
import {upsertProfile} from '@bsky.app/sdk'
|
||||
import {msg, t} from '@lingui/core/macro'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {useMutation} from '@tanstack/react-query'
|
||||
|
||||
import {usePdsClient, useSessionApi} from '#/state/session'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {useState} from 'react'
|
||||
import {View} from 'react-native'
|
||||
import {type Service} from '@atproto/lex-client'
|
||||
import {type Service} from '@atproto/lex'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
import {useLingui} from '@lingui/react'
|
||||
import {Trans} from '@lingui/react/macro'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Service} from '@atproto/lex-client'
|
||||
import {type Service} from '@atproto/lex'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
import {useLingui} from '@lingui/react'
|
||||
import {useMutation} from '@tanstack/react-query'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {app} from '#/lexicons'
|
||||
import * as bsky from '#/types/bsky'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {lexParse} from '@atproto/lex'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
|
||||
import {
|
||||
getAppLanguageAsContentLanguage,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {DEMO_FEED} from '#/lib/demo'
|
||||
import {type app} from '#/lexicons'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {app} from '#/lexicons'
|
||||
import {type FeedAPI, type FeedAPIResponse} from './types'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type AtUriString} from '@atproto/syntax'
|
||||
|
||||
import {PROD_DEFAULT_FEED} from '#/lib/constants'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {app} from '#/lexicons'
|
||||
import {type FeedAPI, type FeedAPIResponse} from './types'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {app} from '#/lexicons'
|
||||
import {type FeedAPI, type FeedAPIResponse} from './types'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type AtUriString} from '@atproto/syntax'
|
||||
import shuffle from 'lodash.shuffle'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {logger} from '#/logger'
|
||||
import {app} from '#/lexicons'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {type app} from '#/lexicons'
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {TID} from '@atproto/common-web'
|
||||
import {type $Typed} from '@atproto/lex'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {
|
||||
type AtUriString,
|
||||
toDatetimeString,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {AtUri, type AtUriString, type HandleString} from '@atproto/syntax'
|
||||
|
||||
import {IMAGE_SIZE_CONFIG_2K_1MB} from '#/lib/constants'
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import {copyAsync} from 'expo-file-system/legacy'
|
||||
import {type BlobRef} from '@atproto/lex'
|
||||
import {type Client, type EncodingString} from '@atproto/lex-client'
|
||||
import {type BlobRef, type Client, type EncodingString} from '@atproto/lex'
|
||||
|
||||
import {safeDeleteAsync} from '#/lib/media/manip'
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import {type BlobRef} from '@atproto/lex'
|
||||
import {type Client, type EncodingString} from '@atproto/lex-client'
|
||||
import {type BlobRef, type Client, type EncodingString} from '@atproto/lex'
|
||||
|
||||
/**
|
||||
* The blob-upload response body: `{blob}`. lex `Client.uploadBlob` returns the
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {type Insets, Platform} from 'react-native'
|
||||
import {type Service} from '@atproto/lex-client'
|
||||
import {type Service} from '@atproto/lex'
|
||||
import {api} from '@bsky.app/sdk'
|
||||
|
||||
import {BLUESKY_PROXY_DID, IS_DEV} from '#/env'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type AtUriString, type DatetimeString} from '@atproto/syntax'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
import {useLingui} from '@lingui/react'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {nanoid} from 'nanoid/non-secure'
|
||||
|
||||
import {AbortError} from '#/lib/async/cancelable'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type NsidString} from '@atproto/syntax'
|
||||
import {type I18n} from '@lingui/core'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {createUploadTask, FileSystemUploadType} from 'expo-file-system/legacy'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type I18n} from '@lingui/core'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
import {nanoid} from 'nanoid/non-secure'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type I18n} from '@lingui/core'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
import {nanoid} from 'nanoid/non-secure'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
|
||||
import {type SupportedMimeTypes, VIDEO_SERVICE} from '#/lib/constants'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {useMemo} from 'react'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {
|
||||
type InterpretedLabelValueDefinition,
|
||||
LABELS,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {describe, expect, it} from '@jest/globals'
|
||||
|
||||
import {NOTIF_SERVICE} from '#/lib/constants'
|
||||
|
||||
@@ -2,7 +2,7 @@ import {useCallback, useEffect} from 'react'
|
||||
import {Platform} from 'react-native'
|
||||
import * as Notifications from 'expo-notifications'
|
||||
import {getBadgeCountAsync, setBadgeCountAsync} from 'expo-notifications'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import debounce from 'lodash.debounce'
|
||||
|
||||
import {
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
import {
|
||||
type Procedure,
|
||||
type Query,
|
||||
XrpcResponseError,
|
||||
} from '@atproto/lex-client'
|
||||
import {type Procedure, type Query, XrpcResponseError} from '@atproto/lex'
|
||||
import {describe, expect, it} from '@jest/globals'
|
||||
|
||||
import {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {LexError, XrpcError, XrpcResponseError} from '@atproto/lex-client'
|
||||
import {LexError, XrpcError, XrpcResponseError} from '@atproto/lex'
|
||||
|
||||
/**
|
||||
* True for an XRPC error from a lex `Client` (`@atproto/lex-client` `XrpcError`,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {useCallback, useState} from 'react'
|
||||
import {Keyboard, View} from 'react-native'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {Trans, useLingui} from '@lingui/react/macro'
|
||||
import * as EmailValidator from 'email-validator'
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {useState} from 'react'
|
||||
import {View} from 'react-native'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {Trans, useLingui} from '@lingui/react/macro'
|
||||
|
||||
import {cleanError, isNetworkError} from '#/lib/strings/errors'
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import {TID} from '@atproto/common-web'
|
||||
import {type $Typed} from '@atproto/lex'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type $Typed, type Client} from '@atproto/lex'
|
||||
import {
|
||||
type AtIdentifierString,
|
||||
type DidString,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {Platform, View} from 'react-native'
|
||||
import {Image} from 'expo-image'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type DidString} from '@atproto/syntax'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
import {useLingui} from '@lingui/react'
|
||||
|
||||
@@ -7,7 +7,7 @@ import {
|
||||
useRef,
|
||||
} from 'react'
|
||||
import {AppState, type AppStateStatus} from 'react-native'
|
||||
import {type Service} from '@atproto/lex-client'
|
||||
import {type Service} from '@atproto/lex'
|
||||
import {type AtUriString} from '@atproto/syntax'
|
||||
import throttle from 'lodash.throttle'
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import {type $Typed} from '@atproto/lex'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type $Typed, type Client} from '@atproto/lex'
|
||||
import {type DatetimeString, type DidString} from '@atproto/syntax'
|
||||
import {EventEmitter} from 'eventemitter3'
|
||||
import {nanoid} from 'nanoid/non-secure'
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import {type $Typed} from '@atproto/lex'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type $Typed, type Client} from '@atproto/lex'
|
||||
|
||||
import {type MessagesEventBus} from '#/state/messages/events/agent'
|
||||
import {type ConvoWithDetails} from '#/components/dms/util'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {EventEmitter} from 'eventemitter3'
|
||||
import {nanoid} from 'nanoid/non-secure'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {type chat} from '#/lexicons'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {createContext, useContext, useMemo} from 'react'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {type ModerationOpts} from '@bsky.app/sdk/moderation'
|
||||
|
||||
import {useHiddenPosts, useLabelDefinitions} from '#/state/preferences'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {type DatetimeString, type HandleString} from '@atproto/syntax'
|
||||
import {useQuery} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import {useCallback} from 'react'
|
||||
import {type $Typed} from '@atproto/lex'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {type $Typed, Client} from '@atproto/lex'
|
||||
import {toDatetimeString} from '@atproto/syntax'
|
||||
import {type QueryClient, useQuery, useQueryClient} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type AtUriString} from '@atproto/syntax'
|
||||
import {
|
||||
type InfiniteData,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {
|
||||
type AtIdentifierString,
|
||||
AtUri,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type DidString} from '@atproto/syntax'
|
||||
import {useMutation, useQueryClient} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
|
||||
import {networkRetry} from '#/lib/async/retry'
|
||||
import {logger} from '#/logger'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {type AtUriString} from '@atproto/syntax'
|
||||
import {
|
||||
hasMutedWord,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {useState} from 'react'
|
||||
import {type DidDocument, getPdsEndpoint} from '@atproto/common-web'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {type HandleString} from '@atproto/syntax'
|
||||
import {useQuery, useQueryClient} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {useCallback, useEffect, useMemo, useRef} from 'react'
|
||||
import {AppState} from 'react-native'
|
||||
import {type AtIdentifierString, type Client} from '@atproto/lex-client'
|
||||
import {type AtIdentifierString, type Client} from '@atproto/lex'
|
||||
import {AtUri, type AtUriString} from '@atproto/syntax'
|
||||
import {
|
||||
moderatePost,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {useRef} from 'react'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {AtUri} from '@atproto/syntax'
|
||||
import {useMutation, useQuery, useQueryClient} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {useMemo} from 'react'
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {interpretLabelValueDefinitions} from '@bsky.app/sdk/moderation'
|
||||
|
||||
import {isNonConfigurableModerationAuthority} from '#/state/session/additional-moderation-authorities'
|
||||
|
||||
@@ -4,7 +4,7 @@ import {
|
||||
type AtIdentifierString,
|
||||
type Client,
|
||||
type DidString,
|
||||
} from '@atproto/lex-client'
|
||||
} from '@atproto/lex'
|
||||
import {type DatetimeString} from '@atproto/lex-schema'
|
||||
import {AtUri, type AtUriString} from '@atproto/syntax'
|
||||
import {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {AtUri, type HandleString} from '@atproto/syntax'
|
||||
import {type QueryClient, queryOptions, useQuery} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {useQuery} from '@tanstack/react-query'
|
||||
|
||||
import {com} from '#/lexicons'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {AtUri, type AtUriString, type DatetimeString} from '@atproto/syntax'
|
||||
import {RichText} from '@bsky.app/sdk/richtext'
|
||||
import {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {AtUri} from '@atproto/syntax'
|
||||
import {useMutation, useQuery, useQueryClient} from '@tanstack/react-query'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {PasswordSession} from '@atproto/lex-password-session'
|
||||
import {api} from '@bsky.app/sdk'
|
||||
import {describe, expect, it, jest} from '@jest/globals'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
|
||||
import {device} from '#/storage'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {type PasswordSession} from '@atproto/lex-password-session'
|
||||
import {api} from '@bsky.app/sdk'
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
useState,
|
||||
useSyncExternalStore,
|
||||
} from 'react'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {PasswordSession, type SessionData} from '@atproto/lex-password-session'
|
||||
|
||||
import * as persisted from '#/state/persisted'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {api} from '@bsky.app/sdk'
|
||||
|
||||
import {IS_TEST_USER} from '#/lib/constants'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {TID} from '@atproto/common-web'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {
|
||||
PasswordSession,
|
||||
type PasswordSessionOptions,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {Client} from '@atproto/lex-client'
|
||||
import {Client} from '@atproto/lex'
|
||||
import {PasswordSession} from '@atproto/lex-password-session'
|
||||
|
||||
import {isJwtExpired} from '#/lib/jwt'
|
||||
|
||||
@@ -46,7 +46,7 @@ import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
||||
import {scheduleOnUI} from 'react-native-worklets'
|
||||
import * as FileSystem from 'expo-file-system'
|
||||
import {type ImagePickerAsset} from 'expo-image-picker'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type Client} from '@atproto/lex'
|
||||
import {AtUri, type AtUriString} from '@atproto/syntax'
|
||||
import {type RichText} from '@bsky.app/sdk/richtext'
|
||||
import {plural} from '@lingui/core/macro'
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import {type ImagePickerAsset} from 'expo-image-picker'
|
||||
import {type BlobRef} from '@atproto/lex'
|
||||
import {type Client} from '@atproto/lex-client'
|
||||
import {type BlobRef, type Client} from '@atproto/lex'
|
||||
import {type I18n} from '@lingui/core'
|
||||
import {msg} from '@lingui/core/macro'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user