{ "version": 3, "sources": ["libs/meine-kkh/online-be/api/src/lib/schemas/bvs/encoder.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/variables.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/configuration.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/api/beitrittserklaerung.service.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/academic-degree.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/additional-income.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/callback-order-body.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/employer-information.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/information-on-changing-health-insurance.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/name-prefix.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/personal-information.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/model/previous-health-insurance.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bvs/api.module.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/encoder.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/variables.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/configuration.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/api/beitrittserklaerung.service.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/academic-degree.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/additional-income.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/callback-order-body.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/employer-information.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/information-on-changing-health-insurance.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/name-prefix.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/personal-information.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/model/previous-health-insurance.ts", "libs/meine-kkh/online-be/api/src/lib/schemas/bitgo/api.module.ts", "libs/meine-kkh/online-be/api/src/lib/online-be-api.module.ts"], "sourcesContent": ["import { HttpParameterCodec } from '@angular/common/http';\n\n/**\n * Custom HttpParameterCodec\n * Workaround for https://github.com/angular/angular/issues/18261\n */\nexport class CustomHttpParameterCodec implements HttpParameterCodec {\n encodeKey(k: string): string {\n return encodeURIComponent(k);\n }\n encodeValue(v: string): string {\n return encodeURIComponent(v);\n }\n decodeKey(k: string): string {\n return decodeURIComponent(k);\n }\n decodeValue(v: string): string {\n return decodeURIComponent(v);\n }\n}\n", "import { InjectionToken } from '@angular/core';\n\nexport const BASE_PATH = new InjectionToken('basePath');\nexport const COLLECTION_FORMATS = {\n csv: ',',\n tsv: ' ',\n ssv: ' ',\n pipes: '|',\n};\n", "import { HttpParameterCodec } from '@angular/common/http';\nimport { Param } from './param';\n\nexport interface BvsConfigurationParameters {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Override the default method for encoding path parameters in various\n * styles.\n *

\n * See {@link README.md} for more details\n *

\n */\n encodeParam?: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials?: { [key: string]: string | (() => string | undefined) };\n}\n\nexport class BvsConfiguration {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Encoding of various path parameter\n * styles.\n *

\n * See {@link README.md} for more details\n *

\n */\n encodeParam: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials: { [key: string]: string | (() => string | undefined) };\n\n constructor(configurationParameters: BvsConfigurationParameters = {}) {\n this.apiKeys = configurationParameters.apiKeys;\n this.username = configurationParameters.username;\n this.password = configurationParameters.password;\n this.accessToken = configurationParameters.accessToken;\n this.basePath = configurationParameters.basePath;\n this.withCredentials = configurationParameters.withCredentials;\n this.encoder = configurationParameters.encoder;\n if (configurationParameters.encodeParam) {\n this.encodeParam = configurationParameters.encodeParam;\n } else {\n this.encodeParam = (param) => this.defaultEncodeParam(param);\n }\n if (configurationParameters.credentials) {\n this.credentials = configurationParameters.credentials;\n } else {\n this.credentials = {};\n }\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link BvsConfiguration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or undefined if no selection could be made.\n */\n public selectHeaderContentType(contentTypes: string[]): string | undefined {\n if (contentTypes.length === 0) {\n return undefined;\n }\n\n const type = contentTypes.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link BvsConfiguration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or undefined if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length === 0) {\n return undefined;\n }\n\n const type = accepts.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application/json|[^;/ \\t]+/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n\n public lookupCredential(key: string): string | undefined {\n const value = this.credentials[key];\n return typeof value === 'function' ? value() : value;\n }\n\n private defaultEncodeParam(param: Param): string {\n // This implementation exists as fallback for missing configuration\n // and for backwards compatibility to older typescript-angular generator versions.\n // It only works for the 'simple' parameter style.\n // Date-handling only works for the 'date-time' format.\n // All other styles and Date-formats are probably handled incorrectly.\n //\n // But: if that's all you need (i.e.: the most common use-case): no need for customization!\n\n const value =\n param.dataFormat === 'date-time' && param.value instanceof Date\n ? (param.value as Date).toISOString()\n : param.value;\n\n return encodeURIComponent(String(value));\n }\n}\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport {\n HttpClient,\n HttpContext,\n HttpEvent,\n HttpHeaders,\n HttpParameterCodec,\n HttpParams,\n HttpResponse,\n} from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { CallbackOrderBodyBvs } from '../model/callback-order-body';\n// @ts-ignore\nimport { OnlineDeclarationOfMembershipBodyBvs } from '../model/online-declaration-of-membership-body';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { BvsConfiguration } from '../configuration';\nimport { BeitrittserklaerungBvsServiceInterface } from './beitrittserklaerung.serviceInterface';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BeitrittserklaerungBvsService implements BeitrittserklaerungBvsServiceInterface {\n\n protected basePath = 'https://app-onbeit-mkk-dev.azurewebsites.net';\n public defaultHeaders = new HttpHeaders();\n public configuration = new BvsConfiguration();\n public encoder: HttpParameterCodec;\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string|string[], @Optional() configuration: BvsConfiguration) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== 'string') {\n if (Array.isArray(basePath) && basePath.length > 0) {\n basePath = basePath[0];\n }\n\n if (typeof basePath !== 'string') {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n\n // @ts-ignore\n private addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach( elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(key, (value as Date).toISOString().substring(0, 10));\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach( k => httpParams = this.addToHttpParamsRecursive(\n httpParams, value[k], key != null ? `${key}.${k}` : k));\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Submits the declaration of membership\n * Submission of a declaration of membership for future KKH customers\n * @param userType User type identification: * \\'GL\\' - Gebietsleiter * \\'KD\\' - Kunde über Vetriebspartner * \\'VP\\' - Vermittler * \\'KN\\' - Kunde Default value: \\'KN\\'\n * @param onlineDeclarationOfMembershipBodyBvs\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBvs?: OnlineDeclarationOfMembershipBodyBvs, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable;\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBvs?: OnlineDeclarationOfMembershipBodyBvs, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBvs?: OnlineDeclarationOfMembershipBodyBvs, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBvs?: OnlineDeclarationOfMembershipBodyBvs, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable {\n if (userType === null || userType === undefined) {\n throw new Error('Required parameter userType was null or undefined when calling postOnlineBeitrittserklaerung.');\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\n 'application/pdf'\n ];\n localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n let localVarHttpContext: HttpContext | undefined = options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined = options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let localVarPath = `/online-beitrittserklaerung/${this.configuration.encodeParam({name: \"userType\", value: userType, in: \"path\", style: \"simple\", explode: false, dataType: \"'GL' | 'KD' | 'VP' | 'KN'\", dataFormat: undefined})}`;\n return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: onlineDeclarationOfMembershipBodyBvs,\n responseType: \"blob\",\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Submits a callback order to KKH service staff\n * Submits a callback order to KKH service staff so that a customer is called back at the desired time\n * @param callbackOrderBodyBvs\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public postRueckrufservice(callbackOrderBodyBvs?: CallbackOrderBodyBvs, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable;\n public postRueckrufservice(callbackOrderBodyBvs?: CallbackOrderBodyBvs, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postRueckrufservice(callbackOrderBodyBvs?: CallbackOrderBodyBvs, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postRueckrufservice(callbackOrderBodyBvs?: CallbackOrderBodyBvs, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable {\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\n 'application/pdf'\n ];\n localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n let localVarHttpContext: HttpContext | undefined = options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined = options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let localVarPath = `/rueckrufservice`;\n return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: callbackOrderBodyBvs,\n responseType: \"blob\",\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface AcademicDegreeBvs { \n /**\n * Title of the highest academic degree\n */\n academicDegree?: AcademicDegreeBvs.AcademicDegreeBvs;\n /**\n * Individual academic degree. Must be specified if \\'sonstige\\' was selected in the academicDegree enum.\n */\n customAcademicDegree?: string;\n}\nexport namespace AcademicDegreeBvs {\n export type AcademicDegreeBvs = 'diplom' | 'magister' | 'doktor' | 'professor' | 'professor_doktor' | 'doktor_doktor' | 'sonstige';\n export const AcademicDegreeBvs = {\n Diplom: 'diplom' as AcademicDegreeBvs,\n Magister: 'magister' as AcademicDegreeBvs,\n Doktor: 'doktor' as AcademicDegreeBvs,\n Professor: 'professor' as AcademicDegreeBvs,\n ProfessorDoktor: 'professor_doktor' as AcademicDegreeBvs,\n DoktorDoktor: 'doktor_doktor' as AcademicDegreeBvs,\n Sonstige: 'sonstige' as AcademicDegreeBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface AdditionalIncomeBvs { \n /**\n * True, if at least one secondary source of income exists; otherwise false\n */\n existing: boolean;\n additionalIncomeSources?: Array;\n /**\n * Date on which self-employment started\n */\n startDateOfSelfEmployment?: string;\n}\nexport namespace AdditionalIncomeBvs {\n export type AdditionalIncomeSourcesBvs = 'algiiOderBuergergeld' | 'renteOderVersorgungsbezug' | 'selbststaendigeTaetigkeit' | 'weitereBeschaeftigung';\n export const AdditionalIncomeSourcesBvs = {\n AlgiiOderBuergergeld: 'algiiOderBuergergeld' as AdditionalIncomeSourcesBvs,\n RenteOderVersorgungsbezug: 'renteOderVersorgungsbezug' as AdditionalIncomeSourcesBvs,\n SelbststaendigeTaetigkeit: 'selbststaendigeTaetigkeit' as AdditionalIncomeSourcesBvs,\n WeitereBeschaeftigung: 'weitereBeschaeftigung' as AdditionalIncomeSourcesBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { PhoneBvs } from './phone';\n\nexport interface CallbackOrderBodyBvs {\n /**\n * Family name\n */\n familyName: string;\n /**\n * Given name\n */\n givenName: string;\n phone: PhoneBvs;\n /**\n * Period in which the user would like to be called by KKH service staff\n */\n callbackPeriod: CallbackOrderBodyBvs.CallbackPeriodBvs;\n /**\n * Salutation\n */\n salutation: CallbackOrderBodyBvs.SalutationBvs;\n}\nexport namespace CallbackOrderBodyBvs {\n export type CallbackPeriodBvs = 'montag' | 'dienstag' | 'mittwoch' | 'donnerstag' | 'freitag';\n export const CallbackPeriodBvs = {\n Montag: 'montag' as CallbackPeriodBvs,\n Dienstag: 'dienstag' as CallbackPeriodBvs,\n Mittwoch: 'mittwoch' as CallbackPeriodBvs,\n Donnerstag: 'donnerstag' as CallbackPeriodBvs,\n Freitag: 'freitag' as CallbackPeriodBvs\n };\n export type SalutationBvs = 'herr' | 'frau' | 'divers' | 'unbestimmt';\n export const SalutationBvs = {\n Herr: 'herr' as SalutationBvs,\n Frau: 'frau' as SalutationBvs,\n Divers: 'divers' as SalutationBvs,\n Unbestimmt: 'unbestimmt' as SalutationBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { AddressBvs } from './address';\nimport { AdditionalIncomeBvs } from './additional-income';\n\nexport interface EmployerInformationBvs {\n /**\n * True, if the user is involved in the management of the company; otherwise false\n */\n involvedInManagement: boolean;\n /**\n * True, if the user is related to the management of the employer; otherwise false\n */\n relatedToEmployer: boolean;\n /**\n * Company name of the employer or trainer\n */\n companyName: string;\n /**\n * Hiring date in the user\\'s employment contract\n */\n recruitmentDate: string;\n address: AddressBvs;\n /**\n * Total income divided into two levels above and below a threshold value\n */\n incomeLevel: EmployerInformationBvs.IncomeLevelBvs;\n additionalIncome: AdditionalIncomeBvs;\n}\nexport namespace EmployerInformationBvs {\n export type IncomeLevelBvs = 'level_1' | 'level_2';\n export const IncomeLevelBvs = {\n _1: 'level_1' as IncomeLevelBvs,\n _2: 'level_2' as IncomeLevelBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface InformationOnChangingHealthInsuranceBvs { \n /**\n * Date from which the user wishes to join the insurance\n */\n desiredStartDate: string;\n /**\n * Reason for joining or changing\n */\n reasonForJoining: InformationOnChangingHealthInsuranceBvs.ReasonForJoiningBvs;\n /**\n * Type of activity or income\n */\n typeOfIncome: InformationOnChangingHealthInsuranceBvs.TypeOfIncomeBvs;\n}\nexport namespace InformationOnChangingHealthInsuranceBvs {\n export type ReasonForJoiningBvs = 'abl_bind' | 'agw' | 'be_arlo' | 'be_selbst' | 'be_stud' | 'erh_zusatz' | 'sonstige';\n export const ReasonForJoiningBvs = {\n AblBind: 'abl_bind' as ReasonForJoiningBvs,\n Agw: 'agw' as ReasonForJoiningBvs,\n BeArlo: 'be_arlo' as ReasonForJoiningBvs,\n BeSelbst: 'be_selbst' as ReasonForJoiningBvs,\n BeStud: 'be_stud' as ReasonForJoiningBvs,\n ErhZusatz: 'erh_zusatz' as ReasonForJoiningBvs,\n Sonstige: 'sonstige' as ReasonForJoiningBvs\n };\n export type TypeOfIncomeBvs = 'algi' | 'algii' | 'ausbildung' | 'beschaeftigungsverhaeltnis' | 'rentenbezug' | 'selbststaendigkeit' | 'sonstiges' | 'studium';\n export const TypeOfIncomeBvs = {\n Algi: 'algi' as TypeOfIncomeBvs,\n Algii: 'algii' as TypeOfIncomeBvs,\n Ausbildung: 'ausbildung' as TypeOfIncomeBvs,\n Beschaeftigungsverhaeltnis: 'beschaeftigungsverhaeltnis' as TypeOfIncomeBvs,\n Rentenbezug: 'rentenbezug' as TypeOfIncomeBvs,\n Selbststaendigkeit: 'selbststaendigkeit' as TypeOfIncomeBvs,\n Sonstiges: 'sonstiges' as TypeOfIncomeBvs,\n Studium: 'studium' as TypeOfIncomeBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface NamePrefixBvs { \n /**\n * Name prefix\n */\n namePrefix?: NamePrefixBvs.NamePrefixBvs;\n /**\n * Individual name prefix. Must be specified if \\'sonstige\\' was selected in the namePrefix enum.\n */\n customNamePrefix?: string;\n}\nexport namespace NamePrefixBvs {\n export type NamePrefixBvs = 'auf' | 'auf_der' | 'bei' | 'den' | 'del' | 'der' | 'in_den' | 'in_der' | 'sonstige' | 'von' | 'von_und_zu' | 'zum' | 'zur' | 'unterm';\n export const NamePrefixBvs = {\n Auf: 'auf' as NamePrefixBvs,\n AufDer: 'auf_der' as NamePrefixBvs,\n Bei: 'bei' as NamePrefixBvs,\n Den: 'den' as NamePrefixBvs,\n Del: 'del' as NamePrefixBvs,\n Der: 'der' as NamePrefixBvs,\n InDen: 'in_den' as NamePrefixBvs,\n InDer: 'in_der' as NamePrefixBvs,\n Sonstige: 'sonstige' as NamePrefixBvs,\n Von: 'von' as NamePrefixBvs,\n VonUndZu: 'von_und_zu' as NamePrefixBvs,\n Zum: 'zum' as NamePrefixBvs,\n Zur: 'zur' as NamePrefixBvs,\n Unterm: 'unterm' as NamePrefixBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { HealthInsuranceNumberBvs } from './health-insurance-number';\nimport { NamePrefixBvs } from './name-prefix';\nimport { PensionInsuranceNumberBvs } from './pension-insurance-number';\nimport { AcademicDegreeBvs } from './academic-degree';\nimport { AddressBvs } from './address';\nimport { PhoneBvs } from './phone';\n\nexport interface PersonalInformationBvs {\n academicDegree?: AcademicDegreeBvs;\n /**\n * The user\\'s family name at birth\n */\n birthName: string;\n /**\n * Family name\n */\n familyName: string;\n /**\n * Given name\n */\n givenName: string;\n /**\n * Date of birth\n */\n dateOfBirth: string;\n /**\n * Mail address\n */\n email: string;\n /**\n * Place of birth\n */\n placeOfBirth: string;\n /**\n * Gender\n */\n gender?: PersonalInformationBvs.GenderBvs;\n maritalStatus: PersonalInformationBvs.MaritalStatusBvs;\n /**\n * Nationality\n */\n nationality: string;\n address?: AddressBvs;\n namePrefix?: NamePrefixBvs;\n phone?: PhoneBvs;\n pensionInsuranceNumber?: PensionInsuranceNumberBvs;\n healthInsuranceNumber?: HealthInsuranceNumberBvs;\n /**\n * the full name of the country, e.g. Afghanistan\n */\n country: string;\n}\nexport namespace PersonalInformationBvs {\n export type GenderBvs = 'MALE' | 'FEMALE' | 'DIVERS' | 'UNKNOWN';\n export const GenderBvs = {\n Male: 'MALE' as GenderBvs,\n Female: 'FEMALE' as GenderBvs,\n Divers: 'DIVERS' as GenderBvs,\n Unknown: 'UNKNOWN' as GenderBvs\n };\n export type MaritalStatusBvs = 'geschieden' | 'ledig' | 'verheiratet' | 'verpartnert' | 'verwitwet';\n export const MaritalStatusBvs = {\n Geschieden: 'geschieden' as MaritalStatusBvs,\n Ledig: 'ledig' as MaritalStatusBvs,\n Verheiratet: 'verheiratet' as MaritalStatusBvs,\n Verpartnert: 'verpartnert' as MaritalStatusBvs,\n Verwitwet: 'verwitwet' as MaritalStatusBvs\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface PreviousHealthInsuranceBvs { \n /**\n * Name of previous health insurance in Germany\n */\n previousHealthInsuranceName: string;\n /**\n * Date since when the German health insurance has been active\n */\n insuranceStartDate?: string;\n /**\n * Type of previous insurance\n */\n typeOfInsurance: PreviousHealthInsuranceBvs.TypeOfInsuranceBvs;\n}\nexport namespace PreviousHealthInsuranceBvs {\n export type TypeOfInsuranceBvs = 'fam' | 'frw' | 'nie' | 'pfl';\n export const TypeOfInsuranceBvs = {\n Fam: 'fam' as TypeOfInsuranceBvs,\n Frw: 'frw' as TypeOfInsuranceBvs,\n Nie: 'nie' as TypeOfInsuranceBvs,\n Pfl: 'pfl' as TypeOfInsuranceBvs\n };\n}\n\n\n", "import { ModuleWithProviders, NgModule, Optional, SkipSelf } from '@angular/core';\nimport { BvsConfiguration } from './configuration';\nimport { HttpClient } from '@angular/common/http';\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [],\n})\nexport class BvsApiModule {\n public static forRoot(configurationFactory: () => BvsConfiguration): ModuleWithProviders {\n return {\n ngModule: BvsApiModule,\n providers: [{ provide: BvsConfiguration, useFactory: configurationFactory }],\n };\n }\n\n constructor(@Optional() @SkipSelf() parentModule: BvsApiModule, @Optional() http: HttpClient) {\n if (parentModule) {\n throw new Error('BvsApiModule is already loaded. Import in your base AppModule only.');\n }\n if (!http) {\n throw new Error(\n 'You need to import the HttpClientModule in your AppModule! \\n' +\n 'See also https://github.com/angular/angular/issues/20575',\n );\n }\n }\n}\n", "import { HttpParameterCodec } from '@angular/common/http';\n\n/**\n * Custom HttpParameterCodec\n * Workaround for https://github.com/angular/angular/issues/18261\n */\nexport class CustomHttpParameterCodec implements HttpParameterCodec {\n encodeKey(k: string): string {\n return encodeURIComponent(k);\n }\n encodeValue(v: string): string {\n return encodeURIComponent(v);\n }\n decodeKey(k: string): string {\n return decodeURIComponent(k);\n }\n decodeValue(v: string): string {\n return decodeURIComponent(v);\n }\n}\n", "import { InjectionToken } from '@angular/core';\n\nexport const BASE_PATH = new InjectionToken('basePath');\nexport const COLLECTION_FORMATS = {\n csv: ',',\n tsv: ' ',\n ssv: ' ',\n pipes: '|',\n};\n", "import { HttpParameterCodec } from '@angular/common/http';\nimport { Param } from './param';\n\nexport interface BitgoConfigurationParameters {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Override the default method for encoding path parameters in various\n * styles.\n *

\n * See {@link README.md} for more details\n *

\n */\n encodeParam?: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials?: { [key: string]: string | (() => string | undefined) };\n}\n\nexport class BitgoConfiguration {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Encoding of various path parameter\n * styles.\n *

\n * See {@link README.md} for more details\n *

\n */\n encodeParam: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials: { [key: string]: string | (() => string | undefined) };\n\n constructor(configurationParameters: BitgoConfigurationParameters = {}) {\n this.apiKeys = configurationParameters.apiKeys;\n this.username = configurationParameters.username;\n this.password = configurationParameters.password;\n this.accessToken = configurationParameters.accessToken;\n this.basePath = configurationParameters.basePath;\n this.withCredentials = configurationParameters.withCredentials;\n this.encoder = configurationParameters.encoder;\n if (configurationParameters.encodeParam) {\n this.encodeParam = configurationParameters.encodeParam;\n } else {\n this.encodeParam = (param) => this.defaultEncodeParam(param);\n }\n if (configurationParameters.credentials) {\n this.credentials = configurationParameters.credentials;\n } else {\n this.credentials = {};\n }\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link BitgoConfiguration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or undefined if no selection could be made.\n */\n public selectHeaderContentType(contentTypes: string[]): string | undefined {\n if (contentTypes.length === 0) {\n return undefined;\n }\n\n const type = contentTypes.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link BitgoConfiguration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or undefined if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length === 0) {\n return undefined;\n }\n\n const type = accepts.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application/json|[^;/ \\t]+/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n\n public lookupCredential(key: string): string | undefined {\n const value = this.credentials[key];\n return typeof value === 'function' ? value() : value;\n }\n\n private defaultEncodeParam(param: Param): string {\n // This implementation exists as fallback for missing configuration\n // and for backwards compatibility to older typescript-angular generator versions.\n // It only works for the 'simple' parameter style.\n // Date-handling only works for the 'date-time' format.\n // All other styles and Date-formats are probably handled incorrectly.\n //\n // But: if that's all you need (i.e.: the most common use-case): no need for customization!\n\n const value =\n param.dataFormat === 'date-time' && param.value instanceof Date\n ? (param.value as Date).toISOString()\n : param.value;\n\n return encodeURIComponent(String(value));\n }\n}\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport {\n HttpClient,\n HttpContext,\n HttpEvent,\n HttpHeaders,\n HttpParameterCodec,\n HttpParams,\n HttpResponse,\n} from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { CallbackOrderBodyBitgo } from '../model/callback-order-body';\n// @ts-ignore\nimport { OnlineDeclarationOfMembershipBodyBitgo } from '../model/online-declaration-of-membership-body';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { BitgoConfiguration } from '../configuration';\nimport { BeitrittserklaerungBitgoServiceInterface } from './beitrittserklaerung.serviceInterface';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BeitrittserklaerungBitgoService implements BeitrittserklaerungBitgoServiceInterface {\n\n protected basePath = 'https://app-onbeit-mkk-dev.azurewebsites.net';\n public defaultHeaders = new HttpHeaders();\n public configuration = new BitgoConfiguration();\n public encoder: HttpParameterCodec;\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string|string[], @Optional() configuration: BitgoConfiguration) {\n if (configuration) {\n this.configuration = configuration;\n }\n if (typeof this.configuration.basePath !== 'string') {\n if (Array.isArray(basePath) && basePath.length > 0) {\n basePath = basePath[0];\n }\n\n if (typeof basePath !== 'string') {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n\n // @ts-ignore\n private addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams {\n if (typeof value === \"object\" && value instanceof Date === false) {\n httpParams = this.addToHttpParamsRecursive(httpParams, value);\n } else {\n httpParams = this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return httpParams;\n }\n\n private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams {\n if (value == null) {\n return httpParams;\n }\n\n if (typeof value === \"object\") {\n if (Array.isArray(value)) {\n (value as any[]).forEach( elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(key, (value as Date).toISOString().substring(0, 10));\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach( k => httpParams = this.addToHttpParamsRecursive(\n httpParams, value[k], key != null ? `${key}.${k}` : k));\n }\n } else if (key != null) {\n httpParams = httpParams.append(key, value);\n } else {\n throw Error(\"key may not be null if value is not object or array\");\n }\n return httpParams;\n }\n\n /**\n * Submits the declaration of membership\n * Submission of a declaration of membership for future KKH customers\n * @param userType User type identification: * \\'GL\\' - Gebietsleiter * \\'KD\\' - Kunde über Vetriebspartner * \\'VP\\' - Vermittler * \\'KN\\' - Kunde Default value: \\'KN\\'\n * @param onlineDeclarationOfMembershipBodyBitgo\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBitgo?: OnlineDeclarationOfMembershipBodyBitgo, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable;\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBitgo?: OnlineDeclarationOfMembershipBodyBitgo, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBitgo?: OnlineDeclarationOfMembershipBodyBitgo, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postOnlineBeitrittserklaerung(userType: 'GL' | 'KD' | 'VP' | 'KN', onlineDeclarationOfMembershipBodyBitgo?: OnlineDeclarationOfMembershipBodyBitgo, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable {\n if (userType === null || userType === undefined) {\n throw new Error('Required parameter userType was null or undefined when calling postOnlineBeitrittserklaerung.');\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\n 'application/pdf'\n ];\n localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n let localVarHttpContext: HttpContext | undefined = options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined = options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let localVarPath = `/online-beitrittserklaerung/${this.configuration.encodeParam({name: \"userType\", value: userType, in: \"path\", style: \"simple\", explode: false, dataType: \"'GL' | 'KD' | 'VP' | 'KN'\", dataFormat: undefined})}`;\n return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: onlineDeclarationOfMembershipBodyBitgo,\n responseType: \"blob\",\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Submits a callback order to KKH service staff\n * Submits a callback order to KKH service staff so that a customer is called back at the desired time\n * @param callbackOrderBodyBitgo\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public postRueckrufservice(callbackOrderBodyBitgo?: CallbackOrderBodyBitgo, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable;\n public postRueckrufservice(callbackOrderBodyBitgo?: CallbackOrderBodyBitgo, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postRueckrufservice(callbackOrderBodyBitgo?: CallbackOrderBodyBitgo, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable>;\n public postRueckrufservice(callbackOrderBodyBitgo?: CallbackOrderBodyBitgo, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/pdf', context?: HttpContext, transferCache?: boolean}): Observable {\n\n let localVarHeaders = this.defaultHeaders;\n\n let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;\n if (localVarHttpHeaderAcceptSelected === undefined) {\n // to determine the Accept header\n const httpHeaderAccepts: string[] = [\n 'application/pdf'\n ];\n localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n }\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n let localVarHttpContext: HttpContext | undefined = options && options.context;\n if (localVarHttpContext === undefined) {\n localVarHttpContext = new HttpContext();\n }\n\n let localVarTransferCache: boolean | undefined = options && options.transferCache;\n if (localVarTransferCache === undefined) {\n localVarTransferCache = true;\n }\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let localVarPath = `/rueckrufservice`;\n return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: callbackOrderBodyBitgo,\n responseType: \"blob\",\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface AcademicDegreeBitgo { \n /**\n * Title of the highest academic degree\n */\n academicDegree?: AcademicDegreeBitgo.AcademicDegreeBitgo;\n /**\n * Individual academic degree. Must be specified if \\'sonstige\\' was selected in the academicDegree enum.\n */\n customAcademicDegree?: string;\n}\nexport namespace AcademicDegreeBitgo {\n export type AcademicDegreeBitgo = 'diplom' | 'magister' | 'doktor' | 'professor' | 'professor_doktor' | 'doktor_doktor' | 'sonstige';\n export const AcademicDegreeBitgo = {\n Diplom: 'diplom' as AcademicDegreeBitgo,\n Magister: 'magister' as AcademicDegreeBitgo,\n Doktor: 'doktor' as AcademicDegreeBitgo,\n Professor: 'professor' as AcademicDegreeBitgo,\n ProfessorDoktor: 'professor_doktor' as AcademicDegreeBitgo,\n DoktorDoktor: 'doktor_doktor' as AcademicDegreeBitgo,\n Sonstige: 'sonstige' as AcademicDegreeBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface AdditionalIncomeBitgo { \n /**\n * True, if at least one secondary source of income exists; otherwise false\n */\n existing: boolean;\n additionalIncomeSources?: Array;\n /**\n * Date on which self-employment started\n */\n startDateOfSelfEmployment?: string;\n}\nexport namespace AdditionalIncomeBitgo {\n export type AdditionalIncomeSourcesBitgo = 'algiiOderBuergergeld' | 'renteOderVersorgungsbezug' | 'selbststaendigeTaetigkeit' | 'weitereBeschaeftigung';\n export const AdditionalIncomeSourcesBitgo = {\n AlgiiOderBuergergeld: 'algiiOderBuergergeld' as AdditionalIncomeSourcesBitgo,\n RenteOderVersorgungsbezug: 'renteOderVersorgungsbezug' as AdditionalIncomeSourcesBitgo,\n SelbststaendigeTaetigkeit: 'selbststaendigeTaetigkeit' as AdditionalIncomeSourcesBitgo,\n WeitereBeschaeftigung: 'weitereBeschaeftigung' as AdditionalIncomeSourcesBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { PhoneBitgo } from './phone';\n\nexport interface CallbackOrderBodyBitgo {\n /**\n * Family name\n */\n familyName: string;\n /**\n * Given name\n */\n givenName: string;\n phone: PhoneBitgo;\n /**\n * Period in which the user would like to be called by KKH service staff\n */\n callbackPeriod: CallbackOrderBodyBitgo.CallbackPeriodBitgo;\n /**\n * Salutation\n */\n salutation: CallbackOrderBodyBitgo.SalutationBitgo;\n}\nexport namespace CallbackOrderBodyBitgo {\n export type CallbackPeriodBitgo = 'montag' | 'dienstag' | 'mittwoch' | 'donnerstag' | 'freitag';\n export const CallbackPeriodBitgo = {\n Montag: 'montag' as CallbackPeriodBitgo,\n Dienstag: 'dienstag' as CallbackPeriodBitgo,\n Mittwoch: 'mittwoch' as CallbackPeriodBitgo,\n Donnerstag: 'donnerstag' as CallbackPeriodBitgo,\n Freitag: 'freitag' as CallbackPeriodBitgo\n };\n export type SalutationBitgo = 'herr' | 'frau' | 'divers' | 'unbestimmt';\n export const SalutationBitgo = {\n Herr: 'herr' as SalutationBitgo,\n Frau: 'frau' as SalutationBitgo,\n Divers: 'divers' as SalutationBitgo,\n Unbestimmt: 'unbestimmt' as SalutationBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { AdditionalIncomeBitgo } from './additional-income';\nimport { AddressBitgo } from './address';\n\nexport interface EmployerInformationBitgo {\n /**\n * True, if the user is involved in the management of the company; otherwise false\n */\n involvedInManagement: boolean;\n /**\n * True, if the user is related to the management of the employer; otherwise false\n */\n relatedToEmployer: boolean;\n /**\n * Company name of the employer or trainer\n */\n companyName: string;\n /**\n * Hiring date in the user\\'s employment contract\n */\n recruitmentDate: string;\n address: AddressBitgo;\n /**\n * Total income divided into two levels above and below a threshold value\n */\n incomeLevel: EmployerInformationBitgo.IncomeLevelBitgo;\n additionalIncome: AdditionalIncomeBitgo;\n}\nexport namespace EmployerInformationBitgo {\n export type IncomeLevelBitgo = 'level_1' | 'level_2';\n export const IncomeLevelBitgo = {\n _1: 'level_1' as IncomeLevelBitgo,\n _2: 'level_2' as IncomeLevelBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface InformationOnChangingHealthInsuranceBitgo { \n /**\n * Date from which the user wishes to join the insurance\n */\n desiredStartDate: string;\n /**\n * Reason for joining or changing\n */\n reasonForJoining: InformationOnChangingHealthInsuranceBitgo.ReasonForJoiningBitgo;\n /**\n * Type of activity or income\n */\n typeOfIncome: InformationOnChangingHealthInsuranceBitgo.TypeOfIncomeBitgo;\n}\nexport namespace InformationOnChangingHealthInsuranceBitgo {\n export type ReasonForJoiningBitgo = 'abl_bind' | 'agw' | 'be_arlo' | 'be_selbst' | 'be_stud' | 'erh_zusatz' | 'sonstige';\n export const ReasonForJoiningBitgo = {\n AblBind: 'abl_bind' as ReasonForJoiningBitgo,\n Agw: 'agw' as ReasonForJoiningBitgo,\n BeArlo: 'be_arlo' as ReasonForJoiningBitgo,\n BeSelbst: 'be_selbst' as ReasonForJoiningBitgo,\n BeStud: 'be_stud' as ReasonForJoiningBitgo,\n ErhZusatz: 'erh_zusatz' as ReasonForJoiningBitgo,\n Sonstige: 'sonstige' as ReasonForJoiningBitgo\n };\n export type TypeOfIncomeBitgo = 'algi' | 'algii' | 'ausbildung' | 'beschaeftigungsverhaeltnis' | 'rentenbezug' | 'selbststaendigkeit' | 'sonstiges' | 'studium';\n export const TypeOfIncomeBitgo = {\n Algi: 'algi' as TypeOfIncomeBitgo,\n Algii: 'algii' as TypeOfIncomeBitgo,\n Ausbildung: 'ausbildung' as TypeOfIncomeBitgo,\n Beschaeftigungsverhaeltnis: 'beschaeftigungsverhaeltnis' as TypeOfIncomeBitgo,\n Rentenbezug: 'rentenbezug' as TypeOfIncomeBitgo,\n Selbststaendigkeit: 'selbststaendigkeit' as TypeOfIncomeBitgo,\n Sonstiges: 'sonstiges' as TypeOfIncomeBitgo,\n Studium: 'studium' as TypeOfIncomeBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface NamePrefixBitgo { \n /**\n * Name prefix\n */\n namePrefix?: NamePrefixBitgo.NamePrefixBitgo;\n /**\n * Individual name prefix. Must be specified if \\'sonstige\\' was selected in the namePrefix enum.\n */\n customNamePrefix?: string;\n}\nexport namespace NamePrefixBitgo {\n export type NamePrefixBitgo = 'auf' | 'auf_der' | 'bei' | 'den' | 'del' | 'der' | 'in_den' | 'in_der' | 'sonstige' | 'von' | 'von_und_zu' | 'zum' | 'zur' | 'unterm';\n export const NamePrefixBitgo = {\n Auf: 'auf' as NamePrefixBitgo,\n AufDer: 'auf_der' as NamePrefixBitgo,\n Bei: 'bei' as NamePrefixBitgo,\n Den: 'den' as NamePrefixBitgo,\n Del: 'del' as NamePrefixBitgo,\n Der: 'der' as NamePrefixBitgo,\n InDen: 'in_den' as NamePrefixBitgo,\n InDer: 'in_der' as NamePrefixBitgo,\n Sonstige: 'sonstige' as NamePrefixBitgo,\n Von: 'von' as NamePrefixBitgo,\n VonUndZu: 'von_und_zu' as NamePrefixBitgo,\n Zum: 'zum' as NamePrefixBitgo,\n Zur: 'zur' as NamePrefixBitgo,\n Unterm: 'unterm' as NamePrefixBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { NamePrefixBitgo } from './name-prefix';\nimport { PensionInsuranceNumberBitgo } from './pension-insurance-number';\nimport { PhoneBitgo } from './phone';\nimport { HealthInsuranceNumberBitgo } from './health-insurance-number';\nimport { AcademicDegreeBitgo } from './academic-degree';\nimport { AddressBitgo } from './address';\n\nexport interface PersonalInformationBitgo {\n academicDegree?: AcademicDegreeBitgo;\n /**\n * The user\\'s family name at birth\n */\n birthName: string;\n /**\n * Family name\n */\n familyName: string;\n /**\n * Given name\n */\n givenName: string;\n /**\n * Date of birth\n */\n dateOfBirth: string;\n /**\n * Mail address\n */\n email: string;\n /**\n * Place of birth\n */\n placeOfBirth: string;\n /**\n * Gender\n */\n gender?: PersonalInformationBitgo.GenderBitgo;\n maritalStatus: PersonalInformationBitgo.MaritalStatusBitgo;\n /**\n * Nationality\n */\n nationality: string;\n address?: AddressBitgo;\n namePrefix?: NamePrefixBitgo;\n phone?: PhoneBitgo;\n pensionInsuranceNumber?: PensionInsuranceNumberBitgo;\n healthInsuranceNumber?: HealthInsuranceNumberBitgo;\n /**\n * the full name of the country, e.g. Afghanistan\n */\n country: string;\n}\nexport namespace PersonalInformationBitgo {\n export type GenderBitgo = 'MALE' | 'FEMALE' | 'DIVERS' | 'UNKNOWN';\n export const GenderBitgo = {\n Male: 'MALE' as GenderBitgo,\n Female: 'FEMALE' as GenderBitgo,\n Divers: 'DIVERS' as GenderBitgo,\n Unknown: 'UNKNOWN' as GenderBitgo\n };\n export type MaritalStatusBitgo = 'geschieden' | 'ledig' | 'verheiratet' | 'verpartnert' | 'verwitwet';\n export const MaritalStatusBitgo = {\n Geschieden: 'geschieden' as MaritalStatusBitgo,\n Ledig: 'ledig' as MaritalStatusBitgo,\n Verheiratet: 'verheiratet' as MaritalStatusBitgo,\n Verpartnert: 'verpartnert' as MaritalStatusBitgo,\n Verwitwet: 'verwitwet' as MaritalStatusBitgo\n };\n}\n\n\n", "/**\n * KKH Online-Beitrittserklaerung\n * This is a service with which a user of the KKH online services can submit a declaration of membership.\n *\n * The version of the OpenAPI document: #{placeholderVersion}#\n * Contact: online@kkh.de\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface PreviousHealthInsuranceBitgo { \n /**\n * Name of previous health insurance in Germany\n */\n previousHealthInsuranceName: string;\n /**\n * Date since when the German health insurance has been active\n */\n insuranceStartDate?: string;\n /**\n * Type of previous insurance\n */\n typeOfInsurance: PreviousHealthInsuranceBitgo.TypeOfInsuranceBitgo;\n}\nexport namespace PreviousHealthInsuranceBitgo {\n export type TypeOfInsuranceBitgo = 'fam' | 'frw' | 'nie' | 'pfl';\n export const TypeOfInsuranceBitgo = {\n Fam: 'fam' as TypeOfInsuranceBitgo,\n Frw: 'frw' as TypeOfInsuranceBitgo,\n Nie: 'nie' as TypeOfInsuranceBitgo,\n Pfl: 'pfl' as TypeOfInsuranceBitgo\n };\n}\n\n\n", "import { ModuleWithProviders, NgModule, Optional, SkipSelf } from '@angular/core';\nimport { BitgoConfiguration } from './configuration';\nimport { HttpClient } from '@angular/common/http';\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [],\n})\nexport class BitgoApiModule {\n public static forRoot(configurationFactory: () => BitgoConfiguration): ModuleWithProviders {\n return {\n ngModule: BitgoApiModule,\n providers: [{ provide: BitgoConfiguration, useFactory: configurationFactory }],\n };\n }\n\n constructor(@Optional() @SkipSelf() parentModule: BitgoApiModule, @Optional() http: HttpClient) {\n if (parentModule) {\n throw new Error('BitgoApiModule is already loaded. Import in your base AppModule only.');\n }\n if (!http) {\n throw new Error(\n 'You need to import the HttpClientModule in your AppModule! \\n' +\n 'See also https://github.com/angular/angular/issues/20575',\n );\n }\n }\n}\n", "import { ModuleWithProviders, NgModule } from '@angular/core';\nimport { MkkEnvironment } from '@mkk/env';\nimport { BASE_PATH as BASE_PATH_BVS, BvsApiModule } from './schemas/bvs';\nimport { BASE_PATH as BASE_PATH_BITGO, BitgoApiModule } from './schemas/bitgo';\n\nfunction generateApiPath(path: string, env?: MkkEnvironment) {\n return `${env?.apiUrl ?? ''}/${path}`;\n}\n\n@NgModule({\n imports: [BitgoApiModule, BvsApiModule],\n})\nexport class OnlineBeApiModule {\n public static forRoot(env?: MkkEnvironment): ModuleWithProviders {\n return {\n ngModule: OnlineBeApiModule,\n providers: [\n {\n provide: BASE_PATH_BVS,\n useFactory: () => generateApiPath('onbeit/v1', env),\n },\n { provide: BASE_PATH_BITGO, useFactory: () => generateApiPath('onbeit/v3', env) },\n ],\n };\n }\n}\n"], "mappings": "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", "names": ["AdditionalIncomeBvs", "CallbackOrderBodyBvs", "EmployerInformationBvs", "InformationOnChangingHealthInsuranceBvs", "PersonalInformationBvs", "PreviousHealthInsuranceBvs", "CustomHttpParameterCodec", "BASE_PATH", "CustomHttpParameterCodec", "BASE_PATH", "AdditionalIncomeBitgo", "CallbackOrderBodyBitgo", "EmployerInformationBitgo", "InformationOnChangingHealthInsuranceBitgo", "PersonalInformationBitgo", "PreviousHealthInsuranceBitgo", "BASE_PATH"] }