{ "version": 3, "sources": ["src/app/services/gp/contact-data.service.ts", "src/app/services/shared/accreditation-data.service.ts"], "sourcesContent": ["import { Injectable } from \"@angular/core\";\nimport { catchError, map, switchMap } from \"rxjs/operators\";\nimport { throwError, Observable, of } from \"rxjs\";\n\nimport { HttpService } from \"src/app/services/http.service\";\nimport { InvestorContactReqRes } from \"src/app/dashboard/contacts/models/investorContactReqRes.model\";\nimport { ContactTagsResponse } from \"src/app/dashboard/contacts/contactTagsResponse.model\";\nimport { AbstractRestService } from \"src/app/shared/types/AbstractRestService\";\nimport { ContactSearchOptionsRequest } from \"src/app/shared/models/contactSearchOptionsRequest.model\";\nimport { ContactsImportResponse } from \"src/app/shared/models/ContactsImportResponse.model\";\nimport { ContactSubscriptionRequest } from \"src/app/account/contact-unsubscribe/ContactSubscriptionRequest.model\";\nimport { ContactImportResponse } from \"src/app/shared/models/ContactImportResponse.model\";\nimport { BaseResponseDataDto } from \"src/app/shared/models/BaseResponseDto.model\";\nimport { InvestingEntityWithRelatedInvestmentsHolding } from \"src/app/dashboard/contacts/models/investingEntityWithRelatedInvestmentsHolding.model\";\n\n@Injectable()\nexport class ContactDataService extends AbstractRestService<\n InvestorContactReqRes,\n InvestorContactReqRes\n> {\n protected readonly baseEndpoint$ = of(\"contacts/\");\n\n protected readonly tagsEndpoint$ = this.baseEndpoint$.pipe(\n map((endpoint) => endpoint + \"tags\")\n );\n protected readonly deleteMultipleEndpoint$ = this.baseEndpoint$.pipe(\n map((endpoint) => endpoint + \"deleteMultiple\")\n );\n protected readonly exportEndpoint$ = this.baseEndpoint$.pipe(\n map((endpoint) => endpoint + \"export\")\n );\n protected readonly importContatsEndpoint$ = this.baseEndpoint$.pipe(\n map((endpoint) => endpoint + \"import\")\n );\n\n constructor(http: HttpService) {\n super(http);\n }\n\n protected getSearchOptionsToQuerystring(\n options: ContactSearchOptionsRequest\n ): string {\n let queryString = super.getSearchOptionsToQuerystring(options);\n const tagQuerystring = (options.tags || [])\n .map((tag) => {\n return `&tags=${tag}`;\n })\n .join(\"\");\n\n if (tagQuerystring) {\n queryString += tagQuerystring;\n }\n\n if (options.fundraisingId > 0) {\n queryString += `&fundraisingId=${options.fundraisingId}`;\n }\n\n if (options.contactReferrerId) {\n queryString += `&contactReferrerId=${options.contactReferrerId}`;\n }\n\n if (options.excludeAgentContacts) {\n queryString += `&excludeAgentContacts=${options.excludeAgentContacts}`;\n }\n if (options.isBaseSearch) {\n queryString += `&isBaseSearch=${options.isBaseSearch}`;\n }\n\n return queryString;\n }\n\n getContactTags(): Observable {\n return this.tagsEndpoint$.pipe(\n switchMap((tagsEndpoint) =>\n this.http.getTyped(tagsEndpoint)\n ),\n catchError((err) => {\n return throwError(err);\n })\n );\n }\n\n deleteMultiple(ids: number[]): Observable> {\n return this.deleteMultipleEndpoint$.pipe(\n switchMap((endpoint) => this.http.postTyped>(endpoint, ids)),\n catchError((err) => {\n return throwError(err);\n })\n );\n }\n\n deleteSingle(id: number): Observable> {\n return this.baseEndpoint$.pipe(\n switchMap(endpoint => this.http.deleteTyped>(endpoint + id)),\n catchError(err => {\n return throwError(err);\n })\n );\n }\n\n exportContacts(options: ContactSearchOptionsRequest): Observable {\n return this.exportEndpoint$.pipe(\n switchMap((endpoint) =>\n this.http.get(\n `${endpoint}${this.getSearchOptionsToQuerystring(options)}`\n )\n )\n );\n }\n\n importContacts(\n metaFileLinkId: number,\n contactTags: string[] = null\n ): Observable {\n return this.importContatsEndpoint$.pipe(\n switchMap((endpoint) =>\n this.http.postTyped(endpoint, {\n metaFileLinkId,\n contactTags,\n })\n ),\n catchError((err) => {\n return throwError(err);\n })\n );\n }\n\n GetContactSubscriptionState(\n contactId: number,\n uniqueIdentifier: string\n ): Observable {\n return this.baseEndpoint$.pipe(\n switchMap((baseEndpoint) =>\n this.http\n .getTyped(\n `${baseEndpoint}/${contactId}/subscription/${uniqueIdentifier}`\n )\n .pipe(\n catchError((err) => {\n return throwError(err);\n })\n )\n )\n );\n }\n\n UpdateContactSubscription(\n contactId: number,\n uniqueIdentifier: string,\n contactSubscriptionRequest: ContactSubscriptionRequest\n ): Observable {\n return this.baseEndpoint$.pipe(\n switchMap((baseEndpoint) =>\n this.http\n .putTyped(\n `${baseEndpoint}/${contactId}/subscription/${uniqueIdentifier}`,\n contactSubscriptionRequest\n )\n .pipe(\n catchError((err) => {\n return throwError(err);\n })\n )\n )\n );\n }\n\n createContactsAndInvestingEntitiesFromExcelFile(\n metaFileLinkId: number\n ): Observable {\n return this.baseEndpoint$.pipe(\n switchMap((endpoint) =>\n this.http.postTyped(\n `${endpoint}import/${metaFileLinkId}`,\n null\n )\n ),\n catchError((err) => {\n return throwError(err);\n })\n );\n }\n}\n", "import { Injectable } from '@angular/core';\nimport { Observable, of, switchMap } from 'rxjs';\nimport { AbstractRestService } from 'src/app/shared/types/AbstractRestService';\nimport { HttpService } from '../http.service';\nimport { AccreditationDto } from 'src/app/shared/models/AccreditationDto.model';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class AccreditationDataService extends AbstractRestService{\n protected baseEndpoint$: Observable = of('accreditation');\n\n constructor(\n protected http: HttpService,\n ) { \n super(http);\n }\n\n public getById(accreditationId:number):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.getTyped(`${baseUrl}/${accreditationId}`))\n );\n }\n\n public isRequireAccreditation():Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.getTyped(`${baseUrl}/require-accreditation`))\n );\n }\n\n public create(model:AccreditationDto):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.postTyped(baseUrl, model))\n );\n }\n\n public sendAccreditationRequestToLp(model:AccreditationDto):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.postTyped(`${baseUrl}/accreditation-request`, model))\n );\n }\n\n public sendManualAccreditation(model:AccreditationDto):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.postTyped(`${baseUrl}/manual-accreditation`, model))\n );\n }\n\n public getAll():Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.getTyped(baseUrl))\n );\n }\n\n public getAllRequireAccreditation():Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.getTyped(`${baseUrl}/require-accreditation`))\n );\n }\n\n public updateResourceIdAndPendingStatus(model:AccreditationDto):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.postTyped(`${baseUrl}/pending`, model))\n );\n }\n\n public updateViewInvestorStatus(model:AccreditationDto):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.postTyped(`${baseUrl}/viewed`, model))\n );\n }\n\n public downloadAccreditationCertificate(investingEntityId:number, accreditationId:number):Observable{\n return this.baseEndpoint$.pipe(\n switchMap(baseUrl => this.http.downloadFile(`${baseUrl}/${investingEntityId}/download-certificate/${accreditationId}`,'application/pdf'))\n );\n }\n}\n"], "mappings": "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", "names": ["ContactDataService", "AbstractRestService", "constructor", "http", "baseEndpoint$", "of", "tagsEndpoint$", "pipe", "map", "endpoint", "deleteMultipleEndpoint$", "exportEndpoint$", "importContatsEndpoint$", "getSearchOptionsToQuerystring", "options", "queryString", "tagQuerystring", "tags", "tag", "join", "fundraisingId", "contactReferrerId", "excludeAgentContacts", "isBaseSearch", "getContactTags", "switchMap", "tagsEndpoint", "getTyped", "catchError", "err", "throwError", "deleteMultiple", "ids", "postTyped", "deleteSingle", "id", "deleteTyped", "exportContacts", "get", "importContacts", "metaFileLinkId", "contactTags", "GetContactSubscriptionState", "contactId", "uniqueIdentifier", "baseEndpoint", "UpdateContactSubscription", "contactSubscriptionRequest", "putTyped", "createContactsAndInvestingEntitiesFromExcelFile", "\u0275\u0275inject", "HttpService", "factory", "\u0275fac", "_ContactDataService", "AccreditationDataService", "AbstractRestService", "constructor", "http", "baseEndpoint$", "of", "getById", "accreditationId", "pipe", "switchMap", "baseUrl", "getTyped", "isRequireAccreditation", "create", "model", "postTyped", "sendAccreditationRequestToLp", "sendManualAccreditation", "getAll", "getAllRequireAccreditation", "updateResourceIdAndPendingStatus", "updateViewInvestorStatus", "downloadAccreditationCertificate", "investingEntityId", "downloadFile", "\u0275\u0275inject", "HttpService", "factory", "\u0275fac", "providedIn", "_AccreditationDataService"] }