SYMBOL INDEX (510 symbols across 163 files) FILE: aquila/encoder/authentication.py function check (line 7) | def check (json_data, signature): FILE: aquila/encoder/encoder.py function get_url (line 23) | def get_url (schema): function get_url_hash (line 33) | def get_url_hash (url): function download_model (line 38) | def download_model (url, directory, file_name): function memload_model (line 59) | def memload_model (model_type, model_filename): class EncodeRequest (line 79) | class EncodeRequest (): method __init__ (line 80) | def __init__(self, id_in, text_in): class Encoder (line 84) | class Encoder (): method __init__ (line 85) | def __init__(self, encoder_name_in, request_queue_in): method __del__ (line 94) | def __del__(self): method count_request_id (line 97) | def count_request_id (self): method preload_model (line 102) | def preload_model (self, json_schema, database_name): method enqueue_compress_data (line 141) | async def enqueue_compress_data (self, texts): method process_queue (line 151) | async def process_queue (self): FILE: aquila/encoder/index.py function quartserver (line 16) | def quartserver (): function authenticate (line 23) | def authenticate (): function extract_request_params (line 40) | async def extract_request_params (request): function info (line 53) | def info (): function prepare_model (line 66) | async def prepare_model (): function compress_data (line 102) | async def compress_data (): function init_variables (line 138) | async def init_variables(): function init_tasks (line 150) | async def init_tasks(): function shutdown (line 156) | async def shutdown(): FILE: aquila/encoder/manager.py function get_database_name (line 16) | def get_database_name (schema_in): function get_encoder_name (line 30) | def get_encoder_name (schema_in): class Manager (line 44) | class Manager (): method __init__ (line 45) | def __init__ (self): method __del__ (line 50) | def __del__ (self): method persist_db (line 53) | def persist_db (self, json_schema, database_name, persist=True): method prepare_hub (line 82) | def prepare_hub (self): method preload_model (line 96) | def preload_model (self, json_schema, persist=True): method compress_data (line 132) | async def compress_data (self, database_name, texts): method background_task (line 159) | async def background_task(self): FILE: aquila/encoder/test.py function run_test (line 27) | def run_test (index_in): function test_concurrency_thread (line 42) | def test_concurrency_thread (counter_upto): FILE: aquila/encoder/test/apis/hub_fns.py class TestAuth (line 23) | class TestAuth (unittest.TestCase): method test_1_auth_preload_http (line 26) | def test_1_auth_preload_http (self): method test_2_auth_preload_ipfs (line 92) | def test_2_auth_preload_ipfs (self): FILE: aquila/encoder/utils/CID.py function doc2CID (line 7) | def doc2CID (inp): function doc2bson (line 22) | def doc2bson (inp): function bson2doc (line 32) | def bson2doc (inp): FILE: aquila/encoder/utils/cryptops.py function read_public_key (line 13) | def read_public_key (location): function verify_signature (line 21) | def verify_signature (json_data, pub_key, signature): FILE: aquila/encoder/utils/downloader.py function download_large_file (line 9) | def download_large_file (url, location, method="get"): function http_download (line 34) | def http_download (url, directory, file_name): function ipfs_download (line 63) | def ipfs_download (url, directory, file_name): FILE: aquila/encoder/utils/schema.py function generate_schema (line 5) | def generate_schema (template): function compile (line 89) | def compile (schema_def): function validate_json_docs (line 95) | def validate_json_docs (validator, json_doc): FILE: aquila/metricstore/authentication.py function check (line 7) | def check (json_data, signature): FILE: aquila/metricstore/index.py function authenticate (line 22) | def authenticate (): function extract_request_params (line 39) | def extract_request_params (request): function info (line 51) | def info (): function db_create (line 64) | def db_create (): function doc_insert (line 96) | def doc_insert (): function doc_delete (line 122) | def doc_delete (): function db_search (line 148) | def db_search (): function flaskserver (line 174) | def flaskserver (): FILE: aquila/metricstore/manager.py function byt (line 30) | def byt (inp): class VecManager (line 33) | class VecManager: method __init__ (line 35) | def __init__ (self, json_schema): method __del__ (line 74) | def __del__(self): method add_vectors (line 82) | def add_vectors (self, documents): method delete_vectors (line 118) | def delete_vectors (self, cids): method get_nearest (line 137) | def get_nearest (self, qmatrix, k, rad): method get_index (line 165) | def get_index (self, location): method resize_vector (line 189) | def resize_vector (self, vector, dim): method resize_matrix (line 200) | def resize_matrix (self, matrix_, dim): method swap_index (line 221) | def swap_index (self, location): method update_training_data (line 247) | def update_training_data (self, documents): method save_TD_to_disk (line 251) | def save_TD_to_disk (self): method load_TD_from_disk (line 261) | def load_TD_from_disk (self): method process (line 272) | def process (self): method spawn (line 295) | def spawn (self): FILE: aquila/metricstore/router.py function preload_databases (line 17) | def preload_databases (): function create_database (line 44) | def create_database (json_schema): function load_database (line 84) | def load_database (database_name): function insert_docs (line 91) | def insert_docs (docs, database_name): function delete_docs (line 130) | def delete_docs (ids, database_name): function search (line 143) | def search (matrix, k, rad, database_name): FILE: aquila/metricstore/test/apis/auth_fns.py class TestAuth (line 24) | class TestAuth (unittest.TestCase): method test_1_auth_create_db (line 27) | def test_1_auth_create_db (self): FILE: aquila/metricstore/test/apis/db_fns.py class TestDB (line 7) | class TestDB (unittest.TestCase): method test_1_db_fresh_create (line 10) | def test_1_db_fresh_create (self): method test_2_db_exist_create (line 39) | def test_2_db_exist_create (self): FILE: aquila/metricstore/test/apis/doc_fns.py class TestDocs (line 10) | class TestDocs (unittest.TestCase): method test_1_doc_fresh_create (line 13) | def test_1_doc_fresh_create (self): method test_1a_doc_incomplete_create (line 46) | def test_1a_doc_incomplete_create (self): method test_2_doc_exist_create (line 77) | def test_2_doc_exist_create (self): method test_3_db_fresh_doc_create (line 110) | def test_3_db_fresh_doc_create (self): method test_4_doc_fresh_delete (line 133) | def test_4_doc_fresh_delete (self): method test_5a_doc_exist_delete_small (line 153) | def test_5a_doc_exist_delete_small (self): method test_5b_doc_exist_delete_large (line 207) | def test_5b_doc_exist_delete_large (self): method test_6_db_fresh_doc_delete (line 263) | def test_6_db_fresh_doc_delete (self): FILE: aquila/metricstore/test/apis/search_fns.py class TestSearch (line 11) | class TestSearch (unittest.TestCase): method test_1_insert_and_search_small (line 14) | def test_1_insert_and_search_small (self): method test_2_insert_and_search_large (line 44) | def test_2_insert_and_search_large (self): FILE: aquila/metricstore/utils/CID.py function doc2CID (line 7) | def doc2CID (inp): function doc2bson (line 22) | def doc2bson (inp): function bson2doc (line 32) | def bson2doc (inp): FILE: aquila/metricstore/utils/cryptops.py function read_public_key (line 13) | def read_public_key (location): function verify_signature (line 21) | def verify_signature (json_data, pub_key, signature): FILE: aquila/metricstore/utils/schema.py function generate_schema (line 5) | def generate_schema (template): function compile (line 90) | def compile (schema_def): function validate_json_docs (line 96) | def validate_json_docs (validator, json_doc): FILE: aquila/metricstore/vec_index/hannoy.py class Annoy (line 12) | class Annoy: method __init__ (line 13) | def __init__(self, model_location): method __del__ (line 45) | def __del__(self): method spawn (line 50) | def spawn (self): method init_annoy (line 59) | def init_annoy(self): method add_vectors (line 75) | def add_vectors(self, documents): method process (line 81) | def process(self): method delete_vectors (line 136) | def delete_vectors(self, ids): method get_nearest_k (line 142) | def get_nearest_k(self, matrix, k): method get_nearest_rad (line 158) | def get_nearest_rad(self, matrix, rad): method load_model_from_disk (line 174) | def load_model_from_disk(self): method save_model_to_disk (line 191) | def save_model_to_disk(self): FILE: aquila/metricstore/vec_index/hfaiss.py class Faiss (line 12) | class Faiss: method __init__ (line 13) | def __init__(self, model_location): method __del__ (line 39) | def __del__(self): method spawn (line 44) | def spawn (self): method init_faiss (line 53) | def init_faiss(self, matrix): method is_initiated (line 71) | def is_initiated(self): method load_model_from_disk (line 74) | def load_model_from_disk(self, location): method save_model_to_disk (line 84) | def save_model_to_disk(self, location, index): method add_vectors (line 94) | def add_vectors(self, documents): method process (line 100) | def process(self): method delete_vectors (line 147) | def delete_vectors(self, ids): method get_nearest_rad (line 153) | def get_nearest_rad(self, matrix, rad): method get_nearest_k (line 163) | def get_nearest_k(self, matrix, k): FILE: aquila/metricstore/wal/walman.py function create_new_chunk (line 32) | def create_new_chunk (): function spawn (line 47) | def spawn (): function add_log (line 60) | def add_log (batch_in): function terminate (line 65) | def terminate (): function process (line 69) | def process (): FILE: aquila/network/main.go type Document (line 30) | type Document struct function homePage (line 38) | func homePage(w http.ResponseWriter, r *http.Request) { function createNewDocument (line 43) | func createNewDocument(w http.ResponseWriter, r *http.Request) { function deleteDocument (line 84) | func deleteDocument(w http.ResponseWriter, r *http.Request) { function getDocuments (line 120) | func getDocuments(selector string) []Document { function getVersion (line 143) | func getVersion(document Document) []byte { function authenticate (line 156) | func authenticate() (int, []byte) { function checkDB (line 161) | func checkDB(dbName string) (int, []byte) { function createDB (line 165) | func createDB(dbName string) (int, []byte) { function getDBInfo (line 169) | func getDBInfo(dbName string) (int, []byte) { function getReplicationLog (line 173) | func getReplicationLog(dbName string, logID string) (int, []byte) { function addBatchDocs (line 177) | func addBatchDocs(dbName string, documents []Document) (int, []byte) { function getChanges (line 187) | func getChanges(dbName string) (int, []byte) { function ensureCommit (line 191) | func ensureCommit(dbName string) (int, []byte) { function setReplChkPoint (line 195) | func setReplChkPoint(dbName string, replLog []byte) (int, []byte) { function request (line 199) | func request(url string, method string, payload string, contentType stri... function handleRequests (line 239) | func handleRequests() { function replicatorDemon (line 247) | func replicatorDemon() { function main (line 353) | func main() { FILE: aquila/search/src/@types/express/index.d.ts type Request (line 5) | interface Request { FILE: aquila/search/src/@types/index.d.ts type ExtractorArgs (line 2) | type ExtractorArgs = any; type ParserOptions (line 4) | type ParserOptions = { type ParserResult (line 14) | type ParserResult = { FILE: aquila/search/src/app.ts function main (line 18) | async function main() { FILE: aquila/search/src/controller/AuthController.ts class AuthController (line 8) | class AuthController { method constructor (line 10) | public constructor(private authService: AuthService) {} method login (line 13) | public async login( FILE: aquila/search/src/controller/BookmarkController.ts class BookmarkController (line 20) | class BookmarkController { method constructor (line 22) | public constructor(private bookmarkService: BookmarkService) {} method addBookmark (line 26) | public async addBookmark( method getBookmarksByCollectionId (line 35) | public async getBookmarksByCollectionId( method getPublicBookmarksByCollectionId (line 52) | public async getPublicBookmarksByCollectionId( method getAllFeaturedBookmark (line 68) | public async getAllFeaturedBookmark( FILE: aquila/search/src/controller/CollectionController.ts class CollectionController (line 16) | class CollectionController { method constructor (line 18) | public constructor(private collectionService: CollectionService) {} method getAllPublicCollection (line 22) | public async getAllPublicCollection( method getAllPublicFeaturedCollection (line 37) | public async getAllPublicFeaturedCollection( method getPublicCollectionById (line 53) | public async getPublicCollectionById( method getCurrentCustomerCollections (line 61) | public async getCurrentCustomerCollections( FILE: aquila/search/src/controller/CollectionSubscriptionController.ts class CollectionSubscriptionController (line 18) | class CollectionSubscriptionController { method constructor (line 20) | public constructor(private collectionSubscriptionService: CollectionSu... method getCurrentCustomerSubscriptions (line 24) | public async getCurrentCustomerSubscriptions( method subscribeCollection (line 33) | public async subscribeCollection( method isCollectionAlreadySubscribed (line 43) | public async isCollectionAlreadySubscribed( method unSubscribeCollection (line 53) | public async unSubscribeCollection( method getSubscriptionsByCustomerId (line 63) | public async getSubscriptionsByCustomerId( method getCustomerSubscribedCollections (line 79) | public async getCustomerSubscribedCollections( FILE: aquila/search/src/controller/CustomerController.ts class CustomerControler (line 18) | class CustomerControler { method constructor (line 20) | public constructor(private customerService: CustomerService){} method updateCustomer (line 24) | public async updateCustomer( method getCustomerPublicInfoById (line 33) | public async getCustomerPublicInfoById( method getCustomerById (line 41) | public async getCustomerById( method createCustomer (line 49) | public async createCustomer( method activateCustomer (line 57) | public async activateCustomer( method generateRandomCustomerName (line 65) | public async generateRandomCustomerName( FILE: aquila/search/src/controller/HomeController.ts class HomeController (line 7) | class HomeController { method index (line 10) | public index() { FILE: aquila/search/src/controller/dto/AuthControllerDto.ts type LoginCustomerRequestBodyDto (line 3) | interface LoginCustomerRequestBodyDto { type LoginCustomerResponseBodyDto (line 7) | interface LoginCustomerResponseBodyDto { FILE: aquila/search/src/controller/dto/BookmarkControllerDto.ts type AddBookmarkReqBodyDto (line 1) | interface AddBookmarkReqBodyDto { type GetBookmarksByCollectionIdReqQueryParamsDto (line 7) | interface GetBookmarksByCollectionIdReqQueryParamsDto { type GetBookmarksByCollectionIdResBodyDto (line 13) | interface GetBookmarksByCollectionIdResBodyDto { type GetFeaturedBookmarksReqQueryParamsDto (line 30) | interface GetFeaturedBookmarksReqQueryParamsDto { type GetFeaturedBookmarksResBodyDto (line 35) | interface GetFeaturedBookmarksResBodyDto { FILE: aquila/search/src/controller/dto/CollectionControllerDto.ts type GetAllPublicCollectionReqQueryParamsDto (line 4) | interface GetAllPublicCollectionReqQueryParamsDto { type GetAllPublicCollectionResPayloadDto (line 9) | interface GetAllPublicCollectionResPayloadDto { type GetAllFeaturedCollectionReqQueryParamsDto (line 17) | interface GetAllFeaturedCollectionReqQueryParamsDto { type GetAllFeaturedCollectionResPayloadDto (line 22) | interface GetAllFeaturedCollectionResPayloadDto { FILE: aquila/search/src/controller/dto/CollectionSubscriptionControllerDto.ts type GetSubscriptionsByCustomerIdReqQueryParamsDto (line 1) | interface GetSubscriptionsByCustomerIdReqQueryParamsDto { type GetSubscriptionsByCustomerIdResBodyDto (line 7) | interface GetSubscriptionsByCustomerIdResBodyDto { FILE: aquila/search/src/controller/dto/CustomerControllerDto.ts type CreateCustomerReqBodyDto (line 4) | interface CreateCustomerReqBodyDto { type CreateCustomerResponseDto (line 9) | interface CreateCustomerResponseDto { type ActivateCustomerReqBodyDto (line 14) | interface ActivateCustomerReqBodyDto { type UpdateCustomerReqBodyDto (line 22) | interface UpdateCustomerReqBodyDto { type GetCustomerPublicInfoByIdRespBodyDto (line 30) | interface GetCustomerPublicInfoByIdRespBodyDto { type GetRandomCustomerNameRespBodyDto (line 38) | interface GetRandomCustomerNameRespBodyDto { FILE: aquila/search/src/entity/Bookmark.ts type BookmarkStatus (line 3) | enum BookmarkStatus { class Bookmark (line 10) | class Bookmark extends BaseEntity { FILE: aquila/search/src/entity/BookmarkPara.ts class BookmarkPara (line 4) | class BookmarkPara extends BaseEntity { FILE: aquila/search/src/entity/BookmarkParaTemp.ts class BookmarkParaTemp (line 4) | class BookmarkParaTemp extends BaseEntity { FILE: aquila/search/src/entity/BookmarkTemp.ts type BookmarkTempStatus (line 3) | enum BookmarkTempStatus { class BookmarkTemp (line 10) | class BookmarkTemp extends BaseEntity { FILE: aquila/search/src/entity/Collection.ts class Collection (line 5) | class Collection extends BaseEntity { FILE: aquila/search/src/entity/CollectionSubscription.ts class CollectionSubscription (line 4) | class CollectionSubscription extends BaseEntity { FILE: aquila/search/src/entity/CollectionSubscriptionTemp.ts class CollectionSubscriptionTemp (line 4) | class CollectionSubscriptionTemp extends BaseEntity { FILE: aquila/search/src/entity/CollectionTemp.ts class CollectionTemp (line 4) | class CollectionTemp extends BaseEntity { FILE: aquila/search/src/entity/Customer.ts class Customer (line 4) | class Customer extends BaseEntity { FILE: aquila/search/src/entity/CustomerTemp.ts class CustomerTemp (line 4) | class CustomerTemp extends BaseEntity { FILE: aquila/search/src/helper/auth.ts function authorizationChecker (line 5) | function authorizationChecker(action: Action): boolean { FILE: aquila/search/src/helper/decorators/jwtPayloadData.ts function JwtPayloadData (line 5) | function JwtPayloadData() { FILE: aquila/search/src/helper/user.ts function currentUserChecker (line 8) | async function currentUserChecker(action: Action): Promise(name: AppJobNames, data: T) { FILE: aquila/search/src/job/appWorker.ts function getAppWorker (line 4) | function getAppWorker(connection: Redis) { FILE: aquila/search/src/job/appWorkerProcessor.ts function summarize (line 20) | async function summarize(html: string) { FILE: aquila/search/src/job/types.ts type AppJobNames (line 5) | enum AppJobNames { type IndexDocumentData (line 9) | interface IndexDocumentData { type AddData (line 14) | interface AddData { type AppJobData (line 18) | type AppJobData = IndexDocumentData; FILE: aquila/search/src/lib/AquilaClientService.ts class AquilaClientService (line 8) | class AquilaClientService { method constructor (line 12) | public constructor(private configService: ConfigService) {} method connect (line 14) | public async connect() { method getDbServer (line 28) | public getDbServer() { method getHubServer (line 32) | public getHubServer() { method createCollection (line 36) | public async createCollection(desc: string, secretKey: string) { FILE: aquila/search/src/lib/ConfigService.ts class ConfigService (line 6) | class ConfigService { method constructor (line 7) | constructor() { method loadEnv (line 11) | private loadEnv() { method get (line 32) | get(key: string, defaultValue?: string): string { FILE: aquila/search/src/middleware/global/AuthMiddleware.ts class AuthMiddleware (line 7) | class AuthMiddleware implements ExpressMiddlewareInterface { method constructor (line 8) | public constructor(private authService: AuthService) {} method use (line 10) | public use(req: Request, res: Response, next: NextFunction): void { FILE: aquila/search/src/middleware/global/GlobalErrorMiddleware.ts class GlobalErrorHandler (line 8) | class GlobalErrorHandler implements ExpressErrorMiddlewareInterface { method error (line 9) | error(err: Error, req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/global/TokenParserMiddleware.ts class TokenParserMiddleware (line 8) | class TokenParserMiddleware implements ExpressMiddlewareInterface { method constructor (line 9) | public constructor(private authService: AuthService) {} method use (line 11) | public use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/bookmark/AddBookmarkValidator.ts class AddBookmarkValidator (line 12) | class AddBookmarkValidator implements ExpressMiddlewareInterface { method constructor (line 13) | public constructor(private collectionService: CollectionService, @JwtP... method use (line 16) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/bookmark/GetBookmarkByCollectionIdValidator.ts class GetBookmarkByCollectionIdValidator (line 9) | class GetBookmarkByCollectionIdValidator implements ExpressMiddlewareInt... method use (line 10) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/bookmark/GetFeaturedBookmarkValidator.ts class GetFeaturedBookmarkValidator (line 8) | class GetFeaturedBookmarkValidator implements ExpressMiddlewareInterface { method use (line 9) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/bookmark/GetPublicBookmarkByCollectionIdParamValidator.ts class GetPublicBookmarkByCollectionIdParamValidator (line 10) | class GetPublicBookmarkByCollectionIdParamValidator implements ExpressMi... method use (line 11) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/bookmark/GetPublicBookmarkByCollectionIdValidator.ts class GetPublicBookmarkByCollectionIdValidator (line 10) | class GetPublicBookmarkByCollectionIdValidator implements ExpressMiddlew... method use (line 11) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/collection/GetAllFeaturedCollectionValidator.ts class GetAllFeaturedCollectionValidator (line 8) | class GetAllFeaturedCollectionValidator implements ExpressMiddlewareInte... method use (line 9) | async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/collection/GetAllPublicCollectionValidator.ts class GetAllPublicCollectionValidator (line 8) | class GetAllPublicCollectionValidator implements ExpressMiddlewareInterf... method use (line 9) | async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/collection/GetPublicCollectionByIdValidator.ts class GetPublicCollectionByIdValidator (line 8) | class GetPublicCollectionByIdValidator implements ExpressMiddlewareInter... method use (line 9) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/csubscription/SubscribeCollectionValidator.ts class SubscribeCollectionValidator (line 10) | class SubscribeCollectionValidator implements ExpressMiddlewareInterface { method constructor (line 11) | public constructor(private collectionSubService: CollectionSubscriptio... method use (line 14) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/csubscription/UnSubscribeCollectionValidator.ts class UnSubscribeCollectionValidator (line 9) | class UnSubscribeCollectionValidator implements ExpressMiddlewareInterfa... method use (line 11) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/customer/ActivateCustomerValidator.ts class ActivateCustomerValidator (line 9) | class ActivateCustomerValidator implements ExpressMiddlewareInterface { method use (line 10) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/customer/CreateCustomerValidator.ts class CreateCustomerValidator (line 8) | class CreateCustomerValidator implements ExpressMiddlewareInterface { method use (line 9) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/customer/GetCustomerPublicInfoByIdValidator.ts class GetCustomerPublicInfoByIdValidator (line 8) | class GetCustomerPublicInfoByIdValidator implements ExpressMiddlewareInt... method use (line 9) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/middleware/validator/customer/UpdateCustomerValidator.ts class UpdateCustomerValidator (line 11) | class UpdateCustomerValidator implements ExpressMiddlewareInterface { method use (line 12) | public async use(req: Request, res: Response, next: NextFunction) { FILE: aquila/search/src/migrations/1676714378990-bookmark.ts class bookmark1676714378990 (line 3) | class bookmark1676714378990 implements MigrationInterface { method up (line 6) | public async up(queryRunner: QueryRunner): Promise { method down (line 22) | public async down(queryRunner: QueryRunner): Promise { FILE: aquila/search/src/service/AuthService.ts class AuthService (line 11) | class AuthService { method constructor (line 13) | public constructor(private configService: ConfigService) {} method authenticate (line 15) | public authenticate(token: string) { method decodeToken (line 24) | public decodeToken(token: string): JwtPayload { method generateToken (line 29) | private generateToken(payload: JwtPayload): string { method login (line 36) | public async login(secretKey: string): Promise { method loginPermanentCustoemr (line 47) | public async loginPermanentCustoemr(secretKey: string): Promise{ method loginTemporaryCustomer (line 66) | public async loginTemporaryCustomer(secretKey: string): Promise { FILE: aquila/search/src/service/BookmarkService.ts class BookmarkService (line 22) | class BookmarkService { method constructor (line 24) | public constructor(private appQueue: AppQueue, private aquilaClientSer... method fetchWebsiteContent (line 26) | private async fetchWebsiteContent(url: string): Promise { method addTemporaryBookmark (line 40) | private async addTemporaryBookmark(data: AddBookmarkInputDto): Promise... method addPermanentBookmark (line 64) | private async addPermanentBookmark(data: AddBookmarkInputDto): Promise... method addBookmark (line 88) | public async addBookmark(data: AddBookmarkInputDto, accountStatus: Acc... method getAllTemporaryBookmarksByCollectionId (line 95) | private async getAllTemporaryBookmarksByCollectionId(collectionId: str... method getAllPermanentBookmarksByCollectionId (line 123) | private async getAllPermanentBookmarksByCollectionId(collectionId: str... method getTemporaryBookmarksByCollectionId (line 151) | private async getTemporaryBookmarksByCollectionId(collectionId: string... method getPermanentBookmarksByCollectionId (line 217) | private async getPermanentBookmarksByCollectionId(collectionId: string... method getBookmarksByCollectionId (line 283) | public async getBookmarksByCollectionId(collectionId: string, options:... method getFeaturedBookmarks (line 290) | public async getFeaturedBookmarks(options: GetBookmarksByCollectionIdO... FILE: aquila/search/src/service/CollectionService.ts class CollectionService (line 10) | class CollectionService { method constructor (line 12) | public constructor() {} method getAllTemporaryCollections (line 14) | private async getAllTemporaryCollections(options: GetAllCollectionsInp... method getAllPermanentCollections (line 39) | public async getAllPermanentCollections(options: GetAllCollectionsInpu... method getAllCollections (line 63) | public async getAllCollections(options: GetAllCollectionsInputOptionsD... method getTempCustomerCollectionsByCustomerId (line 70) | private async getTempCustomerCollectionsByCustomerId(customerId: strin... method getPermanentCustomerCollectionsByCustomerId (line 75) | private async getPermanentCustomerCollectionsByCustomerId(customerId: ... method getCustomerCollectionsByCustomerId (line 80) | public async getCustomerCollectionsByCustomerId(customerId: string, ac... method getTemporaryCollectionById (line 87) | public async getTemporaryCollectionById(id: string): Promise { FILE: aquila/search/src/service/CollectionSubscriptionService.ts class CollectionSubscriptionService (line 16) | class CollectionSubscriptionService { method constructor (line 18) | public constructor(private aquilaClientService: AquilaClientService) {} method subscribeTemporaryCollection (line 20) | private async subscribeTemporaryCollection(collectionId: string, custo... method subscribePermanentCollection (line 30) | private async subscribePermanentCollection(collectionId: string, custo... method subscribeCollection (line 40) | public async subscribeCollection(collectionId: string, customerId: str... method getTemporaryCollectionSubscriptionList (line 48) | private async getTemporaryCollectionSubscriptionList(customerId: strin... method getPermanentCollectionSubscriptionList (line 53) | private async getPermanentCollectionSubscriptionList(customerId: strin... method getCustomerSubscriptions (line 58) | public async getCustomerSubscriptions(customerId: string, accountStatu... method isCollectionSubscribedByTemporaryCustomer (line 66) | public async isCollectionSubscribedByTemporaryCustomer(collectionId: s... method isCollectionSubscribedByPermanentCustomer (line 77) | public async isCollectionSubscribedByPermanentCustomer(collectionId: s... method isCollectionSubscribedByCustomer (line 88) | public async isCollectionSubscribedByCustomer(collectionId: string, cu... method unSubscribeTemporaryCollection (line 96) | private async unSubscribeTemporaryCollection(collectionId: string, cus... method unSubscribePermanentCollection (line 105) | private async unSubscribePermanentCollection(collectionId: string, cus... method unSubscribeCollection (line 114) | public async unSubscribeCollection(collectionId: string, customerId: s... method getTemporaryCollectionFollowerCount (line 122) | private async getTemporaryCollectionFollowerCount(collectionId: string... method getPermanentCollectionFollowerCount (line 127) | private async getPermanentCollectionFollowerCount(collectionId: string... method getCollectionSubscriberCount (line 132) | public async getCollectionSubscriberCount(collectionId: string, accoun... method getTotalCollectionSubscribedByTemporaryCustomer (line 140) | public async getTotalCollectionSubscribedByTemporaryCustomer(subscribe... method getTotalCollectionSubscribedByPermanentCustomer (line 145) | public async getTotalCollectionSubscribedByPermanentCustomer(subscribe... method getTotalCollectionSubscribedByCustomer (line 150) | public async getTotalCollectionSubscribedByCustomer(customerId: string... method getAllSubscriptionsByCustomerId (line 158) | private async getAllSubscriptionsByCustomerId(collectionIds: string[],... method getSubscriptionsByTemporaryCustomerId (line 186) | public async getSubscriptionsByTemporaryCustomerId(customerId: string,... method getSubscriptionsByPermanentCustomerId (line 253) | public async getSubscriptionsByPermanentCustomerId(customerId: string,... method getSubscriptionsByCustomerId (line 320) | public async getSubscriptionsByCustomerId(customerId: string, options:... method getCustomerSubscribedCollections (line 327) | public async getCustomerSubscribedCollections(customerId: string, acco... FILE: aquila/search/src/service/CustomerService.ts class CustomerService (line 25) | class CustomerService { method constructor (line 27) | public constructor(private aquilaClientService: AquilaClientService) {} method getRandomCustomerName (line 29) | public async getRandomCustomerName(): Promise { method getTemporaryCustomerById (line 53) | private async getTemporaryCustomerById(id: string): Promise; type AppState (line 58) | type AppState = ReturnType; type AppDispatch (line 60) | type AppDispatch = typeof store.dispatch; type AppThunk (line 62) | type AppThunk = ThunkAction; type AddLinkState (line 23) | interface AddLinkState { FILE: aquila/view/store/slices/bookmark/getLoggedInCustBookmarksByCollectionId.ts type GetLoggedInCustBookmarksByCollectionIdState (line 8) | interface GetLoggedInCustBookmarksByCollectionIdState { type GetLoggedInCustBookmarksByCollectionIdData (line 19) | interface GetLoggedInCustBookmarksByCollectionIdData { type GetLoggedInCustBookmarksByCollectionIdResPayload (line 28) | type GetLoggedInCustBookmarksByCollectionIdResPayload = Omit; type UpdateCustomerState (line 26) | interface UpdateCustomerState { FILE: aquila/view/store/slices/errors/AsyncThunkSubmissionError.ts class AsyncThunkSubmissionError (line 1) | class AsyncThunkSubmissionError extends Error { method constructor (line 4) | constructor(message: string, validationErrors: T | null) { FILE: aquila/view/store/slices/generateName.ts type GeneratedNameState (line 10) | interface GeneratedNameState { FILE: aquila/view/store/slices/signup.ts type Collection (line 10) | interface Collection { type SignUpData (line 22) | interface SignUpData { type SignUpRequestPayload (line 27) | type SignUpRequestPayload = SignUpData; type SignUpResponsePayload (line 29) | interface SignUpResponsePayload { type SignUpValidationErrors (line 34) | type SignUpValidationErrors = ValidationErrors type SignUpState (line 36) | interface SignUpState { FILE: aquila/view/store/slices/types/Bookmark.ts type BookmarkStatus (line 3) | enum BookmarkStatus { type Bookmark (line 9) | interface Bookmark { FILE: aquila/view/store/slices/types/Collection.ts type Collection (line 3) | interface Collection { FILE: aquila/view/store/slices/types/CollectionSubscription.ts type CollectionSubscription (line 1) | interface CollectionSubscription { FILE: aquila/view/store/slices/types/Customer.ts type Customer (line 1) | interface Customer { FILE: aquila/view/store/slices/types/validationErrors.ts type ValidationErrorData (line 1) | interface ValidationErrorData { type ResponsePayloadValidationErrors (line 8) | type ResponsePayloadValidationErrors = Partial = Partial> FILE: aquila/view/store/slices/utils/createError.ts type SubmissionErrorResponse (line 62) | interface SubmissionErrorResponse {