{"version":3,"sources":["node_modules/@vendasta/atlas/fesm2020/vendasta-atlas.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { Injectable } from '@angular/core';\nimport * as i1 from '@angular/common/http';\nimport { HttpHeaders } from '@angular/common/http';\nimport { map } from 'rxjs/operators';\nconst environment = (window ? window['environment'] : 'prod') ?? 'prod';\nconst hostMap = {\n 'local': 'atlas-api.vendasta-local.com',\n 'test': '',\n 'demo': 'atlas-api-demo.apigateway.co',\n 'prod': 'atlas-api-prod.apigateway.co',\n 'production': 'atlas-api-prod.apigateway.co'\n};\nlet HostService = /*#__PURE__*/(() => {\n class HostService {\n get host() {\n return hostMap[environment.toLowerCase()];\n }\n get hostWithScheme() {\n return 'https://' + this.host;\n }\n }\n HostService.ɵfac = function HostService_Factory(t) {\n return new (t || HostService)();\n };\n HostService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: HostService,\n factory: HostService.ɵfac,\n providedIn: 'root'\n });\n return HostService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Enums.\n// *********************************\nvar UITheme = /*#__PURE__*/function (UITheme) {\n UITheme[UITheme[\"UI_THEME_DARK\"] = 0] = \"UI_THEME_DARK\";\n UITheme[UITheme[\"UI_THEME_LIGHT\"] = 1] = \"UI_THEME_LIGHT\";\n return UITheme;\n}(UITheme || {});\nvar UserViewType = /*#__PURE__*/function (UserViewType) {\n UserViewType[UserViewType[\"USER_VIEW_TYPE_SMB\"] = 0] = \"USER_VIEW_TYPE_SMB\";\n UserViewType[UserViewType[\"USER_VIEW_TYPE_ADMIN\"] = 1] = \"USER_VIEW_TYPE_ADMIN\";\n return UserViewType;\n}(UserViewType || {});\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Enums Index.\n// *********************************\n\nfunction enumStringToValue$1(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass Access {\n static fromProto(proto) {\n let m = new Access();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.scope !== 'undefined') {\n toReturn['scope'] = this.scope;\n }\n if (typeof this.public !== 'undefined') {\n toReturn['public'] = this.public;\n }\n return toReturn;\n }\n}\nfunction enumStringToValue(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass AccountGroup {\n static fromProto(proto) {\n let m = new AccountGroup();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.name !== 'undefined') {\n toReturn['name'] = this.name;\n }\n if (typeof this.address !== 'undefined') {\n toReturn['address'] = this.address;\n }\n if (typeof this.activatedProductIds !== 'undefined') {\n toReturn['activatedProductIds'] = this.activatedProductIds;\n }\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n return toReturn;\n }\n}\nclass GetLocationsRequestAccountGroups {\n static fromProto(proto) {\n let m = new GetLocationsRequestAccountGroups();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupIds !== 'undefined') {\n toReturn['accountGroupIds'] = this.accountGroupIds;\n }\n return toReturn;\n }\n}\nclass AssociatedLocationIDs {\n static fromProto(proto) {\n let m = new AssociatedLocationIDs();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupIds !== 'undefined') {\n toReturn['accountGroupIds'] = this.accountGroupIds;\n }\n if (typeof this.groupPaths !== 'undefined') {\n toReturn['groupPaths'] = this.groupPaths;\n }\n return toReturn;\n }\n}\nclass Brand {\n static fromProto(proto) {\n let m = new Brand();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.name !== 'undefined') {\n toReturn['name'] = this.name;\n }\n if (typeof this.pathNodes !== 'undefined') {\n toReturn['pathNodes'] = this.pathNodes;\n }\n if (typeof this.hasAccess !== 'undefined') {\n toReturn['hasAccess'] = this.hasAccess;\n }\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n return toReturn;\n }\n}\nclass Branding {\n static fromProto(proto) {\n let m = new Branding();\n m = Object.assign(m, proto);\n if (proto.theme) {\n m.theme = enumStringToValue(UITheme, proto.theme);\n }\n if (proto.theming) {\n m.theming = Theming.fromProto(proto.theming);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.theme !== 'undefined') {\n toReturn['theme'] = this.theme;\n }\n if (typeof this.logoUrl !== 'undefined') {\n toReturn['logoUrl'] = this.logoUrl;\n }\n if (typeof this.partnerName !== 'undefined') {\n toReturn['partnerName'] = this.partnerName;\n }\n if (typeof this.centerName !== 'undefined') {\n toReturn['centerName'] = this.centerName;\n }\n if (typeof this.theming !== 'undefined' && this.theming !== null) {\n toReturn['theming'] = 'toApiJson' in this.theming ? this.theming.toApiJson() : this.theming;\n }\n if (typeof this.cobrandingLogoUrl !== 'undefined') {\n toReturn['cobrandingLogoUrl'] = this.cobrandingLogoUrl;\n }\n if (typeof this.marketName !== 'undefined') {\n toReturn['marketName'] = this.marketName;\n }\n return toReturn;\n }\n}\nclass CenterNavigationItem {\n static fromProto(proto) {\n let m = new CenterNavigationItem();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.name !== 'undefined') {\n toReturn['name'] = this.name;\n }\n if (typeof this.entryUrl !== 'undefined') {\n toReturn['entryUrl'] = this.entryUrl;\n }\n if (typeof this.centerId !== 'undefined') {\n toReturn['centerId'] = this.centerId;\n }\n return toReturn;\n }\n}\nclass ContactUsRequest {\n static fromProto(proto) {\n let m = new ContactUsRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.message !== 'undefined') {\n toReturn['message'] = this.message;\n }\n return toReturn;\n }\n}\nclass DropdownItem {\n static fromProto(proto) {\n let m = new DropdownItem();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n if (typeof this.path !== 'undefined') {\n toReturn['path'] = this.path;\n }\n if (typeof this.translationId !== 'undefined') {\n toReturn['translationId'] = this.translationId;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n return toReturn;\n }\n}\nclass GetDataRequest {\n static fromProto(proto) {\n let m = new GetDataRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n if (typeof this.marketId !== 'undefined') {\n toReturn['marketId'] = this.marketId;\n }\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.signOutNextUrl !== 'undefined') {\n toReturn['signOutNextUrl'] = this.signOutNextUrl;\n }\n if (typeof this.groupPath !== 'undefined') {\n toReturn['groupPath'] = this.groupPath;\n }\n return toReturn;\n }\n}\nclass GetDataResponse {\n static fromProto(proto) {\n let m = new GetDataResponse();\n m = Object.assign(m, proto);\n if (proto.user) {\n m.user = proto.user.map(UserNavigationItem.fromProto);\n }\n if (proto.centers) {\n m.centers = proto.centers.map(CenterNavigationItem.fromProto);\n }\n if (proto.theme) {\n m.theme = enumStringToValue(UITheme, proto.theme);\n }\n if (proto.theming) {\n m.theming = Theming.fromProto(proto.theming);\n }\n if (proto.locationData) {\n m.locationData = LocationData.fromProto(proto.locationData);\n }\n if (proto.userSwitcherData) {\n m.userSwitcherData = proto.userSwitcherData.map(UserSwitcherData.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.user !== 'undefined' && this.user !== null) {\n toReturn['user'] = 'toApiJson' in this.user ? this.user.toApiJson() : this.user;\n }\n if (typeof this.centers !== 'undefined' && this.centers !== null) {\n toReturn['centers'] = 'toApiJson' in this.centers ? this.centers.toApiJson() : this.centers;\n }\n if (typeof this.username !== 'undefined') {\n toReturn['username'] = this.username;\n }\n if (typeof this.email !== 'undefined') {\n toReturn['email'] = this.email;\n }\n if (typeof this.signOutUrl !== 'undefined') {\n toReturn['signOutUrl'] = this.signOutUrl;\n }\n if (typeof this.theme !== 'undefined') {\n toReturn['theme'] = this.theme;\n }\n if (typeof this.language !== 'undefined') {\n toReturn['language'] = this.language;\n }\n if (typeof this.theming !== 'undefined' && this.theming !== null) {\n toReturn['theming'] = 'toApiJson' in this.theming ? this.theming.toApiJson() : this.theming;\n }\n if (typeof this.notificationsEnabled !== 'undefined') {\n toReturn['notificationsEnabled'] = this.notificationsEnabled;\n }\n if (typeof this.userId !== 'undefined') {\n toReturn['userId'] = this.userId;\n }\n if (typeof this.locationData !== 'undefined' && this.locationData !== null) {\n toReturn['locationData'] = 'toApiJson' in this.locationData ? this.locationData.toApiJson() : this.locationData;\n }\n if (typeof this.impersonateeUsername !== 'undefined') {\n toReturn['impersonateeUsername'] = this.impersonateeUsername;\n }\n if (typeof this.emailVerified !== 'undefined') {\n toReturn['emailVerified'] = this.emailVerified;\n }\n if (typeof this.userSwitcherData !== 'undefined' && this.userSwitcherData !== null) {\n toReturn['userSwitcherData'] = 'toApiJson' in this.userSwitcherData ? this.userSwitcherData.toApiJson() : this.userSwitcherData;\n }\n if (typeof this.partnerName !== 'undefined') {\n toReturn['partnerName'] = this.partnerName;\n }\n return toReturn;\n }\n}\nclass GetDefaultLocationRequest {\n static fromProto(proto) {\n let m = new GetDefaultLocationRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n return toReturn;\n }\n}\nclass GetDefaultLocationResponse {\n static fromProto(proto) {\n let m = new GetDefaultLocationResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.groupId !== 'undefined') {\n toReturn['groupId'] = this.groupId;\n }\n return toReturn;\n }\n}\nclass GetLanguageRequest {\n static fromProto(proto) {\n let m = new GetLanguageRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n return toReturn;\n }\n}\nclass GetLanguageResponse {\n static fromProto(proto) {\n let m = new GetLanguageResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.language !== 'undefined') {\n toReturn['language'] = this.language;\n }\n return toReturn;\n }\n}\nclass GetLocationsRequest {\n static fromProto(proto) {\n let m = new GetLocationsRequest();\n m = Object.assign(m, proto);\n if (proto.accountGroups) {\n m.accountGroups = GetLocationsRequestAccountGroups.fromProto(proto.accountGroups);\n }\n if (proto.groups) {\n m.groups = GetLocationsRequestGroups.fromProto(proto.groups);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroups !== 'undefined' && this.accountGroups !== null) {\n toReturn['accountGroups'] = 'toApiJson' in this.accountGroups ? this.accountGroups.toApiJson() : this.accountGroups;\n }\n if (typeof this.groups !== 'undefined' && this.groups !== null) {\n toReturn['groups'] = 'toApiJson' in this.groups ? this.groups.toApiJson() : this.groups;\n }\n return toReturn;\n }\n}\nclass GetLocationsResponse {\n static fromProto(proto) {\n let m = new GetLocationsResponse();\n m = Object.assign(m, proto);\n if (proto.locations) {\n m.locations = proto.locations.map(Location.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.locations !== 'undefined' && this.locations !== null) {\n toReturn['locations'] = 'toApiJson' in this.locations ? this.locations.toApiJson() : this.locations;\n }\n return toReturn;\n }\n}\nclass GetNavigationDataRequest {\n static fromProto(proto) {\n let m = new GetNavigationDataRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.groupPath !== 'undefined') {\n toReturn['groupPath'] = this.groupPath;\n }\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n if (typeof this.marketId !== 'undefined') {\n toReturn['marketId'] = this.marketId;\n }\n return toReturn;\n }\n}\nclass GetNavigationDataResponse {\n static fromProto(proto) {\n let m = new GetNavigationDataResponse();\n m = Object.assign(m, proto);\n if (proto.branding) {\n m.branding = Branding.fromProto(proto.branding);\n }\n if (proto.salesInfo) {\n m.salesInfo = SalesInfo.fromProto(proto.salesInfo);\n }\n if (proto.pinnedItems) {\n m.pinnedItems = proto.pinnedItems.map(PinnedItem.fromProto);\n }\n if (proto.associatedLocationIds) {\n m.associatedLocationIds = AssociatedLocationIDs.fromProto(proto.associatedLocationIds);\n }\n if (proto.dropdownItems) {\n m.dropdownItems = proto.dropdownItems.map(DropdownItem.fromProto);\n }\n if (proto.userView) {\n m.userView = enumStringToValue(UserViewType, proto.userView);\n }\n if (proto.retentionConfig) {\n m.retentionConfig = RetentionConfig.fromProto(proto.retentionConfig);\n }\n if (proto.totalLocations) {\n m.totalLocations = TotalLocations.fromProto(proto.totalLocations);\n }\n if (proto.navigationItems) {\n m.navigationItems = proto.navigationItems.map(SideNavigationItem.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.branding !== 'undefined' && this.branding !== null) {\n toReturn['branding'] = 'toApiJson' in this.branding ? this.branding.toApiJson() : this.branding;\n }\n if (typeof this.salesInfo !== 'undefined' && this.salesInfo !== null) {\n toReturn['salesInfo'] = 'toApiJson' in this.salesInfo ? this.salesInfo.toApiJson() : this.salesInfo;\n }\n if (typeof this.pinnedItems !== 'undefined' && this.pinnedItems !== null) {\n toReturn['pinnedItems'] = 'toApiJson' in this.pinnedItems ? this.pinnedItems.toApiJson() : this.pinnedItems;\n }\n if (typeof this.associatedLocationIds !== 'undefined' && this.associatedLocationIds !== null) {\n toReturn['associatedLocationIds'] = 'toApiJson' in this.associatedLocationIds ? this.associatedLocationIds.toApiJson() : this.associatedLocationIds;\n }\n if (typeof this.defaultLocation !== 'undefined') {\n toReturn['defaultLocation'] = this.defaultLocation;\n }\n if (typeof this.language !== 'undefined') {\n toReturn['language'] = this.language;\n }\n if (typeof this.dropdownItems !== 'undefined' && this.dropdownItems !== null) {\n toReturn['dropdownItems'] = 'toApiJson' in this.dropdownItems ? this.dropdownItems.toApiJson() : this.dropdownItems;\n }\n if (typeof this.currentBrandName !== 'undefined') {\n toReturn['currentBrandName'] = this.currentBrandName;\n }\n if (typeof this.userView !== 'undefined') {\n toReturn['userView'] = this.userView;\n }\n if (typeof this.retentionConfig !== 'undefined' && this.retentionConfig !== null) {\n toReturn['retentionConfig'] = 'toApiJson' in this.retentionConfig ? this.retentionConfig.toApiJson() : this.retentionConfig;\n }\n if (typeof this.totalLocations !== 'undefined' && this.totalLocations !== null) {\n toReturn['totalLocations'] = 'toApiJson' in this.totalLocations ? this.totalLocations.toApiJson() : this.totalLocations;\n }\n if (typeof this.userId !== 'undefined') {\n toReturn['userId'] = this.userId;\n }\n if (typeof this.businessAppBranding !== 'undefined') {\n toReturn['businessAppBranding'] = this.businessAppBranding;\n }\n if (typeof this.disableBusinessNav !== 'undefined') {\n toReturn['disableBusinessNav'] = this.disableBusinessNav;\n }\n if (typeof this.navigationItems !== 'undefined' && this.navigationItems !== null) {\n toReturn['navigationItems'] = 'toApiJson' in this.navigationItems ? this.navigationItems.toApiJson() : this.navigationItems;\n }\n return toReturn;\n }\n}\nclass GetPinsRequest {\n static fromProto(proto) {\n let m = new GetPinsRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.identifier !== 'undefined') {\n toReturn['identifier'] = this.identifier;\n }\n return toReturn;\n }\n}\nclass GetPinsResponse {\n static fromProto(proto) {\n let m = new GetPinsResponse();\n m = Object.assign(m, proto);\n if (proto.items) {\n m.items = proto.items.map(PinnedItem.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.items !== 'undefined' && this.items !== null) {\n toReturn['items'] = 'toApiJson' in this.items ? this.items.toApiJson() : this.items;\n }\n return toReturn;\n }\n}\nclass GetSalesInfoRequest {\n static fromProto(proto) {\n let m = new GetSalesInfoRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.groupPath !== 'undefined') {\n toReturn['groupPath'] = this.groupPath;\n }\n return toReturn;\n }\n}\nclass GetSalesInfoResponse {\n static fromProto(proto) {\n let m = new GetSalesInfoResponse();\n m = Object.assign(m, proto);\n if (proto.salesInfo) {\n m.salesInfo = SalesInfo.fromProto(proto.salesInfo);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.salesInfo !== 'undefined' && this.salesInfo !== null) {\n toReturn['salesInfo'] = 'toApiJson' in this.salesInfo ? this.salesInfo.toApiJson() : this.salesInfo;\n }\n return toReturn;\n }\n}\nclass GetLocationsRequestGroups {\n static fromProto(proto) {\n let m = new GetLocationsRequestGroups();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.groupPaths !== 'undefined') {\n toReturn['groupPaths'] = this.groupPaths;\n }\n return toReturn;\n }\n}\nclass ListElevatedLocationsRequest {\n static fromProto(proto) {\n let m = new ListElevatedLocationsRequest();\n m = Object.assign(m, proto);\n if (proto.pageSize) {\n m.pageSize = parseInt(proto.pageSize, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n if (typeof this.cursor !== 'undefined') {\n toReturn['cursor'] = this.cursor;\n }\n if (typeof this.pageSize !== 'undefined') {\n toReturn['pageSize'] = this.pageSize;\n }\n if (typeof this.search !== 'undefined') {\n toReturn['search'] = this.search;\n }\n if (typeof this.accountGroups !== 'undefined') {\n toReturn['accountGroups'] = this.accountGroups;\n }\n if (typeof this.brands !== 'undefined') {\n toReturn['brands'] = this.brands;\n }\n return toReturn;\n }\n}\nclass ListElevatedLocationsResponse {\n static fromProto(proto) {\n let m = new ListElevatedLocationsResponse();\n m = Object.assign(m, proto);\n if (proto.locations) {\n m.locations = proto.locations.map(Location.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.locations !== 'undefined' && this.locations !== null) {\n toReturn['locations'] = 'toApiJson' in this.locations ? this.locations.toApiJson() : this.locations;\n }\n if (typeof this.cursor !== 'undefined') {\n toReturn['cursor'] = this.cursor;\n }\n if (typeof this.hasMore !== 'undefined') {\n toReturn['hasMore'] = this.hasMore;\n }\n return toReturn;\n }\n}\nclass ListLocationsRequest {\n static fromProto(proto) {\n let m = new ListLocationsRequest();\n m = Object.assign(m, proto);\n if (proto.pageSize) {\n m.pageSize = parseInt(proto.pageSize, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n if (typeof this.cursor !== 'undefined') {\n toReturn['cursor'] = this.cursor;\n }\n if (typeof this.pageSize !== 'undefined') {\n toReturn['pageSize'] = this.pageSize;\n }\n if (typeof this.search !== 'undefined') {\n toReturn['search'] = this.search;\n }\n if (typeof this.includeAccountGroups !== 'undefined') {\n toReturn['includeAccountGroups'] = this.includeAccountGroups;\n }\n if (typeof this.includeBrands !== 'undefined') {\n toReturn['includeBrands'] = this.includeBrands;\n }\n return toReturn;\n }\n}\nclass ListLocationsResponse {\n static fromProto(proto) {\n let m = new ListLocationsResponse();\n m = Object.assign(m, proto);\n if (proto.locations) {\n m.locations = proto.locations.map(Location.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.locations !== 'undefined' && this.locations !== null) {\n toReturn['locations'] = 'toApiJson' in this.locations ? this.locations.toApiJson() : this.locations;\n }\n if (typeof this.cursor !== 'undefined') {\n toReturn['cursor'] = this.cursor;\n }\n if (typeof this.hasMore !== 'undefined') {\n toReturn['hasMore'] = this.hasMore;\n }\n return toReturn;\n }\n}\nclass Location {\n static fromProto(proto) {\n let m = new Location();\n m = Object.assign(m, proto);\n if (proto.accountGroup) {\n m.accountGroup = AccountGroup.fromProto(proto.accountGroup);\n }\n if (proto.brand) {\n m.brand = Brand.fromProto(proto.brand);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accountGroup !== 'undefined' && this.accountGroup !== null) {\n toReturn['accountGroup'] = 'toApiJson' in this.accountGroup ? this.accountGroup.toApiJson() : this.accountGroup;\n }\n if (typeof this.brand !== 'undefined' && this.brand !== null) {\n toReturn['brand'] = 'toApiJson' in this.brand ? this.brand.toApiJson() : this.brand;\n }\n return toReturn;\n }\n}\nclass LocationData {\n static fromProto(proto) {\n let m = new LocationData();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.businessName !== 'undefined') {\n toReturn['businessName'] = this.businessName;\n }\n if (typeof this.address !== 'undefined') {\n toReturn['address'] = this.address;\n }\n return toReturn;\n }\n}\nclass PinnedItem {\n static fromProto(proto) {\n let m = new PinnedItem();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.navigationId !== 'undefined') {\n toReturn['navigationId'] = this.navigationId;\n }\n return toReturn;\n }\n}\nclass RetentionConfig {\n static fromProto(proto) {\n let m = new RetentionConfig();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.cancellationNotificationEmail !== 'undefined') {\n toReturn['cancellationNotificationEmail'] = this.cancellationNotificationEmail;\n }\n return toReturn;\n }\n}\nclass SalesContact {\n static fromProto(proto) {\n let m = new SalesContact();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.salesPersonId !== 'undefined') {\n toReturn['salesPersonId'] = this.salesPersonId;\n }\n if (typeof this.email !== 'undefined') {\n toReturn['email'] = this.email;\n }\n if (typeof this.firstName !== 'undefined') {\n toReturn['firstName'] = this.firstName;\n }\n if (typeof this.lastName !== 'undefined') {\n toReturn['lastName'] = this.lastName;\n }\n if (typeof this.phoneNumber !== 'undefined') {\n toReturn['phoneNumber'] = this.phoneNumber;\n }\n if (typeof this.photoUrlSecure !== 'undefined') {\n toReturn['photoUrlSecure'] = this.photoUrlSecure;\n }\n if (typeof this.jobTitle !== 'undefined') {\n toReturn['jobTitle'] = this.jobTitle;\n }\n if (typeof this.country !== 'undefined') {\n toReturn['country'] = this.country;\n }\n if (typeof this.meetingBookingUrl !== 'undefined') {\n toReturn['meetingBookingUrl'] = this.meetingBookingUrl;\n }\n return toReturn;\n }\n}\nclass SalesInfo {\n static fromProto(proto) {\n let m = new SalesInfo();\n m = Object.assign(m, proto);\n if (proto.salesContact) {\n m.salesContact = SalesContact.fromProto(proto.salesContact);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.marketName !== 'undefined') {\n toReturn['marketName'] = this.marketName;\n }\n if (typeof this.salesContact !== 'undefined' && this.salesContact !== null) {\n toReturn['salesContact'] = 'toApiJson' in this.salesContact ? this.salesContact.toApiJson() : this.salesContact;\n }\n return toReturn;\n }\n}\nclass SetDefaultLocationRequest {\n static fromProto(proto) {\n let m = new SetDefaultLocationRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n if (typeof this.accountGroupId !== 'undefined') {\n toReturn['accountGroupId'] = this.accountGroupId;\n }\n if (typeof this.groupId !== 'undefined') {\n toReturn['groupId'] = this.groupId;\n }\n return toReturn;\n }\n}\nclass SetLanguageRequest {\n static fromProto(proto) {\n let m = new SetLanguageRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.language !== 'undefined') {\n toReturn['language'] = this.language;\n }\n return toReturn;\n }\n}\nclass SetPinsRequest {\n static fromProto(proto) {\n let m = new SetPinsRequest();\n m = Object.assign(m, proto);\n if (proto.items) {\n m.items = proto.items.map(PinnedItem.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.identifier !== 'undefined') {\n toReturn['identifier'] = this.identifier;\n }\n if (typeof this.items !== 'undefined' && this.items !== null) {\n toReturn['items'] = 'toApiJson' in this.items ? this.items.toApiJson() : this.items;\n }\n return toReturn;\n }\n}\nclass SideNavigationContainer {\n static fromProto(proto) {\n let m = new SideNavigationContainer();\n m = Object.assign(m, proto);\n if (proto.sideNavigationItems) {\n m.sideNavigationItems = proto.sideNavigationItems.map(SideNavigationItem.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.translationId !== 'undefined') {\n toReturn['translationId'] = this.translationId;\n }\n if (typeof this.sideNavigationItems !== 'undefined' && this.sideNavigationItems !== null) {\n toReturn['sideNavigationItems'] = 'toApiJson' in this.sideNavigationItems ? this.sideNavigationItems.toApiJson() : this.sideNavigationItems;\n }\n if (typeof this.icon !== 'undefined') {\n toReturn['icon'] = this.icon;\n }\n if (typeof this.logoUrl !== 'undefined') {\n toReturn['logoUrl'] = this.logoUrl;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.showIcon !== 'undefined') {\n toReturn['showIcon'] = this.showIcon;\n }\n if (typeof this.chipContent !== 'undefined') {\n toReturn['chipContent'] = this.chipContent;\n }\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n if (typeof this.pinnable !== 'undefined') {\n toReturn['pinnable'] = this.pinnable;\n }\n if (typeof this.navigationId !== 'undefined') {\n toReturn['navigationId'] = this.navigationId;\n }\n return toReturn;\n }\n}\nclass SideNavigationItem {\n static fromProto(proto) {\n let m = new SideNavigationItem();\n m = Object.assign(m, proto);\n if (proto.sideNavigationSection) {\n m.sideNavigationSection = SideNavigationSection.fromProto(proto.sideNavigationSection);\n }\n if (proto.sideNavigationContainer) {\n m.sideNavigationContainer = SideNavigationContainer.fromProto(proto.sideNavigationContainer);\n }\n if (proto.sideNavigationLink) {\n m.sideNavigationLink = SideNavigationLink.fromProto(proto.sideNavigationLink);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.sideNavigationSection !== 'undefined' && this.sideNavigationSection !== null) {\n toReturn['sideNavigationSection'] = 'toApiJson' in this.sideNavigationSection ? this.sideNavigationSection.toApiJson() : this.sideNavigationSection;\n }\n if (typeof this.sideNavigationContainer !== 'undefined' && this.sideNavigationContainer !== null) {\n toReturn['sideNavigationContainer'] = 'toApiJson' in this.sideNavigationContainer ? this.sideNavigationContainer.toApiJson() : this.sideNavigationContainer;\n }\n if (typeof this.sideNavigationLink !== 'undefined' && this.sideNavigationLink !== null) {\n toReturn['sideNavigationLink'] = 'toApiJson' in this.sideNavigationLink ? this.sideNavigationLink.toApiJson() : this.sideNavigationLink;\n }\n return toReturn;\n }\n}\nclass SideNavigationLink {\n static fromProto(proto) {\n let m = new SideNavigationLink();\n m = Object.assign(m, proto);\n if (proto.subLinks) {\n m.subLinks = proto.subLinks.map(SideNavigationLink.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.navigationId !== 'undefined') {\n toReturn['navigationId'] = this.navigationId;\n }\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n if (typeof this.path !== 'undefined') {\n toReturn['path'] = this.path;\n }\n if (typeof this.serviceProviderId !== 'undefined') {\n toReturn['serviceProviderId'] = this.serviceProviderId;\n }\n if (typeof this.logoUrl !== 'undefined') {\n toReturn['logoUrl'] = this.logoUrl;\n }\n if (typeof this.icon !== 'undefined') {\n toReturn['icon'] = this.icon;\n }\n if (typeof this.translationId !== 'undefined') {\n toReturn['translationId'] = this.translationId;\n }\n if (typeof this.external !== 'undefined') {\n toReturn['external'] = this.external;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.showIcon !== 'undefined') {\n toReturn['showIcon'] = this.showIcon;\n }\n if (typeof this.pinnable !== 'undefined') {\n toReturn['pinnable'] = this.pinnable;\n }\n if (typeof this.chipContent !== 'undefined') {\n toReturn['chipContent'] = this.chipContent;\n }\n if (typeof this.isTrial !== 'undefined') {\n toReturn['isTrial'] = this.isTrial;\n }\n if (typeof this.userRequired !== 'undefined') {\n toReturn['userRequired'] = this.userRequired;\n }\n if (typeof this.openInNewTab !== 'undefined') {\n toReturn['openInNewTab'] = this.openInNewTab;\n }\n if (typeof this.subLinks !== 'undefined' && this.subLinks !== null) {\n toReturn['subLinks'] = 'toApiJson' in this.subLinks ? this.subLinks.toApiJson() : this.subLinks;\n }\n if (typeof this.launchUrl !== 'undefined') {\n toReturn['launchUrl'] = this.launchUrl;\n }\n if (typeof this.descriptionTranslationId !== 'undefined') {\n toReturn['descriptionTranslationId'] = this.descriptionTranslationId;\n }\n return toReturn;\n }\n}\nclass SideNavigationSection {\n static fromProto(proto) {\n let m = new SideNavigationSection();\n m = Object.assign(m, proto);\n if (proto.sideNavigationItems) {\n m.sideNavigationItems = proto.sideNavigationItems.map(SideNavigationItem.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.translationId !== 'undefined') {\n toReturn['translationId'] = this.translationId;\n }\n if (typeof this.sideNavigationItems !== 'undefined' && this.sideNavigationItems !== null) {\n toReturn['sideNavigationItems'] = 'toApiJson' in this.sideNavigationItems ? this.sideNavigationItems.toApiJson() : this.sideNavigationItems;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.chipContent !== 'undefined') {\n toReturn['chipContent'] = this.chipContent;\n }\n return toReturn;\n }\n}\nclass Theming {\n static fromProto(proto) {\n let m = new Theming();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.primaryColor !== 'undefined') {\n toReturn['primaryColor'] = this.primaryColor;\n }\n if (typeof this.primaryHoverColor !== 'undefined') {\n toReturn['primaryHoverColor'] = this.primaryHoverColor;\n }\n if (typeof this.primaryActiveColor !== 'undefined') {\n toReturn['primaryActiveColor'] = this.primaryActiveColor;\n }\n if (typeof this.secondaryColor !== 'undefined') {\n toReturn['secondaryColor'] = this.secondaryColor;\n }\n if (typeof this.secondaryHoverColor !== 'undefined') {\n toReturn['secondaryHoverColor'] = this.secondaryHoverColor;\n }\n if (typeof this.secondaryActiveColor !== 'undefined') {\n toReturn['secondaryActiveColor'] = this.secondaryActiveColor;\n }\n if (typeof this.fontColor !== 'undefined') {\n toReturn['fontColor'] = this.fontColor;\n }\n if (typeof this.fontDisabledColor !== 'undefined') {\n toReturn['fontDisabledColor'] = this.fontDisabledColor;\n }\n if (typeof this.accentsColor !== 'undefined') {\n toReturn['accentsColor'] = this.accentsColor;\n }\n if (typeof this.accentsActiveColor !== 'undefined') {\n toReturn['accentsActiveColor'] = this.accentsActiveColor;\n }\n if (typeof this.focusColor !== 'undefined') {\n toReturn['focusColor'] = this.focusColor;\n }\n if (typeof this.borderColor !== 'undefined') {\n toReturn['borderColor'] = this.borderColor;\n }\n return toReturn;\n }\n}\nclass TotalLocations {\n static fromProto(proto) {\n let m = new TotalLocations();\n m = Object.assign(m, proto);\n if (proto.accounts) {\n m.accounts = parseInt(proto.accounts, 10);\n }\n if (proto.brands) {\n m.brands = parseInt(proto.brands, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.accounts !== 'undefined') {\n toReturn['accounts'] = this.accounts;\n }\n if (typeof this.brands !== 'undefined') {\n toReturn['brands'] = this.brands;\n }\n return toReturn;\n }\n}\nclass UserNavigationItem {\n static fromProto(proto) {\n let m = new UserNavigationItem();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.text !== 'undefined') {\n toReturn['text'] = this.text;\n }\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n if (typeof this.routeId !== 'undefined') {\n toReturn['routeId'] = this.routeId;\n }\n return toReturn;\n }\n}\nclass UserSwitcherData {\n static fromProto(proto) {\n let m = new UserSwitcherData();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.userId !== 'undefined') {\n toReturn['userId'] = this.userId;\n }\n if (typeof this.partnerId !== 'undefined') {\n toReturn['partnerId'] = this.partnerId;\n }\n if (typeof this.partnerName !== 'undefined') {\n toReturn['partnerName'] = this.partnerName;\n }\n if (typeof this.entryUrl !== 'undefined') {\n toReturn['entryUrl'] = this.entryUrl;\n }\n return toReturn;\n }\n}\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Objects Index.\n// *********************************\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet AtlasApiService = /*#__PURE__*/(() => {\n class AtlasApiService {\n constructor(http, hostService) {\n this.http = http;\n this.hostService = hostService;\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n getData(r) {\n const request = r.toApiJson ? r : new GetDataRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/GetData\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetDataResponse.fromProto(resp)));\n }\n getNavigationData(r) {\n const request = r.toApiJson ? r : new GetNavigationDataRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/GetNavigationData\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetNavigationDataResponse.fromProto(resp)));\n }\n getSalesInfo(r) {\n const request = r.toApiJson ? r : new GetSalesInfoRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/GetSalesInfo\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetSalesInfoResponse.fromProto(resp)));\n }\n getLocations(r) {\n const request = r.toApiJson ? r : new GetLocationsRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/GetLocations\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetLocationsResponse.fromProto(resp)));\n }\n listElevatedLocations(r) {\n const request = r.toApiJson ? r : new ListElevatedLocationsRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/ListElevatedLocations\", request.toApiJson(), this.apiOptions()).pipe(map(resp => ListElevatedLocationsResponse.fromProto(resp)));\n }\n listLocations(r) {\n const request = r.toApiJson ? r : new ListLocationsRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/ListLocations\", request.toApiJson(), this.apiOptions()).pipe(map(resp => ListLocationsResponse.fromProto(resp)));\n }\n contactUs(r) {\n const request = r.toApiJson ? r : new ContactUsRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/ContactUs\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n setDefaultLocation(r) {\n const request = r.toApiJson ? r : new SetDefaultLocationRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/SetDefaultLocation\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n getDefaultLocation(r) {\n const request = r.toApiJson ? r : new GetDefaultLocationRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Atlas/GetDefaultLocation\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetDefaultLocationResponse.fromProto(resp)));\n }\n }\n AtlasApiService.ɵfac = function AtlasApiService_Factory(t) {\n return new (t || AtlasApiService)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(HostService));\n };\n AtlasApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: AtlasApiService,\n factory: AtlasApiService.ɵfac,\n providedIn: 'root'\n });\n return AtlasApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet LanguagesApiService = /*#__PURE__*/(() => {\n class LanguagesApiService {\n constructor(http, hostService) {\n this.http = http;\n this.hostService = hostService;\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n setLanguage(r) {\n const request = r.toApiJson ? r : new SetLanguageRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Languages/SetLanguage\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n getLanguage(r) {\n const request = r.toApiJson ? r : new GetLanguageRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Languages/GetLanguage\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetLanguageResponse.fromProto(resp)));\n }\n }\n LanguagesApiService.ɵfac = function LanguagesApiService_Factory(t) {\n return new (t || LanguagesApiService)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(HostService));\n };\n LanguagesApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: LanguagesApiService,\n factory: LanguagesApiService.ɵfac,\n providedIn: 'root'\n });\n return LanguagesApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet PinsApiService = /*#__PURE__*/(() => {\n class PinsApiService {\n constructor(http, hostService) {\n this.http = http;\n this.hostService = hostService;\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n setPins(r) {\n const request = r.toApiJson ? r : new SetPinsRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Pins/SetPins\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n getPins(r) {\n const request = r.toApiJson ? r : new GetPinsRequest(r);\n return this.http.post(this._host + \"/atlas.v1.Pins/GetPins\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetPinsResponse.fromProto(resp)));\n }\n }\n PinsApiService.ɵfac = function PinsApiService_Factory(t) {\n return new (t || PinsApiService)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(HostService));\n };\n PinsApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: PinsApiService,\n factory: PinsApiService.ɵfac,\n providedIn: 'root'\n });\n return PinsApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Index.\n// *********************************\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { Access, AccountGroup, AssociatedLocationIDs, AtlasApiService, Brand, Branding, CenterNavigationItem, ContactUsRequest, DropdownItem, GetDataRequest, GetDataResponse, GetDefaultLocationRequest, GetDefaultLocationResponse, GetLanguageRequest, GetLanguageResponse, GetLocationsRequest, GetLocationsRequestAccountGroups, GetLocationsRequestGroups, GetLocationsResponse, GetNavigationDataRequest, GetNavigationDataResponse, GetPinsRequest, GetPinsResponse, GetSalesInfoRequest, GetSalesInfoResponse, HostService, LanguagesApiService, ListElevatedLocationsRequest, ListElevatedLocationsResponse, ListLocationsRequest, ListLocationsResponse, Location, LocationData, PinnedItem, PinsApiService, RetentionConfig, SalesContact, SalesInfo, SetDefaultLocationRequest, SetLanguageRequest, SetPinsRequest, SideNavigationContainer, SideNavigationItem, SideNavigationLink, SideNavigationSection, Theming, TotalLocations, UITheme, UserNavigationItem, UserSwitcherData, UserViewType };\n"],"mappings":"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","names":["enumStringToValue","enumRef","value","environment","hostMap","HostService","UITheme","UserViewType","AccountGroup","GetLocationsRequestAccountGroups","AssociatedLocationIDs","Brand","Branding","CenterNavigationItem","ContactUsRequest","DropdownItem","GetDataRequest","GetDataResponse","GetDefaultLocationRequest","GetDefaultLocationResponse","GetLanguageRequest","GetLanguageResponse","GetLocationsRequest","GetLocationsResponse","GetNavigationDataRequest","GetNavigationDataResponse","GetPinsRequest","GetPinsResponse","GetSalesInfoRequest","GetSalesInfoResponse","GetLocationsRequestGroups","ListElevatedLocationsRequest","ListElevatedLocationsResponse","ListLocationsRequest","ListLocationsResponse","Location","LocationData","PinnedItem","RetentionConfig","SalesContact","SalesInfo","SetDefaultLocationRequest","SetLanguageRequest","SetPinsRequest","SideNavigationContainer","SideNavigationItem","SideNavigationLink","SideNavigationSection","Theming","TotalLocations","UserNavigationItem","UserSwitcherData","AtlasApiService","LanguagesApiService","PinsApiService","init_vendasta_atlas","__esmMin","init_core","init_http","init_operators","t","ɵɵdefineInjectable","_AccountGroup","proto","m","kwargs","toReturn","_GetLocationsRequestAccountGroups","_AssociatedLocationIDs","_Brand","_Branding","_CenterNavigationItem","_ContactUsRequest","_DropdownItem","_GetDataRequest","_GetDataResponse","_GetDefaultLocationRequest","_GetDefaultLocationResponse","_GetLanguageRequest","_GetLanguageResponse","_GetLocationsRequest","_GetLocationsResponse","_GetNavigationDataRequest","_GetNavigationDataResponse","_GetPinsRequest","_GetPinsResponse","_GetSalesInfoRequest","_GetSalesInfoResponse","_GetLocationsRequestGroups","_ListElevatedLocationsRequest","_ListElevatedLocationsResponse","_ListLocationsRequest","_ListLocationsResponse","_Location","_LocationData","_PinnedItem","_RetentionConfig","_SalesContact","_SalesInfo","_SetDefaultLocationRequest","_SetLanguageRequest","_SetPinsRequest","_SideNavigationContainer","_SideNavigationItem","_SideNavigationLink","_SideNavigationSection","_Theming","_TotalLocations","_UserNavigationItem","_UserSwitcherData","http","hostService","HttpHeaders","r","request","map","resp","__spreadProps","__spreadValues","ɵɵinject","HttpClient"],"x_google_ignoreList":[0]}