{"version":3,"file":"index-0b2313a8.js","sources":["../../../client-app/src/common/services/o2Service/index.ts"],"sourcesContent":["import { default as fetch } from '@n2-common/lib/fetchProxy';\nimport O2ApiMock from './mock/service';\nimport type * as O2 from './types';\nimport { throwIfNotSuccess } from '../errors';\nimport { LoanFiApplicationInputModel } from '@n2-common/serverGeneratedTypings/loanFiApplicationInputModel';\nimport { CreditCardFiApplicationInputModel } from '@n2-common/serverGeneratedTypings/creditCardFiApplicationInputModel';\nimport { CreditCardNoApplicationInputModel } from '@n2-common/serverGeneratedTypings/creditCardNoApplicationInputModel';\nimport { LoanNoApplicationInputModel } from '@n2-common/serverGeneratedTypings/loanNoApplicationInputModel';\nimport { SwedishLoanApplication, SwedishLoanApplicationCleaned } from '@n2-common/components/WizardFormManager/se/fieldDefinitions';\nimport { FinishLoanApplicationCleaned } from '@n2-common/components/WizardFormManager/fi/fieldDefinitions';\n/** exporting O2 types as namespace object */\nexport * as O2 from './types';\nexport * as O2Mappers from './mappers';\n\nconst O2Api = {\n async postApplication(\n application: FinishLoanApplicationCleaned | SwedishLoanApplication | CreditCardFiApplicationInputModel | CreditCardNoApplicationInputModel,\n country: Country,\n type: 'loan' | 'creditcard',\n signal?: AbortSignal\n ) {\n const fetchConfig = {\n method: 'POST',\n body: JSON.stringify(application),\n signal,\n headers: {\n 'Content-Type': 'application/json',\n ...maybeScenario(),\n },\n };\n const response = await fetch(`/api/n2/o2-application/${country}/${type}/application`, fetchConfig);\n await throwIfNotSuccess(response, 'O2Service.PostApplication', fetchConfig);\n return await response.text();\n },\n async postCustomerLoanIncreaseApplication(\n application: FinishLoanApplicationCleaned | SwedishLoanApplicationCleaned | LoanNoApplicationInputModel,\n country: Country,\n signal?: AbortSignal\n ) {\n const fetchConfig = {\n method: 'POST',\n body: JSON.stringify(application),\n signal,\n headers: {\n 'Content-Type': 'application/json',\n ...maybeScenario(),\n },\n };\n const response = await fetch(`/api/n2/o2-application/${country}/customer-loan/application`, fetchConfig);\n await throwIfNotSuccess(response, 'O2Service.PostCustomerLoanIncreaseApplication', fetchConfig);\n return await response.text();\n },\n async status(applicationId: string, applicantId: string | null, signal?: AbortSignal) {\n const applicantUrl = applicantId ? `/${applicantId}` : '';\n const response = await fetch(`/api/n2/o2-application/status/${applicationId}${applicantUrl}`, {\n method: 'GET',\n signal,\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.Status');\n if (response.status == 200) {\n return (await response.json()) as O2.ApplicationStatus | { status: 'Redirect'; applicationId: string; applicantId: string };\n } else {\n return null;\n }\n },\n async userTaskComplete(taskId: string, payload: UserTaskModel, signal?: AbortSignal) {\n const response = await fetch(`/api/n2/o2-application/user-task-complete/${taskId}`, {\n method: 'POST',\n body: JSON.stringify(payload),\n signal,\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.UserTaskComplete');\n },\n\n async submitConsents(taskId: string, consentName: string, consents: string[], signal?: AbortSignal) {\n const response = await fetch(`/api/n2/o2-application/consent/${taskId}/${consentName}`, {\n method: 'PUT',\n body: JSON.stringify(consents),\n signal,\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.SubmitConsents');\n },\n\n async uploadDocuments(applicationId: string, role: O2.ApplicantRole, documentType: string, form: FormData, signal?: AbortSignal) {\n const url = `/api/n2/o2-application/upload-documents/${applicationId}/${role}/${documentType}`;\n const response = await fetch(url, {\n method: 'POST',\n body: form,\n signal,\n });\n await throwIfNotSuccess(response, 'O2Service.UploadDocuments');\n return (await response.json()) as O2.DocumentInfo[];\n },\n async deleteDocument(applicationId: string, role: O2.ApplicantRole, documentId: string, signal?: AbortSignal) {\n const response = await fetch(`/api/n2/o2-application/delete-document/${applicationId}/${role}/${documentId}`, {\n method: 'DELETE',\n signal,\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.DeleteDocument');\n },\n async lookupBankName(country: Country, accountNumber: string, signal?: AbortSignal): Promise {\n const response = await fetch(`/api/n2/o2-application/payoutbank/${country}/${accountNumber}`, {\n method: 'GET',\n signal,\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.LookupBankName');\n return response.status == 200 ? ((await response.json()) as O2.BankInfo) : null;\n },\n\n async getEligibility(product: CustomerEngagementProduct) {\n const response = await fetch(`/api/n2/o2-application/eligibility/${product}`, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.GetEligibility');\n return { [product]: (await response.json()) as boolean } as Eligibility;\n },\n\n async getSetPinUrl(taskId: string, requestReference: string, cardHolderIdentifier: string, signal?: AbortSignal) {\n const response = await fetch(`/api/n2/o2-application/set-pin-url/${taskId}/${requestReference}/${cardHolderIdentifier}`, {\n method: 'GET',\n signal,\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n await throwIfNotSuccess(response, 'O2Service.GetSetPinUrl');\n if (response.status == 200) {\n return await response.text();\n } else {\n return null;\n }\n },\n};\n\nexport type Tracking = LoanFiApplicationInputModel['tracking'] & { Matomo?: string };\n\nexport type SigningProcessStartPayload = {\n offerId?: string;\n tracking?: Tracking;\n};\n\ntype AmlQuestion = {\n id: number;\n ref: string;\n hint: string;\n response: string;\n};\ntype AmlQuestionsResponsePayload = {\n questions: AmlQuestion[];\n scope: O2.QuestionScope;\n};\nexport type StoreAccountNumberModel = {\n accountNumber?: string;\n details?: Detail[];\n};\n\ntype Detail = {\n name: string;\n type: 'consumerLoan' | 'creditCard' | 'unsecuredDebt';\n amount: number;\n accountNumber: string;\n ref?: string;\n refType: 'Message' | 'KID' | 'None';\n};\n\nexport type UserTaskModel =\n | { type: 'upload-documents' }\n | { type: 'set-pin' }\n | { type: 'accept-offer-cosigner' }\n | { type: 'store-aml-questions'; payload: AmlQuestionsResponsePayload }\n | { type: 'start-signing'; payload: SigningProcessStartPayload }\n | { type: 'select-embossed-name'; payload: string }\n | { type: 'enter-account-number'; payload: StoreAccountNumberModel };\n\nexport type O2ApiService = typeof O2Api;\n\nexport type CustomerEngagementProduct = 'CreditCard' | 'Deposit' | 'ConsumerLoan';\nexport type Eligibility = { [key in T]: boolean };\n\nexport const o2ApiService: O2ApiService = process.env.NODE_ENV == 'production' ? O2Api : O2ApiMock;\n\nexport default o2ApiService;\n\nfunction maybeScenario(): HeadersInit | undefined {\n const Scenario = localStorage.getItem('Scenario') || localStorage.getItem('scenario');\n return Scenario ? { Scenario } : undefined;\n}\n"],"names":["O2Api","application","country","type","signal","fetchConfig","maybeScenario","response","fetch","throwIfNotSuccess","applicationId","applicantId","applicantUrl","taskId","payload","consentName","consents","role","documentType","form","url","documentId","accountNumber","product","requestReference","cardHolderIdentifier","o2ApiService","Scenario"],"mappings":"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"}