@swishapp/sdk 0.80.3 → 0.81.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/swish.js +5 -5
- package/package.json +1 -1
package/dist/swish.js
CHANGED
|
@@ -4,8 +4,8 @@ Keys:
|
|
|
4
4
|
`+String(e.keys))+(`
|
|
5
5
|
|
|
6
6
|
Values:
|
|
7
|
-
`+String(r)));Tt(e);for(var i=0;i<e.callbacks.length;i++){var o=r[i];o instanceof Error?e.callbacks[i].reject(o):e.callbacks[i].resolve(o)}}).catch(function(r){Dt(n,e,r)})}s(Wi,"dispatchBatch");function Dt(n,e,t){Tt(e);for(var r=0;r<e.keys.length;r++)n.clear(e.keys[r]),e.callbacks[r].reject(t)}s(Dt,"failedDispatch");function Tt(n){if(n.cacheHits)for(var e=0;e<n.cacheHits.length;e++)n.cacheHits[e]()}s(Tt,"resolveCacheHits");function Xi(n){var e=!n||n.batch!==!1;if(!e)return 1;var t=n&&n.maxBatchSize;if(t===void 0)return 1/0;if(typeof t!="number"||t<1)throw new TypeError("maxBatchSize must be a positive number: "+t);return t}s(Xi,"getValidMaxBatchSize");function Ki(n){var e=n&&n.batchScheduleFn;if(e===void 0)return Qi;if(typeof e!="function")throw new TypeError("batchScheduleFn must be a function: "+e);return e}s(Ki,"getValidBatchScheduleFn");function Yi(n){var e=n&&n.cacheKeyFn;if(e===void 0)return function(t){return t};if(typeof e!="function")throw new TypeError("cacheKeyFn must be a function: "+e);return e}s(Yi,"getValidCacheKeyFn");function Ji(n){var e=!n||n.cache!==!1;if(!e)return null;var t=n&&n.cacheMap;if(t===void 0)return new Map;if(t!==null){var r=["get","set","delete","clear"],i=r.filter(function(o){return t&&typeof t[o]!="function"});if(i.length!==0)throw new TypeError("Custom cacheMap missing methods: "+i.join(", "))}return t}s(Ji,"getValidCacheMap");function Zi(n){return n&&n.name?n.name:null}s(Zi,"getValidName");function er(n){return typeof n=="object"&&n!==null&&typeof n.length=="number"&&(n.length===0||n.length>0&&Object.prototype.hasOwnProperty.call(n,n.length-1))}s(er,"isArrayLike");tr.exports=Hi});var R=s(n=>n.split("/").pop()??"","shopifyGidToId"),b=s((n,e)=>`gid://shopify/${n}/${e}`,"shopifyIdToGid");var Q=class{constructor(e,t,r=""){this.revalidationPromises=new Map;this.inFlightRequests=new Map;this.clearCachePromise=null;this.cacheName=e,this.defaultCacheControl=t,this.keyPrefix=r}static{s(this,"FetchCache")}async get(e){try{let t=await caches.open(this.cacheName),r=await t.match(e);if(r&&this.isExpired(r)){await t.delete(e);return}return r}catch(t){console.warn("Cache get error:",t);return}}async set(e,t,r){try{if(r?.includes("no-cache"))return;let i=this.createCacheableResponse(t,r);await(await caches.open(this.cacheName)).put(e,i)}catch(i){console.warn("Cache set error:",i)}}async fetchWithCache(e,t,r){let i=await this.getCacheKey(e,t);if(this.clearCachePromise&&await this.clearCachePromise,this.inFlightRequests.has(i))return this.inFlightRequests.get(i).then(u=>u.clone());let o=(async()=>{let u=await this.get(i);if(u)return this.isStaleButRevalidatable(u)&&this.revalidateInBackground(i,e,t,r),u.clone();let a=await fetch(e,t);return a.ok&&await this.set(i,a.clone(),r??this.defaultCacheControl),a})().finally(()=>{this.inFlightRequests.delete(i)});return this.inFlightRequests.set(i,o),o}async delete(e){try{return await(await caches.open(this.cacheName)).delete(e)}catch(t){return console.warn("Cache delete error:",t),!1}}async clear(){return this.clearCachePromise?this.clearCachePromise:(this.clearCachePromise=new Promise(async(e,t)=>{try{let r=await caches.open(this.cacheName),i=await r.keys();await Promise.all(i.map(o=>r.delete(o))),e()}catch(r){console.warn("Cache clear error:",r),t(r)}}),this.clearCachePromise.then(()=>{this.clearCachePromise=null}).catch(e=>{console.warn("Cache clear error:",e)}))}async keys(){try{return(await(await caches.open(this.cacheName)).keys()).map(r=>r.url)}catch(e){return console.warn("Cache keys error:",e),[]}}async has(e){try{let t=await caches.open(this.cacheName),r=await t.match(e);return r&&this.isExpired(r)?(await t.delete(e),!1):r!==void 0}catch(t){return console.warn("Cache has error:",t),!1}}async getStats(){try{return{total:(await(await caches.open(this.cacheName)).keys()).length}}catch(e){return console.warn("Cache stats error:",e),{total:0}}}async cleanupExpiredEntries(){try{let e=await caches.open(this.cacheName),t=await e.keys(),r=0;for(let o of t){let u=await e.match(o);u&&this.isExpired(u)&&(await e.delete(o),r++)}let i=t.length-r;return{removed:r,remaining:i}}catch(e){return console.warn("Cache cleanup error:",e),{removed:0,remaining:0}}}async getCacheKey(e,t){let r=this.getInputUrl(e),i=`${this.keyPrefix}${r}/${JSON.stringify(t)}`,u=new TextEncoder().encode(i),a=await crypto.subtle.digest("SHA-256",u);return`/${Array.from(new Uint8Array(a)).map(p=>p.toString(16).padStart(2,"0")).join("")}`}getInputUrl(e){return e instanceof URL?e.toString():typeof e=="string"?e:e.url}isExpired(e){let t=e.headers.get("Cache-Control");if(!t)return!1;let r=this.parseMaxAge(t),i=this.parseStaleWhileRevalidate(t);if(r===null)return!1;let o=e.headers.get("Date");if(!o)return!1;let u=new Date(o).getTime(),l=(Date.now()-u)/1e3,c=r+(i??0);return l>c}isStaleButRevalidatable(e){let t=e.headers.get("Cache-Control");if(!t)return!1;let r=this.parseMaxAge(t),i=this.parseStaleWhileRevalidate(t);if(r===null||i===null)return!1;let o=e.headers.get("Date");if(!o)return!1;let u=new Date(o).getTime(),l=(Date.now()-u)/1e3;return l>r&&l<=r+i}async revalidateInBackground(e,t,r,i){if(this.revalidationPromises.has(e))return;let o=(async()=>{try{let u=await fetch(t,r);u.ok&&await this.set(e,u.clone(),i??this.defaultCacheControl)}catch(u){console.warn("Background revalidation error:",u)}finally{this.revalidationPromises.delete(e)}})();this.revalidationPromises.set(e,o)}parseMaxAge(e){let t=new RegExp(/max-age=(\d+)/).exec(e);return t?parseInt(t[1],10):null}parseStaleWhileRevalidate(e){let t=new RegExp(/stale-while-revalidate=(\d+)/).exec(e);return t?parseInt(t[1],10):null}createCacheableResponse(e,t){let r=new Headers(e.headers);return r.set("Cache-Control",t),r.has("Date")||r.set("Date",new Date().toUTCString()),new Response(e.body,{status:e.status,statusText:e.statusText,headers:r})}};var he=class{static{s(this,"AjaxApiClient")}constructor(e){this.config=e,this.cache=new Q("ajax-api","max-age=60, stale-while-revalidate=3600"),this.cache.cleanupExpiredEntries().catch(t=>{console.warn("Ajax API cache initialization cleanup error:",t)})}patchFetch(){if(!window.fetch||typeof window.fetch!="function")return;let e=window.fetch,t=this.config.responseInterceptor,r=this.getFetchRequest.bind(this);window.fetch=function(...i){let o=e.apply(this,i);if(typeof t=="function"){let u=r(i[0]);o.then(a=>t(a,u))}return o}}getFetchRequest(e){return e instanceof Request?e:new Request(e)}getBaseUrl(){if(!this.config?.storeDomain)throw new Error("Cart API client not initialized - missing store domain");return`https://${this.config.storeDomain}`}fetch(e,t){return(e instanceof Request?e.method:t?.method??"GET")==="GET"?this.cache.fetchWithCache(e,t):fetch(e,t)}async request(e,t={}){let r=`${this.getBaseUrl()}${e}`,i={"Content-Type":"application/json",Accept:"application/json"},o=await this.fetch(r,{...t,headers:{...i,...t.headers}});if(!o.ok){let u;try{u=await o.json()}catch{u={message:`HTTP ${o.status}: ${o.statusText}`,status:o.status.toString(),description:o.statusText}}throw new Error(u.message||u.description)}return o.json()}async fetchCart(){return this.request("/cart.js")}async addToCart(e){let t={...e,items:e.items.map(r=>{let i=R(r.id);if(!i)throw new Error(`Invalid Shopify GID format: ${r.id}`);let o=parseInt(i,10);if(isNaN(o))throw new Error(`Invalid numeric ID extracted from GID: ${r.id}`);return{...r,id:o}})};return this.request("/cart/add.js",{method:"POST",body:JSON.stringify(t)})}async clearCache(){await this.cache.clear()}};var ye=class{constructor(e){this.eventMap={"/cart/add":"cart-add","/cart/update":"cart-update","/cart/change":"cart-change","/cart/clear":"cart-clear"};this.eventBus=e,this.processFetchResponse=this.processFetchResponse.bind(this)}static{s(this,"AjaxApiPublisher")}async processFetchResponse(e,t){try{let r=this.getEventName(t.url);if(r){let i=await e.clone().json();this.eventBus.publish(r,i)}}catch(r){console.warn(r)}}getEventName(e){for(let[t,r]of Object.entries(this.eventMap))if(e.includes(t))return r;return null}};function yr(){let n=document.body||document.documentElement;return n?Promise.resolve(n):new Promise(e=>{window.addEventListener("DOMContentLoaded",()=>e(n))})}s(yr,"waitForDOM");function ce({onElementFound:n,selector:e,observerOptions:t}){let r=new WeakSet,i=new MutationObserver(l=>{let c=!1;for(let p of l)if(p.addedNodes.length>0){c=!0;break}c&&o()}),o=s(()=>{document.querySelectorAll(e).forEach(l=>{r.has(l)||(u(l),r.add(l))})},"locateElements"),u=s(l=>{if(!t){n(l);return}let c=new IntersectionObserver(p=>{for(let f of p)f.isIntersecting&&(c.disconnect(),n(l))},t);c.observe(l)},"observeElement");return s(async()=>{let l=await yr();o(),i.observe(l,{childList:!0,subtree:!0})},"locateAndObserveElements")(),i}s(ce,"createElementLocator");function se({onLocationChange:n,fireOnInit:e=!1}){let t=s(()=>{n(window.location)},"handleChange");window.addEventListener("popstate",t);let r=history.pushState,i=history.replaceState;return history.pushState=function(...o){r.apply(this,o),t()},history.replaceState=function(...o){i.apply(this,o),t()},e&&t(),()=>{window.removeEventListener("popstate",t),history.pushState=r,history.replaceState=i}}s(se,"createLocationObserver");function Vt({element:n,onHrefChange:e}){let t=s(()=>{e(n.href)},"handleChange"),r=new MutationObserver(()=>{t()});return r.observe(n,{attributes:!0,attributeFilter:["href"]}),()=>{r.disconnect()}}s(Vt,"createHrefObserver");var me=class{constructor(){this.eventBus=new EventTarget}static{s(this,"EventBus")}subscribe(e,t,r){return Array.isArray(e)||(e=[e]),e.forEach(i=>{this.eventBus.addEventListener(i,t,r)}),()=>{e.forEach(i=>{this.eventBus.removeEventListener(i,t,r)})}}unsubscribe(e,t,r){this.eventBus.removeEventListener(e,t,r)}publish(e,t){this.eventBus.dispatchEvent(new CustomEvent(e,{detail:t}))}};var ze;function Nt(n){return{lang:n?.lang??ze?.lang,message:n?.message,abortEarly:n?.abortEarly??ze?.abortEarly,abortPipeEarly:n?.abortPipeEarly??ze?.abortPipeEarly}}s(Nt,"getGlobalConfig");var mr;function vr(n){return mr?.get(n)}s(vr,"getGlobalMessage");var gr;function Ir(n){return gr?.get(n)}s(Ir,"getSchemaMessage");var wr;function br(n,e){return wr?.get(n)?.get(e)}s(br,"getSpecificMessage");function We(n){let e=typeof n;return e==="string"?`"${n}"`:e==="number"||e==="bigint"||e==="boolean"?`${n}`:e==="object"||e==="function"?(n&&Object.getPrototypeOf(n)?.constructor?.name)??"null":e}s(We,"_stringify");function X(n,e,t,r,i){let o=i&&"input"in i?i.input:t.value,u=i?.expected??n.expects??null,a=i?.received??We(o),l={kind:n.kind,type:n.type,input:o,expected:u,received:a,message:`Invalid ${e}: ${u?`Expected ${u} but r`:"R"}eceived ${a}`,requirement:n.requirement,path:i?.path,issues:i?.issues,lang:r.lang,abortEarly:r.abortEarly,abortPipeEarly:r.abortPipeEarly},c=n.kind==="schema",p=i?.message??n.message??br(n.reference,l.lang)??(c?Ir(l.lang):null)??r.message??vr(l.lang);p!==void 0&&(l.message=typeof p=="function"?p(l):p),c&&(t.typed=!1),t.issues?t.issues.push(l):t.issues=[l]}s(X,"_addIssue");function Z(n){return{version:1,vendor:"valibot",validate(e){return n["~run"]({value:e},Nt())}}}s(Z,"_getStandardProps");function Er(n,e){let t=[...new Set(n)];return t.length>1?`(${t.join(` ${e} `)})`:t[0]??"never"}s(Er,"_joinExpects");function Xe(n,e){return{kind:"validation",type:"min_value",reference:Xe,async:!1,expects:`>=${n instanceof Date?n.toJSON():We(n)}`,requirement:n,message:e,"~run"(t,r){return t.typed&&!(t.value>=this.requirement)&&X(this,"value",t,r,{received:t.value instanceof Date?t.value.toJSON():We(t.value)}),t}}}s(Xe,"minValue");function j(n){return{kind:"transformation",type:"transform",reference:j,async:!1,operation:n,"~run"(e){return e.value=this.operation(e.value),e}}}s(j,"transform");function Sr(n,e,t){return typeof n.fallback=="function"?n.fallback(e,t):n.fallback}s(Sr,"getFallback");function Gt(n,e,t){return typeof n.default=="function"?n.default(e,t):n.default}s(Gt,"getDefault");function Ke(n,e){return{kind:"schema",type:"array",reference:Ke,expects:"Array",async:!1,item:n,message:e,get"~standard"(){return Z(this)},"~run"(t,r){let i=t.value;if(Array.isArray(i)){t.typed=!0,t.value=[];for(let o=0;o<i.length;o++){let u=i[o],a=this.item["~run"]({value:u},r);if(a.issues){let l={type:"array",origin:"value",input:i,key:o,value:u};for(let c of a.issues)c.path?c.path.unshift(l):c.path=[l],t.issues?.push(c);if(t.issues||(t.issues=a.issues),r.abortEarly){t.typed=!1;break}}a.typed||(t.typed=!1),t.value.push(a.value)}}else X(this,"type",t,r);return t}}}s(Ke,"array");function U(n){return{kind:"schema",type:"number",reference:U,expects:"number",async:!1,message:n,get"~standard"(){return Z(this)},"~run"(e,t){return typeof e.value=="number"&&!isNaN(e.value)?e.typed=!0:X(this,"type",e,t),e}}}s(U,"number");function k(n,e){return{kind:"schema",type:"object",reference:k,expects:"Object",async:!1,entries:n,message:e,get"~standard"(){return Z(this)},"~run"(t,r){let i=t.value;if(i&&typeof i=="object"){t.typed=!0,t.value={};for(let o in this.entries){let u=this.entries[o];if(o in i||(u.type==="exact_optional"||u.type==="optional"||u.type==="nullish")&&u.default!==void 0){let a=o in i?i[o]:Gt(u),l=u["~run"]({value:a},r);if(l.issues){let c={type:"object",origin:"value",input:i,key:o,value:a};for(let p of l.issues)p.path?p.path.unshift(c):p.path=[c],t.issues?.push(p);if(t.issues||(t.issues=l.issues),r.abortEarly){t.typed=!1;break}}l.typed||(t.typed=!1),t.value[o]=l.value}else if(u.fallback!==void 0)t.value[o]=Sr(u);else if(u.type!=="exact_optional"&&u.type!=="optional"&&u.type!=="nullish"&&(X(this,"key",t,r,{input:void 0,expected:`"${o}"`,path:[{type:"object",origin:"key",input:i,key:o,value:i[o]}]}),r.abortEarly))break}}else X(this,"type",t,r);return t}}}s(k,"object");function N(n,e){return{kind:"schema",type:"optional",reference:N,expects:`(${n.expects} | undefined)`,async:!1,wrapped:n,default:e,get"~standard"(){return Z(this)},"~run"(t,r){return t.value===void 0&&(this.default!==void 0&&(t.value=Gt(this,t,r)),t.value===void 0)?(t.typed=!0,t):this.wrapped["~run"](t,r)}}}s(N,"optional");function E(n){return{kind:"schema",type:"string",reference:E,expects:"string",async:!1,message:n,get"~standard"(){return Z(this)},"~run"(e,t){return typeof e.value=="string"?e.typed=!0:X(this,"type",e,t),e}}}s(E,"string");function Ut(n){let e;if(n)for(let t of n)e?e.push(...t.issues):e=t.issues;return e}s(Ut,"_subIssues");function ee(n,e){return{kind:"schema",type:"union",reference:ee,expects:Er(n.map(t=>t.expects),"|"),async:!1,options:n,message:e,get"~standard"(){return Z(this)},"~run"(t,r){let i,o,u;for(let a of this.options){let l=a["~run"]({value:t.value},r);if(l.typed)if(l.issues)o?o.push(l):o=[l];else{i=l;break}else u?u.push(l):u=[l]}if(i)return i;if(o){if(o.length===1)return o[0];X(this,"type",t,r,{issues:Ut(o)}),t.typed=!0}else{if(u?.length===1)return u[0];X(this,"type",t,r,{issues:Ut(u)})}return t}}}s(ee,"union");function G(...n){return{...n[0],pipe:n,get"~standard"(){return Z(this)},"~run"(e,t){for(let r of n)if(r.kind!=="metadata"){if(e.issues&&(r.kind==="schema"||r.kind==="transformation")){e.typed=!1;break}(!e.issues||!t.abortEarly&&!t.abortPipeEarly)&&(e=r["~run"](e,t))}return e}}}s(G,"pipe");function _(n,e,t){let r=n["~run"]({value:e},Nt(t));return{typed:r.typed,success:!r.issues,output:r.value,issues:r.issues}}s(_,"safeParse");var S=class{constructor(e,t,r,i){this.swish=e;this.ui=t;this.eventBus=r;this.options=i}static{s(this,"IntentHandler")}};var Cr=k({itemId:N(G(E())),productId:G(ee([G(E(),j(R)),U()]),j(n=>Number(n)),U()),variantId:N(G(ee([G(E(),j(R)),U()]),j(n=>Number(n)),U()))}),oe=class extends S{static{s(this,"EditItemVariantHandler")}async invoke(e,t=!1){return new Promise(r=>{let i=e.data,o=_(Cr,i);if(!o.success){r({code:"error",message:"Invalid intent data",issues:o.issues.map(c=>c.message)});return}let{itemId:u,productId:a,variantId:l}=o.output;this.ui.showVariantSelect({productId:a.toString(),variantId:l?.toString(),onClose:s(()=>{r({code:"closed"})},"onClose"),onSubmit:s(async c=>{let{item:p,product:f,variant:m}=c,h={code:"ok",data:{item:p,product:f,variant:m}};t||this.eventBus.dispatchEvent(new CustomEvent("edit:swish/ItemVariant",{detail:h})),r(h)},"onSubmit")})})}};var xr=k({productId:G(ee([G(E(),j(R)),U()]),j(n=>Number(n)),U()),variantId:N(G(ee([G(E(),j(R)),U()]),j(Number),U())),quantity:N(G(U(),Xe(1))),tags:N(Ke(E()))}),ve=class extends S{static{s(this,"CreateItemHandler")}async invoke(e){let t=e.data,r=_(xr,t);if(!r.success)return{code:"error",message:"Invalid intent data",issues:r.issues.map(m=>m.message)};let{productId:i,variantId:o,quantity:u,tags:a}=r.output,l=await this.swish.storefront.loadSaveIntentData({productId:b("Product",i),variantId:o?b("ProductVariant",o):void 0});if(l.errors)return{code:"error",message:l.errors.message??"Failed to load save intent data",issues:l.errors.graphQLErrors?.map(m=>m.message)??[]};if(!l.data||!l.data.product)return{code:"error",message:"Failed to load save intent data",issues:["API response missing data"]};let{product:c}=l.data,p=c.variantsCount?.count&&c.variantsCount.count>1;if(!p||!this.options.save.requireVariant){let m=s(()=>!p&&c.selectedOrFirstAvailableVariant?Number(R(c.selectedOrFirstAvailableVariant.id)):o,"variantIdToUse"),h=await this.swish.api.items.create({productId:i,variantId:m(),quantity:u,tags:a});if("error"in h)return{code:"error",message:"Failed to create item",issues:[h.error.message]};if(!h.data)return{code:"error",message:"Could not complete item creation",issues:["API response missing data"]};let D="variant"in l.data?l.data.variant:void 0,y={code:"ok",data:{item:h.data,product:c,variant:p?D:c.selectedOrFirstAvailableVariant}};return this.eventBus.dispatchEvent(new CustomEvent("create:swish/Item",{detail:y})),y}let f=await new oe(this.swish,this.ui,this.eventBus,this.options).invoke({action:"edit",type:"swish/ItemVariant",data:{productId:i,variantId:o}});return this.eventBus.dispatchEvent(new CustomEvent("create:swish/Item",{detail:f})),f}};var ge=class extends S{static{s(this,"CreateListHandler")}async invoke(e){return new Promise(t=>{this.ui.showListEditor({onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(async r=>{let{list:i}=r;t({code:"ok",data:{list:i}})},"onSubmit")})})}};var kr=k({itemId:E()}),Ie=class extends S{static{s(this,"DeleteItemHandler")}async invoke(e){return new Promise(async t=>{let r=_(kr,e.data);if(!r.success){t({code:"error",message:"Invalid intent data",issues:r.issues.map(o=>o.message)});return}let{itemId:i}=r.output;if(!this.options.unsave.requireConfirmation){let o=await this.swish.api.items.deleteById(i);if("error"in o){t({code:"error",message:"Failed to delete item",issues:[o.error.message]});return}t({code:"ok",data:{itemId:i}});return}this.ui.showUnsaveAlert({itemId:i,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(()=>{t({code:"ok",data:{itemId:i}})},"onSubmit")})})}};var Ar=k({listId:E()}),we=class extends S{static{s(this,"DeleteListHandler")}async invoke(e){return new Promise(t=>{let r=e.data,i=_(Ar,r);if(!i.success){t({code:"error",message:"Invalid intent data",issues:i.issues.map(u=>u.message)});return}let{listId:o}=i.output;this.ui.showDeleteListAlert({listId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(async()=>{t({code:"ok",data:{listId:o}})},"onSubmit")})})}};var Rr=k({itemId:E()}),be=class extends S{static{s(this,"EditItemListsHandler")}async invoke(e,t=!1){return new Promise(r=>{let i=e.data,o=_(Rr,i);if(!o.success){r({code:"error",message:"Invalid intent data",issues:o.issues.map(a=>a.message)});return}let{itemId:u}=o.output;this.ui.showListSelect({itemId:u,onClose:s(()=>{r({code:"closed"})},"onClose"),onSubmit:s(async a=>{let{item:l,product:c,variant:p}=a,f={code:"ok",data:{item:l,product:c,variant:p}};t||this.eventBus.dispatchEvent(new CustomEvent("edit:swish/ItemLists",{detail:f})),r(f)},"onSubmit"),onUnsave(a){let l={code:"ok",data:{itemId:a.itemId}};r(l)}})})}};var Dr=k({listId:E()}),Ee=class extends S{static{s(this,"EditListHandler")}async invoke(e){return new Promise(t=>{let r=e.data,i=_(Dr,r);if(!i.success){t({code:"error",message:"Invalid intent data",issues:i.issues.map(u=>u.message)});return}let{listId:o}=i.output;this.ui.showListEditor({listId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(async u=>{let{list:a}=u;t({code:"ok",data:{list:a}})},"onSubmit")})})}};var Se=class extends S{static{s(this,"OpenHomeHandler")}async invoke(e){return new Promise(t=>{this.ui.showDrawer({onClose:s(()=>{t({code:"closed"})},"onClose")})})}};var Tr=k({listId:E()}),Ce=class extends S{static{s(this,"OpenListMenuHandler")}async invoke(e){return new Promise(t=>{let r=e.data,i=_(Tr,r);if(!i.success){t({code:"error",message:"Invalid intent data",issues:i.issues.map(u=>u.message)});return}let{listId:o}=i.output;this.ui.showListMenu({listId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onEdit:s(u=>{t({code:"ok",data:u})},"onEdit"),onDelete:s(()=>{t({code:"ok",data:{listId:o}})},"onDelete")})})}};var eo=k({returnTo:N(E())}),xe=class extends S{static{s(this,"OpenSignInHandler")}async invoke(e){return new Promise(t=>{this.ui.showSignIn({returnTo:e.data?.returnTo,onClose:s(()=>{t({code:"closed"})},"onClose")})})}};var Pr=k({productId:E(),variantId:N(E())}),ke=class extends S{static{s(this,"OpenQuickBuyHandler")}async invoke(e){return new Promise(t=>{let r=_(Pr,e.data);if(!r.success){t({code:"error",message:"Invalid intent data",issues:r.issues.map(u=>u.message)});return}let{productId:i,variantId:o}=r.output;this.ui.showQuickBuy({productId:i,variantId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(u=>{t({code:"ok",data:u})},"onSubmit")})})}};var ae=class{constructor(e,t,r){this.swish=e;this.ui=t;this.options=r}static{s(this,"IntentHook")}};var Ae=class extends ae{static{s(this,"AfterCreateItemHook")}async invoke(e){if(this.options.save.showToast&&e.code==="ok"){let{item:t,product:r,variant:i}=e.data;r&&this.ui.showToast({title:"Saved",text:r.title,image:i?.image?.url??r.featuredImage?.url,action:{label:"Add to List",onClick:s(()=>{this.swish.intents.invoke({action:"edit",type:"swish/ItemLists",data:{itemId:t.id}})},"onClick")}})}}};var Re=class extends ae{static{s(this,"AfterEditItemListsHook")}async invoke(e){if(this.options.edit.showToast&&e.code==="ok"){if("itemId"in e.data)return;let{product:t,variant:r}=e.data;t&&this.ui.showToast({title:"Saved",text:t.title,image:r?.image?.url??t.featuredImage?.url,action:{label:"View",onClick:s(()=>{this.swish.intents.invoke({action:"open",type:"swish/Home"})},"onClick")}})}}};var De=class{static{s(this,"Intents")}constructor(e,t){this.swish=e,this.ui=t,this.eventBus=new EventTarget,this.options=e.options.swishUi.intents,this.initIntentHooks(),this.initIntentWatcher()}publishAnalyticsEvent(e,t){typeof window.Shopify?.analytics?.publish=="function"&&window.Shopify.analytics.publish(e,t)}async invoke(e){let t=this.parseIntent(e),r=this.getIntentQuery(t),i={lifecycle:"before",intent:t};return this.publishAnalyticsEvent("swish-intent",i),this.publishAnalyticsEvent(`swish-intent=${r}`,i),{intent:t,complete:this.handleIntent(t).then(o=>{let u={lifecycle:"after",intent:t,response:o};return this.publishAnalyticsEvent("swish-intent",u),this.publishAnalyticsEvent(`swish-intent=${r}`,u),o})}}listen(e,t){let r=this.getIntentQuery(e),i=s(u=>{"detail"in u&&u.detail?t(u.detail):console.warn("Intent response event without detail",u)},"eventListener"),o=s(()=>{this.eventBus.removeEventListener(r,i)},"unsubscribe");return this.eventBus.addEventListener(r,i),o}getIntentQuery(e){return`${e.action}:${e.type}`}parseIntent(e){if(typeof e=="string"){let[t,...r]=e.split(","),[i,o]=t.split(":"),u=r.reduce((a,l)=>{let[c,p]=l.split("=");return a[c]=p,a},{});return{action:i,type:o,data:u}}return e}async handleIntent(e){return e.action==="create"&&e.type==="swish/Item"?new ve(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="delete"&&e.type==="swish/Item"?new Ie(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="edit"&&e.type==="swish/ItemVariant"?new oe(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="edit"&&e.type==="swish/ItemLists"?new be(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="create"&&e.type==="swish/List"?new ge(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="edit"&&e.type==="swish/List"?new Ee(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="delete"&&e.type==="swish/List"?new we(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/Home"?new Se(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/ListMenu"?new Ce(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/SignIn"?new xe(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/QuickBuy"?new ke(this.swish,this.ui,this.eventBus,this.options).invoke(e):{code:"error",message:"Invalid intent",issues:["Invalid intent"]}}initIntentHooks(){this.eventBus.addEventListener("create:swish/Item",e=>{new Ae(this.swish,this.ui,this.options).invoke(e.detail)}),this.eventBus.addEventListener("edit:swish/ItemLists",e=>{new Re(this.swish,this.ui,this.options).invoke(e.detail)})}initIntentWatcher(){ce({selector:"[swish-intent]",onElementFound:s(e=>{let t=this.parseIntent(e.getAttribute("swish-intent"));t&&e.addEventListener("click",()=>{this.invoke(t)})},"onElementFound")}),ce({selector:"a[href*='swish-intent=']",onElementFound:s(e=>{e instanceof HTMLAnchorElement&&e.addEventListener("click",t=>{if(!t.metaKey&&!t.ctrlKey&&!t.shiftKey&&!t.altKey){let i=new URL(e.href).searchParams.get("swish-intent");if(i){let o=this.parseIntent(i);o&&(t.preventDefault(),t.stopPropagation(),this.invoke(o))}}})},"onElementFound")}),se({fireOnInit:!0,onLocationChange:s(e=>{let t=new URLSearchParams(window.location.search).get("swish-intent");if(t){let r=this.parseIntent(t);if(r){this.invoke(r);let i=new URL(window.location.href);i.searchParams.delete("swish-intent"),window.history.replaceState({},document.title,i.toString())}}},"onLocationChange")})}};var Mt=s(n=>({storefrontApi:{storeDomain:n.storefrontApi?.storeDomain??"",accessToken:n.storefrontApi?.accessToken??""},storefrontContext:{...n.storefrontContext,localization:{country:n.storefrontContext.localization.country.toUpperCase(),language:n.storefrontContext.localization.language.toUpperCase(),market:n.storefrontContext.localization.market}},badges:{getBadges:n.badges?.getBadges??(({defaultBadges:e})=>e)},metafields:{product:n.metafields?.product??[],productVariant:n.metafields?.productVariant??[]},swishApi:{authProxy:n.swishApi?.authProxy??"/apps/wishlist/api",version:n.swishApi?.version??"2026-01"},swishUi:{baseUrl:n.swishUi?.baseUrl??"https://swish.app/cdn",version:n.swishUi?.version??"0.73.0",components:{productRow:{showVariantTitle:n.swishUi?.components?.productRow?.showVariantTitle??!1},productDetail:{descriptionMaxLines:n.swishUi?.components?.productDetail?.descriptionMaxLines??4},variantSelect:{displayType:n.swishUi?.components?.variantSelect?.displayType??"pills"},imageSlider:{flush:n.swishUi?.components?.imageSlider?.flush??!1,loop:n.swishUi?.components?.imageSlider?.loop??!1},images:{baseTint:n.swishUi?.components?.images?.baseTint??!1},buyButtons:{shopPay:n.swishUi?.components?.buyButtons?.shopPay??!1},listDetailPage:{desktopColumns:n.swishUi?.components?.listDetailPage?.desktopColumns??4,showBuyButton:n.swishUi?.components?.listDetailPage?.showBuyButton??!0},drawer:{title:n.swishUi?.components?.drawer?.title??"",logo:{url:n.swishUi?.components?.drawer?.logo?.url??"",altText:n.swishUi?.components?.drawer?.logo?.altText??""},navigation:{variant:n.swishUi?.components?.drawer?.navigation?.variant??"floating",items:n.swishUi?.components?.drawer?.navigation?.items??[{id:"home",enabled:!0,href:"/"},{id:"items",enabled:!0,href:"/items"},{id:"lists",enabled:!0,href:"/lists"},{id:"chat",enabled:!1,href:"/chat"},{id:"orders",enabled:!0,href:"/orders"},{id:"profile",enabled:!0,href:"/profile"}]},miniMenu:{items:n.swishUi?.components?.drawer?.miniMenu?.items??[]}}},css:n.swishUi?.css??[],intents:{save:{requireVariant:n.swishUi?.intents?.save?.requireVariant??!1,showToast:n.swishUi?.intents?.save?.showToast??!1},edit:{showToast:n.swishUi?.intents?.edit?.showToast??!1},unsave:{requireConfirmation:n.swishUi?.intents?.unsave?.requireConfirmation??!1,openEditor:n.swishUi?.intents?.unsave?.openEditor??!1,showToast:n.swishUi?.intents?.unsave?.showToast??!1}},theme:n.swishUi?.theme??{}}}),"createSwishOptions");var _r=Symbol.for("preact-signals");function Pe(){if(K>1)K--;else{for(var n,e=!1;pe!==void 0;){var t=pe;for(pe=void 0,Ye++;t!==void 0;){var r=t.o;if(t.o=void 0,t.f&=-3,!(8&t.f)&&Ht(t))try{t.c()}catch(i){e||(n=i,e=!0)}t=r}}if(Ye=0,K--,e)throw n}}s(Pe,"t");function Y(n){if(K>0)return n();K++;try{return n()}finally{Pe()}}s(Y,"r");var g=void 0;function jt(n){var e=g;g=void 0;try{return n()}finally{g=e}}s(jt,"n");var pe=void 0,K=0,Ye=0,Te=0;function Ft(n){if(g!==void 0){var e=n.n;if(e===void 0||e.t!==g)return e={i:0,S:n,p:g.s,n:void 0,t:g,e:void 0,x:void 0,r:e},g.s!==void 0&&(g.s.n=e),g.s=e,n.n=e,32&g.f&&n.S(e),e;if(e.i===-1)return e.i=0,e.n!==void 0&&(e.n.p=e.p,e.p!==void 0&&(e.p.n=e.n),e.p=g.s,e.n=void 0,g.s.n=e,g.s=e),e}}s(Ft,"e");function L(n,e){this.v=n,this.i=0,this.n=void 0,this.t=void 0,this.W=e?.watched,this.Z=e?.unwatched,this.name=e?.name}s(L,"u");L.prototype.brand=_r;L.prototype.h=function(){return!0};L.prototype.S=function(n){var e=this,t=this.t;t!==n&&n.e===void 0&&(n.x=t,this.t=n,t!==void 0?t.e=n:jt(function(){var r;(r=e.W)==null||r.call(e)}))};L.prototype.U=function(n){var e=this;if(this.t!==void 0){var t=n.e,r=n.x;t!==void 0&&(t.x=r,n.e=void 0),r!==void 0&&(r.e=t,n.x=void 0),n===this.t&&(this.t=r,r===void 0&&jt(function(){var i;(i=e.Z)==null||i.call(e)}))}};L.prototype.subscribe=function(n){var e=this;return V(function(){var t=e.value,r=g;g=void 0;try{n(t)}finally{g=r}},{name:"sub"})};L.prototype.valueOf=function(){return this.value};L.prototype.toString=function(){return this.value+""};L.prototype.toJSON=function(){return this.value};L.prototype.peek=function(){var n=g;g=void 0;try{return this.value}finally{g=n}};Object.defineProperty(L.prototype,"value",{get:s(function(){var n=Ft(this);return n!==void 0&&(n.i=this.i),this.v},"get"),set:s(function(n){if(n!==this.v){if(Ye>100)throw new Error("Cycle detected");this.v=n,this.i++,Te++,K++;try{for(var e=this.t;e!==void 0;e=e.x)e.t.N()}finally{Pe()}}},"set")});function C(n,e){return new L(n,e)}s(C,"d");function Ht(n){for(var e=n.s;e!==void 0;e=e.n)if(e.S.i!==e.i||!e.S.h()||e.S.i!==e.i)return!0;return!1}s(Ht,"c");function Qt(n){for(var e=n.s;e!==void 0;e=e.n){var t=e.S.n;if(t!==void 0&&(e.r=t),e.S.n=e,e.i=-1,e.n===void 0){n.s=e;break}}}s(Qt,"a");function zt(n){for(var e=n.s,t=void 0;e!==void 0;){var r=e.p;e.i===-1?(e.S.U(e),r!==void 0&&(r.n=e.n),e.n!==void 0&&(e.n.p=r)):t=e,e.S.n=e.r,e.r!==void 0&&(e.r=void 0),e=r}n.s=t}s(zt,"l");function te(n,e){L.call(this,void 0),this.x=n,this.s=void 0,this.g=Te-1,this.f=4,this.W=e?.watched,this.Z=e?.unwatched,this.name=e?.name}s(te,"y");te.prototype=new L;te.prototype.h=function(){if(this.f&=-3,1&this.f)return!1;if((36&this.f)==32||(this.f&=-5,this.g===Te))return!0;if(this.g=Te,this.f|=1,this.i>0&&!Ht(this))return this.f&=-2,!0;var n=g;try{Qt(this),g=this;var e=this.x();(16&this.f||this.v!==e||this.i===0)&&(this.v=e,this.f&=-17,this.i++)}catch(t){this.v=t,this.f|=16,this.i++}return g=n,zt(this),this.f&=-2,!0};te.prototype.S=function(n){if(this.t===void 0){this.f|=36;for(var e=this.s;e!==void 0;e=e.n)e.S.S(e)}L.prototype.S.call(this,n)};te.prototype.U=function(n){if(this.t!==void 0&&(L.prototype.U.call(this,n),this.t===void 0)){this.f&=-33;for(var e=this.s;e!==void 0;e=e.n)e.S.U(e)}};te.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var n=this.t;n!==void 0;n=n.x)n.t.N()}};Object.defineProperty(te.prototype,"value",{get:s(function(){if(1&this.f)throw new Error("Cycle detected");var n=Ft(this);if(this.h(),n!==void 0&&(n.i=this.i),16&this.f)throw this.v;return this.v},"get")});function q(n,e){return new te(n,e)}s(q,"w");function Wt(n){var e=n.u;if(n.u=void 0,typeof e=="function"){K++;var t=g;g=void 0;try{e()}catch(r){throw n.f&=-2,n.f|=8,Je(n),r}finally{g=t,Pe()}}}s(Wt,"_");function Je(n){for(var e=n.s;e!==void 0;e=e.n)e.S.U(e);n.x=void 0,n.s=void 0,Wt(n)}s(Je,"b");function Or(n){if(g!==this)throw new Error("Out-of-order effect");zt(this),g=n,this.f&=-2,8&this.f&&Je(this),Pe()}s(Or,"g");function ue(n,e){this.x=n,this.u=void 0,this.s=void 0,this.o=void 0,this.f=32,this.name=e?.name}s(ue,"p");ue.prototype.c=function(){var n=this.S();try{if(8&this.f||this.x===void 0)return;var e=this.x();typeof e=="function"&&(this.u=e)}finally{n()}};ue.prototype.S=function(){if(1&this.f)throw new Error("Cycle detected");this.f|=1,this.f&=-9,Wt(this),Qt(this),K++;var n=g;return g=this,Or.bind(this,n)};ue.prototype.N=function(){2&this.f||(this.f|=2,this.o=pe,pe=this)};ue.prototype.d=function(){this.f|=8,1&this.f||Je(this)};ue.prototype.dispose=function(){this.d()};function V(n,e){var t=new ue(n,e);try{t.c()}catch(i){throw t.d(),i}var r=t.d.bind(t);return r[Symbol.dispose]=r,r}s(V,"E");var Lr=/\/products\/([^/?#]+)(?:\?(?:[^#]*?&)?variant=(\d+))?/,Ze=s(n=>{let e=n.match(Lr);return e?{productHandle:e[1],variantId:e[2]}:null},"parseProductUrl"),Xt=s(({source:n,onProductUrlChange:e})=>{let t=s(r=>{let i=Ze(r);i?.productHandle&&e(i)},"handleChange");if(n instanceof HTMLAnchorElement)return Vt({element:n,onHrefChange:s(r=>t(r),"onHrefChange")});if(n instanceof Location)return se({onLocationChange:s(r=>t(r.href),"onLocationChange")});throw new Error("Invalid source for observing product url")},"observeProductUrl");var Kt=s(n=>e=>{let{productHandle:t,productId:r,variantId:i,itemId:o}=e?.dataset??{},l=!!(r||t)||!!o,c=C({loading:!1,productId:r,variantId:i,itemId:o});if(!l){let p=e instanceof HTMLAnchorElement?e:window.location,f=Ze(p.href);f?.productHandle&&f.productHandle!==c.value.productHandle&&(c.value={...c.value,...f,productId:void 0},Xt({source:p,onProductUrlChange:s(m=>{c.value={...c.value,...m,productId:m.productHandle!==c.value.productHandle?void 0:c.value.productId}},"onProductUrlChange")}))}return V(()=>{c.value.loading||!c.value.productId&&c.value.productHandle&&(c.value={...c.value,loading:!0},n.storefront.loadProductId({productHandle:c.value.productHandle}).then(p=>{p.errors&&console.error("Error loading product id",p.errors),c.value={...c.value,productId:p.data?.product?.id?R(p.data.product.id):void 0,loading:!1}}))}),c},"itemContextSignal");var Yt=s(n=>e=>{let t=q(()=>{let{productId:w,variantId:v,loading:T}=e.value;return!w||T?null:v?`variant:${R(v)}`:`product:${R(w)}`}),r=q(()=>e.value.loading||!!e.value.itemId||!e.value.productId),i=q(()=>({limit:1,query:t.value??void 0})),o=C(!r.value),u=C(null),a=C(!1),l=C(!1),{data:c,loading:p,error:f,refetching:m}=n.state.swishQuery(w=>n.api.items.list(w),{refetch:["item-create","item-update","item-delete"],variables:i,skip:r}),h=C(e.value.itemId??null);V(()=>{Y(()=>{if(o.value=p.value,u.value=f.value,!e.value.itemId){let w=c.value?.[0]?.id??null;w!==h.value&&(h.value=w)}})});async function D(){if(!h.value)return;a.value=!0,(await(await n.intents.invoke({action:"delete",type:"swish/Item",data:{itemId:h.value}})).complete).code==="ok"&&(h.value=null),a.value=!1}s(D,"unsave");async function y(){if(!h.value)return;a.value=!0;let v=await(await n.intents.invoke({action:"edit",type:"swish/ItemLists",data:{itemId:h.value}})).complete;v.code==="ok"&&"itemId"in v.data&&(h.value=null),a.value=!1}s(y,"update");async function x(){let{productId:w,variantId:v}=e.value;if(!w)return;a.value=!0,l.value=!0;let P=await(await n.intents.invoke({action:"create",type:"swish/Item",data:{productId:w,variantId:v}})).complete;if(P.code==="ok"){let le=P.data;h.value=le.item.id,a.value=!1}else P.code==="error"&&console.warn("Failed to create item",P),Y(()=>{a.value=!1,l.value=!1})}s(x,"save");let O=q(()=>o.value||a.value||e.value.loading);V(()=>{l.value&&!a.value&&!m.value&&(l.value=!1)});let A=q(()=>{let w=m.value&&l.value,v=!!h.value,T=!v&&(a.value||w),P=v&&(a.value||w),le=q(()=>T?"saving":P?"unsaving":v?"saved":"unsaved");return{error:u.value,status:le.value,savedItemId:h.value,loading:O.value,submitting:a.value,saved:v,saving:T,unsaving:P}});async function F(){O.value||(A.value.saved&&A.value.savedItemId?y():A.value.saved||await x())}return s(F,"toggle"),Object.assign(A,{save:x,unsave:D,update:y,toggle:F})},"itemStateSignal");var Jt=s(n=>()=>{let{data:e,loading:t,error:r}=n.state.swishQuery(()=>n.api.items.count(),{refetch:["item-create","item-delete"]}),i=C(0),o=C(!0),u=C(null);return V(()=>{Y(()=>{o.value=t.value,u.value=r.value,i.value=e.value?.count??0})}),q(()=>({count:i.value,loading:o.value,error:u.value}))},"itemCountSignal");var $r="token-update",Zt=s(n=>(e,t)=>{let r=C(null),i=C(null),o=C(null),u=C(!t?.skip),a=C(!1),l=q(()=>u.value&&a.value);async function c(){if(!t?.skip?.value)try{u.value=!0;let p=await e(t?.variables?.value);Y(()=>{o.value="error"in p?p.error:null,r.value="data"in p?p.data:null,i.value="pageInfo"in p?p.pageInfo:null,u.value=!1,a.value=!0})}catch(p){Y(()=>{o.value=p,u.value=!1,a.value=!0})}}return s(c,"executeFetch"),V(()=>{if(c(),t?.refetch?.length){let p=[...t.refetch,$r];return n.events.subscribe(p,c)}}),{data:r,pageInfo:i,error:o,loading:u,refetching:l}},"swishQuerySignals");var ne="GraphQL Client";var et="An error occurred while fetching from the API. Review 'graphQLErrors' for details.",tt="Response returned unexpected Content-Type:",nt="An unknown error has occurred. The API did not return a data object or any errors in its response.",_e={json:"application/json",multipart:"multipart/mixed"},rt="X-SDK-Variant",it="X-SDK-Version",tn="shopify-graphql-client",nn="1.4.1",Oe=1e3,rn=[429,503],st=/@(defer)\b/i,en=`\r
|
|
8
|
-
`,sn=/boundary="?([^=";]+)"?/i,ot=en+en;function H(n,e=ne){return n.startsWith(`${e}`)?n:`${e}: ${n}`}s(H,"formatErrorMessage");function W(n){return n instanceof Error?n.message:JSON.stringify(n)}s(W,"getErrorMessage");function at(n){return n instanceof Error&&n.cause?n.cause:void 0}s(at,"getErrorCause");function ut(n){return n.flatMap(({errors:e})=>e??[])}s(ut,"combineErrors");function Le({client:n,retries:e}){if(e!==void 0&&(typeof e!="number"||e<0||e>3))throw new Error(`${n}: The provided "retries" value (${e}) is invalid - it cannot be less than ${0} or greater than ${3}`)}s(Le,"validateRetries");function $(n,e){return e&&(typeof e!="object"||Array.isArray(e)||typeof e=="object"&&Object.keys(e).length>0)?{[n]:e}:{}}s($,"getKeyValueIfValid");function lt(n,e){if(n.length===0)return e;let r={[n.pop()]:e};return n.length===0?r:lt(n,r)}s(lt,"buildDataObjectByPath");function un(n,e){return Object.keys(e||{}).reduce((t,r)=>(typeof e[r]=="object"||Array.isArray(e[r]))&&n[r]?(t[r]=un(n[r],e[r]),t):(t[r]=e[r],t),Array.isArray(n)?[...n]:{...n})}s(un,"combineObjects");function ct([n,...e]){return e.reduce(un,{...n})}s(ct,"buildCombinedDataObject");function pt({clientLogger:n,customFetchApi:e=fetch,client:t=ne,defaultRetryWaitTime:r=Oe,retriableCodes:i=rn}){let o=s(async(u,a,l)=>{let c=a+1,p=l+1,f;try{if(f=await e(...u),n({type:"HTTP-Response",content:{requestParams:u,response:f}}),!f.ok&&i.includes(f.status)&&c<=p)throw new Error;let m=f?.headers.get("X-Shopify-API-Deprecated-Reason")||"";return m&&n({type:"HTTP-Response-GraphQL-Deprecation-Notice",content:{requestParams:u,deprecationNotice:m}}),f}catch(m){if(c<=p){let h=f?.headers.get("Retry-After");return await qr(h?parseInt(h,10):r),n({type:"HTTP-Retry",content:{requestParams:u,lastResponse:f,retryAttempt:a,maxRetries:l}}),o(u,c,l)}throw new Error(H(`${l>0?`Attempted maximum number of ${l} network retries. Last message - `:""}${W(m)}`,t))}},"httpFetch");return o}s(pt,"generateHttpFetch");async function qr(n){return new Promise(e=>setTimeout(e,n))}s(qr,"sleep");function dt({headers:n,url:e,customFetchApi:t=fetch,retries:r=0,logger:i}){Le({client:ne,retries:r});let o={headers:n,url:e,retries:r},u=Br(i),a=pt({customFetchApi:t,clientLogger:u,defaultRetryWaitTime:Oe}),l=Vr(a,o),c=Ur(l),p=Qr(l);return{config:o,fetch:l,request:c,requestStream:p}}s(dt,"createGraphQLClient");function Br(n){return e=>{n&&n(e)}}s(Br,"generateClientLogger");async function ln(n){let{errors:e,data:t,extensions:r}=await n.json();return{...$("data",t),...$("extensions",r),headers:n.headers,...e||!t?{errors:{networkStatusCode:n.status,message:H(e?et:nt),...$("graphQLErrors",e),response:n}}:{}}}s(ln,"processJSONResponse");function Vr(n,{url:e,headers:t,retries:r}){return async(i,o={})=>{let{variables:u,headers:a,url:l,retries:c,keepalive:p,signal:f}=o,m=JSON.stringify({query:i,variables:u});Le({client:ne,retries:c});let h=Object.entries({...t,...a}).reduce((y,[
|
|
7
|
+
`+String(r)));Tt(e);for(var i=0;i<e.callbacks.length;i++){var o=r[i];o instanceof Error?e.callbacks[i].reject(o):e.callbacks[i].resolve(o)}}).catch(function(r){Dt(n,e,r)})}s(Wi,"dispatchBatch");function Dt(n,e,t){Tt(e);for(var r=0;r<e.keys.length;r++)n.clear(e.keys[r]),e.callbacks[r].reject(t)}s(Dt,"failedDispatch");function Tt(n){if(n.cacheHits)for(var e=0;e<n.cacheHits.length;e++)n.cacheHits[e]()}s(Tt,"resolveCacheHits");function Xi(n){var e=!n||n.batch!==!1;if(!e)return 1;var t=n&&n.maxBatchSize;if(t===void 0)return 1/0;if(typeof t!="number"||t<1)throw new TypeError("maxBatchSize must be a positive number: "+t);return t}s(Xi,"getValidMaxBatchSize");function Ki(n){var e=n&&n.batchScheduleFn;if(e===void 0)return Qi;if(typeof e!="function")throw new TypeError("batchScheduleFn must be a function: "+e);return e}s(Ki,"getValidBatchScheduleFn");function Yi(n){var e=n&&n.cacheKeyFn;if(e===void 0)return function(t){return t};if(typeof e!="function")throw new TypeError("cacheKeyFn must be a function: "+e);return e}s(Yi,"getValidCacheKeyFn");function Ji(n){var e=!n||n.cache!==!1;if(!e)return null;var t=n&&n.cacheMap;if(t===void 0)return new Map;if(t!==null){var r=["get","set","delete","clear"],i=r.filter(function(o){return t&&typeof t[o]!="function"});if(i.length!==0)throw new TypeError("Custom cacheMap missing methods: "+i.join(", "))}return t}s(Ji,"getValidCacheMap");function Zi(n){return n&&n.name?n.name:null}s(Zi,"getValidName");function er(n){return typeof n=="object"&&n!==null&&typeof n.length=="number"&&(n.length===0||n.length>0&&Object.prototype.hasOwnProperty.call(n,n.length-1))}s(er,"isArrayLike");tr.exports=Hi});var D=s(n=>n.split("/").pop()??"","shopifyGidToId"),b=s((n,e)=>`gid://shopify/${n}/${e}`,"shopifyIdToGid");var Q=class{constructor(e,t,r=""){this.revalidationPromises=new Map;this.inFlightRequests=new Map;this.clearCachePromise=null;this.cacheName=e,this.defaultCacheControl=t,this.keyPrefix=r}static{s(this,"FetchCache")}async get(e){try{let t=await caches.open(this.cacheName),r=await t.match(e);if(r&&this.isExpired(r)){await t.delete(e);return}return r}catch(t){console.warn("Cache get error:",t);return}}async set(e,t,r){try{if(r?.includes("no-cache"))return;let i=this.createCacheableResponse(t,r);await(await caches.open(this.cacheName)).put(e,i)}catch(i){console.warn("Cache set error:",i)}}async fetchWithCache(e,t,r){let i=await this.getCacheKey(e,t);if(this.clearCachePromise&&await this.clearCachePromise,this.inFlightRequests.has(i))return this.inFlightRequests.get(i).then(u=>u.clone());let o=(async()=>{let u=await this.get(i);if(u)return this.isStaleButRevalidatable(u)&&this.revalidateInBackground(i,e,t,r),u.clone();let a=await fetch(e,t);return a.ok&&await this.set(i,a.clone(),r??this.defaultCacheControl),a})().finally(()=>{this.inFlightRequests.delete(i)});return this.inFlightRequests.set(i,o),o}async delete(e){try{return await(await caches.open(this.cacheName)).delete(e)}catch(t){return console.warn("Cache delete error:",t),!1}}async clear(){return this.clearCachePromise?this.clearCachePromise:(this.clearCachePromise=new Promise(async(e,t)=>{try{let r=await caches.open(this.cacheName),i=await r.keys();await Promise.all(i.map(o=>r.delete(o))),e()}catch(r){console.warn("Cache clear error:",r),t(r)}}),this.clearCachePromise.then(()=>{this.clearCachePromise=null}).catch(e=>{console.warn("Cache clear error:",e)}))}async keys(){try{return(await(await caches.open(this.cacheName)).keys()).map(r=>r.url)}catch(e){return console.warn("Cache keys error:",e),[]}}async has(e){try{let t=await caches.open(this.cacheName),r=await t.match(e);return r&&this.isExpired(r)?(await t.delete(e),!1):r!==void 0}catch(t){return console.warn("Cache has error:",t),!1}}async getStats(){try{return{total:(await(await caches.open(this.cacheName)).keys()).length}}catch(e){return console.warn("Cache stats error:",e),{total:0}}}async cleanupExpiredEntries(){try{let e=await caches.open(this.cacheName),t=await e.keys(),r=0;for(let o of t){let u=await e.match(o);u&&this.isExpired(u)&&(await e.delete(o),r++)}let i=t.length-r;return{removed:r,remaining:i}}catch(e){return console.warn("Cache cleanup error:",e),{removed:0,remaining:0}}}async getCacheKey(e,t){let r=this.getInputUrl(e),i=`${this.keyPrefix}${r}/${JSON.stringify(t)}`,u=new TextEncoder().encode(i),a=await crypto.subtle.digest("SHA-256",u);return`/${Array.from(new Uint8Array(a)).map(p=>p.toString(16).padStart(2,"0")).join("")}`}getInputUrl(e){return e instanceof URL?e.toString():typeof e=="string"?e:e.url}isExpired(e){let t=e.headers.get("Cache-Control");if(!t)return!1;let r=this.parseMaxAge(t),i=this.parseStaleWhileRevalidate(t);if(r===null)return!1;let o=e.headers.get("Date");if(!o)return!1;let u=new Date(o).getTime(),l=(Date.now()-u)/1e3,c=r+(i??0);return l>c}isStaleButRevalidatable(e){let t=e.headers.get("Cache-Control");if(!t)return!1;let r=this.parseMaxAge(t),i=this.parseStaleWhileRevalidate(t);if(r===null||i===null)return!1;let o=e.headers.get("Date");if(!o)return!1;let u=new Date(o).getTime(),l=(Date.now()-u)/1e3;return l>r&&l<=r+i}async revalidateInBackground(e,t,r,i){if(this.revalidationPromises.has(e))return;let o=(async()=>{try{let u=await fetch(t,r);u.ok&&await this.set(e,u.clone(),i??this.defaultCacheControl)}catch(u){console.warn("Background revalidation error:",u)}finally{this.revalidationPromises.delete(e)}})();this.revalidationPromises.set(e,o)}parseMaxAge(e){let t=new RegExp(/max-age=(\d+)/).exec(e);return t?parseInt(t[1],10):null}parseStaleWhileRevalidate(e){let t=new RegExp(/stale-while-revalidate=(\d+)/).exec(e);return t?parseInt(t[1],10):null}createCacheableResponse(e,t){let r=new Headers(e.headers);return r.set("Cache-Control",t),r.has("Date")||r.set("Date",new Date().toUTCString()),new Response(e.body,{status:e.status,statusText:e.statusText,headers:r})}};var he=class{static{s(this,"AjaxApiClient")}constructor(e){this.config=e,this.cache=new Q("ajax-api","max-age=60, stale-while-revalidate=3600"),this.cache.cleanupExpiredEntries().catch(t=>{console.warn("Ajax API cache initialization cleanup error:",t)})}patchFetch(){if(!window.fetch||typeof window.fetch!="function")return;let e=window.fetch,t=this.config.responseInterceptor,r=this.getFetchRequest.bind(this);window.fetch=function(...i){let o=e.apply(this,i);if(typeof t=="function"){let u=r(i[0]);o.then(a=>t(a,u))}return o}}getFetchRequest(e){return e instanceof Request?e:new Request(e)}getBaseUrl(){if(!this.config?.storeDomain)throw new Error("Cart API client not initialized - missing store domain");return`https://${this.config.storeDomain}`}fetch(e,t){return(e instanceof Request?e.method:t?.method??"GET")==="GET"?this.cache.fetchWithCache(e,t):fetch(e,t)}async request(e,t={}){let r=`${this.getBaseUrl()}${e}`,i={"Content-Type":"application/json",Accept:"application/json"},o=await this.fetch(r,{...t,headers:{...i,...t.headers}});if(!o.ok){let u;try{u=await o.json()}catch{u={message:`HTTP ${o.status}: ${o.statusText}`,status:o.status.toString(),description:o.statusText}}throw new Error(u.message||u.description)}return o.json()}async fetchCart(){return this.request("/cart.js")}async addToCart(e){let t={...e,items:e.items.map(r=>{let i=D(r.id);if(!i)throw new Error(`Invalid Shopify GID format: ${r.id}`);let o=parseInt(i,10);if(isNaN(o))throw new Error(`Invalid numeric ID extracted from GID: ${r.id}`);return{...r,id:o}})};return this.request("/cart/add.js",{method:"POST",body:JSON.stringify(t)})}async clearCache(){await this.cache.clear()}};var ye=class{constructor(e){this.eventMap={"/cart/add":"cart-add","/cart/update":"cart-update","/cart/change":"cart-change","/cart/clear":"cart-clear"};this.eventBus=e,this.processFetchResponse=this.processFetchResponse.bind(this)}static{s(this,"AjaxApiPublisher")}async processFetchResponse(e,t){try{let r=this.getEventName(t.url);if(r){let i=await e.clone().json();this.eventBus.publish(r,i)}}catch(r){console.warn(r)}}getEventName(e){for(let[t,r]of Object.entries(this.eventMap))if(e.includes(t))return r;return null}};function yr(){let n=document.body||document.documentElement;return n?Promise.resolve(n):new Promise(e=>{window.addEventListener("DOMContentLoaded",()=>e(n))})}s(yr,"waitForDOM");function ce({onElementFound:n,selector:e,observerOptions:t}){let r=new WeakSet,i=new MutationObserver(l=>{let c=!1;for(let p of l)if(p.addedNodes.length>0){c=!0;break}c&&o()}),o=s(()=>{document.querySelectorAll(e).forEach(l=>{r.has(l)||(u(l),r.add(l))})},"locateElements"),u=s(l=>{if(!t){n(l);return}let c=new IntersectionObserver(p=>{for(let f of p)f.isIntersecting&&(c.disconnect(),n(l))},t);c.observe(l)},"observeElement");return s(async()=>{let l=await yr();o(),i.observe(l,{childList:!0,subtree:!0})},"locateAndObserveElements")(),i}s(ce,"createElementLocator");function se({onLocationChange:n,fireOnInit:e=!1}){let t=s(()=>{n(window.location)},"handleChange");window.addEventListener("popstate",t);let r=history.pushState,i=history.replaceState;return history.pushState=function(...o){r.apply(this,o),t()},history.replaceState=function(...o){i.apply(this,o),t()},e&&t(),()=>{window.removeEventListener("popstate",t),history.pushState=r,history.replaceState=i}}s(se,"createLocationObserver");function Vt({element:n,onHrefChange:e}){let t=s(()=>{e(n.href)},"handleChange"),r=new MutationObserver(()=>{t()});return r.observe(n,{attributes:!0,attributeFilter:["href"]}),()=>{r.disconnect()}}s(Vt,"createHrefObserver");var me=class{constructor(){this.eventBus=new EventTarget}static{s(this,"EventBus")}subscribe(e,t,r){return Array.isArray(e)||(e=[e]),e.forEach(i=>{this.eventBus.addEventListener(i,t,r)}),()=>{e.forEach(i=>{this.eventBus.removeEventListener(i,t,r)})}}unsubscribe(e,t,r){this.eventBus.removeEventListener(e,t,r)}publish(e,t){this.eventBus.dispatchEvent(new CustomEvent(e,{detail:t}))}};var ze;function Nt(n){return{lang:n?.lang??ze?.lang,message:n?.message,abortEarly:n?.abortEarly??ze?.abortEarly,abortPipeEarly:n?.abortPipeEarly??ze?.abortPipeEarly}}s(Nt,"getGlobalConfig");var mr;function vr(n){return mr?.get(n)}s(vr,"getGlobalMessage");var gr;function Ir(n){return gr?.get(n)}s(Ir,"getSchemaMessage");var wr;function br(n,e){return wr?.get(n)?.get(e)}s(br,"getSpecificMessage");function We(n){let e=typeof n;return e==="string"?`"${n}"`:e==="number"||e==="bigint"||e==="boolean"?`${n}`:e==="object"||e==="function"?(n&&Object.getPrototypeOf(n)?.constructor?.name)??"null":e}s(We,"_stringify");function X(n,e,t,r,i){let o=i&&"input"in i?i.input:t.value,u=i?.expected??n.expects??null,a=i?.received??We(o),l={kind:n.kind,type:n.type,input:o,expected:u,received:a,message:`Invalid ${e}: ${u?`Expected ${u} but r`:"R"}eceived ${a}`,requirement:n.requirement,path:i?.path,issues:i?.issues,lang:r.lang,abortEarly:r.abortEarly,abortPipeEarly:r.abortPipeEarly},c=n.kind==="schema",p=i?.message??n.message??br(n.reference,l.lang)??(c?Ir(l.lang):null)??r.message??vr(l.lang);p!==void 0&&(l.message=typeof p=="function"?p(l):p),c&&(t.typed=!1),t.issues?t.issues.push(l):t.issues=[l]}s(X,"_addIssue");function Z(n){return{version:1,vendor:"valibot",validate(e){return n["~run"]({value:e},Nt())}}}s(Z,"_getStandardProps");function Er(n,e){let t=[...new Set(n)];return t.length>1?`(${t.join(` ${e} `)})`:t[0]??"never"}s(Er,"_joinExpects");function Xe(n,e){return{kind:"validation",type:"min_value",reference:Xe,async:!1,expects:`>=${n instanceof Date?n.toJSON():We(n)}`,requirement:n,message:e,"~run"(t,r){return t.typed&&!(t.value>=this.requirement)&&X(this,"value",t,r,{received:t.value instanceof Date?t.value.toJSON():We(t.value)}),t}}}s(Xe,"minValue");function j(n){return{kind:"transformation",type:"transform",reference:j,async:!1,operation:n,"~run"(e){return e.value=this.operation(e.value),e}}}s(j,"transform");function Sr(n,e,t){return typeof n.fallback=="function"?n.fallback(e,t):n.fallback}s(Sr,"getFallback");function Gt(n,e,t){return typeof n.default=="function"?n.default(e,t):n.default}s(Gt,"getDefault");function Ke(n,e){return{kind:"schema",type:"array",reference:Ke,expects:"Array",async:!1,item:n,message:e,get"~standard"(){return Z(this)},"~run"(t,r){let i=t.value;if(Array.isArray(i)){t.typed=!0,t.value=[];for(let o=0;o<i.length;o++){let u=i[o],a=this.item["~run"]({value:u},r);if(a.issues){let l={type:"array",origin:"value",input:i,key:o,value:u};for(let c of a.issues)c.path?c.path.unshift(l):c.path=[l],t.issues?.push(c);if(t.issues||(t.issues=a.issues),r.abortEarly){t.typed=!1;break}}a.typed||(t.typed=!1),t.value.push(a.value)}}else X(this,"type",t,r);return t}}}s(Ke,"array");function U(n){return{kind:"schema",type:"number",reference:U,expects:"number",async:!1,message:n,get"~standard"(){return Z(this)},"~run"(e,t){return typeof e.value=="number"&&!isNaN(e.value)?e.typed=!0:X(this,"type",e,t),e}}}s(U,"number");function A(n,e){return{kind:"schema",type:"object",reference:A,expects:"Object",async:!1,entries:n,message:e,get"~standard"(){return Z(this)},"~run"(t,r){let i=t.value;if(i&&typeof i=="object"){t.typed=!0,t.value={};for(let o in this.entries){let u=this.entries[o];if(o in i||(u.type==="exact_optional"||u.type==="optional"||u.type==="nullish")&&u.default!==void 0){let a=o in i?i[o]:Gt(u),l=u["~run"]({value:a},r);if(l.issues){let c={type:"object",origin:"value",input:i,key:o,value:a};for(let p of l.issues)p.path?p.path.unshift(c):p.path=[c],t.issues?.push(p);if(t.issues||(t.issues=l.issues),r.abortEarly){t.typed=!1;break}}l.typed||(t.typed=!1),t.value[o]=l.value}else if(u.fallback!==void 0)t.value[o]=Sr(u);else if(u.type!=="exact_optional"&&u.type!=="optional"&&u.type!=="nullish"&&(X(this,"key",t,r,{input:void 0,expected:`"${o}"`,path:[{type:"object",origin:"key",input:i,key:o,value:i[o]}]}),r.abortEarly))break}}else X(this,"type",t,r);return t}}}s(A,"object");function N(n,e){return{kind:"schema",type:"optional",reference:N,expects:`(${n.expects} | undefined)`,async:!1,wrapped:n,default:e,get"~standard"(){return Z(this)},"~run"(t,r){return t.value===void 0&&(this.default!==void 0&&(t.value=Gt(this,t,r)),t.value===void 0)?(t.typed=!0,t):this.wrapped["~run"](t,r)}}}s(N,"optional");function E(n){return{kind:"schema",type:"string",reference:E,expects:"string",async:!1,message:n,get"~standard"(){return Z(this)},"~run"(e,t){return typeof e.value=="string"?e.typed=!0:X(this,"type",e,t),e}}}s(E,"string");function Ut(n){let e;if(n)for(let t of n)e?e.push(...t.issues):e=t.issues;return e}s(Ut,"_subIssues");function ee(n,e){return{kind:"schema",type:"union",reference:ee,expects:Er(n.map(t=>t.expects),"|"),async:!1,options:n,message:e,get"~standard"(){return Z(this)},"~run"(t,r){let i,o,u;for(let a of this.options){let l=a["~run"]({value:t.value},r);if(l.typed)if(l.issues)o?o.push(l):o=[l];else{i=l;break}else u?u.push(l):u=[l]}if(i)return i;if(o){if(o.length===1)return o[0];X(this,"type",t,r,{issues:Ut(o)}),t.typed=!0}else{if(u?.length===1)return u[0];X(this,"type",t,r,{issues:Ut(u)})}return t}}}s(ee,"union");function G(...n){return{...n[0],pipe:n,get"~standard"(){return Z(this)},"~run"(e,t){for(let r of n)if(r.kind!=="metadata"){if(e.issues&&(r.kind==="schema"||r.kind==="transformation")){e.typed=!1;break}(!e.issues||!t.abortEarly&&!t.abortPipeEarly)&&(e=r["~run"](e,t))}return e}}}s(G,"pipe");function _(n,e,t){let r=n["~run"]({value:e},Nt(t));return{typed:r.typed,success:!r.issues,output:r.value,issues:r.issues}}s(_,"safeParse");var S=class{constructor(e,t,r,i){this.swish=e;this.ui=t;this.eventBus=r;this.options=i}static{s(this,"IntentHandler")}};var Cr=A({itemId:N(G(E())),productId:G(ee([G(E(),j(D)),U()]),j(n=>Number(n)),U()),variantId:N(G(ee([G(E(),j(D)),U()]),j(n=>Number(n)),U()))}),oe=class extends S{static{s(this,"EditItemVariantHandler")}async invoke(e,t=!1){return new Promise(r=>{let i=e.data,o=_(Cr,i);if(!o.success){r({code:"error",message:"Invalid intent data",issues:o.issues.map(p=>p.message)});return}let{itemId:u,productId:a,variantId:l}=o.output,c=this.swish.options.swishUi.components.variantSelect;this.ui.showVariantSelect({productId:a.toString(),variantId:l?.toString(),displayType:c.displayType,onClose:s(()=>{r({code:"closed"})},"onClose"),onSubmit:s(async p=>{let{item:f,product:m,variant:h}=p,x={code:"ok",data:{item:f,product:m,variant:h}};t||this.eventBus.dispatchEvent(new CustomEvent("edit:swish/ItemVariant",{detail:x})),r(x)},"onSubmit")})})}};var xr=A({productId:G(ee([G(E(),j(D)),U()]),j(n=>Number(n)),U()),variantId:N(G(ee([G(E(),j(D)),U()]),j(Number),U())),quantity:N(G(U(),Xe(1))),tags:N(Ke(E()))}),ve=class extends S{static{s(this,"CreateItemHandler")}async invoke(e){let t=e.data,r=_(xr,t);if(!r.success)return{code:"error",message:"Invalid intent data",issues:r.issues.map(m=>m.message)};let{productId:i,variantId:o,quantity:u,tags:a}=r.output,l=await this.swish.storefront.loadSaveIntentData({productId:b("Product",i),variantId:o?b("ProductVariant",o):void 0});if(l.errors)return{code:"error",message:l.errors.message??"Failed to load save intent data",issues:l.errors.graphQLErrors?.map(m=>m.message)??[]};if(!l.data||!l.data.product)return{code:"error",message:"Failed to load save intent data",issues:["API response missing data"]};let{product:c}=l.data,p=c.variantsCount?.count&&c.variantsCount.count>1;if(!p||!this.options.save.requireVariant){let m=s(()=>!p&&c.selectedOrFirstAvailableVariant?Number(D(c.selectedOrFirstAvailableVariant.id)):o,"variantIdToUse"),h=await this.swish.api.items.create({productId:i,variantId:m(),quantity:u,tags:a});if("error"in h)return{code:"error",message:"Failed to create item",issues:[h.error.message]};if(!h.data)return{code:"error",message:"Could not complete item creation",issues:["API response missing data"]};let x="variant"in l.data?l.data.variant:void 0,y={code:"ok",data:{item:h.data,product:c,variant:p?x:c.selectedOrFirstAvailableVariant}};return this.eventBus.dispatchEvent(new CustomEvent("create:swish/Item",{detail:y})),y}let f=await new oe(this.swish,this.ui,this.eventBus,this.options).invoke({action:"edit",type:"swish/ItemVariant",data:{productId:i,variantId:o}});return this.eventBus.dispatchEvent(new CustomEvent("create:swish/Item",{detail:f})),f}};var ge=class extends S{static{s(this,"CreateListHandler")}async invoke(e){return new Promise(t=>{this.ui.showListEditor({onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(async r=>{let{list:i}=r;t({code:"ok",data:{list:i}})},"onSubmit")})})}};var kr=A({itemId:E()}),Ie=class extends S{static{s(this,"DeleteItemHandler")}async invoke(e){return new Promise(async t=>{let r=_(kr,e.data);if(!r.success){t({code:"error",message:"Invalid intent data",issues:r.issues.map(o=>o.message)});return}let{itemId:i}=r.output;if(!this.options.unsave.requireConfirmation){let o=await this.swish.api.items.deleteById(i);if("error"in o){t({code:"error",message:"Failed to delete item",issues:[o.error.message]});return}t({code:"ok",data:{itemId:i}});return}this.ui.showUnsaveAlert({itemId:i,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(()=>{t({code:"ok",data:{itemId:i}})},"onSubmit")})})}};var Ar=A({listId:E()}),we=class extends S{static{s(this,"DeleteListHandler")}async invoke(e){return new Promise(t=>{let r=e.data,i=_(Ar,r);if(!i.success){t({code:"error",message:"Invalid intent data",issues:i.issues.map(u=>u.message)});return}let{listId:o}=i.output;this.ui.showDeleteListAlert({listId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(async()=>{t({code:"ok",data:{listId:o}})},"onSubmit")})})}};var Rr=A({itemId:E()}),be=class extends S{static{s(this,"EditItemListsHandler")}async invoke(e,t=!1){return new Promise(r=>{let i=e.data,o=_(Rr,i);if(!o.success){r({code:"error",message:"Invalid intent data",issues:o.issues.map(a=>a.message)});return}let{itemId:u}=o.output;this.ui.showListSelect({itemId:u,onClose:s(()=>{r({code:"closed"})},"onClose"),onSubmit:s(async a=>{let{item:l,product:c,variant:p}=a,f={code:"ok",data:{item:l,product:c,variant:p}};t||this.eventBus.dispatchEvent(new CustomEvent("edit:swish/ItemLists",{detail:f})),r(f)},"onSubmit"),onUnsave(a){let l={code:"ok",data:{itemId:a.itemId}};r(l)}})})}};var Dr=A({listId:E()}),Ee=class extends S{static{s(this,"EditListHandler")}async invoke(e){return new Promise(t=>{let r=e.data,i=_(Dr,r);if(!i.success){t({code:"error",message:"Invalid intent data",issues:i.issues.map(u=>u.message)});return}let{listId:o}=i.output;this.ui.showListEditor({listId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(async u=>{let{list:a}=u;t({code:"ok",data:{list:a}})},"onSubmit")})})}};var Se=class extends S{static{s(this,"OpenHomeHandler")}async invoke(e){return new Promise(t=>{this.ui.showDrawer({onClose:s(()=>{t({code:"closed"})},"onClose")})})}};var Tr=A({listId:E()}),Ce=class extends S{static{s(this,"OpenListMenuHandler")}async invoke(e){return new Promise(t=>{let r=e.data,i=_(Tr,r);if(!i.success){t({code:"error",message:"Invalid intent data",issues:i.issues.map(u=>u.message)});return}let{listId:o}=i.output;this.ui.showListMenu({listId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onEdit:s(u=>{t({code:"ok",data:u})},"onEdit"),onDelete:s(()=>{t({code:"ok",data:{listId:o}})},"onDelete")})})}};var eo=A({returnTo:N(E())}),xe=class extends S{static{s(this,"OpenSignInHandler")}async invoke(e){return new Promise(t=>{this.ui.showSignIn({returnTo:e.data?.returnTo,onClose:s(()=>{t({code:"closed"})},"onClose")})})}};var Pr=A({productId:E(),variantId:N(E())}),ke=class extends S{static{s(this,"OpenQuickBuyHandler")}async invoke(e){return new Promise(t=>{let r=_(Pr,e.data);if(!r.success){t({code:"error",message:"Invalid intent data",issues:r.issues.map(u=>u.message)});return}let{productId:i,variantId:o}=r.output;this.ui.showQuickBuy({productId:i,variantId:o,onClose:s(()=>{t({code:"closed"})},"onClose"),onSubmit:s(u=>{t({code:"ok",data:u})},"onSubmit")})})}};var ae=class{constructor(e,t,r){this.swish=e;this.ui=t;this.options=r}static{s(this,"IntentHook")}};var Ae=class extends ae{static{s(this,"AfterCreateItemHook")}async invoke(e){if(this.options.save.showToast&&e.code==="ok"){let{item:t,product:r,variant:i}=e.data;r&&this.ui.showToast({title:"Saved",text:r.title,image:i?.image?.url??r.featuredImage?.url,action:{label:"Add to List",onClick:s(()=>{this.swish.intents.invoke({action:"edit",type:"swish/ItemLists",data:{itemId:t.id}})},"onClick")}})}}};var Re=class extends ae{static{s(this,"AfterEditItemListsHook")}async invoke(e){if(this.options.edit.showToast&&e.code==="ok"){if("itemId"in e.data)return;let{product:t,variant:r}=e.data;t&&this.ui.showToast({title:"Saved",text:t.title,image:r?.image?.url??t.featuredImage?.url,action:{label:"View",onClick:s(()=>{this.swish.intents.invoke({action:"open",type:"swish/Home"})},"onClick")}})}}};var De=class{static{s(this,"Intents")}constructor(e,t){this.swish=e,this.ui=t,this.eventBus=new EventTarget,this.options=e.options.swishUi.intents,this.initIntentHooks(),this.initIntentWatcher()}publishAnalyticsEvent(e,t){typeof window.Shopify?.analytics?.publish=="function"&&window.Shopify.analytics.publish(e,t)}async invoke(e){let t=this.parseIntent(e),r=this.getIntentQuery(t),i={lifecycle:"before",intent:t};return this.publishAnalyticsEvent("swish-intent",i),this.publishAnalyticsEvent(`swish-intent=${r}`,i),{intent:t,complete:this.handleIntent(t).then(o=>{let u={lifecycle:"after",intent:t,response:o};return this.publishAnalyticsEvent("swish-intent",u),this.publishAnalyticsEvent(`swish-intent=${r}`,u),o})}}listen(e,t){let r=this.getIntentQuery(e),i=s(u=>{"detail"in u&&u.detail?t(u.detail):console.warn("Intent response event without detail",u)},"eventListener"),o=s(()=>{this.eventBus.removeEventListener(r,i)},"unsubscribe");return this.eventBus.addEventListener(r,i),o}getIntentQuery(e){return`${e.action}:${e.type}`}parseIntent(e){if(typeof e=="string"){let[t,...r]=e.split(","),[i,o]=t.split(":"),u=r.reduce((a,l)=>{let[c,p]=l.split("=");return a[c]=p,a},{});return{action:i,type:o,data:u}}return e}async handleIntent(e){return e.action==="create"&&e.type==="swish/Item"?new ve(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="delete"&&e.type==="swish/Item"?new Ie(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="edit"&&e.type==="swish/ItemVariant"?new oe(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="edit"&&e.type==="swish/ItemLists"?new be(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="create"&&e.type==="swish/List"?new ge(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="edit"&&e.type==="swish/List"?new Ee(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="delete"&&e.type==="swish/List"?new we(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/Home"?new Se(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/ListMenu"?new Ce(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/SignIn"?new xe(this.swish,this.ui,this.eventBus,this.options).invoke(e):e.action==="open"&&e.type==="swish/QuickBuy"?new ke(this.swish,this.ui,this.eventBus,this.options).invoke(e):{code:"error",message:"Invalid intent",issues:["Invalid intent"]}}initIntentHooks(){this.eventBus.addEventListener("create:swish/Item",e=>{new Ae(this.swish,this.ui,this.options).invoke(e.detail)}),this.eventBus.addEventListener("edit:swish/ItemLists",e=>{new Re(this.swish,this.ui,this.options).invoke(e.detail)})}initIntentWatcher(){ce({selector:"[swish-intent]",onElementFound:s(e=>{let t=this.parseIntent(e.getAttribute("swish-intent"));t&&e.addEventListener("click",()=>{this.invoke(t)})},"onElementFound")}),ce({selector:"a[href*='swish-intent=']",onElementFound:s(e=>{e instanceof HTMLAnchorElement&&e.addEventListener("click",t=>{if(!t.metaKey&&!t.ctrlKey&&!t.shiftKey&&!t.altKey){let i=new URL(e.href).searchParams.get("swish-intent");if(i){let o=this.parseIntent(i);o&&(t.preventDefault(),t.stopPropagation(),this.invoke(o))}}})},"onElementFound")}),se({fireOnInit:!0,onLocationChange:s(e=>{let t=new URLSearchParams(window.location.search).get("swish-intent");if(t){let r=this.parseIntent(t);if(r){this.invoke(r);let i=new URL(window.location.href);i.searchParams.delete("swish-intent"),window.history.replaceState({},document.title,i.toString())}}},"onLocationChange")})}};var Mt=s(n=>({storefrontApi:{storeDomain:n.storefrontApi?.storeDomain??"",accessToken:n.storefrontApi?.accessToken??""},storefrontContext:{...n.storefrontContext,localization:{country:n.storefrontContext.localization.country.toUpperCase(),language:n.storefrontContext.localization.language.toUpperCase(),market:n.storefrontContext.localization.market}},badges:{getBadges:n.badges?.getBadges??(({defaultBadges:e})=>e)},metafields:{product:n.metafields?.product??[],productVariant:n.metafields?.productVariant??[]},swishApi:{authProxy:n.swishApi?.authProxy??"/apps/wishlist/api",version:n.swishApi?.version??"2026-01"},swishUi:{baseUrl:n.swishUi?.baseUrl??"https://swish.app/cdn",version:n.swishUi?.version??"0.73.0",components:{productRow:{showVariantTitle:n.swishUi?.components?.productRow?.showVariantTitle??!1},productDetail:{descriptionMaxLines:n.swishUi?.components?.productDetail?.descriptionMaxLines??4},variantSelect:{displayType:n.swishUi?.components?.variantSelect?.displayType??"pills"},imageSlider:{flush:n.swishUi?.components?.imageSlider?.flush??!1,loop:n.swishUi?.components?.imageSlider?.loop??!1},images:{baseTint:n.swishUi?.components?.images?.baseTint??!1},buyButtons:{shopPay:n.swishUi?.components?.buyButtons?.shopPay??!1},listDetailPage:{desktopColumns:n.swishUi?.components?.listDetailPage?.desktopColumns??4,showBuyButton:n.swishUi?.components?.listDetailPage?.showBuyButton??!0},drawer:{title:n.swishUi?.components?.drawer?.title??"",logo:{url:n.swishUi?.components?.drawer?.logo?.url??"",altText:n.swishUi?.components?.drawer?.logo?.altText??""},navigation:{variant:n.swishUi?.components?.drawer?.navigation?.variant??"floating",items:n.swishUi?.components?.drawer?.navigation?.items??[{id:"home",enabled:!0,href:"/"},{id:"items",enabled:!0,href:"/items"},{id:"lists",enabled:!0,href:"/lists"},{id:"chat",enabled:!1,href:"/chat"},{id:"orders",enabled:!0,href:"/orders"},{id:"profile",enabled:!0,href:"/profile"}]},miniMenu:{items:n.swishUi?.components?.drawer?.miniMenu?.items??[]}}},css:n.swishUi?.css??[],intents:{save:{requireVariant:n.swishUi?.intents?.save?.requireVariant??!1,showToast:n.swishUi?.intents?.save?.showToast??!1},edit:{showToast:n.swishUi?.intents?.edit?.showToast??!1},unsave:{requireConfirmation:n.swishUi?.intents?.unsave?.requireConfirmation??!1,openEditor:n.swishUi?.intents?.unsave?.openEditor??!1,showToast:n.swishUi?.intents?.unsave?.showToast??!1}},theme:n.swishUi?.theme??{}}}),"createSwishOptions");var _r=Symbol.for("preact-signals");function Pe(){if(K>1)K--;else{for(var n,e=!1;pe!==void 0;){var t=pe;for(pe=void 0,Ye++;t!==void 0;){var r=t.o;if(t.o=void 0,t.f&=-3,!(8&t.f)&&Ht(t))try{t.c()}catch(i){e||(n=i,e=!0)}t=r}}if(Ye=0,K--,e)throw n}}s(Pe,"t");function Y(n){if(K>0)return n();K++;try{return n()}finally{Pe()}}s(Y,"r");var g=void 0;function jt(n){var e=g;g=void 0;try{return n()}finally{g=e}}s(jt,"n");var pe=void 0,K=0,Ye=0,Te=0;function Ft(n){if(g!==void 0){var e=n.n;if(e===void 0||e.t!==g)return e={i:0,S:n,p:g.s,n:void 0,t:g,e:void 0,x:void 0,r:e},g.s!==void 0&&(g.s.n=e),g.s=e,n.n=e,32&g.f&&n.S(e),e;if(e.i===-1)return e.i=0,e.n!==void 0&&(e.n.p=e.p,e.p!==void 0&&(e.p.n=e.n),e.p=g.s,e.n=void 0,g.s.n=e,g.s=e),e}}s(Ft,"e");function L(n,e){this.v=n,this.i=0,this.n=void 0,this.t=void 0,this.W=e?.watched,this.Z=e?.unwatched,this.name=e?.name}s(L,"u");L.prototype.brand=_r;L.prototype.h=function(){return!0};L.prototype.S=function(n){var e=this,t=this.t;t!==n&&n.e===void 0&&(n.x=t,this.t=n,t!==void 0?t.e=n:jt(function(){var r;(r=e.W)==null||r.call(e)}))};L.prototype.U=function(n){var e=this;if(this.t!==void 0){var t=n.e,r=n.x;t!==void 0&&(t.x=r,n.e=void 0),r!==void 0&&(r.e=t,n.x=void 0),n===this.t&&(this.t=r,r===void 0&&jt(function(){var i;(i=e.Z)==null||i.call(e)}))}};L.prototype.subscribe=function(n){var e=this;return V(function(){var t=e.value,r=g;g=void 0;try{n(t)}finally{g=r}},{name:"sub"})};L.prototype.valueOf=function(){return this.value};L.prototype.toString=function(){return this.value+""};L.prototype.toJSON=function(){return this.value};L.prototype.peek=function(){var n=g;g=void 0;try{return this.value}finally{g=n}};Object.defineProperty(L.prototype,"value",{get:s(function(){var n=Ft(this);return n!==void 0&&(n.i=this.i),this.v},"get"),set:s(function(n){if(n!==this.v){if(Ye>100)throw new Error("Cycle detected");this.v=n,this.i++,Te++,K++;try{for(var e=this.t;e!==void 0;e=e.x)e.t.N()}finally{Pe()}}},"set")});function C(n,e){return new L(n,e)}s(C,"d");function Ht(n){for(var e=n.s;e!==void 0;e=e.n)if(e.S.i!==e.i||!e.S.h()||e.S.i!==e.i)return!0;return!1}s(Ht,"c");function Qt(n){for(var e=n.s;e!==void 0;e=e.n){var t=e.S.n;if(t!==void 0&&(e.r=t),e.S.n=e,e.i=-1,e.n===void 0){n.s=e;break}}}s(Qt,"a");function zt(n){for(var e=n.s,t=void 0;e!==void 0;){var r=e.p;e.i===-1?(e.S.U(e),r!==void 0&&(r.n=e.n),e.n!==void 0&&(e.n.p=r)):t=e,e.S.n=e.r,e.r!==void 0&&(e.r=void 0),e=r}n.s=t}s(zt,"l");function te(n,e){L.call(this,void 0),this.x=n,this.s=void 0,this.g=Te-1,this.f=4,this.W=e?.watched,this.Z=e?.unwatched,this.name=e?.name}s(te,"y");te.prototype=new L;te.prototype.h=function(){if(this.f&=-3,1&this.f)return!1;if((36&this.f)==32||(this.f&=-5,this.g===Te))return!0;if(this.g=Te,this.f|=1,this.i>0&&!Ht(this))return this.f&=-2,!0;var n=g;try{Qt(this),g=this;var e=this.x();(16&this.f||this.v!==e||this.i===0)&&(this.v=e,this.f&=-17,this.i++)}catch(t){this.v=t,this.f|=16,this.i++}return g=n,zt(this),this.f&=-2,!0};te.prototype.S=function(n){if(this.t===void 0){this.f|=36;for(var e=this.s;e!==void 0;e=e.n)e.S.S(e)}L.prototype.S.call(this,n)};te.prototype.U=function(n){if(this.t!==void 0&&(L.prototype.U.call(this,n),this.t===void 0)){this.f&=-33;for(var e=this.s;e!==void 0;e=e.n)e.S.U(e)}};te.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var n=this.t;n!==void 0;n=n.x)n.t.N()}};Object.defineProperty(te.prototype,"value",{get:s(function(){if(1&this.f)throw new Error("Cycle detected");var n=Ft(this);if(this.h(),n!==void 0&&(n.i=this.i),16&this.f)throw this.v;return this.v},"get")});function q(n,e){return new te(n,e)}s(q,"w");function Wt(n){var e=n.u;if(n.u=void 0,typeof e=="function"){K++;var t=g;g=void 0;try{e()}catch(r){throw n.f&=-2,n.f|=8,Je(n),r}finally{g=t,Pe()}}}s(Wt,"_");function Je(n){for(var e=n.s;e!==void 0;e=e.n)e.S.U(e);n.x=void 0,n.s=void 0,Wt(n)}s(Je,"b");function Or(n){if(g!==this)throw new Error("Out-of-order effect");zt(this),g=n,this.f&=-2,8&this.f&&Je(this),Pe()}s(Or,"g");function ue(n,e){this.x=n,this.u=void 0,this.s=void 0,this.o=void 0,this.f=32,this.name=e?.name}s(ue,"p");ue.prototype.c=function(){var n=this.S();try{if(8&this.f||this.x===void 0)return;var e=this.x();typeof e=="function"&&(this.u=e)}finally{n()}};ue.prototype.S=function(){if(1&this.f)throw new Error("Cycle detected");this.f|=1,this.f&=-9,Wt(this),Qt(this),K++;var n=g;return g=this,Or.bind(this,n)};ue.prototype.N=function(){2&this.f||(this.f|=2,this.o=pe,pe=this)};ue.prototype.d=function(){this.f|=8,1&this.f||Je(this)};ue.prototype.dispose=function(){this.d()};function V(n,e){var t=new ue(n,e);try{t.c()}catch(i){throw t.d(),i}var r=t.d.bind(t);return r[Symbol.dispose]=r,r}s(V,"E");var Lr=/\/products\/([^/?#]+)(?:\?(?:[^#]*?&)?variant=(\d+))?/,Ze=s(n=>{let e=n.match(Lr);return e?{productHandle:e[1],variantId:e[2]}:null},"parseProductUrl"),Xt=s(({source:n,onProductUrlChange:e})=>{let t=s(r=>{let i=Ze(r);i?.productHandle&&e(i)},"handleChange");if(n instanceof HTMLAnchorElement)return Vt({element:n,onHrefChange:s(r=>t(r),"onHrefChange")});if(n instanceof Location)return se({onLocationChange:s(r=>t(r.href),"onLocationChange")});throw new Error("Invalid source for observing product url")},"observeProductUrl");var Kt=s(n=>e=>{let{productHandle:t,productId:r,variantId:i,itemId:o}=e?.dataset??{},l=!!(r||t)||!!o,c=C({loading:!1,productId:r,variantId:i,itemId:o});if(!l){let p=e instanceof HTMLAnchorElement?e:window.location,f=Ze(p.href);f?.productHandle&&f.productHandle!==c.value.productHandle&&(c.value={...c.value,...f,productId:void 0},Xt({source:p,onProductUrlChange:s(m=>{c.value={...c.value,...m,productId:m.productHandle!==c.value.productHandle?void 0:c.value.productId}},"onProductUrlChange")}))}return V(()=>{c.value.loading||!c.value.productId&&c.value.productHandle&&(c.value={...c.value,loading:!0},n.storefront.loadProductId({productHandle:c.value.productHandle}).then(p=>{p.errors&&console.error("Error loading product id",p.errors),c.value={...c.value,productId:p.data?.product?.id?D(p.data.product.id):void 0,loading:!1}}))}),c},"itemContextSignal");var Yt=s(n=>e=>{let t=q(()=>{let{productId:w,variantId:v,loading:T}=e.value;return!w||T?null:v?`variant:${D(v)}`:`product:${D(w)}`}),r=q(()=>e.value.loading||!!e.value.itemId||!e.value.productId),i=q(()=>({limit:1,query:t.value??void 0})),o=C(!r.value),u=C(null),a=C(!1),l=C(!1),{data:c,loading:p,error:f,refetching:m}=n.state.swishQuery(w=>n.api.items.list(w),{refetch:["item-create","item-update","item-delete"],variables:i,skip:r}),h=C(e.value.itemId??null);V(()=>{Y(()=>{if(o.value=p.value,u.value=f.value,!e.value.itemId){let w=c.value?.[0]?.id??null;w!==h.value&&(h.value=w)}})});async function x(){if(!h.value)return;a.value=!0,(await(await n.intents.invoke({action:"delete",type:"swish/Item",data:{itemId:h.value}})).complete).code==="ok"&&(h.value=null),a.value=!1}s(x,"unsave");async function y(){if(!h.value)return;a.value=!0;let v=await(await n.intents.invoke({action:"edit",type:"swish/ItemLists",data:{itemId:h.value}})).complete;v.code==="ok"&&"itemId"in v.data&&(h.value=null),a.value=!1}s(y,"update");async function k(){let{productId:w,variantId:v}=e.value;if(!w)return;a.value=!0,l.value=!0;let P=await(await n.intents.invoke({action:"create",type:"swish/Item",data:{productId:w,variantId:v}})).complete;if(P.code==="ok"){let le=P.data;h.value=le.item.id,a.value=!1}else P.code==="error"&&console.warn("Failed to create item",P),Y(()=>{a.value=!1,l.value=!1})}s(k,"save");let O=q(()=>o.value||a.value||e.value.loading);V(()=>{l.value&&!a.value&&!m.value&&(l.value=!1)});let R=q(()=>{let w=m.value&&l.value,v=!!h.value,T=!v&&(a.value||w),P=v&&(a.value||w),le=q(()=>T?"saving":P?"unsaving":v?"saved":"unsaved");return{error:u.value,status:le.value,savedItemId:h.value,loading:O.value,submitting:a.value,saved:v,saving:T,unsaving:P}});async function F(){O.value||(R.value.saved&&R.value.savedItemId?y():R.value.saved||await k())}return s(F,"toggle"),Object.assign(R,{save:k,unsave:x,update:y,toggle:F})},"itemStateSignal");var Jt=s(n=>()=>{let{data:e,loading:t,error:r}=n.state.swishQuery(()=>n.api.items.count(),{refetch:["item-create","item-delete"]}),i=C(0),o=C(!0),u=C(null);return V(()=>{Y(()=>{o.value=t.value,u.value=r.value,i.value=e.value?.count??0})}),q(()=>({count:i.value,loading:o.value,error:u.value}))},"itemCountSignal");var $r="token-update",Zt=s(n=>(e,t)=>{let r=C(null),i=C(null),o=C(null),u=C(!t?.skip),a=C(!1),l=q(()=>u.value&&a.value);async function c(){if(!t?.skip?.value)try{u.value=!0;let p=await e(t?.variables?.value);Y(()=>{o.value="error"in p?p.error:null,r.value="data"in p?p.data:null,i.value="pageInfo"in p?p.pageInfo:null,u.value=!1,a.value=!0})}catch(p){Y(()=>{o.value=p,u.value=!1,a.value=!0})}}return s(c,"executeFetch"),V(()=>{if(c(),t?.refetch?.length){let p=[...t.refetch,$r];return n.events.subscribe(p,c)}}),{data:r,pageInfo:i,error:o,loading:u,refetching:l}},"swishQuerySignals");var ne="GraphQL Client";var et="An error occurred while fetching from the API. Review 'graphQLErrors' for details.",tt="Response returned unexpected Content-Type:",nt="An unknown error has occurred. The API did not return a data object or any errors in its response.",_e={json:"application/json",multipart:"multipart/mixed"},rt="X-SDK-Variant",it="X-SDK-Version",tn="shopify-graphql-client",nn="1.4.1",Oe=1e3,rn=[429,503],st=/@(defer)\b/i,en=`\r
|
|
8
|
+
`,sn=/boundary="?([^=";]+)"?/i,ot=en+en;function H(n,e=ne){return n.startsWith(`${e}`)?n:`${e}: ${n}`}s(H,"formatErrorMessage");function W(n){return n instanceof Error?n.message:JSON.stringify(n)}s(W,"getErrorMessage");function at(n){return n instanceof Error&&n.cause?n.cause:void 0}s(at,"getErrorCause");function ut(n){return n.flatMap(({errors:e})=>e??[])}s(ut,"combineErrors");function Le({client:n,retries:e}){if(e!==void 0&&(typeof e!="number"||e<0||e>3))throw new Error(`${n}: The provided "retries" value (${e}) is invalid - it cannot be less than ${0} or greater than ${3}`)}s(Le,"validateRetries");function $(n,e){return e&&(typeof e!="object"||Array.isArray(e)||typeof e=="object"&&Object.keys(e).length>0)?{[n]:e}:{}}s($,"getKeyValueIfValid");function lt(n,e){if(n.length===0)return e;let r={[n.pop()]:e};return n.length===0?r:lt(n,r)}s(lt,"buildDataObjectByPath");function un(n,e){return Object.keys(e||{}).reduce((t,r)=>(typeof e[r]=="object"||Array.isArray(e[r]))&&n[r]?(t[r]=un(n[r],e[r]),t):(t[r]=e[r],t),Array.isArray(n)?[...n]:{...n})}s(un,"combineObjects");function ct([n,...e]){return e.reduce(un,{...n})}s(ct,"buildCombinedDataObject");function pt({clientLogger:n,customFetchApi:e=fetch,client:t=ne,defaultRetryWaitTime:r=Oe,retriableCodes:i=rn}){let o=s(async(u,a,l)=>{let c=a+1,p=l+1,f;try{if(f=await e(...u),n({type:"HTTP-Response",content:{requestParams:u,response:f}}),!f.ok&&i.includes(f.status)&&c<=p)throw new Error;let m=f?.headers.get("X-Shopify-API-Deprecated-Reason")||"";return m&&n({type:"HTTP-Response-GraphQL-Deprecation-Notice",content:{requestParams:u,deprecationNotice:m}}),f}catch(m){if(c<=p){let h=f?.headers.get("Retry-After");return await qr(h?parseInt(h,10):r),n({type:"HTTP-Retry",content:{requestParams:u,lastResponse:f,retryAttempt:a,maxRetries:l}}),o(u,c,l)}throw new Error(H(`${l>0?`Attempted maximum number of ${l} network retries. Last message - `:""}${W(m)}`,t))}},"httpFetch");return o}s(pt,"generateHttpFetch");async function qr(n){return new Promise(e=>setTimeout(e,n))}s(qr,"sleep");function dt({headers:n,url:e,customFetchApi:t=fetch,retries:r=0,logger:i}){Le({client:ne,retries:r});let o={headers:n,url:e,retries:r},u=Br(i),a=pt({customFetchApi:t,clientLogger:u,defaultRetryWaitTime:Oe}),l=Vr(a,o),c=Ur(l),p=Qr(l);return{config:o,fetch:l,request:c,requestStream:p}}s(dt,"createGraphQLClient");function Br(n){return e=>{n&&n(e)}}s(Br,"generateClientLogger");async function ln(n){let{errors:e,data:t,extensions:r}=await n.json();return{...$("data",t),...$("extensions",r),headers:n.headers,...e||!t?{errors:{networkStatusCode:n.status,message:H(e?et:nt),...$("graphQLErrors",e),response:n}}:{}}}s(ln,"processJSONResponse");function Vr(n,{url:e,headers:t,retries:r}){return async(i,o={})=>{let{variables:u,headers:a,url:l,retries:c,keepalive:p,signal:f}=o,m=JSON.stringify({query:i,variables:u});Le({client:ne,retries:c});let h=Object.entries({...t,...a}).reduce((y,[k,O])=>(y[k]=Array.isArray(O)?O.join(", "):O.toString(),y),{});return!h[rt]&&!h[it]&&(h[rt]=tn,h[it]=nn),n([l??e,{method:"POST",headers:h,body:m,signal:f,keepalive:p}],1,c??r)}}s(Vr,"generateFetch");function Ur(n){return async(...e)=>{if(st.test(e[0]))throw new Error(H("This operation will result in a streamable response - use requestStream() instead."));let t=null;try{t=await n(...e);let{status:r,statusText:i}=t,o=t.headers.get("content-type")||"";return t.ok?o.includes(_e.json)?await ln(t):{errors:{networkStatusCode:r,message:H(`${tt} ${o}`),response:t}}:{errors:{networkStatusCode:r,message:H(i),response:t}}}catch(r){return{errors:{message:W(r),...t==null?{}:{networkStatusCode:t.status,response:t}}}}}}s(Ur,"generateRequest");async function*Nr(n){let e=new TextDecoder;if(n.body[Symbol.asyncIterator])for await(let t of n.body)yield e.decode(t);else{let t=n.body.getReader(),r;try{for(;!(r=await t.read()).done;)yield e.decode(r.value)}finally{t.cancel()}}}s(Nr,"getStreamBodyIterator");function Gr(n,e){return{async*[Symbol.asyncIterator](){try{let t="";for await(let r of n)if(t+=r,t.indexOf(e)>-1){let i=t.lastIndexOf(e),u=t.slice(0,i).split(e).filter(a=>a.trim().length>0).map(a=>a.slice(a.indexOf(ot)+ot.length).trim());u.length>0&&(yield u),t=t.slice(i+e.length),t.trim()==="--"&&(t="")}}catch(t){throw new Error(`Error occured while processing stream payload - ${W(t)}`)}}}}s(Gr,"readStreamChunk");function Mr(n){return{async*[Symbol.asyncIterator](){yield{...await ln(n),hasNext:!1}}}}s(Mr,"createJsonResponseAsyncIterator");function jr(n){return n.map(e=>{try{return JSON.parse(e)}catch(t){throw new Error(`Error in parsing multipart response - ${W(t)}`)}}).map(e=>{let{data:t,incremental:r,hasNext:i,extensions:o,errors:u}=e;if(!r)return{data:t||{},...$("errors",u),...$("extensions",o),hasNext:i};let a=r.map(({data:l,path:c,errors:p})=>({data:l&&c?lt(c,l):{},...$("errors",p)}));return{data:a.length===1?a[0].data:ct([...a.map(({data:l})=>l)]),...$("errors",ut(a)),hasNext:i}})}s(jr,"getResponseDataFromChunkBodies");function Fr(n,e){if(n.length>0)throw new Error(et,{cause:{graphQLErrors:n}});if(Object.keys(e).length===0)throw new Error(nt)}s(Fr,"validateResponseData");function Hr(n,e){let t=(e??"").match(sn),r=`--${t?t[1]:"-"}`;if(!n.body?.getReader&&!n.body?.[Symbol.asyncIterator])throw new Error("API multipart response did not return an iterable body",{cause:n});let i=Nr(n),o={},u;return{async*[Symbol.asyncIterator](){try{let a=!0;for await(let l of Gr(i,r)){let c=jr(l);u=c.find(f=>f.extensions)?.extensions??u;let p=ut(c);o=ct([o,...c.map(({data:f})=>f)]),a=c.slice(-1)[0].hasNext,Fr(p,o),yield{...$("data",o),...$("extensions",u),hasNext:a}}if(a)throw new Error("Response stream terminated unexpectedly")}catch(a){let l=at(a);yield{...$("data",o),...$("extensions",u),errors:{message:H(W(a)),networkStatusCode:n.status,...$("graphQLErrors",l?.graphQLErrors),response:n},hasNext:!1}}}}}s(Hr,"createMultipartResponseAsyncInterator");function Qr(n){return async(...e)=>{if(!st.test(e[0]))throw new Error(H("This operation does not result in a streamable response - use request() instead."));try{let t=await n(...e),{statusText:r}=t;if(!t.ok)throw new Error(r,{cause:t});let i=t.headers.get("content-type")||"";switch(!0){case i.includes(_e.json):return Mr(t);case i.includes(_e.multipart):return Hr(t,i);default:throw new Error(`${tt} ${i}`,{cause:t})}}catch(t){return{async*[Symbol.asyncIterator](){let r=at(t);yield{errors:{message:H(W(t)),...$("networkStatusCode",r?.status),...$("response",r)},hasNext:!1}}}}}}s(Qr,"generateRequestStream");function ft({client:n,storeDomain:e}){try{if(!e||typeof e!="string")throw new Error;let t=e.trim(),r=t.match(/^https?:/)?t:`https://${t}`,i=new URL(r);return i.protocol="https",i.origin}catch(t){throw new Error(`${n}: a valid store domain ("${e}") must be provided`,{cause:t})}}s(ft,"validateDomainAndGetStoreUrl");function $e({client:n,currentSupportedApiVersions:e,apiVersion:t,logger:r}){let i=`${n}: the provided apiVersion ("${t}")`,o=`Currently supported API versions: ${e.join(", ")}`;if(!t||typeof t!="string")throw new Error(`${i} is invalid. ${o}`);let u=t.trim();e.includes(u)||(r?r({type:"Unsupported_Api_Version",content:{apiVersion:t,supportedApiVersions:e}}):console.warn(`${i} is likely deprecated or not supported. ${o}`))}s($e,"validateApiVersion");function qe(n){let e=n*3-2;return e===10?e:`0${e}`}s(qe,"getQuarterMonth");function ht(n,e,t){let r=e-t;return r<=0?`${n-1}-${qe(r+4)}`:`${n}-${qe(r)}`}s(ht,"getPrevousVersion");function cn(){let n=new Date,e=n.getUTCMonth(),t=n.getUTCFullYear(),r=Math.floor(e/3+1);return{year:t,quarter:r,version:`${t}-${qe(r)}`}}s(cn,"getCurrentApiVersion");function yt(){let{year:n,quarter:e,version:t}=cn(),r=e===4?`${n+1}-01`:`${n}-${qe(e+1)}`;return[ht(n,e,3),ht(n,e,2),ht(n,e,1),t,r,"unstable"]}s(yt,"getCurrentSupportedApiVersions");function mt(n){return e=>({...e??{},...n.headers})}s(mt,"generateGetHeaders");function vt({getHeaders:n,getApiUrl:e}){return(t,r)=>{let i=[t];if(r&&Object.keys(r).length>0){let{variables:o,apiVersion:u,headers:a,retries:l,signal:c}=r;i.push({...o?{variables:o}:{},...a?{headers:n(a)}:{},...u?{url:e(u)}:{},...l?{retries:l}:{},...c?{signal:c}:{}})}return i}}s(vt,"generateGetGQLClientParams");var gt="application/json",pn="storefront-api-client",dn="1.0.9",fn="X-Shopify-Storefront-Access-Token",hn="Shopify-Storefront-Private-Token",yn="X-SDK-Variant",mn="X-SDK-Version",vn="X-SDK-Variant-Source",re="Storefront API Client";function gn(n){if(n&&typeof window<"u")throw new Error(`${re}: private access tokens and headers should only be used in a server-to-server implementation. Use the public API access token in nonserver environments.`)}s(gn,"validatePrivateAccessTokenUsage");function In(n,e){if(!n&&!e)throw new Error(`${re}: a public or private access token must be provided`);if(n&&e)throw new Error(`${re}: only provide either a public or private access token`)}s(In,"validateRequiredAccessTokens");function It({storeDomain:n,apiVersion:e,publicAccessToken:t,privateAccessToken:r,clientName:i,retries:o=0,customFetchApi:u,logger:a}){let l=yt(),c=ft({client:re,storeDomain:n}),p={client:re,currentSupportedApiVersions:l,logger:a};$e({...p,apiVersion:e}),In(t,r),gn(r);let f=zr(c,e,p),m={storeDomain:c,apiVersion:e,...t?{publicAccessToken:t}:{privateAccessToken:r},headers:{"Content-Type":gt,Accept:gt,[yn]:pn,[mn]:dn,...i?{[vn]:i}:{},...t?{[fn]:t}:{[hn]:r}},apiUrl:f(),clientName:i},h=dt({headers:m.headers,url:m.apiUrl,retries:o,customFetchApi:u,logger:a}),x=mt(m),y=Wr(m,f),k=vt({getHeaders:x,getApiUrl:y});return Object.freeze({config:m,getHeaders:x,getApiUrl:y,fetch:s((...R)=>h.fetch(...k(...R)),"fetch"),request:s((...R)=>h.request(...k(...R)),"request"),requestStream:s((...R)=>h.requestStream(...k(...R)),"requestStream")})}s(It,"createStorefrontApiClient");function zr(n,e,t){return r=>{r&&$e({...t,apiVersion:r});let i=(r??e).trim();return`${n}/api/${i}/graphql.json`}}s(zr,"generateApiUrlFormatter");function Wr(n,e){return t=>t?e(t):n.apiUrl}s(Wr,"generateGetApiUrl");var B=`
|
|
9
9
|
fragment productImageFields on Image {
|
|
10
10
|
id
|
|
11
11
|
altText
|
|
@@ -435,11 +435,11 @@ Values:
|
|
|
435
435
|
id
|
|
436
436
|
}
|
|
437
437
|
}
|
|
438
|
-
`;var qn=s(async(n,{productId:e,variantId:t,productMetafields:r=[],variantMetafields:i=[],country:o,language:u})=>{if(!e)throw new Error("A productId must be provided");let a=s(()=>{if(e&&!t)return En;if(e&&t)return Sn},"getProductOptionsQuery"),l=s(()=>{if(e&&!t)return{productId:b("Product",e),productMetafields:r,country:o,language:u};if(e&&t)return{productId:b("Product",e),variantId:b("ProductVariant",t),productMetafields:r,variantMetafields:i,country:o,language:u}},"getVariables"),c=a(),p=l();if(!p||!c)throw new Error("Invalid query arguments");return n.query(c,p)},"loadProductCardData");var Bn=s(async(n,{productId:e,variantId:t,productMetafields:r=[],variantMetafields:i=[],country:o,language:u})=>{if(!e)throw new Error("A productId must be provided");let a=s(()=>{if(e&&!t)return Tn;if(e&&t)return Pn},"getProductOptionsQuery"),l=s(()=>{if(e&&!t)return{productId:b("Product",e),productMetafields:r,country:o,language:u};if(e&&t)return{productId:b("Product",e),variantId:b("ProductVariant",t),productMetafields:r,variantMetafields:i,country:o,language:u}},"getVariables"),c=a(),p=l();if(!p||!c)throw new Error("Invalid query arguments");return n.query(c,p)},"loadProductDetailData");var Vn=s(async(n,{productHandle:e})=>{if(!e)throw new Error("A product handle must be provided");return n.query($n,{handle:e})},"loadProductId");var Un=s(async(n,{items:e,country:t,language:r})=>{if(!e?.length)throw new Error("A list of items must be provided");let i={ids:e.map(o=>o.variantId?b("ProductVariant",o.variantId.toString()):b("Product",o.productId.toString())),country:t,language:r};try{return{data:(await n.query(_n,i)).data?.nodes.map(a=>a===null?null:"image"in a?a.image:"featuredImage"in a?a.featuredImage:null).filter(a=>a!==null)??[],error:null}}catch(o){return console.error(o),{data:null,error:o}}},"loadProductImages");var Nn=s(async(n,{productId:e,productHandle:t,variantId:r,country:i,language:o})=>{if(!e&&!t)throw new Error("Either productId or handle must be provided");let u=s(()=>{if(e&&!r)return Cn;if(t&&!r)return xn;if(e&&r)return kn;if(t&&r)return An},"getProductOptionsQuery"),a=s(()=>{if(e&&!r)return{productId:b("Product",e),country:i,language:o};if(t&&!r)return{handle:t,country:i,language:o};if(e&&r)return{productId:b("Product",e),variantId:b("ProductVariant",r),country:i,language:o};if(t&&r)return{handle:t,variantId:b("ProductVariant",r),country:i,language:o}},"getVariables"),l=u(),c=a();if(!c||!l)throw new Error("Invalid query arguments");return n.query(l,c)},"loadProductOptions");var Gn=s(async(n,{productId:e,productHandle:t,intent:r,country:i,language:o})=>{if(!e&&!t)throw new Error("Either productId or productHandle must be provided");if(e){let a={productId:b("Product",e),intent:r,country:i,language:o};return n.query(On,a)}let u={handle:t,intent:r,country:i,language:o};return n.query(Ln,u)},"loadProductRecommendations");var Mn=s(async(n,{productId:e,variantId:t,country:r,language:i})=>{let o=s(()=>{if(e&&!t)return wn;if(e&&t)return bn},"getProductOptionsQuery"),u=s(()=>{if(e&&!t)return{productId:b("Product",
|
|
438
|
+
`;var qn=s(async(n,{productId:e,variantId:t,productMetafields:r=[],variantMetafields:i=[],country:o,language:u})=>{if(!e)throw new Error("A productId must be provided");let a=s(()=>{if(e&&!t)return En;if(e&&t)return Sn},"getProductOptionsQuery"),l=s(()=>{if(e&&!t)return{productId:b("Product",e),productMetafields:r,country:o,language:u};if(e&&t)return{productId:b("Product",e),variantId:b("ProductVariant",t),productMetafields:r,variantMetafields:i,country:o,language:u}},"getVariables"),c=a(),p=l();if(!p||!c)throw new Error("Invalid query arguments");return n.query(c,p)},"loadProductCardData");var Bn=s(async(n,{productId:e,variantId:t,productMetafields:r=[],variantMetafields:i=[],country:o,language:u})=>{if(!e)throw new Error("A productId must be provided");let a=s(()=>{if(e&&!t)return Tn;if(e&&t)return Pn},"getProductOptionsQuery"),l=s(()=>{if(e&&!t)return{productId:b("Product",e),productMetafields:r,country:o,language:u};if(e&&t)return{productId:b("Product",e),variantId:b("ProductVariant",t),productMetafields:r,variantMetafields:i,country:o,language:u}},"getVariables"),c=a(),p=l();if(!p||!c)throw new Error("Invalid query arguments");return n.query(c,p)},"loadProductDetailData");var Vn=s(async(n,{productHandle:e})=>{if(!e)throw new Error("A product handle must be provided");return n.query($n,{handle:e})},"loadProductId");var Un=s(async(n,{items:e,country:t,language:r})=>{if(!e?.length)throw new Error("A list of items must be provided");let i={ids:e.map(o=>o.variantId?b("ProductVariant",o.variantId.toString()):b("Product",o.productId.toString())),country:t,language:r};try{return{data:(await n.query(_n,i)).data?.nodes.map(a=>a===null?null:"image"in a?a.image:"featuredImage"in a?a.featuredImage:null).filter(a=>a!==null)??[],error:null}}catch(o){return console.error(o),{data:null,error:o}}},"loadProductImages");var Nn=s(async(n,{productId:e,productHandle:t,variantId:r,country:i,language:o})=>{if(!e&&!t)throw new Error("Either productId or handle must be provided");let u=s(()=>{if(e&&!r)return Cn;if(t&&!r)return xn;if(e&&r)return kn;if(t&&r)return An},"getProductOptionsQuery"),a=s(()=>{if(e&&!r)return{productId:b("Product",e),country:i,language:o};if(t&&!r)return{handle:t,country:i,language:o};if(e&&r)return{productId:b("Product",e),variantId:b("ProductVariant",r),country:i,language:o};if(t&&r)return{handle:t,variantId:b("ProductVariant",r),country:i,language:o}},"getVariables"),l=u(),c=a();if(!c||!l)throw new Error("Invalid query arguments");return n.query(l,c)},"loadProductOptions");var Gn=s(async(n,{productId:e,productHandle:t,intent:r,country:i,language:o})=>{if(!e&&!t)throw new Error("Either productId or productHandle must be provided");if(e){let a={productId:b("Product",e),intent:r,country:i,language:o};return n.query(On,a)}let u={handle:t,intent:r,country:i,language:o};return n.query(Ln,u)},"loadProductRecommendations");var Mn=s(async(n,{productId:e,variantId:t,country:r,language:i})=>{let o=s(()=>{if(e&&!t)return wn;if(e&&t)return bn},"getProductOptionsQuery"),u=s(()=>{if(e&&!t)return{productId:b("Product",D(e)),country:r,language:i};if(e&&t)return{productId:b("Product",D(e)),variantId:b("ProductVariant",D(t)),country:r,language:i}},"getVariables"),a=o(),l=u();if(!l||!a)throw new Error("Invalid query arguments");return n.query(a,l)},"loadSaveIntentData");var jn=s(async(n,{productId:e,productHandle:t,selectedOptions:r,country:i,language:o})=>{if(!e&&!t)throw new Error("Either productId or handle must be provided");let u=e?Rn:Dn,a=e?{productId:`gid://shopify/Product/${e}`,selectedOptions:r,country:i,language:o}:{handle:t,selectedOptions:r,country:i,language:o};return n.query(u,a)},"loadSelectedVariant");var Xr="2025-10",Kr=["GetProductIdByHandle"],Be=class{constructor(e,t,r,i){this.client=null;this.query=s(async(e,t)=>{if(!this.client)throw new Error("Storefront API client not initialized");let r=await this.client.request(e,{variables:t});return{data:r.data,errors:r.errors??null}},"query");this.loadProductOptions=s(async e=>Nn(this,{...e,...this.metafields,country:this.context.localization.country,language:this.context.localization.language}),"loadProductOptions");this.loadSelectedVariant=s(async e=>jn(this,{...e,...this.metafields,country:this.context.localization.country,language:this.context.localization.language}),"loadSelectedVariant");this.loadProductCardData=s(async e=>qn(this,{...e,...this.metafields,country:this.context.localization.country,language:this.context.localization.language}).then(t=>t.data?"variant"in t.data?{...t,data:{...t.data,badges:this.badges.getBadges({product:t.data.product,variant:t.data.variant})}}:{...t,data:{...t.data,badges:this.badges.getBadges({product:t.data.product})}}:t),"loadProductCardData");this.loadProductDetailData=s(async e=>Bn(this,{...e,...this.metafields,country:this.context.localization.country,language:this.context.localization.language}).then(t=>t.data?"variant"in t.data?{...t,data:{...t.data,badges:this.badges.getBadges({product:t.data.product,variant:t.data.variant})}}:{...t,data:{...t.data,badges:this.badges.getBadges({product:t.data.product})}}:t),"loadProductDetailData");this.loadProductImages=s(async e=>Un(this,{...e,...this.metafields,country:this.context.localization.country,language:this.context.localization.language}),"loadProductImages");this.loadProductRecommendations=s(async e=>Gn(this,{...e,country:this.context.localization.country,language:this.context.localization.language}),"loadProductRecommendations");this.loadProductId=s(async e=>Vn(this,e),"loadProductId");this.loadSaveIntentData=s(async e=>Mn(this,{...e,...this.metafields,country:this.context.localization.country,language:this.context.localization.language}),"loadSaveIntentData");this.options=e,this.context=t,this.badges=r,this.metafields={productMetafields:i?.product.map(o=>({namespace:o.split(".")[0],key:o.split(".")[1]}))??[],variantMetafields:i?.productVariant.map(o=>({namespace:o.split(".")[0],key:o.split(".")[1]}))??[]},this.shortCache=new Q("storefront-api-short","max-age=60, stale-while-revalidate=3600"),this.longCache=new Q("storefront-api-long","max-age=3600, stale-while-revalidate=86400"),this.shortCache.cleanupExpiredEntries().catch(o=>{console.warn("Storefront API cache initialization cleanup error:",o)}),this.longCache.cleanupExpiredEntries().catch(o=>{console.warn("Storefront API cache initialization cleanup error:",o)}),this.client=It({apiVersion:Xr,customFetchApi:s((o,u)=>u?.method==="OPTIONS"?this.fetch(o,u):Kr.some(a=>u?.body?.toString().includes(`query ${a}`))?this.longCache.fetchWithCache(o,u):this.shortCache.fetchWithCache(o,u),"customFetchApi"),publicAccessToken:this.options.accessToken,storeDomain:this.options.storeDomain})}static{s(this,"StorefrontApiClient")}fetch(e,t){return t?.method==="OPTIONS"?fetch(e,t):this.shortCache.fetchWithCache(e,t)}async clearCache(){await this.shortCache.clear()}};var Yr=Object.defineProperty,d=s((n,e)=>Yr(n,"name",{value:e,configurable:!0}),"n"),Jr={bodySerializer:d(n=>JSON.stringify(n,(e,t)=>typeof t=="bigint"?t.toString():t),"bodySerializer")},Zr={$body_:"body",$headers_:"headers",$path_:"path",$query_:"query"},Wu=Object.entries(Zr),ei=d(({onRequest:n,onSseError:e,onSseEvent:t,responseTransformer:r,responseValidator:i,sseDefaultRetryDelay:o,sseMaxRetryAttempts:u,sseMaxRetryDelay:a,sseSleepFn:l,url:c,...p})=>{let f,m=l??(h=>new Promise(x=>setTimeout(x,h)));return{stream:d(async function*(){let h=o??3e3,x=0,y=p.signal??new AbortController().signal;for(;!y.aborted;){x++;let k=p.headers instanceof Headers?p.headers:new Headers(p.headers);f!==void 0&&k.set("Last-Event-ID",f);try{let O={redirect:"follow",...p,body:p.serializedBody,headers:k,signal:y},R=new Request(c,O);n&&(R=await n(c,O));let F=await(p.fetch??globalThis.fetch)(R);if(!F.ok)throw new Error(`SSE failed: ${F.status} ${F.statusText}`);if(!F.body)throw new Error("No body in SSE response");let w=F.body.pipeThrough(new TextDecoderStream).getReader(),v="",T=d(()=>{try{w.cancel()}catch{}},"abortHandler");y.addEventListener("abort",T);try{for(;;){let{done:P,value:le}=await w.read();if(P)break;v+=le;let Ot=v.split(`
|
|
439
439
|
|
|
440
440
|
`);v=Ot.pop()??"";for(let sr of Ot){let or=sr.split(`
|
|
441
441
|
`),fe=[],Lt;for(let M of or)if(M.startsWith("data:"))fe.push(M.replace(/^data:\s*/,""));else if(M.startsWith("event:"))Lt=M.replace(/^event:\s*/,"");else if(M.startsWith("id:"))f=M.replace(/^id:\s*/,"");else if(M.startsWith("retry:")){let qt=Number.parseInt(M.replace(/^retry:\s*/,""),10);Number.isNaN(qt)||(h=qt)}let J,$t=!1;if(fe.length){let M=fe.join(`
|
|
442
|
-
`);try{J=JSON.parse(M),$t=!0}catch{J=M}}$t&&(i&&await i(J),r&&(J=await r(J))),t?.({data:J,event:Lt,id:f,retry:h}),fe.length&&(yield J)}}}finally{y.removeEventListener("abort",T),w.releaseLock()}break}catch(O){if(e?.(O),u!==void 0&&D>=u)break;let A=Math.min(h*2**(D-1),a??3e4);await m(A)}}},"createStream")()}},"createSseClient"),ti=d(n=>{switch(n){case"label":return".";case"matrix":return";";case"simple":return",";default:return"&"}},"separatorArrayExplode"),ni=d(n=>{switch(n){case"form":return",";case"pipeDelimited":return"|";case"spaceDelimited":return"%20";default:return","}},"separatorArrayNoExplode"),ri=d(n=>{switch(n){case"label":return".";case"matrix":return";";case"simple":return",";default:return"&"}},"separatorObjectExplode"),Qn=d(({allowReserved:n,explode:e,name:t,style:r,value:i})=>{if(!e){let a=(n?i:i.map(l=>encodeURIComponent(l))).join(ni(r));switch(r){case"label":return`.${a}`;case"matrix":return`;${t}=${a}`;case"simple":return a;default:return`${t}=${a}`}}let o=ti(r),u=i.map(a=>r==="label"||r==="simple"?n?a:encodeURIComponent(a):Ue({allowReserved:n,name:t,value:a})).join(o);return r==="label"||r==="matrix"?o+u:u},"serializeArrayParam"),Ue=d(({allowReserved:n,name:e,value:t})=>{if(t==null)return"";if(typeof t=="object")throw new Error("Deeply-nested arrays/objects aren\u2019t supported. Provide your own `querySerializer()` to handle these.");return`${e}=${n?t:encodeURIComponent(t)}`},"serializePrimitiveParam"),zn=d(({allowReserved:n,explode:e,name:t,style:r,value:i,valueOnly:o})=>{if(i instanceof Date)return o?i.toISOString():`${t}=${i.toISOString()}`;if(r!=="deepObject"&&!e){let l=[];Object.entries(i).forEach(([p,f])=>{l=[...l,p,n?f:encodeURIComponent(f)]});let c=l.join(",");switch(r){case"form":return`${t}=${c}`;case"label":return`.${c}`;case"matrix":return`;${t}=${c}`;default:return c}}let u=ri(r),a=Object.entries(i).map(([l,c])=>Ue({allowReserved:n,name:r==="deepObject"?`${t}[${l}]`:l,value:c})).join(u);return r==="label"||r==="matrix"?u+a:a},"serializeObjectParam"),ii=/\{[^{}]+\}/g,si=d(({path:n,url:e})=>{let t=e,r=e.match(ii);if(r)for(let i of r){let o=!1,u=i.substring(1,i.length-1),a="simple";u.endsWith("*")&&(o=!0,u=u.substring(0,u.length-1)),u.startsWith(".")?(u=u.substring(1),a="label"):u.startsWith(";")&&(u=u.substring(1),a="matrix");let l=n[u];if(l==null)continue;if(Array.isArray(l)){t=t.replace(i,Qn({explode:o,name:u,style:a,value:l}));continue}if(typeof l=="object"){t=t.replace(i,zn({explode:o,name:u,style:a,value:l,valueOnly:!0}));continue}if(a==="matrix"){t=t.replace(i,`;${Ue({name:u,value:l})}`);continue}let c=encodeURIComponent(a==="label"?`.${l}`:l);t=t.replace(i,c)}return t},"defaultPathSerializer"),oi=d(({baseUrl:n,path:e,query:t,querySerializer:r,url:i})=>{let o=i.startsWith("/")?i:`/${i}`,u=(n??"")+o;e&&(u=si({path:e,url:u}));let a=t?r(t):"";return a.startsWith("?")&&(a=a.substring(1)),a&&(u+=`?${a}`),u},"getUrl");function Wn(n){let e=n.body!==void 0;if(e&&n.bodySerializer)return"serializedBody"in n?n.serializedBody!==void 0&&n.serializedBody!==""?n.serializedBody:null:n.body!==""?n.body:null;if(e)return n.body}s(Wn,"K");d(Wn,"getValidRequestBody");var ai=d(async(n,e)=>{let t=typeof e=="function"?await e(n):e;if(t)return n.scheme==="bearer"?`Bearer ${t}`:n.scheme==="basic"?`Basic ${btoa(t)}`:t},"getAuthToken"),Xn=d(({allowReserved:n,array:e,object:t}={})=>d(r=>{let i=[];if(r&&typeof r=="object")for(let o in r){let u=r[o];if(u!=null)if(Array.isArray(u)){let a=Qn({allowReserved:n,explode:!0,name:o,style:"form",value:u,...e});a&&i.push(a)}else if(typeof u=="object"){let a=zn({allowReserved:n,explode:!0,name:o,style:"deepObject",value:u,...t});a&&i.push(a)}else{let a=Ue({allowReserved:n,name:o,value:u});a&&i.push(a)}}return i.join("&")},"querySerializer"),"createQuerySerializer"),ui=d(n=>{var e;if(!n)return"stream";let t=(e=n.split(";")[0])==null?void 0:e.trim();if(t){if(t.startsWith("application/json")||t.endsWith("+json"))return"json";if(t==="multipart/form-data")return"formData";if(["application/","audio/","image/","video/"].some(r=>t.startsWith(r)))return"blob";if(t.startsWith("text/"))return"text"}},"getParseAs"),li=d((n,e)=>{var t,r;return e?!!(n.headers.has(e)||(t=n.query)!=null&&t[e]||(r=n.headers.get("Cookie"))!=null&&r.includes(`${e}=`)):!1},"checkForExistence"),ci=d(async({security:n,...e})=>{for(let t of n){if(li(e,t.name))continue;let r=await ai(t,e.auth);if(!r)continue;let i=t.name??"Authorization";switch(t.in){case"query":e.query||(e.query={}),e.query[i]=r;break;case"cookie":e.headers.append("Cookie",`${i}=${r}`);break;case"header":default:e.headers.set(i,r);break}}},"setAuthParams"),Fn=d(n=>oi({baseUrl:n.baseUrl,path:n.path,query:n.query,querySerializer:typeof n.querySerializer=="function"?n.querySerializer:Xn(n.querySerializer),url:n.url}),"buildUrl"),Hn=d((n,e)=>{var t;let r={...n,...e};return(t=r.baseUrl)!=null&&t.endsWith("/")&&(r.baseUrl=r.baseUrl.substring(0,r.baseUrl.length-1)),r.headers=Kn(n.headers,e.headers),r},"mergeConfigs"),pi=d(n=>{let e=[];return n.forEach((t,r)=>{e.push([r,t])}),e},"headersEntries"),Kn=d((...n)=>{let e=new Headers;for(let t of n){if(!t)continue;let r=t instanceof Headers?pi(t):Object.entries(t);for(let[i,o]of r)if(o===null)e.delete(i);else if(Array.isArray(o))for(let u of o)e.append(i,u);else o!==void 0&&e.set(i,typeof o=="object"?JSON.stringify(o):o)}return e},"mergeHeaders"),Yn=class{static{s(this,"$")}constructor(){this.fns=[]}clear(){this.fns=[]}eject(e){let t=this.getInterceptorIndex(e);this.fns[t]&&(this.fns[t]=null)}exists(e){let t=this.getInterceptorIndex(e);return!!this.fns[t]}getInterceptorIndex(e){return typeof e=="number"?this.fns[e]?e:-1:this.fns.indexOf(e)}update(e,t){let r=this.getInterceptorIndex(e);return this.fns[r]?(this.fns[r]=t,e):!1}use(e){return this.fns.push(e),this.fns.length-1}};d(Yn,"Interceptors");var xt=Yn,di=d(()=>({error:new xt,request:new xt,response:new xt}),"createInterceptors"),fi=Xn({allowReserved:!1,array:{explode:!0,style:"form"},object:{explode:!0,style:"deepObject"}}),hi={"Content-Type":"application/json"},Ve=d((n={})=>({...Jr,headers:hi,parseAs:"auto",querySerializer:fi,...n}),"createConfig"),kt=d((n={})=>{let e=Hn(Ve(),n),t=d(()=>({...e}),"getConfig"),r=d(c=>(e=Hn(e,c),t()),"setConfig"),i=di(),o=d(async c=>{let p={...e,...c,fetch:c.fetch??e.fetch??globalThis.fetch,headers:Kn(e.headers,c.headers),serializedBody:void 0};p.security&&await ci({...p,security:p.security}),p.requestValidator&&await p.requestValidator(p),p.body!==void 0&&p.bodySerializer&&(p.serializedBody=p.bodySerializer(p.body)),(p.body===void 0||p.serializedBody==="")&&p.headers.delete("Content-Type");let f=Fn(p);return{opts:p,url:f}},"beforeRequest"),u=d(async c=>{let{opts:p,url:f}=await o(c),m={redirect:"follow",...p,body:Wn(p)},h=new Request(f,m);for(let v of i.request.fns)v&&(h=await v(h,p));let D=p.fetch,y=await D(h);for(let v of i.response.fns)v&&(y=await v(y,h,p));let x={request:h,response:y};if(y.ok){let v=(p.parseAs==="auto"?ui(y.headers.get("Content-Type")):p.parseAs)??"json";if(y.status===204||y.headers.get("Content-Length")==="0"){let P;switch(v){case"arrayBuffer":case"blob":case"text":P=await y[v]();break;case"formData":P=new FormData;break;case"stream":P=y.body;break;case"json":default:P={};break}return p.responseStyle==="data"?P:{data:P,...x}}let T;switch(v){case"arrayBuffer":case"blob":case"formData":case"json":case"text":T=await y[v]();break;case"stream":return p.responseStyle==="data"?y.body:{data:y.body,...x}}return v==="json"&&(p.responseValidator&&await p.responseValidator(T),p.responseTransformer&&(T=await p.responseTransformer(T))),p.responseStyle==="data"?T:{data:T,...x}}let O=await y.text(),A;try{A=JSON.parse(O)}catch{}let F=A??O,w=F;for(let v of i.error.fns)v&&(w=await v(F,y,h,p));if(w=w||{},p.throwOnError)throw w;return p.responseStyle==="data"?void 0:{error:w,...x}},"request"),a=d(c=>p=>u({...p,method:c}),"makeMethodFn"),l=d(c=>async p=>{let{opts:f,url:m}=await o(p);return ei({...f,body:f.body,headers:f.headers,method:c,onRequest:d(async(h,D)=>{let y=new Request(h,D);for(let x of i.request.fns)x&&(y=await x(y,f));return y},"onRequest"),url:m})},"makeSseFn");return{buildUrl:Fn,connect:a("CONNECT"),delete:a("DELETE"),get:a("GET"),getConfig:t,head:a("HEAD"),interceptors:i,options:a("OPTIONS"),patch:a("PATCH"),post:a("POST"),put:a("PUT"),request:u,setConfig:r,sse:{connect:l("CONNECT"),delete:l("DELETE"),get:l("GET"),head:l("HEAD"),options:l("OPTIONS"),patch:l("PATCH"),post:l("POST"),put:l("PUT"),trace:l("TRACE")},trace:a("TRACE")}},"createClient"),I=kt(Ve({baseUrl:"https://swish.app/api/2026-01"})),yi=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/lists",...n}),"listControllerFind"),mi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/lists",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerCreate"),vi=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}",...n}),"listControllerDeleteById"),gi=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}",...n}),"listControllerFindById"),Ii=d(n=>(n.client??I).patch({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerUpdateById"),wi=d(n=>(n.client??I).put({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}/items/order",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerSetListItemsOrder"),bi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}/items",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerAddItemsToList"),Ei=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}/items/{itemId}",...n}),"listControllerRemoveItemFromList"),Si=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/items",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerDelete"),Ci=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/items",...n}),"itemControllerFind"),xi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/items",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerCreate"),ki=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/items/count",...n}),"itemControllerCount"),Ai=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}",...n}),"itemControllerDeleteById"),Ri=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}",...n}),"itemControllerFindById"),Di=d(n=>(n.client??I).patch({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerUpdateById"),Ti=d(n=>(n.client??I).put({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}/lists",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerSetListsById"),Pi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/profiles/identify",...n,headers:{"Content-Type":"application/json",...n.headers}}),"profileControllerIdentify"),_i=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/profiles/token",...n,headers:{"Content-Type":"application/json",...n.headers}}),"profileControllerCreateToken"),Oi=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/profiles",...n}),"profileControllerGetProfile"),Li=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/analytics/saved-items",...n}),"analyticsControllerLoadSavedItems"),$i=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/analytics/sessions",...n}),"analyticsControllerLoadSessions"),qi=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/analytics/new-lists",...n}),"analyticsControllerLoadNewLists"),Bi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/tracking",...n,headers:{"Content-Type":"application/json",...n.headers}}),"trackingControllerTrack"),Vi=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/orders",...n}),"ordersControllerFind"),Ui=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/orders/{orderId}",...n}),"ordersControllerFindOne"),Ni=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists/{listId}/save",...n}),"sharedListsControllerSave"),Gi=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists/{listId}",...n}),"sharedListsControllerDeleteById"),Mi=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists/{listId}",...n}),"sharedListsControllerFindById"),ji=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists",...n}),"sharedListsControllerFindAll"),At="2026-01",Jn=d(n=>new Fi(n),"createApiClient"),Zn=class{static{s(this,"H")}constructor(e){this.version=At,this.items={list:d(a=>this.handlePaginatedRequest(Ci({query:a,client:this.directClient})),"list"),create:d(a=>this.handleRequest(xi({body:a,client:this.directClient})),"create"),delete:d(a=>this.handleRequest(Si({body:{itemIds:a},client:this.directClient})),"delete"),findById:d(a=>this.handleRequest(Ri({path:{itemId:a},client:this.directClient})),"findById"),updateById:d((a,l)=>this.handleRequest(Di({body:l,path:{itemId:a},client:this.directClient})),"updateById"),deleteById:d(a=>this.handleRequest(Ai({path:{itemId:a},client:this.directClient})),"deleteById"),setListsById:d((a,l)=>this.handleRequest(Ti({body:{listIds:l},path:{itemId:a},client:this.directClient})),"setListsById"),count:d(()=>this.handleRequest(ki({client:this.directClient})),"count")},this.lists={list:d(a=>this.handlePaginatedRequest(yi({query:a,client:this.directClient})),"list"),create:d(a=>this.handleRequest(mi({body:a,client:this.directClient})),"create"),findById:d(a=>this.handleRequest(gi({path:{listId:a},client:this.directClient})),"findById"),updateById:d((a,l)=>this.handleRequest(Ii({body:l,path:{listId:a},client:this.directClient})),"updateById"),deleteById:d(a=>this.handleRequest(vi({path:{listId:a},client:this.directClient})),"deleteById"),orderItems:d((a,l)=>this.handleRequest(wi({body:{itemIds:l},path:{listId:a},client:this.directClient})),"orderItems"),addItemsToList:d((a,l)=>this.handleRequest(bi({body:{itemIds:l},path:{listId:a},client:this.directClient})),"addItemsToList"),removeItemFromList:d((a,l)=>this.handleRequest(Ei({path:{listId:a,itemId:l},client:this.directClient})),"removeItemFromList")},this.profiles={createToken:d((a={})=>this.handleRequest(_i({body:a,client:this.proxyClient??this.directClient})),"createToken"),identify:d(a=>this.handleRequest(Pi({body:a,client:this.directClient})),"identify"),getProfile:d(()=>this.handleRequest(Oi({client:this.directClient})),"getProfile")},this.orders={list:d(a=>this.handlePaginatedRequest(Vi({query:a,client:this.directClient})),"list"),findById:d(a=>this.handleRequest(Ui({path:{orderId:a},client:this.directClient})),"findById")},this.sharedLists={list:d(a=>this.handlePaginatedRequest(ji({query:a,client:this.directClient})),"list"),save:d(a=>this.handleRequest(Ni({path:{listId:a},client:this.directClient})),"save"),findById:d(a=>this.handleRequest(Mi({path:{listId:a},client:this.directClient})),"findById"),deleteById:d(a=>this.handleRequest(Gi({path:{listId:a},client:this.directClient})),"deleteById")},this.analytics={savedItems:d(a=>this.handleRequest(Li({query:a,client:this.directClient})),"savedItems"),sessions:d(a=>this.handleRequest($i({query:a,client:this.directClient})),"sessions"),newLists:d(a=>this.handleRequest(qi({query:a,client:this.directClient})),"newLists")},this.tracking={track:d((a,l)=>this.handleRequest(Bi({body:a,headers:l,client:this.directClient})),"track")},this.handleRequest=d(async a=>{let{data:l,error:c}=await a;return c!=null&&c.error?{error:c.error}:{data:l?.data}},"handleRequest"),this.handlePaginatedRequest=d(async a=>{var l;let{data:c,error:p}=await a;return p!=null&&p.error?{error:p.error}:{data:c?.data??[],pageInfo:c?.pageInfo??{next:null,previous:null,totalCount:((l=c?.data)==null?void 0:l.length)??0}}},"handlePaginatedRequest");var t,r,i,o,u;(t=e.config)!=null&&t.version&&(this.version=e.config.version),this.directClient=kt(Ve({baseUrl:`https://swish.app/api/${this.version}`,...e.config})),(r=e.config)!=null&&r.authProxy&&(this.proxyClient=kt(Ve({...e.config,baseUrl:e.config.authProxy}))),e.authToken&&(this.authToken=e.authToken),e.requestInterceptor&&((i=this.proxyClient)==null||i.interceptors.request.use(e.requestInterceptor),this.directClient.interceptors.request.use(e.requestInterceptor)),e.responseInterceptor&&((o=this.proxyClient)==null||o.interceptors.response.use(e.responseInterceptor),this.directClient.interceptors.response.use(e.responseInterceptor)),(u=this.proxyClient)==null||u.interceptors.request.use(this.proxyRequestInterceptor.bind(this)),this.directClient.interceptors.request.use(this.directRequestInterceptor.bind(this))}setAuthToken(e){this.authToken=e}proxyRequestInterceptor(e){return this.version&&e.headers.set("Swish-Api-Version",this.version),e}directRequestInterceptor(e){return this.authToken&&e.headers.set("Authorization",`Bearer ${this.authToken}`),e}};d(Zn,"SwishClient");var Fi=Zn;var rr=hr(nr(),1);var ir=s(n=>new rr.default(async e=>{let t=[...new Set(e)].sort((i,o)=>i.localeCompare(o)),r=await n.items.list({query:t.join(" "),limit:200});return"error"in r?(console.error("Failed to load items",r.error),e.map(()=>({data:[],pageInfo:{next:null,previous:null,totalCount:0}}))):e.map(i=>{let o=r.data.find(u=>i===`variant:${u.variantId}`||i===`product:${u.productId}`);return{data:o?[o]:[],pageInfo:{next:null,previous:null,totalCount:o?1:0}}})},{batchScheduleFn:s(e=>setTimeout(e,50),"batchScheduleFn"),cache:!1,maxBatchSize:200}),"createItemsBatchLoader");var Ne=class{constructor(e,t,r){this.tokenHasProfile=!1;this.api=e,this.context=t,this.eventBus=r}static{s(this,"SwishApiAuth")}hasProfile(){return this.tokenHasProfile}hasToken(){return!!this.getSwishToken()}async renewToken(){return this._renewPromise?this._renewPromise:(this._renewPromise=(async()=>{this._initPromise=void 0,this.deleteSwishToken(),await this.init(),this._renewPromise=void 0})(),this._renewPromise)}async init(){return this._initPromise?this._initPromise:(this._initPromise=(async()=>{this.migrateLegacySession();let e=this.context.customer.id;e?(this.hasSessionToken()&&await this.api.clearCache(),await this.initCustomer(e)):(this.hasCustomerToken()&&await this.resetSession(),await this.initSession()),this.eventBus.publish("token-update",null)})(),this._initPromise)}async initCustomer(e){let t=`gid://shopify/Customer/${e}`,r=this.getTokenBySub(t);if(r){this.initToken(r);return}let i=this.getSessionId();await this.acquireToken(i,t)}async initSession(){let e=this.getSessionId(),t=e?this.getTokenBySub(e):null;if(t){this.initToken(t);return}await this.acquireToken(e)}initToken(e){let t=this.getTokenData(e);if(!t)throw new Error("Invalid Swish token.");this.tokenHasProfile=t.has_profile!==!1,this.api.setAuthToken(e)}async acquireToken(e,t){let r=await this.api.profiles.createToken({customer:t,session:e});if("error"in r)throw console.error("Failed to create customer token",r.error),new Error("Failed to create customer token");if(!r.data?.token)throw console.error("Failed to create customer token empty response"),new Error("Failed to create customer token");r.data.profile.startsWith("gid://swish/Session/")&&this.setSessionId(r.data.profile),this.setSwishToken(r.data.token),this.initToken(r.data.token)}async resetSession(){this.deleteSessionId(),this.deleteSwishToken(),await this.api.clearCache()}getTokenData(e){try{return JSON.parse(atob(e.split(".")[1]))}catch(t){return console.error("Failed to parse Swish token",{cause:t}),null}}willTokenExpire(e,t=60){let r=this.getTokenData(e);return!!(r&&r.exp&&r.exp<Date.now()/1e3+t)}hasCustomerToken(){let e=this.getSwishToken();return e?this.getTokenData(e)?.sub?.startsWith("gid://shopify/Customer/")??!1:!1}hasSessionToken(){let e=this.getSwishToken();return e?this.getTokenData(e)?.sub?.startsWith("gid://swish/Session/")??!1:!1}getTokenBySub(e){if(!e)return null;let t=this.getSwishToken();if(!t)return null;let r=this.getTokenData(t);return!r||r.sub!==e||this.willTokenExpire(t,60)?null:t}getSessionId(){let e=this.context.myshopifyDomain.split(".")[0];return localStorage.getItem(`swish-session-${e}`)??void 0}setSessionId(e){let t=this.context.myshopifyDomain.split(".")[0];localStorage.setItem(`swish-session-${t}`,e)}deleteSessionId(){let e=this.context.myshopifyDomain.split(".")[0];localStorage.removeItem(`swish-session-${e}`)}getSwishToken(){return sessionStorage.getItem("swish-token")??void 0}setSwishToken(e){sessionStorage.setItem("swish-token",e)}deleteSwishToken(){sessionStorage.removeItem("swish-token")}migrateLegacySession(){try{let e=localStorage.getItem("wk_session_id")??localStorage.getItem("swish-profile")?.split("/").pop();e&&(this.setSessionId(`gid://swish/Session/${e}`),localStorage.removeItem("wk_session_id"),localStorage.removeItem("swish-profile"))}catch(e){console.warn("Failed to migrate legacy session id to Swish session",{cause:e})}}};var Ge=class{static{s(this,"SwishApi")}constructor(e,t,r,i){this.config=e,this.cache=new Q("swish-api","max-age=60, stale-while-revalidate=3600",i+(e.version??At)),this.cache.cleanupExpiredEntries().catch(o=>{console.warn("Swish API cache initialization cleanup error:",o)}),this.auth=new Ne(this,t,r),this.apiClient=Jn({authToken:this.auth.getSwishToken(),config:{...e,fetch:this.fetchFunction.bind(this)},requestInterceptor:this.requestInterceptor.bind(this),responseInterceptor:this.responseInterceptor.bind(this)}),this.itemsLoader=ir(this)}async fetchFunction(e,t){return(e instanceof Request?e.method:t?.method??"GET")==="GET"?this.cache.fetchWithCache(e,t):fetch(e,t)}async requestInterceptor(e){let t=new URL(e.url,window.location.origin);return!!this.config.authProxy&&t.pathname.startsWith(this.config.authProxy)||await this.auth.init(),this.config.requestInterceptor&&(e=await this.config.requestInterceptor(e)),e}async responseInterceptor(e,t){let r=t.method!=="GET",i=t.url.includes("/profiles/token");if(r&&!i){let o=this.auth.hasToken(),u=!this.auth.hasProfile(),a=e.ok;await this.cache.clear(),o&&u&&a&&await this.auth.renewToken()}return await this.config.responseInterceptor?.(e,t),e}setAuthToken(e){this.apiClient.setAuthToken(e)}initAuth(){return this.auth.init()}withFallback(e,t){return this.auth.hasProfile()?e():Promise.resolve(t)}get items(){return{...this.apiClient.items,count:s(async()=>this.withFallback(()=>this.apiClient.items.count(),{data:{count:0}}),"count"),list:s(async(e,t)=>this.withFallback(()=>{if(t?.batch&&e?.query){e.limit!==1&&console.warn("Batching will always limit to 1 item");let r=e.query.split(" ");r.length>1&&console.warn("Batching will only support one query parameter");let i=r[0];if(!i.match(/^product:\d+$/)&&!i.match(/^variant:\d+$/))console.warn("Batching will only support product:<id> or variant:<id>");else return this.itemsLoader?.load(i)}return this.apiClient.items.list(e)},{data:[],pageInfo:{next:null,previous:null,totalCount:0}}),"list"),findById:s(async e=>this.withFallback(()=>this.apiClient.items.findById(e),{data:null}),"findById")}}get lists(){return{...this.apiClient.lists,list:s(async e=>this.withFallback(()=>this.apiClient.lists.list(e),{data:[],pageInfo:{next:null,previous:null,totalCount:0}}),"list"),findById:s(async e=>this.withFallback(()=>this.apiClient.lists.findById(e),{data:null}),"findById")}}get orders(){return{...this.apiClient.orders,list:s(async e=>this.withFallback(()=>this.apiClient.orders.list(e),{data:[],pageInfo:{next:null,previous:null,totalCount:0}}),"list"),findById:s(async e=>this.withFallback(()=>(typeof e=="string"&&(e=parseInt(e.split("/").pop()??e)),this.apiClient.orders.findById(e)),{data:null}),"findById")}}get profiles(){return this.apiClient.profiles}async clearCache(){await this.cache.clear()}};var Me=class{constructor(e){this.eventMap={"POST /items\\/?$":"item-create","DELETE /items\\/?$":"item-delete","PATCH /items\\/([^/]+)\\/?$":"item-update","DELETE /items\\/([^/]+)\\/?$":"item-delete","PUT /items\\/([^/]+)\\/lists\\/?$":"item-lists-update","POST /lists\\/?$":"list-create","DELETE /lists\\/?$":"list-delete","PATCH /lists\\/([^/]+)\\/?$":"list-update","DELETE /lists\\/([^/]+)\\/?$":"list-delete"};this.eventBus=e,this.processFetchResponse=this.processFetchResponse.bind(this)}static{s(this,"SwishApiPublisher")}async processFetchResponse(e,t){try{let r=this.getEventName(t.method,e.status,t.url);if(!r)return;let i=await e.clone().text();if(e.headers.get("Content-Type")?.includes("application/json"))try{i=JSON.parse(i).data}catch(o){console.warn(o)}this.eventBus.publish(r,i)}catch(r){console.warn(r)}}getEventName(e,t,r){e=e.toUpperCase();let i=new URL(r).pathname;return e==="GET"||t<200||t>=300?void 0:Object.entries(this.eventMap).find(([u])=>{let[a,l]=u.split(" ");return a!==e?!1:new RegExp(l).test(i)})?.[1]}};var es=".swish-shop-bridge{position:absolute!important;top:0!important;left:0!important;padding:0!important;border:0!important;margin:0!important;pointer-events:none!important}.swish-shop-bridge input{appearance:none!important;border:none!important;width:1px!important;height:1px!important;padding:0!important;margin:0!important;background:rgba(0,0,0,0)!important}",ts=s(()=>{let n="/";return typeof window<"u"&&(n=window.location.pathname),`<form class=swish-shop-bridge data-login-with-shop-sign-in=true id=customer_login><input name=customer[email] id=customer_login_email> <input name=return_url type=hidden value=${n}></form>`},"getHtml"),ns=typeof HTMLElement<"u"?HTMLElement:class{},Pt=class extends ns{static{s(this,"ShopBridge")}get swish(){return typeof window<"u"?window.swish:void 0}constructor(){super(),this.emailInput=this.querySelector('form[data-login-with-shop-sign-in] input[type="email"],form[data-login-with-shop-sign-in] input[name="customer[email]"'),this.emailInput||(this.innerHTML=`
|
|
442
|
+
`);try{J=JSON.parse(M),$t=!0}catch{J=M}}$t&&(i&&await i(J),r&&(J=await r(J))),t?.({data:J,event:Lt,id:f,retry:h}),fe.length&&(yield J)}}}finally{y.removeEventListener("abort",T),w.releaseLock()}break}catch(O){if(e?.(O),u!==void 0&&x>=u)break;let R=Math.min(h*2**(x-1),a??3e4);await m(R)}}},"createStream")()}},"createSseClient"),ti=d(n=>{switch(n){case"label":return".";case"matrix":return";";case"simple":return",";default:return"&"}},"separatorArrayExplode"),ni=d(n=>{switch(n){case"form":return",";case"pipeDelimited":return"|";case"spaceDelimited":return"%20";default:return","}},"separatorArrayNoExplode"),ri=d(n=>{switch(n){case"label":return".";case"matrix":return";";case"simple":return",";default:return"&"}},"separatorObjectExplode"),Qn=d(({allowReserved:n,explode:e,name:t,style:r,value:i})=>{if(!e){let a=(n?i:i.map(l=>encodeURIComponent(l))).join(ni(r));switch(r){case"label":return`.${a}`;case"matrix":return`;${t}=${a}`;case"simple":return a;default:return`${t}=${a}`}}let o=ti(r),u=i.map(a=>r==="label"||r==="simple"?n?a:encodeURIComponent(a):Ue({allowReserved:n,name:t,value:a})).join(o);return r==="label"||r==="matrix"?o+u:u},"serializeArrayParam"),Ue=d(({allowReserved:n,name:e,value:t})=>{if(t==null)return"";if(typeof t=="object")throw new Error("Deeply-nested arrays/objects aren\u2019t supported. Provide your own `querySerializer()` to handle these.");return`${e}=${n?t:encodeURIComponent(t)}`},"serializePrimitiveParam"),zn=d(({allowReserved:n,explode:e,name:t,style:r,value:i,valueOnly:o})=>{if(i instanceof Date)return o?i.toISOString():`${t}=${i.toISOString()}`;if(r!=="deepObject"&&!e){let l=[];Object.entries(i).forEach(([p,f])=>{l=[...l,p,n?f:encodeURIComponent(f)]});let c=l.join(",");switch(r){case"form":return`${t}=${c}`;case"label":return`.${c}`;case"matrix":return`;${t}=${c}`;default:return c}}let u=ri(r),a=Object.entries(i).map(([l,c])=>Ue({allowReserved:n,name:r==="deepObject"?`${t}[${l}]`:l,value:c})).join(u);return r==="label"||r==="matrix"?u+a:a},"serializeObjectParam"),ii=/\{[^{}]+\}/g,si=d(({path:n,url:e})=>{let t=e,r=e.match(ii);if(r)for(let i of r){let o=!1,u=i.substring(1,i.length-1),a="simple";u.endsWith("*")&&(o=!0,u=u.substring(0,u.length-1)),u.startsWith(".")?(u=u.substring(1),a="label"):u.startsWith(";")&&(u=u.substring(1),a="matrix");let l=n[u];if(l==null)continue;if(Array.isArray(l)){t=t.replace(i,Qn({explode:o,name:u,style:a,value:l}));continue}if(typeof l=="object"){t=t.replace(i,zn({explode:o,name:u,style:a,value:l,valueOnly:!0}));continue}if(a==="matrix"){t=t.replace(i,`;${Ue({name:u,value:l})}`);continue}let c=encodeURIComponent(a==="label"?`.${l}`:l);t=t.replace(i,c)}return t},"defaultPathSerializer"),oi=d(({baseUrl:n,path:e,query:t,querySerializer:r,url:i})=>{let o=i.startsWith("/")?i:`/${i}`,u=(n??"")+o;e&&(u=si({path:e,url:u}));let a=t?r(t):"";return a.startsWith("?")&&(a=a.substring(1)),a&&(u+=`?${a}`),u},"getUrl");function Wn(n){let e=n.body!==void 0;if(e&&n.bodySerializer)return"serializedBody"in n?n.serializedBody!==void 0&&n.serializedBody!==""?n.serializedBody:null:n.body!==""?n.body:null;if(e)return n.body}s(Wn,"K");d(Wn,"getValidRequestBody");var ai=d(async(n,e)=>{let t=typeof e=="function"?await e(n):e;if(t)return n.scheme==="bearer"?`Bearer ${t}`:n.scheme==="basic"?`Basic ${btoa(t)}`:t},"getAuthToken"),Xn=d(({allowReserved:n,array:e,object:t}={})=>d(r=>{let i=[];if(r&&typeof r=="object")for(let o in r){let u=r[o];if(u!=null)if(Array.isArray(u)){let a=Qn({allowReserved:n,explode:!0,name:o,style:"form",value:u,...e});a&&i.push(a)}else if(typeof u=="object"){let a=zn({allowReserved:n,explode:!0,name:o,style:"deepObject",value:u,...t});a&&i.push(a)}else{let a=Ue({allowReserved:n,name:o,value:u});a&&i.push(a)}}return i.join("&")},"querySerializer"),"createQuerySerializer"),ui=d(n=>{var e;if(!n)return"stream";let t=(e=n.split(";")[0])==null?void 0:e.trim();if(t){if(t.startsWith("application/json")||t.endsWith("+json"))return"json";if(t==="multipart/form-data")return"formData";if(["application/","audio/","image/","video/"].some(r=>t.startsWith(r)))return"blob";if(t.startsWith("text/"))return"text"}},"getParseAs"),li=d((n,e)=>{var t,r;return e?!!(n.headers.has(e)||(t=n.query)!=null&&t[e]||(r=n.headers.get("Cookie"))!=null&&r.includes(`${e}=`)):!1},"checkForExistence"),ci=d(async({security:n,...e})=>{for(let t of n){if(li(e,t.name))continue;let r=await ai(t,e.auth);if(!r)continue;let i=t.name??"Authorization";switch(t.in){case"query":e.query||(e.query={}),e.query[i]=r;break;case"cookie":e.headers.append("Cookie",`${i}=${r}`);break;case"header":default:e.headers.set(i,r);break}}},"setAuthParams"),Fn=d(n=>oi({baseUrl:n.baseUrl,path:n.path,query:n.query,querySerializer:typeof n.querySerializer=="function"?n.querySerializer:Xn(n.querySerializer),url:n.url}),"buildUrl"),Hn=d((n,e)=>{var t;let r={...n,...e};return(t=r.baseUrl)!=null&&t.endsWith("/")&&(r.baseUrl=r.baseUrl.substring(0,r.baseUrl.length-1)),r.headers=Kn(n.headers,e.headers),r},"mergeConfigs"),pi=d(n=>{let e=[];return n.forEach((t,r)=>{e.push([r,t])}),e},"headersEntries"),Kn=d((...n)=>{let e=new Headers;for(let t of n){if(!t)continue;let r=t instanceof Headers?pi(t):Object.entries(t);for(let[i,o]of r)if(o===null)e.delete(i);else if(Array.isArray(o))for(let u of o)e.append(i,u);else o!==void 0&&e.set(i,typeof o=="object"?JSON.stringify(o):o)}return e},"mergeHeaders"),Yn=class{static{s(this,"$")}constructor(){this.fns=[]}clear(){this.fns=[]}eject(e){let t=this.getInterceptorIndex(e);this.fns[t]&&(this.fns[t]=null)}exists(e){let t=this.getInterceptorIndex(e);return!!this.fns[t]}getInterceptorIndex(e){return typeof e=="number"?this.fns[e]?e:-1:this.fns.indexOf(e)}update(e,t){let r=this.getInterceptorIndex(e);return this.fns[r]?(this.fns[r]=t,e):!1}use(e){return this.fns.push(e),this.fns.length-1}};d(Yn,"Interceptors");var xt=Yn,di=d(()=>({error:new xt,request:new xt,response:new xt}),"createInterceptors"),fi=Xn({allowReserved:!1,array:{explode:!0,style:"form"},object:{explode:!0,style:"deepObject"}}),hi={"Content-Type":"application/json"},Ve=d((n={})=>({...Jr,headers:hi,parseAs:"auto",querySerializer:fi,...n}),"createConfig"),kt=d((n={})=>{let e=Hn(Ve(),n),t=d(()=>({...e}),"getConfig"),r=d(c=>(e=Hn(e,c),t()),"setConfig"),i=di(),o=d(async c=>{let p={...e,...c,fetch:c.fetch??e.fetch??globalThis.fetch,headers:Kn(e.headers,c.headers),serializedBody:void 0};p.security&&await ci({...p,security:p.security}),p.requestValidator&&await p.requestValidator(p),p.body!==void 0&&p.bodySerializer&&(p.serializedBody=p.bodySerializer(p.body)),(p.body===void 0||p.serializedBody==="")&&p.headers.delete("Content-Type");let f=Fn(p);return{opts:p,url:f}},"beforeRequest"),u=d(async c=>{let{opts:p,url:f}=await o(c),m={redirect:"follow",...p,body:Wn(p)},h=new Request(f,m);for(let v of i.request.fns)v&&(h=await v(h,p));let x=p.fetch,y=await x(h);for(let v of i.response.fns)v&&(y=await v(y,h,p));let k={request:h,response:y};if(y.ok){let v=(p.parseAs==="auto"?ui(y.headers.get("Content-Type")):p.parseAs)??"json";if(y.status===204||y.headers.get("Content-Length")==="0"){let P;switch(v){case"arrayBuffer":case"blob":case"text":P=await y[v]();break;case"formData":P=new FormData;break;case"stream":P=y.body;break;case"json":default:P={};break}return p.responseStyle==="data"?P:{data:P,...k}}let T;switch(v){case"arrayBuffer":case"blob":case"formData":case"json":case"text":T=await y[v]();break;case"stream":return p.responseStyle==="data"?y.body:{data:y.body,...k}}return v==="json"&&(p.responseValidator&&await p.responseValidator(T),p.responseTransformer&&(T=await p.responseTransformer(T))),p.responseStyle==="data"?T:{data:T,...k}}let O=await y.text(),R;try{R=JSON.parse(O)}catch{}let F=R??O,w=F;for(let v of i.error.fns)v&&(w=await v(F,y,h,p));if(w=w||{},p.throwOnError)throw w;return p.responseStyle==="data"?void 0:{error:w,...k}},"request"),a=d(c=>p=>u({...p,method:c}),"makeMethodFn"),l=d(c=>async p=>{let{opts:f,url:m}=await o(p);return ei({...f,body:f.body,headers:f.headers,method:c,onRequest:d(async(h,x)=>{let y=new Request(h,x);for(let k of i.request.fns)k&&(y=await k(y,f));return y},"onRequest"),url:m})},"makeSseFn");return{buildUrl:Fn,connect:a("CONNECT"),delete:a("DELETE"),get:a("GET"),getConfig:t,head:a("HEAD"),interceptors:i,options:a("OPTIONS"),patch:a("PATCH"),post:a("POST"),put:a("PUT"),request:u,setConfig:r,sse:{connect:l("CONNECT"),delete:l("DELETE"),get:l("GET"),head:l("HEAD"),options:l("OPTIONS"),patch:l("PATCH"),post:l("POST"),put:l("PUT"),trace:l("TRACE")},trace:a("TRACE")}},"createClient"),I=kt(Ve({baseUrl:"https://swish.app/api/2026-01"})),yi=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/lists",...n}),"listControllerFind"),mi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/lists",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerCreate"),vi=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}",...n}),"listControllerDeleteById"),gi=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}",...n}),"listControllerFindById"),Ii=d(n=>(n.client??I).patch({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerUpdateById"),wi=d(n=>(n.client??I).put({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}/items/order",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerSetListItemsOrder"),bi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}/items",...n,headers:{"Content-Type":"application/json",...n.headers}}),"listControllerAddItemsToList"),Ei=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/lists/{listId}/items/{itemId}",...n}),"listControllerRemoveItemFromList"),Si=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/items",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerDelete"),Ci=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/items",...n}),"itemControllerFind"),xi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/items",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerCreate"),ki=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/items/count",...n}),"itemControllerCount"),Ai=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}",...n}),"itemControllerDeleteById"),Ri=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}",...n}),"itemControllerFindById"),Di=d(n=>(n.client??I).patch({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerUpdateById"),Ti=d(n=>(n.client??I).put({security:[{scheme:"bearer",type:"http"}],url:"/items/{itemId}/lists",...n,headers:{"Content-Type":"application/json",...n.headers}}),"itemControllerSetListsById"),Pi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/profiles/identify",...n,headers:{"Content-Type":"application/json",...n.headers}}),"profileControllerIdentify"),_i=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/profiles/token",...n,headers:{"Content-Type":"application/json",...n.headers}}),"profileControllerCreateToken"),Oi=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/profiles",...n}),"profileControllerGetProfile"),Li=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/analytics/saved-items",...n}),"analyticsControllerLoadSavedItems"),$i=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/analytics/sessions",...n}),"analyticsControllerLoadSessions"),qi=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/analytics/new-lists",...n}),"analyticsControllerLoadNewLists"),Bi=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/tracking",...n,headers:{"Content-Type":"application/json",...n.headers}}),"trackingControllerTrack"),Vi=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/orders",...n}),"ordersControllerFind"),Ui=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/orders/{orderId}",...n}),"ordersControllerFindOne"),Ni=d(n=>(n.client??I).post({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists/{listId}/save",...n}),"sharedListsControllerSave"),Gi=d(n=>(n.client??I).delete({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists/{listId}",...n}),"sharedListsControllerDeleteById"),Mi=d(n=>(n.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists/{listId}",...n}),"sharedListsControllerFindById"),ji=d(n=>(n?.client??I).get({security:[{scheme:"bearer",type:"http"}],url:"/shared-lists",...n}),"sharedListsControllerFindAll"),At="2026-01",Jn=d(n=>new Fi(n),"createApiClient"),Zn=class{static{s(this,"H")}constructor(e){this.version=At,this.items={list:d(a=>this.handlePaginatedRequest(Ci({query:a,client:this.directClient})),"list"),create:d(a=>this.handleRequest(xi({body:a,client:this.directClient})),"create"),delete:d(a=>this.handleRequest(Si({body:{itemIds:a},client:this.directClient})),"delete"),findById:d(a=>this.handleRequest(Ri({path:{itemId:a},client:this.directClient})),"findById"),updateById:d((a,l)=>this.handleRequest(Di({body:l,path:{itemId:a},client:this.directClient})),"updateById"),deleteById:d(a=>this.handleRequest(Ai({path:{itemId:a},client:this.directClient})),"deleteById"),setListsById:d((a,l)=>this.handleRequest(Ti({body:{listIds:l},path:{itemId:a},client:this.directClient})),"setListsById"),count:d(()=>this.handleRequest(ki({client:this.directClient})),"count")},this.lists={list:d(a=>this.handlePaginatedRequest(yi({query:a,client:this.directClient})),"list"),create:d(a=>this.handleRequest(mi({body:a,client:this.directClient})),"create"),findById:d(a=>this.handleRequest(gi({path:{listId:a},client:this.directClient})),"findById"),updateById:d((a,l)=>this.handleRequest(Ii({body:l,path:{listId:a},client:this.directClient})),"updateById"),deleteById:d(a=>this.handleRequest(vi({path:{listId:a},client:this.directClient})),"deleteById"),orderItems:d((a,l)=>this.handleRequest(wi({body:{itemIds:l},path:{listId:a},client:this.directClient})),"orderItems"),addItemsToList:d((a,l)=>this.handleRequest(bi({body:{itemIds:l},path:{listId:a},client:this.directClient})),"addItemsToList"),removeItemFromList:d((a,l)=>this.handleRequest(Ei({path:{listId:a,itemId:l},client:this.directClient})),"removeItemFromList")},this.profiles={createToken:d((a={})=>this.handleRequest(_i({body:a,client:this.proxyClient??this.directClient})),"createToken"),identify:d(a=>this.handleRequest(Pi({body:a,client:this.directClient})),"identify"),getProfile:d(()=>this.handleRequest(Oi({client:this.directClient})),"getProfile")},this.orders={list:d(a=>this.handlePaginatedRequest(Vi({query:a,client:this.directClient})),"list"),findById:d(a=>this.handleRequest(Ui({path:{orderId:a},client:this.directClient})),"findById")},this.sharedLists={list:d(a=>this.handlePaginatedRequest(ji({query:a,client:this.directClient})),"list"),save:d(a=>this.handleRequest(Ni({path:{listId:a},client:this.directClient})),"save"),findById:d(a=>this.handleRequest(Mi({path:{listId:a},client:this.directClient})),"findById"),deleteById:d(a=>this.handleRequest(Gi({path:{listId:a},client:this.directClient})),"deleteById")},this.analytics={savedItems:d(a=>this.handleRequest(Li({query:a,client:this.directClient})),"savedItems"),sessions:d(a=>this.handleRequest($i({query:a,client:this.directClient})),"sessions"),newLists:d(a=>this.handleRequest(qi({query:a,client:this.directClient})),"newLists")},this.tracking={track:d((a,l)=>this.handleRequest(Bi({body:a,headers:l,client:this.directClient})),"track")},this.handleRequest=d(async a=>{let{data:l,error:c}=await a;return c!=null&&c.error?{error:c.error}:{data:l?.data}},"handleRequest"),this.handlePaginatedRequest=d(async a=>{var l;let{data:c,error:p}=await a;return p!=null&&p.error?{error:p.error}:{data:c?.data??[],pageInfo:c?.pageInfo??{next:null,previous:null,totalCount:((l=c?.data)==null?void 0:l.length)??0}}},"handlePaginatedRequest");var t,r,i,o,u;(t=e.config)!=null&&t.version&&(this.version=e.config.version),this.directClient=kt(Ve({baseUrl:`https://swish.app/api/${this.version}`,...e.config})),(r=e.config)!=null&&r.authProxy&&(this.proxyClient=kt(Ve({...e.config,baseUrl:e.config.authProxy}))),e.authToken&&(this.authToken=e.authToken),e.requestInterceptor&&((i=this.proxyClient)==null||i.interceptors.request.use(e.requestInterceptor),this.directClient.interceptors.request.use(e.requestInterceptor)),e.responseInterceptor&&((o=this.proxyClient)==null||o.interceptors.response.use(e.responseInterceptor),this.directClient.interceptors.response.use(e.responseInterceptor)),(u=this.proxyClient)==null||u.interceptors.request.use(this.proxyRequestInterceptor.bind(this)),this.directClient.interceptors.request.use(this.directRequestInterceptor.bind(this))}setAuthToken(e){this.authToken=e}proxyRequestInterceptor(e){return this.version&&e.headers.set("Swish-Api-Version",this.version),e}directRequestInterceptor(e){return this.authToken&&e.headers.set("Authorization",`Bearer ${this.authToken}`),e}};d(Zn,"SwishClient");var Fi=Zn;var rr=hr(nr(),1);var ir=s(n=>new rr.default(async e=>{let t=[...new Set(e)].sort((i,o)=>i.localeCompare(o)),r=await n.items.list({query:t.join(" "),limit:200});return"error"in r?(console.error("Failed to load items",r.error),e.map(()=>({data:[],pageInfo:{next:null,previous:null,totalCount:0}}))):e.map(i=>{let o=r.data.find(u=>i===`variant:${u.variantId}`||i===`product:${u.productId}`);return{data:o?[o]:[],pageInfo:{next:null,previous:null,totalCount:o?1:0}}})},{batchScheduleFn:s(e=>setTimeout(e,50),"batchScheduleFn"),cache:!1,maxBatchSize:200}),"createItemsBatchLoader");var Ne=class{constructor(e,t,r){this.tokenHasProfile=!1;this.api=e,this.context=t,this.eventBus=r}static{s(this,"SwishApiAuth")}hasProfile(){return this.tokenHasProfile}hasToken(){return!!this.getSwishToken()}async renewToken(){return this._renewPromise?this._renewPromise:(this._renewPromise=(async()=>{this._initPromise=void 0,this.deleteSwishToken(),await this.init(),this._renewPromise=void 0})(),this._renewPromise)}async init(){return this._initPromise?this._initPromise:(this._initPromise=(async()=>{this.migrateLegacySession();let e=this.context.customer.id;e?(this.hasSessionToken()&&await this.api.clearCache(),await this.initCustomer(e)):(this.hasCustomerToken()&&await this.resetSession(),await this.initSession()),this.eventBus.publish("token-update",null)})(),this._initPromise)}async initCustomer(e){let t=`gid://shopify/Customer/${e}`,r=this.getTokenBySub(t);if(r){this.initToken(r);return}let i=this.getSessionId();await this.acquireToken(i,t)}async initSession(){let e=this.getSessionId(),t=e?this.getTokenBySub(e):null;if(t){this.initToken(t);return}await this.acquireToken(e)}initToken(e){let t=this.getTokenData(e);if(!t)throw new Error("Invalid Swish token.");this.tokenHasProfile=t.has_profile!==!1,this.api.setAuthToken(e)}async acquireToken(e,t){let r=await this.api.profiles.createToken({customer:t,session:e});if("error"in r)throw console.error("Failed to create customer token",r.error),new Error("Failed to create customer token");if(!r.data?.token)throw console.error("Failed to create customer token empty response"),new Error("Failed to create customer token");r.data.profile.startsWith("gid://swish/Session/")&&this.setSessionId(r.data.profile),this.setSwishToken(r.data.token),this.initToken(r.data.token)}async resetSession(){this.deleteSessionId(),this.deleteSwishToken(),await this.api.clearCache()}getTokenData(e){try{return JSON.parse(atob(e.split(".")[1]))}catch(t){return console.error("Failed to parse Swish token",{cause:t}),null}}willTokenExpire(e,t=60){let r=this.getTokenData(e);return!!(r&&r.exp&&r.exp<Date.now()/1e3+t)}hasCustomerToken(){let e=this.getSwishToken();return e?this.getTokenData(e)?.sub?.startsWith("gid://shopify/Customer/")??!1:!1}hasSessionToken(){let e=this.getSwishToken();return e?this.getTokenData(e)?.sub?.startsWith("gid://swish/Session/")??!1:!1}getTokenBySub(e){if(!e)return null;let t=this.getSwishToken();if(!t)return null;let r=this.getTokenData(t);return!r||r.sub!==e||this.willTokenExpire(t,60)?null:t}getSessionId(){let e=this.context.myshopifyDomain.split(".")[0];return localStorage.getItem(`swish-session-${e}`)??void 0}setSessionId(e){let t=this.context.myshopifyDomain.split(".")[0];localStorage.setItem(`swish-session-${t}`,e)}deleteSessionId(){let e=this.context.myshopifyDomain.split(".")[0];localStorage.removeItem(`swish-session-${e}`)}getSwishToken(){return sessionStorage.getItem("swish-token")??void 0}setSwishToken(e){sessionStorage.setItem("swish-token",e)}deleteSwishToken(){sessionStorage.removeItem("swish-token")}migrateLegacySession(){try{let e=localStorage.getItem("wk_session_id")??localStorage.getItem("swish-profile")?.split("/").pop();e&&(this.setSessionId(`gid://swish/Session/${e}`),localStorage.removeItem("wk_session_id"),localStorage.removeItem("swish-profile"))}catch(e){console.warn("Failed to migrate legacy session id to Swish session",{cause:e})}}};var Ge=class{static{s(this,"SwishApi")}constructor(e,t,r,i){this.config=e,this.cache=new Q("swish-api","max-age=60, stale-while-revalidate=3600",i+(e.version??At)),this.cache.cleanupExpiredEntries().catch(o=>{console.warn("Swish API cache initialization cleanup error:",o)}),this.auth=new Ne(this,t,r),this.apiClient=Jn({authToken:this.auth.getSwishToken(),config:{...e,fetch:this.fetchFunction.bind(this)},requestInterceptor:this.requestInterceptor.bind(this),responseInterceptor:this.responseInterceptor.bind(this)}),this.itemsLoader=ir(this)}async fetchFunction(e,t){let r=e instanceof Request?e.method:t?.method??"GET",o=(e instanceof Request?e.url:typeof e=="string"?e:e.toString()).includes("/orders");return r==="GET"&&!o?this.cache.fetchWithCache(e,t):fetch(e,t)}async requestInterceptor(e){let t=new URL(e.url,window.location.origin);return!!this.config.authProxy&&t.pathname.startsWith(this.config.authProxy)||await this.auth.init(),this.config.requestInterceptor&&(e=await this.config.requestInterceptor(e)),e}async responseInterceptor(e,t){let r=t.method!=="GET",i=t.url.includes("/profiles/token");if(r&&!i){let o=this.auth.hasToken(),u=!this.auth.hasProfile(),a=e.ok;await this.cache.clear(),o&&u&&a&&await this.auth.renewToken()}return await this.config.responseInterceptor?.(e,t),e}setAuthToken(e){this.apiClient.setAuthToken(e)}initAuth(){return this.auth.init()}withFallback(e,t){return this.auth.hasProfile()?e():Promise.resolve(t)}get items(){return{...this.apiClient.items,count:s(async()=>this.withFallback(()=>this.apiClient.items.count(),{data:{count:0}}),"count"),list:s(async(e,t)=>this.withFallback(()=>{if(t?.batch&&e?.query){e.limit!==1&&console.warn("Batching will always limit to 1 item");let r=e.query.split(" ");r.length>1&&console.warn("Batching will only support one query parameter");let i=r[0];if(!i.match(/^product:\d+$/)&&!i.match(/^variant:\d+$/))console.warn("Batching will only support product:<id> or variant:<id>");else return this.itemsLoader?.load(i)}return this.apiClient.items.list(e)},{data:[],pageInfo:{next:null,previous:null,totalCount:0}}),"list"),findById:s(async e=>this.withFallback(()=>this.apiClient.items.findById(e),{data:null}),"findById")}}get lists(){return{...this.apiClient.lists,list:s(async e=>this.withFallback(()=>this.apiClient.lists.list(e),{data:[],pageInfo:{next:null,previous:null,totalCount:0}}),"list"),findById:s(async e=>this.withFallback(()=>this.apiClient.lists.findById(e),{data:null}),"findById")}}get orders(){return{...this.apiClient.orders,list:s(async e=>this.withFallback(()=>this.apiClient.orders.list(e),{data:[],pageInfo:{next:null,previous:null,totalCount:0}}),"list"),findById:s(async e=>this.withFallback(()=>(typeof e=="string"&&(e=parseInt(e.split("/").pop()??e)),this.apiClient.orders.findById(e)),{data:null}),"findById")}}get profiles(){return this.apiClient.profiles}async clearCache(){await this.cache.clear()}};var Me=class{constructor(e){this.eventMap={"POST /items\\/?$":"item-create","DELETE /items\\/?$":"item-delete","PATCH /items\\/([^/]+)\\/?$":"item-update","DELETE /items\\/([^/]+)\\/?$":"item-delete","PUT /items\\/([^/]+)\\/lists\\/?$":"item-lists-update","POST /lists\\/?$":"list-create","DELETE /lists\\/?$":"list-delete","PATCH /lists\\/([^/]+)\\/?$":"list-update","DELETE /lists\\/([^/]+)\\/?$":"list-delete"};this.eventBus=e,this.processFetchResponse=this.processFetchResponse.bind(this)}static{s(this,"SwishApiPublisher")}async processFetchResponse(e,t){try{let r=this.getEventName(t.method,e.status,t.url);if(!r)return;let i=await e.clone().text();if(e.headers.get("Content-Type")?.includes("application/json"))try{i=JSON.parse(i).data}catch(o){console.warn(o)}this.eventBus.publish(r,i)}catch(r){console.warn(r)}}getEventName(e,t,r){e=e.toUpperCase();let i=new URL(r).pathname;return e==="GET"||t<200||t>=300?void 0:Object.entries(this.eventMap).find(([u])=>{let[a,l]=u.split(" ");return a!==e?!1:new RegExp(l).test(i)})?.[1]}};var es=".swish-shop-bridge{position:absolute!important;top:0!important;left:0!important;padding:0!important;border:0!important;margin:0!important;pointer-events:none!important}.swish-shop-bridge input{appearance:none!important;border:none!important;width:1px!important;height:1px!important;padding:0!important;margin:0!important;background:rgba(0,0,0,0)!important}",ts=s(()=>{let n="/";return typeof window<"u"&&(n=window.location.pathname),`<form class=swish-shop-bridge data-login-with-shop-sign-in=true id=customer_login><input name=customer[email] id=customer_login_email> <input name=return_url type=hidden value=${n}></form>`},"getHtml"),ns=typeof HTMLElement<"u"?HTMLElement:class{},Pt=class extends ns{static{s(this,"ShopBridge")}get swish(){return typeof window<"u"?window.swish:void 0}constructor(){super(),this.emailInput=this.querySelector('form[data-login-with-shop-sign-in] input[type="email"],form[data-login-with-shop-sign-in] input[name="customer[email]"'),this.emailInput||(this.innerHTML=`
|
|
443
443
|
<style>${es}</style>
|
|
444
444
|
${ts()}
|
|
445
445
|
`,this.emailInput=this.querySelector("#customer_login_email")),this.shopModalObserver=new MutationObserver(e=>{e.forEach(t=>{t.attributeName==="style"&&document.documentElement.style.overflow==="hidden"&&this.dispatchEvent(new CustomEvent("shop-modal-open"))})}),this.shopModalObserver.observe(document.documentElement,{attributes:!0,attributeFilter:["style"]})}disconnectedCallback(){this.shopModalObserver?.disconnect()}async load(){try{(window.Shopify?.featureAssets?.["shop-js"]?.["init-customer-accounts"]?.[0]??"").includes("init-customer-accounts")&&window.Shopify?.SignInWithShop?.initCustomerAccounts?.(!0,{fedCMEnabled:!0,windoidEnabled:!1})}catch(e){console.warn("Failed to initialize Shop JS",e)}}update(e){if(e.email&&(this.emailInput.value=e.email,this.emailInput.dispatchEvent(new Event("input"))),e.returnTo){let t=this.querySelector("input[name='return_url']");t&&(t.value=e.returnTo)}}};typeof customElements<"u"&&customElements.define("swish-shop-bridge",Pt);var je=class{constructor(e,t){this.inflightModals=new Map;this.eventListeners=new Map;this.scrollLockRefCount=0;this.scrollPositionBeforeLock=0;this._lockScroll=s(()=>this.lockScroll(),"_lockScroll");this._unlockScroll=s(()=>this.unlockScroll(),"_unlockScroll");this.swishUiOptions=e,this.storefrontContext=t}static{s(this,"SwishUi")}async hideModal(e){if(this.inflightModals.has(e))return this.inflightModals.get(e);let t=(async()=>{typeof e=="string"&&(e=await this.requireUiComponent(e)),!(!e||e.getAttribute("open")!=="true")&&e.setAttribute("open","false")})().finally(()=>{this.inflightModals.delete(e)});return this.unlockScroll(),this.inflightModals.set(e,t),t}async showModal(e){if(this.inflightModals.has(e))return this.inflightModals.get(e);let t=(async()=>{typeof e=="string"&&(e=await this.requireUiComponent(e)),!(!e||e.getAttribute("open")==="true")&&e.setAttribute("open","true")})().finally(()=>{this.inflightModals.delete(e)});return this.lockScroll(),this.inflightModals.set(e,t),t}async showSignIn(e){let t=await this.requireUiComponent("sign-in",{listeners:{close:s(()=>e?.onClose?.(),"close")}});t.setAttribute("return-to",e?.returnTo??window.location.pathname),await this.showModal(t)}async showUnsaveAlert(e){if(!e.itemId)throw new Error("An itemId is required to show the unsave alert");await this.hideAllToasts();let t=await this.requireUiComponent("unsave-alert",{listeners:{submit:s(r=>{r instanceof CustomEvent?e.onSubmit?.(r.detail):console.warn("Unsave alert submitted without detail",r)},"submit"),close:s(()=>{e.onClose?.()},"close")}});t.setAttribute("item-id",e.itemId),await this.showModal(t)}async showDeleteListAlert(e){if(!e.listId)throw new Error("A listId is required to show the delete list alert");await this.hideAllToasts();let t=await this.requireUiComponent("delete-list-alert",{listeners:{submit:s(()=>{e.onSubmit?.()},"submit"),close:s(()=>{e.onClose?.()},"close")}});t.setAttribute("list-id",e.listId),await this.showModal(t)}async showDrawer(e){await this.hideAllToasts();let t=await this.requireUiComponent("drawer",{listeners:{close:s(()=>{e?.onClose?.()},"close")}});t.setAttribute("account-url",this.storefrontContext.routes.accountUrl),this.storefrontContext.customer.id&&t.setAttribute("customer-id",this.storefrontContext.customer.id),await this.showModal(t)}async showListMenu(e){if(!e.listId)throw new Error("listId is required");await this.hideAllToasts();let t=await this.requireUiComponent("list-menu",{listeners:{close:s(r=>{e.onClose?.()},"close"),edit:s(r=>{r instanceof CustomEvent?e.onEdit?.(r.detail):console.warn("List menu submitted without detail",r)},"edit"),delete:s(r=>{r instanceof CustomEvent?e.onDelete?.():console.warn("List menu deleted without detail",r)},"delete")}});t.setAttribute("list-id",e.listId),await this.showModal(t)}async showListSelect(e){if(!e.itemId)throw new Error("itemId is required");await this.hideAllToasts();let t=await this.requireUiComponent("list-select",{listeners:{submit:s(async r=>{"detail"in r&&r.detail?e?.onSubmit?.(r.detail):console.warn("List select form submitted without detail",r)},"submit"),close:s(()=>{e.onClose?.()},"close"),unsave:s(r=>{r instanceof CustomEvent?e.onUnsave?.(r.detail):console.warn("List select unsave without detail",r)},"unsave")}});t.setAttribute("item-id",e.itemId),await this.showModal(t)}async initListDetailPage(e,t){let r=await this.requireUiComponent("list-detail-page",{refElement:t});e.listId&&r.setAttribute("list-id",e.listId)}async showToast(e){await this.requireUiComponent("toast-manager",{onHydrated:s(t=>{t.current.show(e)},"onHydrated")})}async hideAllToasts(){this.queryComponent("toast-manager")&&await this.requireUiComponent("toast-manager",{onHydrated:s(e=>{e.current.clear()},"onHydrated")})}async showVariantSelect(e){await this.hideAllToasts();let t=await this.requireUiComponent("variant-select",{listeners:{submit:s(async r=>{"detail"in r&&r.detail?e?.onSubmit?.(r.detail):console.warn("Variant select form submitted without detail",r)},"submit"),close:s(()=>{e?.onClose?.()},"close")}});if(e?.productId)t.setAttribute("product-id",e.productId);else if(e?.productHandle)t.setAttribute("product-handle",e.productHandle);else throw new Error("Either productId or productHandle must be provided");e?.variantId&&t.setAttribute("variant-id",e.variantId),e?.displayType&&t.setAttribute("display-type",e.displayType),await this.showModal(t)}async showQuickBuy(e){await this.hideAllToasts();let t=await this.requireUiComponent("quick-buy",{listeners:{submit:s(async r=>{"detail"in r&&r.detail?e?.onSubmit?.(r.detail):console.warn("Quick buy form submitted without detail",r)},"submit"),close:s(()=>{e?.onClose?.()},"close")}});if(e?.productId)t.setAttribute("product-id",e.productId);else throw new Error("ProductId must be provided");e?.variantId&&t.setAttribute("variant-id",e.variantId),await this.showModal(t)}async showListEditor(e){let t=await this.requireUiComponent("list-editor",{listeners:{submit:s(async r=>{"detail"in r&&r.detail?e?.onSubmit?.(r.detail):console.warn("List editor form submitted without detail",r)},"submit"),close:s(()=>{e?.onClose?.()},"close")}});e?.listId&&t.setAttribute("list-id",e.listId),await this.showModal(t)}async initShopBridge({onShopModalOpen:e}){let t=document.querySelector("swish-shop-bridge");if(t||(document.body.insertAdjacentHTML("beforeend","<swish-shop-bridge></swish-shop-bridge>"),t=document.querySelector("swish-shop-bridge")),!t)throw new Error("Failed to initialize Shop Bridge");return t.addEventListener("shop-modal-open",()=>e(),{once:!0}),await t.load(),t}async requireUiComponent(e,t){this.loadCricalResources();let r=`${this.swishUiOptions.baseUrl}/ui@${this.swishUiOptions.version}/${e}.html`,i=await fetch(r).then(l=>l.text()),o=t?.instance,u=t?.listeners,a=this.queryComponent(e,o)??await this.insertComponent({name:e,template:i,refElement:t?.refElement??document.body,position:"beforeend",instance:o});if(a.shadowRoot&&!a.hasAttribute("hydrated")){let l=`${this.swishUiOptions.baseUrl}/ui@${this.swishUiOptions.version}/${e}.js`;Promise.all([this.loadNonCriticalResources(),import(l)]).then(([{bundleCssStylesheet:c,customCssStylesheets:p},{hydrate:f}])=>{a.shadowRoot&&c&&(a.shadowRoot.adoptedStyleSheets=[...a.shadowRoot.adoptedStyleSheets,...p,c],a.shadowRoot?.querySelector(":host > style")?.remove()),f(a),a.setAttribute("hydrated",""),t?.onHydrated?.(a.getComponentRef())})}else a.hasAttribute("hydrated")&&t?.onHydrated?.(a.getComponentRef());for(let{event:l,listener:c}of this.eventListeners.values())a.removeEventListener(l,c);for(let[l,c]of Object.entries(u??{}))this.eventListeners.set(`${e}-${o}-${l}`,{event:l,listener:c}),a.addEventListener(l,c);return a}async loadCricalResources(){return this._loadCricalResourcesPromise?this._loadCricalResourcesPromise:(this._loadCricalResourcesPromise=(async()=>{let e=`${this.swishUiOptions.baseUrl}/ui@${this.swishUiOptions.version}/theme.css`,t=await fetch(e).then(i=>i.text()),r=new CSSStyleSheet;return r.replaceSync(t),this.swishUiOptions.theme&&Object.entries(this.swishUiOptions.theme).forEach(([i,o])=>{r.cssRules[0].cssRules[0].style.setProperty(i,o)}),{themeVariablesStylesheet:r}})(),this._loadCricalResourcesPromise)}async loadNonCriticalResources(){return this._loadNonCriticalResourcesPromise?this._loadNonCriticalResourcesPromise:(this._loadNonCriticalResourcesPromise=(async()=>{let e=`${this.swishUiOptions.baseUrl}/ui@${this.swishUiOptions.version}/bundle.css`,t=s(o=>{let u=new CSSStyleSheet;return u.replaceSync(o),u},"createCssStylesheet"),[r,...i]=await Promise.all([fetch(e).then(o=>o.text()).then(t),...this.swishUiOptions.css.map(async o=>o instanceof URL?t(await fetch(o).then(u=>u.text())):t(o))]);return{bundleCssStylesheet:r,customCssStylesheets:i}})(),this._loadNonCriticalResourcesPromise)}async insertComponent({name:e,instance:t,template:r,position:i,refElement:o}){let{themeVariablesStylesheet:u}=await this.loadCricalResources();o.insertAdjacentHTML(i,r.replace(' shadowrootmode="open"',""));let a=this.queryComponent(e,t);if(!a)throw new Error(`Element ${e} not found in DOM`);return a.shadowRoot&&(a.shadowRoot.adoptedStyleSheets=[u]),a}queryComponent(e,t){let r=`swish-ui[ref="${e}${t?`-${t}`:""}"]`;return document.querySelector(r)}lockScroll(){this.scrollLockRefCount++,this.scrollLockRefCount===1&&(this.scrollPositionBeforeLock=window.scrollY,this.scrollLockStyleSheet||(this.scrollLockStyleSheet=new CSSStyleSheet,document.adoptedStyleSheets=[...document.adoptedStyleSheets,this.scrollLockStyleSheet]),this.scrollLockStyleSheet.replaceSync(`
|
|
@@ -450,4 +450,4 @@ Values:
|
|
|
450
450
|
left: 0px;
|
|
451
451
|
right: 0px;
|
|
452
452
|
}
|
|
453
|
-
`),document.documentElement.setAttribute("swish-locked",""))}unlockScroll(){this.scrollLockRefCount>0&&this.scrollLockRefCount--,this.scrollLockRefCount===0&&(this.scrollLockStyleSheet&&this.scrollLockStyleSheet.replaceSync(""),window.scrollTo({top:this.scrollPositionBeforeLock,behavior:"instant"}),this.scrollPositionBeforeLock=0,document.documentElement.removeAttribute("swish-locked"))}};var rs=typeof HTMLElement<"u"?HTMLElement:class{},Fe=class extends rs{constructor(){super();this.getComponentRef=s(()=>this.componentRef,"getComponentRef");this.setComponentRef=s(t=>{this.componentRef=t},"setComponentRef");this.shadowRoot||this.attachShadow({mode:"open"});let t=this.querySelector("template");t&&this.shadowRoot&&(this.shadowRoot.appendChild(t.content),t.remove())}static{s(this,"SwishUiElement")}};var He=class{static{s(this,"ShopifyBadgesUtils")}#e;constructor({getBadges:e}){this.#e=e?.bind(this)}getBadges({product:e,variant:t}){try{let r=this.getDefaultBadges({product:e,variant:t});return this.#e?this.mapBadges(this.#e({product:e,variant:t,defaultBadges:r})??[]):this.mapBadges(r)}catch(r){return console.error("Error getting badges",r),[]}}getDefaultBadges({product:e,variant:t}){let r=[];if(e?.availableForSale===!1||t?.availableForSale===!1)return r.push("Sold out"),r;let i=t?t.price.amount:e?.priceRange?.minVariantPrice.amount,o=t?t.compareAtPrice?.amount:e?.compareAtPriceRange?.minVariantPrice.amount;return o&&parseFloat(o)>parseFloat(i)&&r.push("Sale"),r}mapBadges(e){return e.map(t=>typeof t=="string"?{id:t.toLowerCase().replace(/[^a-z0-9]/g,"_"),label:t}:t)}};var is="0.
|
|
453
|
+
`),document.documentElement.setAttribute("swish-locked",""))}unlockScroll(){this.scrollLockRefCount>0&&this.scrollLockRefCount--,this.scrollLockRefCount===0&&(this.scrollLockStyleSheet&&this.scrollLockStyleSheet.replaceSync(""),window.scrollTo({top:this.scrollPositionBeforeLock,behavior:"instant"}),this.scrollPositionBeforeLock=0,document.documentElement.removeAttribute("swish-locked"))}};var rs=typeof HTMLElement<"u"?HTMLElement:class{},Fe=class extends rs{constructor(){super();this.getComponentRef=s(()=>this.componentRef,"getComponentRef");this.setComponentRef=s(t=>{this.componentRef=t},"setComponentRef");this.shadowRoot||this.attachShadow({mode:"open"});let t=this.querySelector("template");t&&this.shadowRoot&&(this.shadowRoot.appendChild(t.content),t.remove())}static{s(this,"SwishUiElement")}};var He=class{static{s(this,"ShopifyBadgesUtils")}#e;constructor({getBadges:e}){this.#e=e?.bind(this)}getBadges({product:e,variant:t}){try{let r=this.getDefaultBadges({product:e,variant:t});return this.#e?this.mapBadges(this.#e({product:e,variant:t,defaultBadges:r})??[]):this.mapBadges(r)}catch(r){return console.error("Error getting badges",r),[]}}getDefaultBadges({product:e,variant:t}){let r=[];if(e?.availableForSale===!1||t?.availableForSale===!1)return r.push("Sold out"),r;let i=t?t.price.amount:e?.priceRange?.minVariantPrice.amount,o=t?t.compareAtPrice?.amount:e?.compareAtPriceRange?.minVariantPrice.amount;return o&&parseFloat(o)>parseFloat(i)&&r.push("Sale"),r}mapBadges(e){return e.map(t=>typeof t=="string"?{id:t.toLowerCase().replace(/[^a-z0-9]/g,"_"),label:t}:t)}};var is="0.81.0",Kl=s(async n=>{if(typeof window>"u")throw new Error("Swish is not supported in this environment");if(window.swish)return window.swish;let e=Mt(n),t=new _t(e);return window.swish=t,document.dispatchEvent(new Event("swish-ready")),t.api.initAuth().then(()=>{typeof window.Shopify?.analytics?.publish=="function"&&window.Shopify.analytics.publish("swish-ready",{market:e.storefrontContext.localization.market,country:e.storefrontContext.localization.country,language:e.storefrontContext.localization.language,rootUrl:e.storefrontContext.routes.rootUrl})}),t},"createSwish"),_t=class{constructor(e){this.dom={createElementLocator:ce,createQueryParamsObserver:se};this.state={itemContext:Kt(this),itemState:Yt(this),itemCount:Jt(this),swishQuery:Zt(this),effect:V,signal:C,computed:q};this.swishOptions=e,this.events=new me,this.swishBadges=new He({getBadges:this.swishOptions.badges?.getBadges}),this.swishApiPublisher=new Me(this.events);let t=[is,e.swishUi?.version].join("-");this.swishApi=new Ge({...this.swishOptions.swishApi,responseInterceptor:this.swishApiPublisher.processFetchResponse},this.swishOptions.storefrontContext,this.events,t),this.ajaxApiPublisher=new ye(this.events),this.ajaxApi=new he({storeDomain:this.swishOptions.storefrontApi.storeDomain,responseInterceptor:this.ajaxApiPublisher.processFetchResponse}),this.ajaxApi.patchFetch(),this.storefrontApi=new Be(this.swishOptions.storefrontApi,this.swishOptions.storefrontContext,this.swishBadges,this.swishOptions.metafields),this.swishUi=new je(this.swishOptions.swishUi,this.swishOptions.storefrontContext),this.events.subscribe(["cart-add","cart-update","cart-change","cart-clear"],()=>{this.ajaxApi.clearCache()}),customElements.get("swish-ui")||customElements.define("swish-ui",Fe),this.intents=new De(this,this.swishUi)}static{s(this,"SwishApp")}get options(){return this.swishOptions}get customer(){return this.swishOptions.storefrontContext.customer}get localization(){return this.swishOptions.storefrontContext.localization}get routes(){return this.swishOptions.storefrontContext.routes}get badges(){return this.swishBadges}get api(){return this.swishApi}get storefront(){return this.storefrontApi}get ajax(){return this.ajaxApi}get shopUrl(){return`https://${this.swishOptions.storefrontApi.storeDomain}`}get ui(){return this.swishUi}};export{is as VERSION,Kl as createSwish};
|