"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[3125],{129:(e,t,r)=>{r.d(t,{G:()=>o});let o=(0,r(56436).eU)()},4901:(e,t,r)=>{r.d(t,{J:()=>f});var o=r(97839),n=r(20108),a=r(38051),i=r(30821),s=r(60015),l=r(65542),c=r(66542),d=r(34627),u=r(80753),p=r(83785),h=r(71844),m=r(11173),y=r(85849);function f(){var e,t;let[r,f]=(0,o.useState)(null),[g,v]=(0,n.fp)(d.U),[P,E]=(0,n.fp)(p.pX),[H,w]=(0,n.fp)(p.lr),[I,q]=(0,o.useState)(!1),T=(0,n.Xr)(p.Qv),{refresh:A}=(0,c.b)();y.A&&!I&&(T(window.location.href),q(!0));let C=parseInt((null==(e=(0,l.useGetCookie)()("twc-user"))?void 0:e.toString())||h.C.none.toString()),M=parseInt((null==(t=(0,l.getCookie)("twc-user"))?void 0:t.toString())||h.C.none.toString()),D=(0,l.getCookie)("ANON_C"),b=D||P||(0,m.A)();D||(0,l.setCookie)("ANON_C",b,{path:"/",domain:".weather.com",secure:!0}),(!P||P&&D&&P!==D)&&E(b),!g&&H&&v(H);let L=C>h.C.none?"upsx/id":null,U=(0,s.A)(L,()=>u._.account.getAccountId(),{shouldRetryOnError:e=>"APIError"!==e.name}),{userID:S=""}=(null==U?void 0:U.data)||{};(0,a.Ay)(!g&&S?"upsx/account":null,()=>u._.account.getAccount(),{shouldRetryOnError:e=>"APIError"!==e.name,onSuccess:e=>{v(e),w(e)}});let O=async()=>{try{return await u._.auth.logout(),(0,i.j)(e=>"string"==typeof e&&e.startsWith("/upsx"),void 0,{revalidate:!1}),v(null),w(null),(0,l.deleteCookie)("twc-user",{domain:".weather.com"}),A({mpa:!0}),!0}catch(e){return f(e instanceof Error?e:Error("Failed to log out")),!1}};return{error:r,DISCONNECTED_user:{isUserLoggedIn:M>h.C.none,subscriptionTier:M,isUserPremium:M>h.C.standard},user:{userID:S,isUserLoggedIn:C>h.C.none,subscriptionTier:C,isUserPremium:C>h.C.standard},userProfile:g,logout:O}}},11589:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ConsentAPI=void 0;let o=r(88730);class n{async getConsent(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/consent",params:{endpointID:e}})}async updateConsent(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/consent",data:e})}async createConsent(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/consent",data:e})}async deleteConsent(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/consent",params:{endpointID:e}})}async getUserConsent(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/consent/user"})}async updateUserConsent(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/consent/user",data:e})}async createUserConsent(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/consent/user",data:e})}async deleteUserConsent(){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/consent/user"})}async getBulkConsent(e,t){let r={};return e&&(r.endpointIDs=e),t&&(r.userID=t),this.requestHandler.request({method:o.HttpMethod.GET,path:"/consent/bulk",params:r})}async deleteBulkConsent(e,t){let r={};e&&(r.endpointIDs=e),t&&(r.userID=t),await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/consent/bulk",params:r})}async migrateUserConsent(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/consent/user/migration",data:e})}async updateUserConsentWebhook(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/consent/user/update",data:e})}constructor(e){this.requestHandler=e}}t.ConsentAPI=n},18529:(e,t,r)=>{var o=r(19870).hp;Object.defineProperty(t,"__esModule",{value:!0}),t.AuthAPI=void 0;let n=r(70920),a=r(88730);class i{async login(e){try{let t=await this.requestHandler.request({method:a.HttpMethod.POST,path:"/login",data:e,requiresAuth:!1}),r={accessToken:"access_token_from_cookies",idToken:"id_token_from_cookies",refreshToken:"refresh_token_from_cookies",expiresAt:Date.now()+36e5};return this.requestHandler.setTokens(r),t}catch(e){if(e instanceof n.AuthenticationError)throw e;throw new n.AuthenticationError("Login failed: ".concat(e.message))}}async logout(){try{await this.requestHandler.request({method:a.HttpMethod.POST,path:"/logout"})}finally{this.requestHandler.clearTokens()}}async getMachineToken(e){try{let t=o.from("".concat(e.clientId,":").concat(e.clientSecret)).toString("base64"),r=await this.requestHandler.request({method:a.HttpMethod.POST,path:"/oauth/token",requiresAuth:!1,headers:{Authorization:"Basic ".concat(t)}}),n={accessToken:r.access_token,expiresAt:Date.now()+1e3*r.expires_in};return this.requestHandler.setTokens(n),r}catch(e){throw new n.AuthenticationError("Machine authentication failed: ".concat(e.message))}}async refreshToken(){try{let e=await this.requestHandler.request({method:a.HttpMethod.GET,path:"/refresh",requiresAuth:!1}),t={accessToken:"new_access_token_from_cookies",idToken:"new_id_token_from_cookies",refreshToken:"new_refresh_token_from_cookies",expiresAt:Date.now()+36e5};return this.requestHandler.setTokens(t),e}catch(e){throw this.requestHandler.clearTokens(),new n.AuthenticationError("Token refresh failed: ".concat(e.message))}}async register(e){try{return await this.requestHandler.request({method:a.HttpMethod.POST,path:"/register",data:e,requiresAuth:!1})}catch(e){throw new n.AuthenticationError("Registration failed: ".concat(e.message))}}async verifyEmail(e,t){try{return await this.requestHandler.request({method:a.HttpMethod.PUT,path:"/register/verify/email",data:{email:e,otp:t},requiresAuth:!1})}catch(e){throw new n.AuthenticationError("Email verification failed: ".concat(e.message))}}constructor(e){this.requestHandler=e}}t.AuthAPI=i},23336:(e,t,r)=>{function o(e){let t,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],o=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"US",a=arguments.length>4?arguments[4]:void 0,s=r.find(t=>t.placeID===e.placeId);if(s&&o){let t=s.userTag||s.name;if(t&&"Other"!==t){let r=e.displayName,o=i(e,n,"");if(t!==r&&t!==o)return t}}if(null==e?void 0:e.disputedCountries)t=e.displayName||"";else{var l,c,d,u,p,h;switch(null==e?void 0:e.type){case"city":t=(null==e||null==(l=e.locale)?void 0:l.locale2)||"";break;case"locality":t=(null==e||null==(c=e.locale)?void 0:c.locale3)||"";break;case"neighborhood":t=(null==e||null==(d=e.locale)?void 0:d.locale4)||"";break;case"airport":t=(null==e?void 0:e.airportName)||"";break;case"postal":{let r=(null==e||null==(u=e.locale)?void 0:u.locale4)||(null==e||null==(p=e.locale)?void 0:p.locale3)||(null==e||null==(h=e.locale)?void 0:h.locale2)||"",o=(null==e?void 0:e.postalCode)||"";t=a?"".concat(r," ").concat(o).trim():"".concat(r).trim();break}default:t=(null==e?void 0:e.displayName)||""}0===t.length&&(t=(null==e?void 0:e.displayName)||"")}return t}function n(e){let t,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],o=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"US",a=arguments.length>4?arguments[4]:void 0,s=r.find(t=>t.placeID===e.placeId);if(s&&o){let t=s.userTag||s.name;if(t&&"Other"!==t){let r=e.displayName,o=i(e,n,"");if(t!==r&&t!==o)return function(e){var t,r,o,n,a,i,s,l,c,d;let u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"US";if(null==e?void 0:e.disputedCountries)return(null==e?void 0:e.displayName)||"";let p=u===(null==e?void 0:e.countryCode)?"":(null==e?void 0:e.country)||"";switch(null==e?void 0:e.type){case"city":{let r=(null==e?void 0:e.adminDistrict)||"";return[(null==e||null==(t=e.locale)?void 0:t.locale2)||"",r,p].filter(Boolean).join(", ")}case"locality":{let t=(null==e?void 0:e.adminDistrict)||(null==e||null==(r=e.locale)?void 0:r.locale2)||"";return[(null==(o=e.locale)?void 0:o.locale3)||"",t,p].filter(Boolean).join(", ")}case"neighborhood":{let t=(null==e?void 0:e.adminDistrict)||"";return[(null==e||null==(n=e.locale)?void 0:n.locale4)||"",(null==e||null==(a=e.locale)?void 0:a.locale3)||(null==e||null==(i=e.locale)?void 0:i.locale2)||"",t,p].filter(Boolean).join(", ")}case"postal":{let t=(null==e?void 0:e.adminDistrict)||"",r=(null==e?void 0:e.postalCode)||"";return[(null==e||null==(s=e.locale)?void 0:s.locale4)||(null==e||null==(l=e.locale)?void 0:l.locale3)||(null==e||null==(c=e.locale)?void 0:c.locale2)||"","".concat(t," ").concat(r).trim(),p].filter(Boolean).join(", ")}default:{let t=(null==e?void 0:e.adminDistrict)||"";return[(null==e||null==(d=e.locale)?void 0:d.locale2)||"",t,p].filter(Boolean).join(", ")}}}(e,n)}}if(null==e?void 0:e.disputedCountries)t=(null==e?void 0:e.displayName)||"";else{var l,c,d,u;let r=n===(null==e?void 0:e.countryCode)?"":(null==e?void 0:e.country)||"",o=(null==e?void 0:e.adminDistrict)||"",i=(null==e?void 0:e.postalCode)||"";switch(null==e?void 0:e.type){case"city":default:t=[o,r].filter(Boolean).join(", ");break;case"locality":t=[(null==e||null==(l=e.locale)?void 0:l.locale2)||"",o,r].filter(Boolean).join(", ");break;case"neighborhood":t=[(null==e||null==(c=e.locale)?void 0:c.locale3)||(null==e||null==(d=e.locale)?void 0:d.locale2)||"",o,r].filter(Boolean).join(", ");break;case"postal":{let n=o||(null==e||null==(u=e.locale)?void 0:u.locale2)||"";t=[a?"".concat(n," ").concat(i).trim():n,r].filter(Boolean).join(", ")}}}return t}function a(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"US",i=o(e,t,r,a,!1),s=n(e,t,r,a,!0),l=(null==e?void 0:e.separator)?null==e?void 0:e.separator:i&&s?", ":"";return"".concat(i).concat(l).concat(s).trim()}function i(e,t,r){let{displayName:o,adminDistrictCode:n,adminDistrict:a,countryCode:i,disputedArea:s,country:l}=e,c=[];return o&&c.push(o),"IL"!==t&&(n?c.push(n):a&&c.push(a)),i!==t&&!1===s&&l&&c.push(l),c.join(r)}r.d(t,{LM:()=>a,Xm:()=>n,p3:()=>o})},23438:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PurchaseAPI=void 0;let o=r(88730);class n{async getPurchases(e){let t={};return e&&(t.platform=e),this.requestHandler.request({method:o.HttpMethod.GET,path:"/purchase/",params:t})}async createPurchase(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/purchase/app/user",data:e})}async getPurchaseRecord(e,t,r){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/purchase/record",params:{platform:e,vendor:t,product:r}})}async getPurchaseToken(e){let t={};return e&&(t.platform=e),this.requestHandler.request({method:o.HttpMethod.GET,path:"/purchase/token",params:t})}async updatePurchase(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/purchase",data:e})}async createPurchaseTransaction(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/purchase",data:e})}async getUserPurchases(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/purchase/".concat(e)})}async deleteUserPurchases(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/purchase/".concat(e)})}async getUserPurchaseSnapshot(e,t){let r={};return t&&(r.platform=t),this.requestHandler.request({method:o.HttpMethod.GET,path:"/purchase/".concat(e,"/getSnapshot"),params:r})}async getUserPurchaseRecord(e,t,r,n){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/purchase/".concat(e,"/record"),params:{platform:t,vendor:r,product:n}})}constructor(e){this.requestHandler=e}}t.PurchaseAPI=n},25977:(e,t,r)=>{r.d(t,{S:()=>o});function o(e){if(!e||!e.includes(","))return e;let t=e.split(",");if(2!==t.length)return e;let[r,o]=t,n=parseFloat(r||"0").toFixed(2),a=parseFloat(o||"0").toFixed(2);return"".concat(n,",").concat(a)}},32469:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},34627:(e,t,r)=>{r.d(t,{J:()=>s,U:()=>i});var o=r(99842),n=r(69896),a=r(11173);let i=(0,o.tG)("userProfile",null),s=(0,o.tG)("userPreferences",{userID:(0,a.A)(),unit:n.tE,locations:[],locale:"en_US",mapSettings:{animationSpeed:1,autoplay:!0,opacity:100,roadOverlay:"default",style:"default"},favoriteWeatherComponents:[],favoriteActivityComponents:[],dashboard:[]})},36228:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},36489:(e,t,r)=>{t.$M=s,t.PT=l;let o=r(82719),n=r(54435),a=r(71744),i=r(92795);async function s(e,t){let r=(0,n.urlFrom)((0,o.getLocationPointUrlConfig)({placeId:e,language:t})),i=await fetch(r,{headers:{"Accept-Encoding":"gzip"},next:{revalidate:86400}});return(0,a.handleFetchResponse)(i)}async function l(e,t){let r=(0,n.urlFrom)((0,o.getLocationPointUrlConfig)({geocode:e,language:t})),i=await fetch(r,{headers:{"Accept-Encoding":"gzip"},next:{revalidate:86400}});return(0,a.handleFetchResponse)(i)}},36697:(e,t,r)=>{r.d(t,{A:()=>l,_:()=>s});var o=r(66695),n=r(97839),a=r(8806),i=r(64070);let s=(0,n.forwardRef)((e,t)=>{let{src:r,alt:n,shadow:s,rounded:l=!0,className:c,wrapperClassName:d,width:u=320,height:p=180,quality:h,priority:m=!1,loading:y,objectFit:f="contain",fill:g=!1,sizes:v,...P}=e;if(!r)return null;let E=(0,o.jsx)(a.default,{ref:t,src:r,alt:n,width:g?void 0:u,height:g?void 0:p,quality:h,priority:m,loading:y,fill:g,sizes:v,className:(0,i.cn)({"shadow-md":s,"rounded-lg":l,"object-contain":"contain"===f,"object-cover":"cover"===f,"object-fill":"fill"===f,"object-none":"none"===f,"object-scale-down":"scale-down"===f,"h-auto w-full":!g},c),...P});return g?(0,o.jsx)("div",{className:(0,i.cn)("relative h-full w-full",d),children:E}):E});s.displayName="Image";let l=s},38372:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},43175:(e,t,r)=>{var o=Object.create?function(e,t,r,o){void 0===o&&(o=r);var n=Object.getOwnPropertyDescriptor(t,r);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,o,n)}:function(e,t,r,o){void 0===o&&(o=r),e[o]=t[r]},n=function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||o(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),n(r(87596),t),n(r(62850),t),n(r(78664),t),n(r(11589),t),n(r(87313),t),n(r(67636),t),n(r(23438),t),n(r(92367),t),n(r(76068),t)},47568:(e,t,r)=>{r.d(t,{HJ:()=>i,dk:()=>a});var o=r(56436),n=r(34627);let a=(0,o.eU)(e=>{var t;return(null==(t=e(n.J))?void 0:t.locale)||"en_US"});(0,o.eU)(e=>e(a).split("_")[0]);let i=(0,o.eU)(e=>e(a).split("_")[1])},52481:(e,t,r)=>{r.d(t,{p:()=>c});var o=r(20108),n=r(70501),a=r(4901),i=r(23336),s=r(47568),l=r(97839);function c(){let e=(0,o.md)(n.fe),t=(0,o.md)(s.dk),r=(null==t?void 0:t.slice(3))||"US",{user:c}=(0,a.J)(),d=c.isUserLoggedIn;return(0,l.useMemo)(()=>({getLocationName:(t,o)=>(0,i.p3)(t,e,d,r,o),getLocationContext:(t,o)=>(0,i.Xm)(t,e,d,r,o),getLocationPresentationName:t=>(0,i.LM)(t,e,d,r)}),[])}},54435:(e,t)=>{function r(e){let t=new URLSearchParams;for(let[r,o]of Object.entries(e))void 0!==o&&t.append(r,o);return t}Object.defineProperty(t,"__esModule",{value:!0}),t.queryStringToSearchParams=r,t.urlFrom=function(e){let{host:t,...o}=e;if(!t)throw Error("Host is missing");let n=new URL("https://".concat(t));return Object.assign(n,{...o,hostname:t}),o.query&&(n.search=r(o.query).toString()),n}},59378:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},62850:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ApplicationsAPI=void 0;let o=r(88730);class n{async getApplications(e,t){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/applications",params:{appId:e,endpointId:t}})}async createApplication(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/applications",data:e})}async addPartner(e,t,r){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/applications/app-id/".concat(e,"/endpoint-id/").concat(t),data:r})}async deletePartner(e,t,r){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/applications/partner/app-id/".concat(e,"/endpoint-id/").concat(t),params:{partner:r}})}async updateLastActivity(e,t,r){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/applications/activity/user/".concat(e,"/app-id/").concat(t,"/endpoint-id/").concat(r)})}async getUserApplications(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/applications/user/".concat(e)})}async createUserApplication(e,t){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/applications/user/".concat(e),data:t})}async deleteUserApplications(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/applications/user/".concat(e)})}async deleteUserApplication(e,t,r){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/applications/user/".concat(e,"/app-id/").concat(t,"/endpoint-id/").concat(r)})}async getUserEndpointIds(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/applications/endpoint-ids",params:{userID:e}})}constructor(e){this.requestHandler=e}}t.ApplicationsAPI=n},64070:(e,t,r)=>{r.d(t,{cn:()=>a});var o=r(56199);let n=(0,r(69611).zu)({extend:{classGroups:{"font-size":[{text:["xxs"]}]},theme:{color:[{brand:["100","200","300","400","dark","light"]}]}}});function a(){for(var e=arguments.length,t=Array(e),r=0;r{Object.defineProperty(t,"__esModule",{value:!0})},66542:(e,t,r)=>{r.d(t,{A:()=>a,b:()=>n});var o=r(92071);let n=()=>{let e=(0,o.useRouter)();return{navigate:function(t){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{mpa:o=!0,replace:n=!1}=r;o?n?window.location.replace(t):window.location.href=t:n?e.replace(t):e.push(t)},refresh:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},{mpa:r=!0}=t;r?window.location.reload():e.refresh()},router:e}},a=n},67636:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PreferenceAPI=void 0;let o=r(88730);class n{async getPreference(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/preference"})}async updatePreference(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/preference",data:e})}async createPreference(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/preference",data:e})}async getWUPreference(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/preference/wu"})}async updateWUPreference(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/preference/wu",data:e})}async createWUPreference(e){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/preference/wu",data:e})}async getUserPreference(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/preference/".concat(e)})}async deleteUserPreference(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/preference/".concat(e)})}async createUserWUPreference(e,t){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/preference/wu/".concat(e),data:t})}constructor(e){this.requestHandler=e}}t.PreferenceAPI=n},68095:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},68201:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RequestHandler=void 0;let o=r(70920),n=r(88730);class a{setTokens(e){this.tokens=e}getTokens(){return this.tokens}clearTokens(){this.tokens=null}isAuthenticated(){var e;return!!(null==(e=this.tokens)?void 0:e.accessToken)}async request(e){var t;let{method:r,path:a,params:i,data:s,headers:l={},requiresAuth:c=!1,timeout:d=this.timeout}=e;if(c&&!this.isAuthenticated())throw new o.AuthenticationError("Authentication required");let u="".concat(this.baseUrl).concat(a.startsWith("/")?a:"/".concat(a));if(i&&Object.keys(i).length>0){let e=new URLSearchParams;for(let[t,r]of Object.entries(i))void 0!==r&&e.append(t,String(r));let t=e.toString();t&&(u+="?".concat(t))}let p={...this.defaultHeaders,...l};(null==(t=this.tokens)?void 0:t.accessToken)&&(p.Authorization="Bearer ".concat(this.tokens.accessToken));let h={method:r,headers:p,credentials:"include"};void 0!==s&&(r===n.HttpMethod.POST||r===n.HttpMethod.PUT)&&(h.body=JSON.stringify(s));try{let e=new AbortController,t=setTimeout(()=>e.abort(),d);h.signal=e.signal;let r=await fetch(u,h);if(clearTimeout(t),r.ok||await this.handleErrorResponse(r),204===r.status)return{};let o=r.headers.get("content-type");if(o&&o.includes("application/json"))return await r.json();return await r.text()}catch(e){if(e instanceof o.APIError)throw e;if(e instanceof DOMException&&"AbortError"===e.name)throw new o.APIError("Request timeout",408);throw new o.APIError("Network error: ".concat(e.message),0)}}async handleErrorResponse(e){let t;try{t=await e.json()}catch(r){t={message:e.statusText}}let r=t.message||"Unknown error",n=e.status;switch(n){case 400:throw new o.ValidationError(r,t);case 401:throw this.clearTokens(),new o.AuthenticationError(r);case 404:throw new o.NotFoundError(r);case 429:throw new o.RateLimitError(r);case 500:case 502:case 503:case 504:throw new o.ServerError(r,n);default:throw new o.APIError(r,n,t)}}constructor(e){this.tokens=null,this.baseUrl=e.baseUrl.endsWith("/")?e.baseUrl.slice(0,-1):e.baseUrl,this.timeout=e.timeout||3e4,this.defaultHeaders={"Content-Type":"application/json",Accept:"application/json",...e.headers}}}t.RequestHandler=a},68554:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},69896:(e,t,r)=>{r.d(t,{AF:()=>i,Bu:()=>d,Uo:()=>a,cl:()=>n,lr:()=>c,tE:()=>o,xP:()=>u});let o="Imperial",n="Metric",a="Hybrid",i={code:"e",name:o,temp:"F",speed:"mph",distance:"mi",accumulation:"in",precip:"in",pressure:"in"},s={code:"m",name:n,temp:"C",speed:"km/h",distance:"km",accumulation:"cm",precip:"mm",pressure:"mb"},l={code:"h",name:a,temp:"C",speed:"mph",distance:"mi",accumulation:"in",precip:"in",pressure:"mb"},c="unitOfMeasurement";function d(e){switch(null==e?void 0:e.toLowerCase()){case"e":case"f":return i;case"m":case"c":return s;case"h":return l;default:return null}}function u(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";switch(e.toLowerCase()){case"imperial":case"Imperial":return i;case"metric":case"Metric":return s;case"hybrid":case"Hybrid":return l;default:return null}}},70501:(e,t,r)=>{r.d(t,{fe:()=>i,nU:()=>a});var o=r(56436),n=r(34627);let a=(0,r(3665).I)(n.J,e=>e.prop("locations")||[]),i=(0,o.eU)(e=>{var t;return(null==(t=e(n.J))?void 0:t.locations)||[]});(0,o.eU)(e=>{let t=e(a);return(null==t?void 0:t.find(e=>0===e.position))||(null==t?void 0:t[0])||null}),(0,o.eU)(e=>{var t;return(null==(t=e(a))?void 0:t.length)||!1})},70920:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ServerError=t.RateLimitError=t.ValidationError=t.NotFoundError=t.UnauthorizedError=t.AuthenticationError=t.APIError=t.UPSXError=void 0;class r extends Error{constructor(e){super(e),this.name="UPSXError",Object.setPrototypeOf(this,r.prototype)}}t.UPSXError=r;class o extends r{constructor(e,t,r){super(e),this.name="APIError",this.code=t,this.data=r,Object.setPrototypeOf(this,o.prototype)}}t.APIError=o;class n extends r{constructor(e){super(e),this.name="AuthenticationError",Object.setPrototypeOf(this,n.prototype)}}t.AuthenticationError=n;class a extends n{constructor(e="Authentication required"){super(e),this.name="UnauthorizedError",Object.setPrototypeOf(this,a.prototype)}}t.UnauthorizedError=a;class i extends o{constructor(e="Resource not found"){super(e,404),this.name="NotFoundError",Object.setPrototypeOf(this,i.prototype)}}t.NotFoundError=i;class s extends o{constructor(e="Invalid request",t){super(e,400,t),this.name="ValidationError",Object.setPrototypeOf(this,s.prototype)}}t.ValidationError=s;class l extends o{constructor(e="Rate limit exceeded"){super(e,429),this.name="RateLimitError",Object.setPrototypeOf(this,l.prototype)}}t.RateLimitError=l;class c extends o{constructor(e="Server error",t=500){super(e,t),this.name="ServerError",Object.setPrototypeOf(this,c.prototype)}}t.ServerError=c},71744:(e,t)=>{async function r(e){if(!e.ok)switch(e.status){case 401:throw Error("Unauthorized (status 401)");case 403:throw Error("Forbidden (status 403)");case 404:throw Error("Not found (status 404)");case 400:throw Error("Bad Request (status 400)");default:if(e.status>=500)throw Error("Server error (status ".concat(e.status,")"));throw Error("Unhandled error (status ".concat(e.status,")"))}try{if(204===e.status)return null;return await e.json()}catch(e){throw Error("Invalid JSON response: ".concat(e.message))}}Object.defineProperty(t,"__esModule",{value:!0}),t.handleFetchResponse=r},71844:(e,t,r)=>{r.d(t,{C:()=>o});var o=function(e){return e[e.none=-1]="none",e[e.standard=0]="standard",e[e.premium=1]="premium",e[e.adFree=2]="adFree",e[e.premiumWithAd=3]="premiumWithAd",e}({})},72001:(e,t,r)=>{var o=Object.create?function(e,t,r,o){void 0===o&&(o=r);var n=Object.getOwnPropertyDescriptor(t,r);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,o,n)}:function(e,t,r,o){void 0===o&&(o=r),e[o]=t[r]},n=function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||o(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),n(r(65394),t),n(r(36228),t),n(r(93414),t),n(r(68095),t),n(r(74435),t),n(r(98303),t),n(r(59378),t),n(r(38372),t),n(r(32469),t),n(r(68554),t)},74435:(e,t)=>{var r,o,n,a,i,s,l,c,d,u,p,h,m,y,f,g;Object.defineProperty(t,"__esModule",{value:!0}),t.LocationType=t.Role=t.PermissionType=t.ActivityCondition=t.WigetPropType=t.WigetPropPeriod=t.WigetPropCondition=t.WidgetType=t.StrikeTypeCode=t.GeometryType=t.InterruptionLevel=t.Weekday=t.Platform=t.Unit=t.ActivityType=t.AlertType=void 0,function(e){e[e.News=1]="News",e[e.AirQuality=2]="AirQuality",e[e.Avalanche=3]="Avalanche",e[e.Coastal=4]="Coastal",e[e.Miscellaneous=5]="Miscellaneous",e[e.RainFlood=6]="RainFlood",e[e.Temperature=7]="Temperature",e[e.Thunderstorm=8]="Thunderstorm",e[e.Visibility=9]="Visibility",e[e.Wind=10]="Wind",e[e.Lightning=11]="Lightning",e[e.Precipitation=12]="Precipitation",e[e.ExtremeCold=13]="ExtremeCold",e[e.ExtremeHeat=14]="ExtremeHeat",e[e.WinterPrecipitation=15]="WinterPrecipitation",e[e.HeavySnow=16]="HeavySnow",e[e.DenseFog=17]="DenseFog",e[e.HeavyRain=18]="HeavyRain",e[e.HighWind=19]="HighWind",e[e.Flux=20]="Flux",e[e.IcyForecast=21]="IcyForecast",e[e.Pollen=22]="Pollen",e[e.Flu=23]="Flu",e[e.DailyPrecip=24]="DailyPrecip",e[e.WebEmail=25]="WebEmail",e[e.DailyDigest=26]="DailyDigest",e[e.HeavyThunderstorm=27]="HeavyThunderstorm",e[e.Custom=28]="Custom",e[e.Activity=29]="Activity"}(r||(t.AlertType=r={})),function(e){e[e.Running=1]="Running",e[e.Golfing=2]="Golfing",e[e.Hiking=3]="Hiking",e[e.Gardening=4]="Gardening",e[e.Tennis=5]="Tennis",e[e.Cycling=6]="Cycling"}(o||(t.ActivityType=o={})),function(e){e[e.English=1]="English",e[e.Metric=2]="Metric",e[e.Hybrid=3]="Hybrid"}(n||(t.Unit=n={})),function(e){e[e.Apple=1]="Apple",e[e.Android=2]="Android",e[e.Http=3]="Http",e[e.Web=4]="Web",e[e.Email=5]="Email",e[e.Sms=6]="Sms"}(a||(t.Platform=a={})),function(e){e[e.Sunday=0]="Sunday",e[e.Monday=1]="Monday",e[e.Tuesday=2]="Tuesday",e[e.Wednesday=3]="Wednesday",e[e.Thursday=4]="Thursday",e[e.Friday=5]="Friday",e[e.Saturday=6]="Saturday"}(i||(t.Weekday=i={})),function(e){e[e.Passive=0]="Passive",e[e.Active=1]="Active",e[e.TimeSensitive=2]="TimeSensitive",e[e.Critical=3]="Critical"}(s||(t.InterruptionLevel=s={})),function(e){e.GeometryPoint="Point",e.GeometryMultiPoint="MultiPoint",e.GeometryPolygon="Polygon",e.GeometryMultiPolygon="MultiPolygon",e.GeometryLineString="LineString",e.GeometryMultiLineString="MultiLineString",e.GeometryCollection="GeometryCollection",e.Feature="Feature",e.FeatureCollection="FeatureCollection"}(l||(t.GeometryType=l={})),function(e){e[e.CloudToGround=0]="CloudToGround",e[e.CloudToCloud=1]="CloudToCloud"}(c||(t.StrikeTypeCode=c={})),function(e){e.WXLocation="wxlocation",e.WXComparison="wxcomparison"}(d||(t.WidgetType=d={})),function(e){e.Humidity="humidity",e.Wind="wind",e.Pressure="pressure",e.Visibility="visibility",e.DewPoint="dewPoint",e.UV="uv",e.AirQuality="airQuality",e.Temperature="temperature",e.TemperatureFeelsLike="temperatureFeelsLike",e.Precip="precip"}(u||(t.WigetPropCondition=u={})),function(e){e.Daily="daily",e.Hourly="hourly"}(p||(t.WigetPropPeriod=p={})),function(e){e.Forecast="forecast",e.Historical="historical"}(h||(t.WigetPropType=h={})),function(e){e[e.Poor=1]="Poor",e[e.Fair=2]="Fair",e[e.Good=3]="Good"}(m||(t.ActivityCondition=m={})),function(e){e[e.EndpointLookup=1]="EndpointLookup",e[e.LocationLookup=2]="LocationLookup",e[e.UserLookup=3]="UserLookup",e[e.NotificationMetric=4]="NotificationMetric",e[e.ClickMetric=5]="ClickMetric",e[e.AlertMap=6]="AlertMap",e[e.AlertNews=7]="AlertNews",e[e.AlertSegment=8]="AlertSegment",e[e.NotificationApps=9]="NotificationApps",e[e.NotificationTemplates=10]="NotificationTemplates",e[e.NotificationHeadlines=11]="NotificationHeadlines",e[e.NotificationDateFormats=12]="NotificationDateFormats",e[e.NotificationTranslations=13]="NotificationTranslations",e[e.Permissions=14]="Permissions",e[e.AgentActivity=15]="AgentActivity",e[e.DeleteSubscriptions=16]="DeleteSubscriptions",e[e.AlertSent=17]="AlertSent",e[e.Culture=18]="Culture",e[e.SendNotification=19]="SendNotification",e[e.Headlines=20]="Headlines",e[e.Templates=21]="Templates",e[e.UpdateAccountLockStatus=22]="UpdateAccountLockStatus"}(y||(t.PermissionType=y={})),function(e){e[e.Admin=1]="Admin",e[e.User=2]="User",e[e.UnAuthorized=3]="UnAuthorized",e[e.AppAgent=4]="AppAgent"}(f||(t.Role=f={})),function(e){e[e.Globe=0]="Globe",e[e.PollenID=1]="PollenID",e[e.TideID=2]="TideID",e[e.ZoneID=3]="ZoneID",e[e.PostalKey=4]="PostalKey",e[e.CountyID=5]="CountyID",e[e.CityID=6]="CityID",e[e.AdminDistrict=7]="AdminDistrict",e[e.DmaID=8]="DmaID",e[e.TimeZone=9]="TimeZone",e[e.CountryCode=10]="CountryCode"}(g||(t.LocationType=g={}))},76068:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.SubscriptionAPI=void 0;let o=r(88730);class n{async updateActivity(e){await this.requestHandler.request({method:o.HttpMethod.PATCH,path:"/subscription/activity",data:e})}async updateAddress(e){await this.requestHandler.request({method:o.HttpMethod.PATCH,path:"/subscription/address",data:e})}async createMultiple(e){return this.requestHandler.request({method:o.HttpMethod.PUT,path:"/subscription/create",data:e})}async create(e){return this.requestHandler.request({method:o.HttpMethod.POST,path:"/subscription/create",data:e})}async delete(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/subscription/delete",params:{subids:e}})}async updateEvent(e){await this.requestHandler.request({method:o.HttpMethod.PATCH,path:"/subscription/event",data:e})}async find(e){let t={};return e.endpointId&&(t.endpointid=e.endpointId),e.address&&(t.address=e.address),e.userId&&(t.userid=e.userId),this.requestHandler.request({method:o.HttpMethod.GET,path:"/subscription/find",params:t})}async findAll(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/subscription/findall",params:{endpoints:e}})}async updateLocation(e){await this.requestHandler.request({method:o.HttpMethod.PATCH,path:"/subscription/location",data:e})}async update(e){await this.requestHandler.request({method:o.HttpMethod.PATCH,path:"/subscription/update",data:e})}async updateAll(e){await this.requestHandler.request({method:o.HttpMethod.PATCH,path:"/subscription/updateall",data:e})}async deleteAll(e){let t={};e.endpoints&&(t.endpoints=e.endpoints),e.userId&&(t.userid=e.userId),await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/subscriptions",params:t})}constructor(e){this.requestHandler=e}}t.SubscriptionAPI=n},77144:(e,t,r)=>{r.d(t,{i:()=>g,s:()=>v});var o,n=r(97839),a=r(20108),i=r(38051),s=r(70501),l=r(83785),c=r(56436);let d=(null==(o=(0,r(65542).getCookie)("twc-location-geocode"))?void 0:o.toString())||null,u=(0,c.eU)(d);var p=r(36489),h=r(129),m=r(92071),y=r(25977),f=r(52481),g=function(e){return e.PREFER_FAVORITES="preferFavorites",e.PREFER_RECENT="preferRecent",e}({});function v(e){var t;let{location:r,fallbackOrder:o="preferFavorites"}=e,c=(0,m.useParams)(),d=null==c?void 0:c.locale,g=(0,n.useMemo)(()=>r,[null==r?void 0:r.placeId,null==r?void 0:r.geocode]),v=(0,a.md)(h.G),P=(0,a.md)(s.nU),E=(0,a.md)(l.I6),H=(0,a.md)(u),w=Array.isArray(P)&&P.length>0?null==(t=P[0])?void 0:t.coordinate:null,I=Array.isArray(E)&&E.length>0?E[0]:null,q="preferRecent"===o,T=e=>(0,p.PT)(e,d),{data:A,error:C,isLoading:M}=(0,i.Ay)(!g&&w?["location-data",w]:null,()=>w?T(w):null,{revalidateOnFocus:!1,dedupingInterval:3e5}),{data:D,error:b,isLoading:L}=(0,i.Ay)(!g&&!w&&I&&q?["recent-location-data",I]:null,()=>I?(0,p.$M)(I,d):null,{revalidateOnFocus:!1,dedupingInterval:3e5}),{data:U,error:S,isLoading:O}=(0,i.Ay)(g||w||"preferFavorites"!==o&&(!q||I)||!H?null:["geoip-location-data",H],()=>H?T(H):null,{revalidateOnFocus:!1,dedupingInterval:3e5}),{fromLocationPoint:_}=function(){let{getLocationName:e,getLocationContext:t,getLocationPresentationName:r}=(0,f.p)();return{fromLocationPoint:o=>({displayName:o.location.displayName,adminDistrict:o.location.adminDistrict,geocode:(0,y.S)("".concat(o.location.latitude,",").concat(o.location.longitude)),placeId:o.location.placeId,city:o.location.city,countryCode:o.location.countryCode,adminDistrictCode:o.location.adminDistrictCode||"",presentationName:r(o.location),name:e(o.location),context:t(o.location),ianaTimeZone:o.location.ianaTimeZone}),fromLocationSearchItem:o=>({displayName:o.displayName,adminDistrict:o.adminDistrict,geocode:(0,y.S)("".concat(o.latitude,",").concat(o.longitude)),placeId:o.placeId,city:o.city,countryCode:o.countryCode,adminDistrictCode:o.adminDistrictCode||"",presentationName:r(o),name:e(o),context:t(o),ianaTimeZone:o.ianaTimeZone})}}();return{effectiveLocation:(0,n.useMemo)(()=>{let e;return g?e=g:v?e=v:A&&w?e=_(A):C&&w?(console.error("Error fetching favorite location data:",C),e={displayName:"Favorite Location",adminDistrict:"",geocode:w,placeId:"unknown",ianaTimeZone:""}):q&&D&&I?e=_(D):q&&b&&I?(console.error("Error fetching recent location data:",b),e={displayName:"Recent Location",adminDistrict:"",geocode:"",placeId:I,ianaTimeZone:""}):U&&H?e=_(U):S&&H&&(console.error("Error fetching geoip location data:",S),e={displayName:"Unknown Location",adminDistrict:"",geocode:H,placeId:"unknown",city:"",countryCode:"",adminDistrictCode:"",ianaTimeZone:""}),e},[g,A,C,D,I,U,H,v,w,q,S,b]),isLocationLoading:M||!!q&&L||O,locationError:C||(q?b:null)||S}}},77796:(e,t,r)=>{var o=Object.create?function(e,t,r,o){void 0===o&&(o=r);var n=Object.getOwnPropertyDescriptor(t,r);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,o,n)}:function(e,t,r,o){void 0===o&&(o=r),e[o]=t[r]},n=function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||o(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),t.AuthenticationError=t.APIError=t.UPSXClient=void 0;let a=r(89055);Object.defineProperty(t,"UPSXClient",{enumerable:!0,get:function(){return a.UPSXClient}});let i=r(70920);Object.defineProperty(t,"APIError",{enumerable:!0,get:function(){return i.APIError}}),Object.defineProperty(t,"AuthenticationError",{enumerable:!0,get:function(){return i.AuthenticationError}}),n(r(88730),t),n(r(72001),t),n(r(43175),t)},78664:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AssetsAPI=void 0;let o=r(88730);class n{async getAssets(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/assets"})}async getUserAssets(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/assets/".concat(e)})}async deleteUserAssets(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/assets/".concat(e)})}async createWUAssets(e,t){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/assets/wu/".concat(e),data:t})}async updateWUAssets(e,t){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/assets/wu/".concat(e),data:t})}async createWUAssetsMigration(e,t){await this.requestHandler.request({method:o.HttpMethod.POST,path:"/assets/migration/".concat(e),data:t})}constructor(e){this.requestHandler=e}}t.AssetsAPI=n},80753:(e,t,r)=>{r.d(t,{_:()=>o});let o=new(r(77796)).UPSXClient({baseUrl:"https://upsx.weather.com"})},82719:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getLocationSearchUrlConfig=function(e){let{query:t,language:r,locationType:o,countryCode:n,adminDistrictCode:a}=e,i={query:t,language:r,format:"json",apiKey:"71f92ea9dd2f4790b92ea9dd2f779061"};return o&&(i.locationType=o),n&&(i.countryCode=n),a&&(i.adminDistrictCode=a),{host:"api.weather.com",protocol:"https",pathname:"/v3/location/search",query:i}},t.getLocationPointUrlConfig=function(e){let{geocode:t,locId:r,placeId:o,language:n}=e,a={language:n,format:"json",apiKey:"71f92ea9dd2f4790b92ea9dd2f779061"};return t&&(a.geocode=t),r&&(a.locId=r),o&&(a.placeid=o),{host:"api.weather.com",protocol:"https",pathname:"/v3/location/point",query:a}}},83785:(e,t,r)=>{r.d(t,{I6:()=>l,P9:()=>s,Qv:()=>p,YA:()=>c,lr:()=>u,pX:()=>i});var o=r(3665),n=r(99842);let a=(0,n.tG)("wxu-web/keyval:user",{},void 0,{getOnInit:!0}),i=(0,o.I)(a,e=>e.prop("anonymousId")),s=(0,o.I)(a,e=>e.prop("userHasLoggedInBefore")||!1),l=(0,o.I)(a,e=>e.prop("recentLocations")||[]),c=(0,o.I)(a,e=>e.prop("userPreference")||{}),d=(0,n.tG)("wxu-web/keyval:user-account",{},void 0,{getOnInit:!0}),u=(0,o.I)(d,e=>e.prop("userAccountResponse")||null),p=(0,n.tG)("wxu-web/keyval:LOGIN_REDIRECT_PAGE","",void 0,{getOnInit:!0})},85815:(e,t,r)=>{function o(e){let{src:t,autoWebP:r,width:o="",quality:n,saturation:a,ratio:i,format:s}=e;if(!t||-1===t.indexOf("w-x.co"))return t;let l=new URL(t);return l.searchParams.set("format",null!=s?s:"auto"),l.searchParams.set("optimize","medium"),l.searchParams.set("width",o.toString()),a&&l.searchParams.set("saturation","".concat(a)),i&&l.searchParams.set("crop",i),r&&l.searchParams.set("auto","webp"),n&&l.searchParams.set("quality",n.toString()),l.href}r.r(t),r.d(t,{default:()=>o})},85849:(e,t,r)=>{r.d(t,{A:()=>o});let o=!!window.document&&!!window.document.createElement},87313:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.OpenWebAPI=void 0;let o=r(88730);class n{async getAccount(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/openWeb/account",requiresAuth:!0})}async getCodeB(e){return this.requestHandler.request({method:o.HttpMethod.POST,path:"/openWeb/codeB",data:e,requiresAuth:!0})}constructor(e){this.requestHandler=e}}t.OpenWebAPI=n},87596:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AccountAPI=void 0;let o=r(88730);class n{async getAccount(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/account"})}async updateAccount(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/account",data:e})}async getAccountId(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/account/id"})}async changeEmail(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/email/change",data:{email:e}})}async changePassword(e,t){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/password/change",data:{old_password:e,new_password:t}})}async forgotPassword(e,t,r){let n={};t&&(n.reset_password_url=t),r&&(n.platform=r),await this.requestHandler.request({method:o.HttpMethod.POST,path:"/password/forgotten",data:{email:e},params:n,requiresAuth:!1})}async resetPassword(e,t,r,n){let a={};n&&(a.platform=n),await this.requestHandler.request({method:o.HttpMethod.POST,path:"/password/reset",data:{email:e,otp:t,password:r},params:a,requiresAuth:!1})}async getUserId(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/user/id"})}async getUserInfo(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/user/id/email"})}async getUserAccountById(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/users/".concat(e,"/account")})}async getUserAccountByEmail(e){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/users/email/".concat(encodeURIComponent(e),"/account")})}async updateAccountLockStatus(e,t){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/users/".concat(e,"/account/lockStatus"),data:{accountLockStatus:t}})}constructor(e){this.requestHandler=e}}t.AccountAPI=n},88504:(e,t,r)=>{r.r(t),r.d(t,{default:()=>i});var o=r(66695),n=r(56098),a=r.n(n);r(97839);let i=e=>{let{mpa:t=!0,...r}=e;if(t){let{href:e,children:t,...n}=r;return(0,o.jsx)("a",{href:e.toString(),...n,children:t})}return(0,o.jsx)(a(),{...r})}},88730:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.HttpMethod=void 0,function(e){e.GET="GET",e.POST="POST",e.PUT="PUT",e.DELETE="DELETE",e.PATCH="PATCH"}(r||(t.HttpMethod=r={}))},89055:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.UPSXClient=void 0;let o=r(87596),n=r(62850),a=r(78664),i=r(18529),s=r(11589),l=r(87313),c=r(67636),d=r(23438),u=r(92367),p=r(76068),h=r(68201);class m{constructor(e){this.requestHandler=new h.RequestHandler(e),this.auth=new i.AuthAPI(this.requestHandler),this.account=new o.AccountAPI(this.requestHandler),this.applications=new n.ApplicationsAPI(this.requestHandler),this.assets=new a.AssetsAPI(this.requestHandler),this.consent=new s.ConsentAPI(this.requestHandler),this.openWeb=new l.OpenWebAPI(this.requestHandler),this.preference=new c.PreferenceAPI(this.requestHandler),this.purchase=new d.PurchaseAPI(this.requestHandler),this.segmentation=new u.SegmentationAPI(this.requestHandler),this.subscription=new p.SubscriptionAPI(this.requestHandler)}}t.UPSXClient=m},92367:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.SegmentationAPI=void 0;let o=r(88730);class n{async getEndpointSegmentation(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/segmentation/endpoint"})}async updateEndpointSegmentation(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/segmentation/endpoint",data:e})}async deleteEndpointSegmentation(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/segmentation/endpoint",data:{keys:e}})}async getEndpointMetrics(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/segmentation/metrics/endpoint"})}async getUserSegmentation(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/segmentation/user"})}async updateUserSegmentation(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/segmentation/user",data:e})}async deleteUserSegmentation(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/segmentation/user",data:{keys:e}})}async getUserMetrics(){return this.requestHandler.request({method:o.HttpMethod.GET,path:"/segmentation/metrics/user"})}async getBulkSegmentation(e,t){let r={};return e&&(r.endpointIDs=e),t&&(r.userID=t),this.requestHandler.request({method:o.HttpMethod.GET,path:"/segmentation/bulk",params:r})}async deleteBulkSegmentation(e,t){let r={};e&&(r.endpointIDs=e),t&&(r.userID=t),await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/segmentation/bulk",params:r})}async updateBulkSegmentation(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/segmentation/analytics/bulk",data:e})}async updateKeyOnCondition(e){await this.requestHandler.request({method:o.HttpMethod.PUT,path:"/segmentation/analytics/condition",data:e})}async deleteKeyOnCondition(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/segmentation/analytics/condition",data:e})}async deleteKeyForIds(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/segmentation/analytics/key",data:e})}async deleteKeyForAll(e){await this.requestHandler.request({method:o.HttpMethod.DELETE,path:"/segmentation/analytics/key/all",data:{key:e}})}constructor(e){this.requestHandler=e}}t.SegmentationAPI=n},92795:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.ErrInvalidCanonicalCityID=t.ErrInvalidPlaceID=t.ErrInvalidPartialLocID9=t.ErrInvalidPartialLocID1=t.ErrInvalidUSZipCode=t.ErrInvalidLocID=t.ErrInvalidLatOrLong=t.ErrInvalidGeocode=t.ErrInvalid=t.LocationError=t.RegExpCanonicalCityID=t.RegExpPlaceID=t.RegExpPartialLocID9=t.RegExpPartialLocID1=t.RegExpUSZipCode=t.RegExpLocID=t.RegExpGeocode=t.LocationTypeMap=t.LocationType=void 0,t.valid=n,t.normalized=function(e,t){switch(t){case r.Geocode:return i(e);case r.LocID:return l(e);case r.USZipCode:return c(e);case r.PartialLocID1:return d(e);case r.PartialLocID9:return u(e);case r.PlaceID:return p(e);case r.CanonicalCityID:return h(e);default:return e}},t.testLocId=function(e){for(let t of a)if(t.regex.test(e))return{type:t.type,locId:t.normalize(e)};return null},t.normalizedGeocode=i,t.parseLatLonFromGeocode=function(e){let r=i(e).split(",");if(2!==r.length||!r[0]||!r[1])throw t.ErrInvalidGeocode;let o=parseFloat(r[0].trim()),n=parseFloat(r[1].trim());if(isNaN(o)||isNaN(n))throw t.ErrInvalidGeocode;return[o,n]},t.normalizeLatOrLong=s,t.normalizedLocID=l,t.normalizedUSZipCode=c,t.normalizedPartialLocID1=d,t.normalizedPartialLocID9=u,t.normalizedPlaceID=p,t.normalizedCanonicalCityID=h,t.geocodeFromLatLong=function(e,t){return"".concat(e.toFixed(2),",").concat(t.toFixed(2))},function(e){e[e.Geocode=0]="Geocode",e[e.LocID=1]="LocID",e[e.USZipCode=2]="USZipCode",e[e.PartialLocID1=3]="PartialLocID1",e[e.PartialLocID9=4]="PartialLocID9",e[e.PlaceID=5]="PlaceID",e[e.CanonicalCityID=6]="CanonicalCityID"}(r||(t.LocationType=r={})),t.LocationTypeMap={Geocode:"geocode",LocID:"locId",USZipCode:"locId",PartialLocID1:"locId",PartialLocID9:"locId",PlaceID:"placeId",CanonicalCityID:"canonicalCityId"},t.RegExpGeocode=/^[-+]?([1-8]?\d(\.\d+)?|90(\.0+)?),[-+]?(180(\.0+)?|((1[0-7]\d)|([1-9]?\d))(\.\d+)?)$/,t.RegExpLocID=/^([^+|^:]*):(1|4|5|9|11|13|16|17|19|21|25|27):\w{2}$/,t.RegExpUSZipCode=/^\d{5}(:\d)?(\w{2})?$/,t.RegExpPartialLocID1=/^\w{4}\d{4}(:1)?$/,t.RegExpPartialLocID9=/^([a-zA-Z]{3}):.*$/,t.RegExpPlaceID=/^([0-9a-f]){32,}$/,t.RegExpCanonicalCityID=t.RegExpPlaceID;class o extends Error{constructor(e){super(e),this.name="LocationError"}}function n(e,o){switch(o){case r.Geocode:return t.RegExpGeocode.test(e)&&"0.00,0.00"!==e;case r.LocID:return t.RegExpLocID.test(e);case r.USZipCode:return t.RegExpUSZipCode.test(e);case r.PartialLocID1:return t.RegExpPartialLocID1.test(e);case r.PartialLocID9:return t.RegExpPartialLocID9.test(e);case r.PlaceID:return t.RegExpPlaceID.test(e);case r.CanonicalCityID:return t.RegExpCanonicalCityID.test(e);default:return!1}}t.LocationError=o,t.ErrInvalid=new o("location: invalid location"),t.ErrInvalidGeocode=new o("location: invalid location: invalid geocode"),t.ErrInvalidLatOrLong=new o("location: invalid location: invalid latitude or longitude"),t.ErrInvalidLocID=new o("location: invalid location: invalid locid"),t.ErrInvalidUSZipCode=new o("location: invalid location: invalid US zip code"),t.ErrInvalidPartialLocID1=new o("location: invalid location: invalid partial locid type 1"),t.ErrInvalidPartialLocID9=new o("location: invalid location: invalid partial locid type 9"),t.ErrInvalidPlaceID=new o("location: invalid location: invalid placeid"),t.ErrInvalidCanonicalCityID=new o("location: invalid location: invalid canonical city ID");let a=[{regex:t.RegExpGeocode,type:t.LocationTypeMap.Geocode,normalize:i},{regex:t.RegExpLocID,type:t.LocationTypeMap.LocID,normalize:l},{regex:t.RegExpUSZipCode,type:t.LocationTypeMap.USZipCode,normalize:c},{regex:t.RegExpPartialLocID1,type:t.LocationTypeMap.PartialLocID1,normalize:d},{regex:t.RegExpPartialLocID9,type:t.LocationTypeMap.PartialLocID9,normalize:u},{regex:t.RegExpPlaceID,type:t.LocationTypeMap.PlaceID,normalize:p},{regex:t.RegExpCanonicalCityID,type:t.LocationTypeMap.CanonicalCityID,normalize:h}];function i(e){if(""===e||!n(e,r.Geocode))throw t.ErrInvalidGeocode;let o=e.split(",");if(2!==o.length)throw t.ErrInvalidGeocode;try{for(let e=0;e{Object.defineProperty(t,"__esModule",{value:!0})},98303:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})}}]);