connectbase-client 5.12.0 → 5.12.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,39 @@
3
3
  본 SDK 의 모든 주요 변경사항을 [Keep a Changelog](https://keepachangelog.com/ko/1.1.0/) 형식으로 기록합니다.
4
4
  버전은 [Semantic Versioning](https://semver.org/lang/ko/) 을 따릅니다.
5
5
 
6
+ ## [5.12.1] - 2026-08-08
7
+
8
+ ### Fixed — OAuth 콜백 직후 `bootstrapRefreshCookie()` 가 방금 발급된 정상 토큰을 삭제하던 문제
9
+
10
+ `exchangeCodeFromCallback()` 등이 로그인 성공 직후 `setTokens()` 로 심어둔 토큰을,
11
+ 곧바로 이어지는 `bootstrapRefreshCookie()` 의 best-effort `/v1/auth/re-issue` 호출이
12
+ 401/403 을 받으면 `clearTokens()` 로 지워버렸습니다. 호출부는 `exchangeCodeFromCallback()`
13
+ 의 성공 반환값만 보고 로그인됐다고 믿지만, 그 시점엔 이미 토큰이 지워진 뒤라
14
+ `getMe()`/`functions.call()` 등 이후 인증 호출이 전부 미인증 취급됐습니다.
15
+
16
+ 이제 `bootstrapRefreshCookie()` 내부 refresh 호출은 실패해도 `clearTokens()`/
17
+ `onTokenExpired`/`onAuthError` 등 로그아웃성 부작용을 일으키지 않습니다 — 방금 로그인
18
+ 응답이 이미 유효성을 보증한 토큰이므로, best-effort cookie 부트스트랩 실패가 그 토큰을
19
+ 무효화할 근거가 되지 않습니다. 일반 401 재시도 경로(만료된 토큰의 정상 refresh)는 기존과
20
+ 동일하게 permanent 실패 시 로그아웃 처리됩니다.
21
+
22
+ 플랫폼 이슈 `019fe0e9` 제보.
23
+
24
+ ### Fixed — WS 차단 시 SSE 폴백 전환이 완전히 무음이던 문제
25
+
26
+ 네트워크가 WebSocket upgrade 를 막는 환경에서 `realtime.connect()` 는 (의도대로) reject
27
+ 하지 않고 SSE degraded 모드로 조용히 전환합니다. 문제는 이 전환 자체를 알 방법이
28
+ `cb.realtime.transport === 'sse'` 를 직접 폴링하는 것뿐이었다는 점입니다 — 표준
29
+ `cb.realtime.onError(...)` 패턴을 이미 연결해 둔 앱도 pubsub(subscribe/send/setPresence)
30
+ 이 통째로 죽은 걸 눈치채지 못했습니다.
31
+
32
+ 이제 SSE 폴백으로 전환되는 순간 `onError` 핸들러로 다운그레이드 사실과 원인을
33
+ 전달합니다(`connect()` 자체는 여전히 reject 하지 않습니다 — 기존 호출부 코드는 그대로
34
+ 동작). `subscribe()`/`send()`/`setPresence()` 등이 SSE 모드에서 명확한 에러를 던지는
35
+ 동작(`assertBidirectional`)은 기존 그대로 유지됩니다.
36
+
37
+ 플랫폼 이슈 `019fe128` 제보.
38
+
6
39
  ## [5.12.0] - 2026-08-05
7
40
 
8
41
  ### Performance — `cb.endpoint.call()` 도 저지연 직결로 (5.11.0 의 누락 보완)
@@ -1,6 +1,6 @@
1
- "use strict";var ConnectBaseModule=(()=>{var ye=Object.defineProperty;var Fe=Object.getOwnPropertyDescriptor;var Ne=Object.getOwnPropertyNames;var Ge=Object.prototype.hasOwnProperty;var Ke=(a,e)=>{for(var t in e)ye(a,t,{get:e[t],enumerable:!0})},Ve=(a,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Ne(e))!Ge.call(a,r)&&r!==t&&ye(a,r,{get:()=>e[r],enumerable:!(s=Fe(e,r))||s.enumerable});return a};var We=a=>Ve(ye({},"__esModule",{value:!0}),a);var gt={};Ke(gt,{AIAPI:()=>$,AIError:()=>I,AUTH_MEMBER_ID_TOKEN:()=>at,AdsAPI:()=>A,ApiError:()=>m,AppMembersAPI:()=>M,AuthError:()=>T,ConnectBase:()=>fe,EndpointAPI:()=>U,GameAPI:()=>O,GameConfigAPI:()=>L,GameError:()=>v,GameRoom:()=>G,GameRoomTransport:()=>me,NativeAPI:()=>D,RolesAPI:()=>q,SessionManager:()=>N,VideoProcessingError:()=>H,default:()=>ht,detectInAppBrowser:()=>V,escapeToExternalBrowser:()=>Z,isWebTransportSupported:()=>ke,toAIError:()=>C,toCreateRoomWire:()=>K});var A=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async getConnectionStatus(){let e=this.getPublicPrefix();return this.http.get(`${e}/ads/connection`)}async getReport(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;e&&r.set("start",e),t&&r.set("end",t);let i=r.toString();return this.http.get(`${s}/ads/reports${i?`?${i}`:""}`)}async getReportSummary(){let e=this.getPublicPrefix();return this.http.get(`${e}/ads/reports/summary`)}async getAdMobReport(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;e&&r.set("start",e),t&&r.set("end",t);let i=r.toString();return this.http.get(`${s}/ads/admob/reports${i?`?${i}`:""}`)}async getAdMobReportSummary(){let e=this.getPublicPrefix();return this.http.get(`${e}/ads/admob/reports/summary`)}};var m=class extends Error{constructor(t,s,r,i){super(s);this.statusCode=t;this.name="ApiError",this.code=r,this.details=i}toJSON(){return{name:this.name,message:this.message,code:this.code,statusCode:this.statusCode,details:this.details}}},I=class extends Error{constructor(e){super(e.message||e.code||"AI request failed"),this.name="AIError",this.code=e.code||"stream_failed",this.retryable=e.retryable??ze(this.code),this.status=e.status,this.provider=e.provider,this.model=e.model,this.retryAfter=e.retryAfter,this.detailCode=e.detailCode,this.sessionId=e.sessionId}toJSON(){return{name:this.name,code:this.code,message:this.message,retryable:this.retryable,status:this.status,provider:this.provider,model:this.model,retryAfter:this.retryAfter,detailCode:this.detailCode,sessionId:this.sessionId}}};function ze(a){return a==="provider_timeout"||a==="service_unavailable"||a==="rate_limit_exceeded"||a==="stream_failed"}function C(a,e){if(a instanceof I)return a;let t=typeof a=="object"&&a!==null?a:{},s=d=>typeof d=="string"&&d!==""?d:void 0,r=d=>typeof d=="number"&&Number.isFinite(d)?d:void 0,i=s(t.error)??s(t.code)??e?.code,n=s(t.detail_code)??s(t.detailCode)??s(t.code),o=i??"stream_failed",c=n&&n!==o?n:void 0,l=s(t.message)??(a instanceof Error?a.message:void 0)??e?.message??o;return new I({code:o,message:l,retryable:typeof t.retryable=="boolean"?t.retryable:void 0,status:r(t.status)??r(t.statusCode)??e?.status,provider:s(t.provider),model:s(t.model),retryAfter:r(t.retry_after_seconds)??r(t.retryAfter),detailCode:c,sessionId:s(t.session_id)??s(t.sessionId)??e?.sessionId})}var T=class extends Error{constructor(e){super(e),this.name="AuthError"}},v=class extends Error{constructor(e){super(e.message||e.code||"GameError"),this.name="GameError",this.code=e.code||"UNKNOWN",this.phase=e.phase,this.feature=e.feature,this.roomId=e.roomId,this.scriptId=e.scriptId,this.originClientId=e.originClientId,this.requested=e.requested,this.available=e.available}toJSON(){return{name:this.name,code:this.code,message:this.message,phase:this.phase,feature:this.feature,roomId:this.roomId,scriptId:this.scriptId,originClientId:this.originClientId,requested:this.requested,available:this.available}}};function je(a){let e={provider_timeout:504,gateway_timeout:504,bad_gateway:502,service_unavailable:503,rate_limit_exceeded:429,quota_exceeded:429,invalid_request:400,config_error:400,unauthorized:401},t={};return a.provider&&(t.provider=a.provider),a.model&&(t.model=a.model),a.retryAfter!==void 0&&(t.retry_after_seconds=a.retryAfter),new m(a.status??e[a.code]??500,a.message,a.detailCode||a.code,Object.keys(t).length>0?t:void 0)}var Je=9e4,Qe=3e5,Xe=1e4,$=class{constructor(e){this.http=e}async chat(e,t){let s=Math.min(t?.timeout??this.http.requestTimeoutMs??Je,Qe),r=new AbortController,i=!1,n=setTimeout(()=>{i=!0,r.abort()},s+Xe),o=t?.signal,c=()=>r.abort();o&&(o.aborted?r.abort():o.addEventListener("abort",c,{once:!0}));let l={content:"",provider:"",model:""},d,u=!1,p="";try{await this.runStream({...e,timeoutSeconds:Math.ceil(s/1e3)},{onToken:h=>{l.content+=h},onReasoning:h=>{p+=h},onSources:h=>{l.sources=h},onError:h=>{d=h},onAbort:()=>{u=!0}},{signal:r.signal},{onHttpError:async h=>{throw await this.http.buildApiError(h)},onResultMeta:h=>{h.finishReason&&(l.finishReason=h.finishReason),h.toolCalls?.length&&(l.toolCalls=h.toolCalls),h.usage&&(l.usage=h.usage),h.provider&&(l.provider=h.provider),h.model&&(l.model=h.model)}})}finally{clearTimeout(n),o?.removeEventListener("abort",c)}if(d)throw je(d);if(u)throw i?new m(504,`AI \uC751\uB2F5\uC774 ${Math.round(s/1e3)}\uCD08 \uC608\uC0B0 \uC548\uC5D0 \uB05D\uB098\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4`,"provider_timeout"):new DOMException("The operation was aborted.","AbortError");if(d)throw d;return p&&(l.reasoning=p),l}async chatStream(e,t,s){return this.runStream(e,t,s)}async runStream(e,t,s,r){let i=s?.signal,n=c=>i?.aborted===!0||c instanceof DOMException&&c.name==="AbortError"||typeof c=="object"&&c!==null&&c.name==="AbortError",o;try{let c=await this.http.fetchRaw("/v1/public/ai/chat/stream",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),signal:i});if(!c.ok){r?.onHttpError&&await r.onHttpError(c);let u=await c.json().catch(()=>({error:"stream_failed"}));t.onError?.(C(u,{message:"Stream request failed",status:c.status}));return}if(o=c.body?.getReader(),!o){t.onError?.(new I({code:"stream_failed",message:"ReadableStream not supported",retryable:!1}));return}let l=new TextDecoder,d="";for(;;){let{done:u,value:p}=await o.read();if(u)break;d+=l.decode(p,{stream:!0});let h=d.split(`
2
- `);d=h.pop()||"";for(let f of h){if(!f.startsWith("data: "))continue;let b=f.slice(6).trim();if(b==="[DONE]"){t.onDone?.();return}try{let g=JSON.parse(b);if(g.error){t.onError?.(C(g));return}if(g.type==="sources"&&g.sources){t.onSources?.(g.sources);continue}if(g.type==="tool_start"||g.type==="tool_end"){t.onToolEvent?.({type:g.type,name:g.name,toolCallId:g.toolCallId,arguments:g.arguments,result:g.result,success:g.success,durationMs:g.durationMs});continue}if(g.type==="searching"){g.searching&&t.onSearching?.(g.searching);continue}if(g.type==="heartbeat")continue;if((g.finishReason||g.toolCalls?.length||g.usage||g.provider||g.model)&&r?.onResultMeta?.(g),g.reasoning&&t.onReasoning?.(g.reasoning),g.content&&t.onToken?.(g.content),g.done){t.onDone?.();return}}catch{}}}}catch(c){if(n(c)){t.onAbort?.();return}throw c}finally{if(o)try{await o.cancel()}catch{}}}};var ve="__cb_session",we="__cb_visitor_uid",W="__cb_last_activity";function F(){return crypto?.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,a=>{let e=Math.random()*16|0;return(a==="x"?e:e&3|8).toString(16)})}var N=class{constructor(){this._sessionId=null;this._visitorUid=null;this._lastActivity=0;this._isNewSession=!1}get sessionId(){return this.ensureSession(),this._sessionId}get visitorUid(){return this._visitorUid||(this._visitorUid=this.loadOrCreateVisitorUid()),this._visitorUid}get isNewSession(){return this._isNewSession}touch(){this._lastActivity=Date.now(),this._isNewSession=!1;try{typeof sessionStorage<"u"&&sessionStorage.setItem(W,String(this._lastActivity))}catch{}}reset(){this._sessionId=null,this._isNewSession=!1;try{typeof sessionStorage<"u"&&(sessionStorage.removeItem(ve),sessionStorage.removeItem(W))}catch{}}regenerateVisitorUid(){let e=F();this._visitorUid=e;try{typeof localStorage<"u"&&localStorage.setItem(we,e)}catch{}return this.reset(),e}ensureSession(){let e=Date.now();if(!this._sessionId)try{if(typeof sessionStorage<"u"){this._sessionId=sessionStorage.getItem(ve);let t=sessionStorage.getItem(W);this._lastActivity=t?parseInt(t,10):0}}catch{}if(!this._sessionId||this._lastActivity>0&&e-this._lastActivity>18e5){this._sessionId=F(),this._isNewSession=!0,this._lastActivity=e;try{typeof sessionStorage<"u"&&(sessionStorage.setItem(ve,this._sessionId),sessionStorage.setItem(W,String(e)))}catch{}}}loadOrCreateVisitorUid(){try{if(typeof localStorage<"u"){let e=localStorage.getItem(we);if(e)return e;let t=F();return localStorage.setItem(we,t),t}}catch{}return F()}};function Te(a){if(!a)return"";let e=new URLSearchParams;a.start_date!==void 0&&e.set("start_date",String(a.start_date)),a.end_date!==void 0&&e.set("end_date",String(a.end_date)),a.limit!==void 0&&e.set("limit",String(a.limit));let t=e.toString();return t?`?${t}`:""}function Ye(){if(typeof window>"u")return{};try{let a=new URLSearchParams(window.location.search),e={};for(let t of["utm_source","utm_medium","utm_campaign","utm_content","utm_term"]){let s=a.get(t);s&&(e[t]=s)}return e}catch{return{}}}var z=class{constructor(e){this.storageWebId=null;this.memberId=null;this.eventQueue=[];this.batchTimer=null;this.isInitialized=!1;this.heartbeatTimer=null;this.visibilityHandler=null;this.unloadHeartbeatHandler=null;this.popstateHandler=null;this.beforeUnloadHandler=null;this.origPushState=null;this.origReplaceState=null;this.heatmapClickHandler=null;this.heatmapScrollHandler=null;this.utm={};this.handleHeatmapClick=e=>{let t=e.clientX/window.innerWidth*100,s=e.clientY/window.innerHeight*100;this.recordHeatmapEvent("click",t,s)};this.heatmapQueue=[];this.http=e,this.config={trackPageViews:!0,trackEvents:!0,trackSessions:!0,heatmap:!1,recording:!1,batchSize:10,flushInterval:5e3,respectDoNotTrack:!0,debug:!1},this.consent={analytics:!0,heatmap:!1,recording:!1},this.session=new N}init(e,t){if(this.isInitialized){this.log("Analytics already initialized");return}if(typeof window>"u"){this.log("Analytics only works in browser environment");return}if(t?.respectDoNotTrack!==!1&&this.isDNT()){this.log("Do Not Track enabled, analytics disabled");return}this.storageWebId=e,Object.assign(this.config,t),this.isInitialized=!0,this.utm=Ye(),this.config.trackSessions&&(this.trackSessionStart(),this.startHeartbeat()),this.config.trackPageViews&&(this.trackPageView(),this.setupAutoPageView()),this.startBatchTimer(),this.beforeUnloadHandler=()=>this.flushSync(),window.addEventListener("beforeunload",this.beforeUnloadHandler),this.log("Analytics initialized",{storageWebId:e})}destroy(){this.isInitialized&&(this.stopBatchTimer(),this.stopHeartbeat(),this.removeAutoPageView(),this.removeHeatmapListeners(),this.beforeUnloadHandler&&(window.removeEventListener("beforeunload",this.beforeUnloadHandler),this.beforeUnloadHandler=null),this.flush(),this.isInitialized=!1,this.log("Analytics destroyed"))}setConsent(e){Object.assign(this.consent,e),this.log("Consent updated",e),e.analytics===!1&&this.isInitialized&&this.destroy()}getConsent(){return{...this.consent}}trackPageView(e){if(!this.canTrack())return;this.session.touch();let t=this.createBaseEvent("page_view");t.page_path=e||window.location.pathname,t.page_url=window.location.href,t.page_title=document.title,t.referrer=document.referrer||void 0,t.screen_width=window.screen.width,t.screen_height=window.screen.height,Object.assign(t,this.utm),this.enqueue(t)}trackEvent(e,t){if(!this.canTrack()||!this.config.trackEvents)return;this.session.touch();let s=this.createBaseEvent("event");s.event_name=e,s.event_properties=t,s.page_path=window.location.pathname,s.page_url=window.location.href,this.enqueue(s)}identify(e){this.memberId&&this.memberId!==e&&this.reset(),this.setMemberId(e),this.linkMemberSilent(e)}reset(){this.setMemberId(null),this.eventQueue=[],this.heatmapQueue=[];let e=this.session.regenerateVisitorUid();this.log("Analytics reset",{newVisitorUid:e})}setMemberId(e){if(this.memberId=e||null,typeof window<"u"){let t=window;e?typeof t.__cbSetMember=="function"&&t.__cbSetMember(e):typeof t.__cbClearMember=="function"&&t.__cbClearMember()}this.log("Member id set",{memberId:e})}linkMemberSilent(e,t=!1){if(!this.storageWebId)return;let s=this.http.hasPublicKey()?"/v1/public":"/v1";this.http.post(`${s}/storages/web/${this.storageWebId}/visitors/link-member`,{visitor_uid:this.session.visitorUid,app_member_id:e}).then(r=>{r&&(this.log("link-member response",r),!t&&r.success===!1&&r.code==="VISITOR_LINKED_TO_OTHER_MEMBER"&&(this.log("user-switch detected \u2014 regenerating visitor_uid"),this.eventQueue=[],this.heatmapQueue=[],this.session.regenerateVisitorUid(),this.linkMemberSilent(e,!0)))}).catch(r=>{this.log("link-member silent fail",r)})}getMemberId(){return this.memberId}enableHeatmap(e){if(!this.canTrack()||!this.consent.heatmap)return;let t=e?.click??!0,s=e?.scroll??!0;if(t&&(this.heatmapClickHandler=this.handleHeatmapClick,document.addEventListener("click",this.heatmapClickHandler)),s){let r=null,i=0;this.heatmapScrollHandler=()=>{let n=Math.round((window.scrollY+window.innerHeight)/document.documentElement.scrollHeight*100);i=Math.max(i,n),r&&clearTimeout(r),r=setTimeout(()=>{this.recordHeatmapEvent("scroll",50,i*(window.innerHeight/100),i)},500)},window.addEventListener("scroll",this.heatmapScrollHandler,{passive:!0})}this.log("Heatmap enabled",e)}enableHeartbeat(){if(!this.canTrack()||this.heartbeatTimer)return;let e=()=>{if(!this.canTrack())return;let t=this.http.hasPublicKey()?"/v1/public":"/v1";this.http.post(`${t}/storages/web/${this.storageWebId}/sessions/heartbeat`,{visitor_uid:this.session.visitorUid,session_id:this.session.sessionId}).catch(()=>{})};this.heartbeatTimer=setInterval(e,3e4),document.addEventListener("visibilitychange",()=>{document.hidden?this.heartbeatTimer&&(clearInterval(this.heartbeatTimer),this.heartbeatTimer=null):this.heartbeatTimer||(this.heartbeatTimer=setInterval(e,3e4),e())}),window.addEventListener("beforeunload",()=>{if(navigator?.sendBeacon&&this.storageWebId){let t=this.http.hasPublicKey()?"/v1/public":"/v1",s=`${this.http.getBaseUrl()}${t}/storages/web/${this.storageWebId}/sessions/heartbeat`;navigator.sendBeacon(s,JSON.stringify({visitor_uid:this.session.visitorUid,session_id:this.session.sessionId}))}}),e(),this.log("Heartbeat enabled (30s interval)")}async flush(){await this.flushQueue()}async getPopularPages(e,t){let s=this.requireServerSideStorageId(e,"getPopularPages"),r=Te(t);return this.http.get(`/v1/storages/web/${s}/popular-pages${r}`)}async getNavigationFlow(e,t){let s=this.requireServerSideStorageId(e,"getNavigationFlow"),r=Te(t);return this.http.get(`/v1/storages/web/${s}/navigation/flow${r}`)}async getVisitors(e,t){let s=this.requireServerSideStorageId(e,"getVisitors"),r=new URLSearchParams;t?.limit!==void 0&&r.set("limit",String(t.limit)),t?.offset!==void 0&&r.set("offset",String(t.offset)),t?.sort_by&&r.set("sort_by",t.sort_by);let i=r.toString()?`?${r.toString()}`:"";return this.http.get(`/v1/storages/web/${s}/visitors${i}`)}async getVisitorGroups(e,t){let s=this.requireServerSideStorageId(e,"getVisitorGroups"),r=new URLSearchParams;t?.limit!==void 0&&r.set("limit",String(t.limit)),t?.offset!==void 0&&r.set("offset",String(t.offset)),t?.sort_by&&r.set("sort_by",t.sort_by);let i=r.toString()?`?${r.toString()}`:"";return this.http.get(`/v1/storages/web/${s}/visitor-groups${i}`)}async getVisitorByMember(e,t){let s=this.requireServerSideStorageId(e,"getVisitorByMember");return this.http.get(`/v1/storages/web/${s}/members/${t}/visitor`)}async mergeVisitors(e,t){let s=this.requireServerSideStorageId(e,"mergeVisitors");return this.http.post(`/v1/storages/web/${s}/visitors/merge`,t)}requireServerSideStorageId(e,t){if(this.http.hasPublicKey())throw new Error(`cb.analytics.${t}() \uB294 \uCF58\uC194 JWT \uB610\uB294 User Secret Key(cb_sk_) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. \uBE0C\uB77C\uC6B0\uC800 SDK \uC758 Public Key(cb_pk_) \uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.`);let s=e??this.storageWebId;if(!s)throw new Error(`cb.analytics.${t}() \uD638\uCD9C \uC2DC storageWebId \uAC00 \uD544\uC694\uD569\uB2C8\uB2E4 (init \uB610\uB294 \uC778\uC790\uB85C \uC804\uB2EC).`);return s}getSession(){return this.session}canTrack(){return!(!this.isInitialized||!this.storageWebId||!this.consent.analytics)}isDNT(){if(typeof navigator>"u")return!1;let e=navigator.globalPrivacyControl;return navigator.doNotTrack==="1"||e===!0}createBaseEvent(e){return{type:e,event_id:F(),timestamp:new Date().toISOString(),session_id:this.session.sessionId,visitor_uid:this.session.visitorUid}}enqueue(e){this.eventQueue.push(e),this.eventQueue.length>=this.config.batchSize&&this.flushQueue()}async flushQueue(){if(this.eventQueue.length===0||!this.storageWebId)return;let e=this.eventQueue.splice(0),t=this.http.hasPublicKey()?"/v1/public":"/v1";try{await this.http.post(`${t}/storages/web/${this.storageWebId}/visitors/batch`,{visitor_uid:this.session.visitorUid,...this.memberId?{app_member_id:this.memberId}:{},events:e.map(s=>({event_id:s.event_id,timestamp:s.timestamp,page_path:s.page_path||"",page_url:s.page_url||"",page_title:s.page_title||"",referrer:s.referrer||"",user_agent:typeof navigator<"u"?navigator.userAgent:"",screen_width:s.screen_width||0,screen_height:s.screen_height||0,session_id:s.session_id,session_start:s.type==="session_start",is_page_view:s.type==="page_view",event_name:s.event_name,event_properties:s.event_properties,utm_source:s.utm_source,utm_medium:s.utm_medium,utm_campaign:s.utm_campaign,utm_content:s.utm_content,utm_term:s.utm_term}))}),this.log(`Flushed ${e.length} events`)}catch(s){this.eventQueue.length<this.config.batchSize*3&&this.eventQueue.unshift(...e),this.log("Flush failed",s)}}flushSync(){if(this.eventQueue.length===0||!this.storageWebId||typeof navigator>"u"||!navigator.sendBeacon)return;let e=this.eventQueue.splice(0),t=this.http.hasPublicKey()?"/v1/public":"/v1",r=`${this.http.getBaseUrl()}${t}/storages/web/${this.storageWebId}/visitors/batch`,i=typeof navigator<"u"?navigator.userAgent:"",n=JSON.stringify({visitor_uid:this.session.visitorUid,...this.memberId?{app_member_id:this.memberId}:{},events:e.map(o=>({event_id:o.event_id,timestamp:o.timestamp,page_path:o.page_path||"",page_url:o.page_url||"",page_title:o.page_title||"",referrer:o.referrer||"",user_agent:i,screen_width:o.screen_width||0,screen_height:o.screen_height||0,session_id:o.session_id,session_start:o.type==="session_start",is_page_view:o.type==="page_view",event_name:o.event_name,event_properties:o.event_properties,utm_source:o.utm_source,utm_medium:o.utm_medium,utm_campaign:o.utm_campaign,utm_content:o.utm_content,utm_term:o.utm_term}))});try{navigator.sendBeacon(r,new Blob([n],{type:"application/json"}))}catch{}}trackSessionStart(){let e=this.createBaseEvent("session_start");e.page_path=window.location.pathname,e.page_url=window.location.href,e.referrer=document.referrer||void 0,e.screen_width=window.screen.width,e.screen_height=window.screen.height,Object.assign(e,this.utm),this.enqueue(e)}startBatchTimer(){this.batchTimer=setInterval(()=>this.flushQueue(),this.config.flushInterval)}stopBatchTimer(){this.batchTimer&&(clearInterval(this.batchTimer),this.batchTimer=null)}startHeartbeat(){this.heartbeatTimer=setInterval(()=>{this.canTrack()&&this.sendHeartbeat()},30*1e3),typeof document<"u"&&(this.visibilityHandler=()=>{document.visibilityState==="hidden"?(this.sendHeartbeatBeacon(),this.heartbeatTimer&&(clearInterval(this.heartbeatTimer),this.heartbeatTimer=null)):document.visibilityState==="visible"&&(this.heartbeatTimer||(this.sendHeartbeat(),this.heartbeatTimer=setInterval(()=>{this.canTrack()&&this.sendHeartbeat()},30*1e3)))},document.addEventListener("visibilitychange",this.visibilityHandler)),typeof window<"u"&&(this.unloadHeartbeatHandler=()=>this.sendHeartbeatBeacon(),window.addEventListener("beforeunload",this.unloadHeartbeatHandler))}stopHeartbeat(){this.heartbeatTimer&&(clearInterval(this.heartbeatTimer),this.heartbeatTimer=null),typeof document<"u"&&this.visibilityHandler&&(document.removeEventListener("visibilitychange",this.visibilityHandler),this.visibilityHandler=null),typeof window<"u"&&this.unloadHeartbeatHandler&&(window.removeEventListener("beforeunload",this.unloadHeartbeatHandler),this.unloadHeartbeatHandler=null)}sendHeartbeat(){let e=this.createBaseEvent("heartbeat");if(e.page_path=window.location.pathname,this.enqueue(e),this.storageWebId){let t=this.http.hasPublicKey()?"/v1/public":"/v1";this.http.post(`${t}/storages/web/${this.storageWebId}/sessions/heartbeat`,{visitor_uid:this.session.visitorUid,session_id:this.session.sessionId}).catch(()=>{})}}sendHeartbeatBeacon(){if(!this.storageWebId||typeof navigator>"u"||!navigator.sendBeacon)return;let e=this.http.hasPublicKey()?"/v1/public":"/v1",s=`${this.http.getBaseUrl()}${e}/storages/web/${this.storageWebId}/sessions/heartbeat`,r=JSON.stringify({visitor_uid:this.session.visitorUid,session_id:this.session.sessionId});try{navigator.sendBeacon(s,new Blob([r],{type:"application/json"}))}catch{}}setupAutoPageView(){this.popstateHandler=()=>this.trackPageView(),window.addEventListener("popstate",this.popstateHandler),this.origPushState=history.pushState.bind(history),this.origReplaceState=history.replaceState.bind(history),history.pushState=(...e)=>{this.origPushState(...e),this.trackPageView()},history.replaceState=(...e)=>{this.origReplaceState(...e),this.trackPageView()}}removeAutoPageView(){this.popstateHandler&&(window.removeEventListener("popstate",this.popstateHandler),this.popstateHandler=null),this.origPushState&&(history.pushState=this.origPushState,this.origPushState=null),this.origReplaceState&&(history.replaceState=this.origReplaceState,this.origReplaceState=null)}removeHeatmapListeners(){this.heatmapClickHandler&&(document.removeEventListener("click",this.heatmapClickHandler),this.heatmapClickHandler=null),this.heatmapScrollHandler&&(window.removeEventListener("scroll",this.heatmapScrollHandler),this.heatmapScrollHandler=null)}recordHeatmapEvent(e,t,s,r){if(!this.canTrack()||!this.storageWebId)return;let i=this.http.hasPublicKey()?"/v1/public":"/v1";if(this.heatmapQueue.push({page_path:window.location.pathname,event_type:e,x_percent:Math.round(t*100)/100,y_percent:Math.round(s*100)/100,viewport_width:window.innerWidth,viewport_height:window.innerHeight,scroll_depth_percent:r,session_id:this.session.sessionId}),this.heatmapQueue.length>=50){let n=this.heatmapQueue.splice(0);this.http.post(`${i}/storages/web/${this.storageWebId}/heatmap/batch`,{visitor_uid:this.session.visitorUid,events:n}).catch(()=>{})}}log(...e){this.config.debug&&console.log("[Analytics]",...e)}};var M=class{constructor(e){this.http=e}ensureServerAuth(e){if(this.http.hasPublicKey()&&!this.http.hasJWT()){let t=e==="remove"?"app_member:write":"app_member:read";throw new Error(`cb.appMembers.${e}() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["${t}"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 \uC790\uAE30 \uC815\uBCF4\uB294 cb.auth.getMe() \uB97C \uC4F0\uACE0, \uBCF8\uC778 \uD0C8\uD1F4\uB294 cb.auth.deleteMyAccount() \uB97C \uC4F0\uC138\uC694.`)}}async list(e,t={}){this.ensureServerAuth("list");let s=new URLSearchParams;t.page!==void 0&&s.set("page",String(t.page)),t.pageSize!==void 0&&s.set("page_size",String(t.pageSize));let r=t.search?.trim();r&&s.set("search",r);let i=s.toString();return this.http.get(`/v1/apps/${e}/app-members${i?`?${i}`:""}`)}async get(e,t){return this.ensureServerAuth("get"),this.http.get(`/v1/apps/${e}/app-members/${t}`)}async remove(e,t){return this.ensureServerAuth("remove"),this.http.delete(`/v1/apps/${e}/app-members/${t}`)}};function Ze(a,e){switch(e){case"string":return typeof a=="string";case"number":return typeof a=="number"&&Number.isFinite(a);case"boolean":return typeof a=="boolean";case"array":return Array.isArray(a);case"object":return typeof a=="object"&&a!==null&&!Array.isArray(a);case"string-or-number":return typeof a=="string"||typeof a=="number"&&Number.isFinite(a)}}function k(a,e,t){if(typeof a!="object"||a===null||Array.isArray(a))throw new m(502,`[${t}] expected object, got ${typeof a}`,"SCHEMA_MISMATCH");let s=a;for(let[r,i]of Object.entries(e)){if(!(r in s)){if(i.optional)continue;throw new m(502,`[${t}] missing required field "${r}"`,"SCHEMA_MISMATCH")}let o=s[r];if(!(i.optional&&o==null)&&!Ze(o,i.type))throw new m(502,`[${t}] field "${r}" expected ${i.type}, got ${typeof o}`,"SCHEMA_MISMATCH")}return a}var j=class{constructor(e){this.http=e;this.analytics=null}_attachAnalytics(e){this.analytics=e}notifyVisitorTracker(e){if(this.analytics){this.analytics.setMemberId(e);return}if(typeof window>"u")return;let t=window;e?typeof t.__cbSetMember=="function"&&t.__cbSetMember(e):typeof t.__cbClearMember=="function"&&t.__cbClearMember()}async getAuthSettings(){return this.http.get("/v1/public/auth-settings",{skipAuth:!0})}async signUpMember(e){let t=await this.http.post("/v1/public/app-members/signup",e,{skipAuth:!0});return k(t,{access_token:{type:"string"},refresh_token:{type:"string"},member_id:{type:"string-or-number"}},"auth.signUpMember"),this.http.setTokens(t.access_token,t.refresh_token),this.notifyVisitorTracker(t.member_id),t}async signInMember(e){let t=await this.http.post("/v1/public/app-members/signin",e,{skipAuth:!0});return k(t,{access_token:{type:"string"},refresh_token:{type:"string"},member_id:{type:"string-or-number"}},"auth.signInMember"),this.http.setTokens(t.access_token,t.refresh_token),this.notifyVisitorTracker(t.member_id),t}async getMe(){let e=await this.http.get("/v1/public/app-members/me");return k(e,{member_id:{type:"string-or-number"}},"auth.getMe"),e}async updateCustomData(e){return this.http.patch("/v1/public/app-members/me/custom-data",e)}async adminUpdateMember(e,t){if(!this.http.getSecretKey())throw new Error("adminUpdateMember requires a secretKey. Initialize ConnectBase with both publicKey and secretKey.");return this.http.patch(`/v1/public/app-members/${encodeURIComponent(e)}`,t)}async adminDeleteMember(e){if(!this.http.getSecretKey())throw new Error("adminDeleteMember requires a secretKey. Initialize ConnectBase with both publicKey and secretKey.");return this.http.delete(`/v1/public/app-members/${encodeURIComponent(e)}`)}async deleteMyAccount(){try{return await this.http.delete("/v1/public/app-members/me")}finally{this.http.clearTokens(),this.notifyVisitorTracker(null)}}async signOut(){try{await this.http.post("/v1/auth/logout")}finally{this.http.clearTokens(),this.notifyVisitorTracker(null)}}};var J=class{constructor(e){this.realtimeWs=null;this.realtimeState="disconnected";this.realtimeHandlers=new Map;this.realtimeRetryCount=0;this.realtimeOptions=null;this.pendingRequests=new Map;this.pingInterval=null;this.realtimeOnStateChange=null;this.realtimeOnError=null;this.activeSubscriptions=new Map;this.http=e}getPublicPrefix(){return"/v1/public"}async getTables(){let e=this.getPublicPrefix();return(await this.http.get(`${e}/tables`)).tables}async getTable(e){let t=this.getPublicPrefix();return this.http.get(`${t}/tables/${e}`)}async createTable(e){let t=this.getPublicPrefix(),s={title:e.name,access_level:e.accessLevel??"Creator"};e.schema&&Object.keys(e.schema).length>0&&(s.schema=e.schema),await this.http.post(`${t}/tables`,s)}async updateTable(e,t){let s=this.getPublicPrefix(),r={};t.name!==void 0&&(r.title=t.name),t.schema!==void 0&&(r.schema=t.schema),t.accessLevel!==void 0&&(r.access_level=t.accessLevel),t.description!==void 0&&(r.description=t.description),await this.http.patch(`${s}/tables/${e}`,r)}async deleteTable(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/tables/${e}`)}async getValidationSchema(e){let t=this.getPublicPrefix();return(await this.http.get(`${t}/tables/${e}/validation-schema`)).validation_schema}async setValidationSchema(e,t){await this.http.put(`/v1/apps/${this.requireAppId()}/databases/tables/${e}/validation-schema`,{validation_schema:t})}async deleteValidationSchema(e){await this.http.delete(`/v1/apps/${this.requireAppId()}/databases/tables/${e}/validation-schema`)}requireAppId(){let e=this.http.getAppId();if(!e)throw new Error("setValidationSchema/deleteValidationSchema \uB294 \uCF58\uC194 (JWT) \uC778\uC99D\uC774 \uD544\uC694\uD558\uBA70 ConnectBase config \uC5D0 appId \uAC00 \uC124\uC815\uB418\uC5B4\uC57C \uD569\uB2C8\uB2E4.");return e}async getColumns(e){let t=await this.getTable(e),s=t.schema??{},r=new Set(Array.isArray(s.$required)?s.$required:[]),i=[],n=0;for(let[o,c]of Object.entries(s)){if(o.startsWith("$")||c===void 0||Array.isArray(c))continue;let l="string",d=r.has(o),u,p,h;typeof c=="string"?l=c:(l=c.type,c.required===!0&&(d=!0),c.default!==void 0&&(u=c.default),c.description!==void 0&&(p=c.description),c.encrypted!==void 0&&(h=c.encrypted)),i.push({id:o,name:o,data_type:l,is_required:d,default_value:u,description:p,encrypted:h,order:n++,created_at:t.created_at})}return i}async createColumn(e,t){let s=this.getPublicPrefix();await this.http.post(`${s}/tables/${e}/columns`,t)}async updateColumn(e,t,s){let r=this.getPublicPrefix();await this.http.patch(`${r}/tables/${e}/columns/${t}`,s)}async deleteColumn(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/tables/${e}/columns/${t}`)}async getData(e,t){let s=this.getPublicPrefix();if(t?.where||t?.select||t?.exclude)return this.queryData(e,t);let r=new URLSearchParams;t?.limit&&r.append("limit",t.limit.toString()),t?.offset&&r.append("offset",t.offset.toString()),t?.count===!1&&r.append("count","false"),t?.cursor&&r.append("cursor",t.cursor);let i=r.toString(),n=i?`${s}/tables/${e}/data?${i}`:`${s}/tables/${e}/data`;return this.http.get(n)}async queryData(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/query`,{where:t.where,order_by:t.orderBy,order_direction:t.orderDirection,limit:t.limit,offset:t.offset,select:t.select,exclude:t.exclude,count:t.count,cursor:t.cursor})}async getDataById(e,t){let s=this.getPublicPrefix();return this.http.get(`${s}/tables/${e}/data/${t}`)}async createData(e,t,s){let r=this.getPublicPrefix();if(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e))return this.http.post(`${r}/tables/${e}/data`,t);let n=s?.autoCreate?"?auto_create=true":"";return this.http.post(`${r}/tables/name/${encodeURIComponent(e)}/data${n}`,t)}async updateData(e,t,s){let r=this.getPublicPrefix();return this.http.patch(`${r}/tables/${e}/data/${t}`,s)}async deleteData(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/tables/${e}/data/${t}`)}async createMany(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/bulk`,{data:t.map(r=>r.data)})}async deleteWhere(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/delete-where`,{where:t})}async aggregate(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/aggregate`,{table_id:e,pipeline:t})}async search(e,t,s,r){let i=this.getPublicPrefix();return this.http.post(`${i}/search`,{table_id:e,query:t,fields:s,options:r})}async autocomplete(e,t,s,r){let i=this.getPublicPrefix();return this.http.post(`${i}/autocomplete`,{table_id:e,query:t,field:s,...r})}async geoQuery(e,t,s,r){let i=this.getPublicPrefix();return this.http.post(`${i}/geo`,{table_id:e,field:t,query:s,...r})}async batch(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/batch`,{operations:e});if(s&&s.success===!1){let r=s.results?.find(i=>i&&i.success===!1);throw new Error(r?.error||"batch operation failed")}return s}async transaction(e,t){let s=this.getPublicPrefix(),r=await this.http.post(`${s}/transactions`,{reads:e,writes:t});if(r&&r.success===!1)throw new Error(r.error||"transaction failed");return r}async getDataWithPopulate(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/query`,{where:t.where,order_by:t.orderBy,order_direction:t.orderDirection,limit:t.limit,offset:t.offset,select:t.select,exclude:t.exclude,populate:t.populate,count:t.count})}async listSecurityRules(e){return(await this.http.get(`/v1/apps/${e}/databases/security/rules`)).rules}async createSecurityRule(e,t){return this.http.post(`/v1/apps/${e}/databases/security/rules`,t)}async updateSecurityRule(e,t,s){return this.http.put(`/v1/apps/${e}/databases/security/rules/${t}`,s)}async deleteSecurityRule(e,t){await this.http.delete(`/v1/apps/${e}/databases/security/rules/${t}`)}async listIndexes(e,t){return(await this.http.get(`/v1/apps/${e}/databases/tables/${t}/indexes`)).indexes}async createIndex(e,t,s){return this.http.post(`/v1/apps/${e}/databases/tables/${t}/indexes`,s)}async deleteIndex(e,t,s){await this.http.delete(`/v1/apps/${e}/databases/tables/${t}/indexes/${s}`)}async analyzeIndexes(e,t){return this.http.get(`/v1/apps/${e}/databases/tables/${t}/indexes/analyze`)}async listSearchIndexes(e,t){return(await this.http.get(`/v1/apps/${e}/databases/tables/${t}/search-indexes`)).indexes}async createSearchIndex(e,t,s){return this.http.post(`/v1/apps/${e}/databases/tables/${t}/search-indexes`,s)}async deleteSearchIndex(e,t,s){await this.http.delete(`/v1/apps/${e}/databases/tables/${t}/search-indexes/${s}`)}async listGeoIndexes(e,t){return(await this.http.get(`/v1/apps/${e}/databases/tables/${t}/geo-indexes`)).indexes}async createGeoIndex(e,t,s){return this.http.post(`/v1/apps/${e}/databases/tables/${t}/geo-indexes`,s)}async deleteGeoIndex(e,t,s){await this.http.delete(`/v1/apps/${e}/databases/tables/${t}/geo-indexes/${s}`)}async listRelations(e,t){let s=t?`?source_table=${encodeURIComponent(t)}`:"";return(await this.http.get(`/v1/apps/${e}/databases/relations${s}`)).relations}async createRelation(e,t){return this.http.post(`/v1/apps/${e}/databases/relations`,t)}async deleteRelation(e,t){await this.http.delete(`/v1/apps/${e}/databases/relations/${t}`)}async listTriggers(e){return(await this.http.get(`/v1/apps/${e}/databases/triggers`)).triggers}async createTrigger(e,t){return this.http.post(`/v1/apps/${e}/databases/triggers`,t)}async updateTrigger(e,t,s){return this.http.put(`/v1/apps/${e}/databases/triggers/${t}`,s)}async deleteTrigger(e,t){await this.http.delete(`/v1/apps/${e}/databases/triggers/${t}`)}async setTTL(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/ttl`,t)}async getTTL(e,t){return this.http.get(`/v1/apps/${e}/lifecycle/ttl/${t}`)}async setRetentionPolicy(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/retention`,t)}async getRetentionPolicy(e,t){return this.http.get(`/v1/apps/${e}/lifecycle/retention/${t}`)}async setArchivePolicy(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/archive`,t)}async getArchivePolicy(e,t){return this.http.get(`/v1/apps/${e}/lifecycle/archive/${t}`)}async executeTTL(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/ttl/${t}/execute`,{})}async executeArchive(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/archive/${t}/execute`,{})}async executeRetention(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/retention/${t}/execute`,{})}async listPolicies(e){return(await this.http.get(`/v1/apps/${e}/lifecycle`)).policies}async deletePolicy(e,t){await this.http.delete(`/v1/apps/${e}/lifecycle/${t}`)}async generateTypes(e){return this.http.get(`/v1/apps/${e}/types`)}async listBackups(e){return this.http.get(`/v1/apps/${e}/backups`)}async createBackup(e,t){return this.http.post(`/v1/apps/${e}/backups`,t)}async getBackup(e,t){return this.http.get(`/v1/apps/${e}/backups/${t}`)}async deleteBackup(e,t){await this.http.delete(`/v1/apps/${e}/backups/${t}`)}async restoreBackup(e,t,s){return this.http.post(`/v1/apps/${e}/backups/${t}/restore`,s||{backup_id:t})}async exportData(e,t){return this.http.post(`/v1/apps/${e}/data/export`,t||{format:"json"})}async importData(e,t){return this.http.post(`/v1/apps/${e}/data/import`,t)}async copyTable(e,t){return this.http.post(`/v1/apps/${e}/tables/copy`,t)}async migrateData(e,t){return this.http.post(`/v1/apps/${e}/tables/migrate`,t)}connectRealtime(e){return this.realtimeState==="connected"?Promise.resolve():this.realtimeState==="connecting"?Promise.reject(new Error("Already connecting")):(this.realtimeOptions=e,this.realtimeRetryCount=0,this.doRealtimeConnect())}disconnectRealtime(){this.realtimeOptions=null,this.setRealtimeState("disconnected"),this.realtimeRetryCount=0,this.stopRealtimePing(),this.realtimeWs&&(this.realtimeWs.close(),this.realtimeWs=null),this.pendingRequests.forEach(e=>{clearTimeout(e.timeout),e.reject(new Error("Connection closed"))}),this.pendingRequests.clear(),this.realtimeHandlers.clear(),this.activeSubscriptions.clear()}subscribe(e,t,s){if(this.realtimeState!=="connected")throw new Error("Not connected. Call connectRealtime() first.");let r=`csub_${Date.now()}_${Math.random().toString(36).substring(2,9)}`;this.activeSubscriptions.set(r,{tableId:e,options:s,handlers:t});let i=this.sendSubscribeRequest(e,t,s);return i.catch(n=>{this.activeSubscriptions.delete(r),t.onError?.(n instanceof Error?n:new Error(String(n)))}),{subscriptionId:r,unsubscribe:()=>{this.activeSubscriptions.delete(r),i.then(n=>{this.realtimeHandlers.delete(n),this.realtimeState==="connected"&&this.sendRealtimeMessage({type:"unsubscribe",request_id:this.generateRequestId(),subscription_id:n})}).catch(()=>{})},loadMore:(n,o)=>{this.realtimeState==="connected"&&i.then(c=>{let l={type:"snapshot_more",request_id:this.generateRequestId(),subscription_id:c,offset:n};o!==void 0&&(l.limit=o),this.sendRealtimeMessage(l)}).catch(()=>{})}}}isRealtimeConnected(){return this.realtimeState==="connected"}getRealtimeState(){return this.realtimeState}onRealtimeStateChange(e){return this.realtimeOnStateChange=e,()=>{this.realtimeOnStateChange=null}}onRealtimeError(e){return this.realtimeOnError=e,()=>{this.realtimeOnError=null}}setRealtimeState(e){this.realtimeState!==e&&(this.realtimeState=e,this.realtimeOnStateChange?.(e))}doRealtimeConnect(){if(!this.realtimeOptions)return Promise.reject(new Error("No realtime options"));this.setRealtimeState("connecting");let s=`${(this.realtimeOptions.dataServerUrl||this.http.getBaseUrl()).replace(/^http/,"ws")}/v1/database/realtime/ws?access_token=${encodeURIComponent(this.realtimeOptions.accessToken)}`;return new Promise((r,i)=>{try{this.realtimeWs=new WebSocket(s);let n=!1,o=setTimeout(()=>{n||(n=!0,this.realtimeWs&&(this.realtimeWs.close(),this.realtimeWs=null),this.setRealtimeState("disconnected"),i(new Error("Connection timeout")))},15e3);this.realtimeWs.onopen=()=>{n||(n=!0,clearTimeout(o)),this.setRealtimeState("connected"),this.realtimeRetryCount=0,this.startRealtimePing(),this.debugLog("Database realtime connected"),this.resubscribeAll(),r()},this.realtimeWs.onmessage=c=>{try{let l=JSON.parse(c.data);this.handleRealtimeMessage(l)}catch{this.debugLog("Failed to parse realtime message")}},this.realtimeWs.onclose=()=>{this.debugLog("Database realtime disconnected"),this.realtimeWs=null,this.stopRealtimePing(),n||(n=!0,clearTimeout(o),i(new Error("Connection closed during handshake"))),this.realtimeOptions&&this.realtimeState!=="disconnected"&&this.attemptRealtimeReconnect()},this.realtimeWs.onerror=()=>{this.debugLog("Database realtime error"),this.realtimeOnError?.(new Error("WebSocket connection error"))}}catch(n){this.setRealtimeState("disconnected"),i(n)}})}sendSubscribeRequest(e,t,s){let r=this.generateRequestId();this.realtimeHandlers.set(r,t);let i=s?.where?{filters:s.where.map(n=>({field:n.field,operator:n.operator,value:n.value}))}:void 0;return this.sendRealtimeMessage({type:"subscribe",request_id:r,table_id:e,doc_id:s?.docId,query:i,options:{include_self:s?.includeSelf??!1,include_metadata_changes:s?.includeMetadataChanges??!1}}),new Promise((n,o)=>{let c=setTimeout(()=>{this.pendingRequests.delete(r),this.realtimeHandlers.delete(r),o(new Error("Subscribe request timeout"))},3e4);this.pendingRequests.set(r,{resolve:l=>{let d=l,u=this.realtimeHandlers.get(r);u&&(this.realtimeHandlers.delete(r),this.realtimeHandlers.set(d,u)),n(d)},reject:o,timeout:c})})}resubscribeAll(){if(this.activeSubscriptions.size!==0){this.realtimeHandlers.clear(),this.pendingRequests.forEach(e=>clearTimeout(e.timeout)),this.pendingRequests.clear(),this.debugLog(`Resubscribing ${this.activeSubscriptions.size} subscriptions`);for(let[,e]of this.activeSubscriptions)this.sendSubscribeRequest(e.tableId,e.handlers,e.options).catch(t=>{e.handlers.onError?.(t instanceof Error?t:new Error(String(t)))})}}handleRealtimeMessage(e){switch(e.type){case"subscribed":{let s=e.request_id,r=e.subscription_id,i=this.pendingRequests.get(s);i&&(clearTimeout(i.timeout),i.resolve(r),this.pendingRequests.delete(s));break}case"snapshot":{let s=e.subscription_id,r=this.realtimeHandlers.get(s);if(r?.onSnapshot){let i=e.docs||[],n=e.has_more||!1,o=n?e.next_offset:void 0;r.onSnapshot(i,{totalCount:e.total_count||0,hasMore:n,nextOffset:o})}break}case"change":{let s=e.subscription_id,r=this.realtimeHandlers.get(s);if(r?.onChange){let i=e.changes||[];r.onChange(i)}break}case"presence":{let s=this.realtimeHandlers.get("__presence__");if(s?.onSnapshot){let r=e.states,i=Object.entries(r||{}).map(([n,o])=>({id:n,data:o,exists:!0}));s.onSnapshot(i,{totalCount:i.length,hasMore:!1})}break}case"error":{let s=e.request_id,r=e.message||"Unknown error";if(s){let i=this.pendingRequests.get(s);i&&(clearTimeout(i.timeout),i.reject(new Error(r)),this.pendingRequests.delete(s));let n=this.realtimeHandlers.get(s);n?.onError&&n.onError(new Error(r))}else this.realtimeOnError?.(new Error(r));break}case"pong":break;case"unsubscribed":case"presence_set_ack":case"presence_subscribed":case"typing_subscribed":break}}attemptRealtimeReconnect(){let e=this.realtimeOptions?.maxRetries??5,t=this.realtimeOptions?.retryInterval??1e3;if(this.realtimeRetryCount>=e){this.setRealtimeState("disconnected"),this.realtimeOnError?.(new Error("Realtime connection lost. Max retries exceeded."));return}this.setRealtimeState("connecting"),this.realtimeRetryCount++;let s=Math.min(t*2**(this.realtimeRetryCount-1),3e4);this.debugLog(`Reconnecting in ${s}ms (attempt ${this.realtimeRetryCount}/${e})`),setTimeout(()=>{this.realtimeOptions&&this.doRealtimeConnect().catch(r=>{this.debugLog(`Reconnect failed: ${r}`)})},s)}startRealtimePing(){this.stopRealtimePing(),this.pingInterval=setInterval(()=>{this.realtimeState==="connected"&&this.realtimeWs?.readyState===WebSocket.OPEN&&this.sendRealtimeMessage({type:"ping",timestamp:Date.now()})},3e4)}stopRealtimePing(){this.pingInterval&&(clearInterval(this.pingInterval),this.pingInterval=null)}sendRealtimeMessage(e){this.realtimeWs?.readyState===WebSocket.OPEN&&this.realtimeWs.send(JSON.stringify(e))}generateRequestId(){return`req_${Date.now()}_${Math.random().toString(36).substring(2,9)}`}debugLog(e){this.realtimeOptions?.debug&&console.log(`[DatabaseRealtime] ${e}`)}};var U=class{constructor(e){this.http=e}async call(e,t){if(!e)throw new Error("EndpointAPI.call: label required");if(!t.path||!t.path.startsWith("/"))throw new Error(`EndpointAPI.call: path must start with '/', got ${JSON.stringify(t.path)}`);let s=this.proxyPath(e,t.path),r=new Headers(t.headers??{});if(!r.has("X-Public-Key")){let i=this.http.getPublicKey();if(!i)throw new Error("EndpointAPI.call: publicKey not configured. Pass `publicKey` to ConnectBase constructor.");r.set("X-Public-Key",i)}return this.http.fetchPassthrough(s,{method:t.method??"GET",headers:r,body:t.body,signal:t.signal,redirect:"follow"})}proxyPath(e,t){if(!e)throw new Error("EndpointAPI.call: label required");if(!t||!t.startsWith("/"))throw new Error(`EndpointAPI.call: path must start with '/', got ${JSON.stringify(t)}`);return`/v1/proxy/${encodeURIComponent(e)}${t}`}url(e,t){if(!e)throw new Error("EndpointAPI.url: label required");if(!t||!t.startsWith("/"))throw new Error(`EndpointAPI.url: path must start with '/', got ${JSON.stringify(t)}`);return`${this.http.getBaseUrl().replace(/\/+$/,"")}/v1/proxy/${encodeURIComponent(e)}${t}`}async connectWebSocket(e,t={}){if(!e)throw new Error("EndpointAPI.connectWebSocket: label required");let s=t.path??"/";if(!s.startsWith("/"))throw new Error(`EndpointAPI.connectWebSocket: path must start with '/', got ${JSON.stringify(s)}`);let r=this.http.getBaseUrl().replace(/\/+$/,""),i=`${r}/v1/proxy/${encodeURIComponent(e)}/ws-ticket`,n=new Headers,o=this.http.getPublicKey();if(!o)throw new Error("EndpointAPI.connectWebSocket: publicKey not configured. Pass `publicKey` to ConnectBase constructor.");n.set("X-Public-Key",o);let c=await fetch(i,{method:"POST",headers:n,signal:t.signal});if(!c.ok){let p=await c.text().catch(()=>"");throw new Error(`EndpointAPI.connectWebSocket: ticket issuance failed (${c.status}) ${p.slice(0,200)}`)}let{ticket:l}=await c.json();if(!l)throw new Error("EndpointAPI.connectWebSocket: server returned empty ticket");let d=new URL(`${r}/v1/proxy/${encodeURIComponent(e)}${s}`);if(d.protocol=d.protocol==="https:"?"wss:":"ws:",t.query)for(let[p,h]of Object.entries(t.query))d.searchParams.set(p,h);d.searchParams.set("ticket",l);let u=t.protocols?new WebSocket(d.toString(),t.protocols):new WebSocket(d.toString());if(t.signal){let p=()=>{try{u.close(1e3,"client aborted")}catch{}};t.signal.aborted?p():t.signal.addEventListener("abort",p,{once:!0})}return u}async pollUntil(e,t,s,r={}){let i=r.intervalMs??1500,n=r.timeoutMs??5*6e4,o=r.parse??"json",c=Date.now();for(;;){if(r.signal?.aborted)throw new DOMException("aborted","AbortError");if(Date.now()-c>n)throw new Error(`EndpointAPI.pollUntil: timeout after ${n}ms (label=${e}, path=${t.path})`);let l;try{l=await this.call(e,{...t,signal:r.signal})}catch(p){if(p.name==="AbortError")throw p;await Pe(i,r.signal);continue}if(l.status>=500){await et(l),await Pe(i,r.signal);continue}if(l.status>=400){let p=await l.text().catch(()=>"");throw new Error(`EndpointAPI.pollUntil: ${l.status} ${l.statusText} (label=${e}, path=${t.path})${p?` \u2014 ${p.slice(0,200)}`:""}`)}let d;o==="text"?d=await l.text():o==="none"?d=void 0:d=await l.json().catch(()=>{});let u=await s(d,l);if(u!==void 0)return u;await Pe(i,r.signal)}}};async function Pe(a,e){if(e?.aborted)throw new DOMException("aborted","AbortError");return new Promise((t,s)=>{let r=setTimeout(()=>{e?.removeEventListener("abort",i),t()},a),i=()=>{clearTimeout(r),s(new DOMException("aborted","AbortError"))};e?.addEventListener("abort",i,{once:!0})})}async function et(a){try{await a.text()}catch{}}var Q=class{constructor(e,t={}){this.storageWebId=null;this.errorQueue=[];this.batchTimer=null;this.isInitialized=!1;this.originalOnError=null;this.originalOnUnhandledRejection=null;this.http=e,this.config={autoCapture:t.autoCapture??!0,captureTypes:t.captureTypes??["error","unhandledrejection"],batchInterval:t.batchInterval??5e3,maxBatchSize:t.maxBatchSize??10,beforeSend:t.beforeSend??(s=>s),debug:t.debug??!1}}init(e){if(this.isInitialized){this.log("ErrorTracker already initialized");return}if(typeof window>"u"){this.log("ErrorTracker only works in browser environment");return}this.storageWebId=e,this.isInitialized=!0,this.config.autoCapture&&this.setupAutoCapture(),this.startBatchTimer(),this.log("ErrorTracker initialized",{storageWebId:e})}destroy(){this.stopBatchTimer(),this.removeAutoCapture(),this.flushQueue(),this.isInitialized=!1,this.log("ErrorTracker destroyed")}async captureError(e,t){let s=this.createErrorReport(e,t);s&&this.queueError(s)}async captureMessage(e,t){let s={message:e,error_type:"custom",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0,...t};this.queueError(s)}async flush(){await this.flushQueue()}log(...e){this.config.debug&&console.log("[ErrorTracker]",...e)}setupAutoCapture(){typeof window>"u"||(this.config.captureTypes.includes("error")&&(this.originalOnError=window.onerror,window.onerror=(e,t,s,r,i)=>(this.handleGlobalError(e,t,s,r,i),this.originalOnError?this.originalOnError(e,t,s,r,i):!1)),this.config.captureTypes.includes("unhandledrejection")&&(this.originalOnUnhandledRejection=window.onunhandledrejection,window.onunhandledrejection=e=>{this.handleUnhandledRejection(e),this.originalOnUnhandledRejection&&this.originalOnUnhandledRejection(e)}),this.log("Auto capture enabled",{types:this.config.captureTypes}))}removeAutoCapture(){typeof window>"u"||(this.originalOnError!==null&&(window.onerror=this.originalOnError),this.originalOnUnhandledRejection!==null&&(window.onunhandledrejection=this.originalOnUnhandledRejection))}handleGlobalError(e,t,s,r,i){let n={message:typeof e=="string"?e:e.type||"Unknown error",source:t||void 0,lineno:s||void 0,colno:r||void 0,stack:i?.stack,error_type:"error",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0};this.queueError(n)}handleUnhandledRejection(e){let t=e.reason,s="Unhandled Promise Rejection",r;t instanceof Error?(s=t.message,r=t.stack):typeof t=="string"?s=t:t&&typeof t=="object"&&(s=JSON.stringify(t));let i={message:s,stack:r,error_type:"unhandledrejection",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0};this.queueError(i)}createErrorReport(e,t){let s;e instanceof Error?s={message:e.message,stack:e.stack,error_type:"error",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0,...t}:s={message:e,error_type:"custom",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0,...t};let r=this.config.beforeSend(s);return r===!1||r===null?(this.log("Error filtered out by beforeSend"),null):r}queueError(e){this.errorQueue.push(e),this.log("Error queued",{message:e.message,queueSize:this.errorQueue.length}),this.errorQueue.length>=this.config.maxBatchSize&&this.flushQueue()}startBatchTimer(){this.batchTimer||(this.batchTimer=setInterval(()=>{this.flushQueue()},this.config.batchInterval))}stopBatchTimer(){this.batchTimer&&(clearInterval(this.batchTimer),this.batchTimer=null)}async flushQueue(){if(!this.storageWebId||this.errorQueue.length===0)return;let e=[...this.errorQueue];this.errorQueue=[];try{e.length===1?await this.http.post(`/v1/public/storages/web/${this.storageWebId}/errors/report`,e[0]):await this.http.post(`/v1/public/storages/web/${this.storageWebId}/errors/batch`,{errors:e,user_agent:typeof navigator<"u"?navigator.userAgent:void 0}),this.log("Errors sent",{count:e.length})}catch(t){let s=this.config.maxBatchSize-this.errorQueue.length;s>0&&this.errorQueue.unshift(...e.slice(0,s)),this.log("Failed to send errors, re-queued",{error:t})}}};var X=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async invoke(e,t,s){let r=this.getPublicPrefix(),i={};return t!==void 0&&(i.payload=t),s!==void 0&&(i.timeout=s),this.http.post(`${r}/functions/${e}/invoke`,i)}async invokeCrossApp(e,t,s,r,i){let n={};return r!==void 0&&(n.payload=r),i!==void 0&&(n.timeout=i),this.http.post(`/v1/integrations/providers/${e}/functions/${t}/invoke`,n,{skipAuth:!0,headers:{Authorization:`Bearer ${s}`}})}async call(e,t){let s=await this.invoke(e,t);if(!s.success)throw s.retryable?new m(503,s.error||"Function gateway is temporarily unavailable","FUNCTION_UNAVAILABLE"):new m(500,s.error||"Function execution failed","FUNCTION_EXECUTION_FAILED");return s.result}getWebhookURL(e){return`${this.http.getBaseUrl().replace(/\/+$/,"")}/v1/public/functions/${encodeURIComponent(e)}/webhook`}};var L=class{constructor(e,t){this.http=e,this.appId=t}async get(e){let t=this.resolveAppId(e);return this.http.get(`/v1/apps/${t}/game/config`)}async set(e,t){let s,r;return typeof e=="string"?(s=e,r=t??{}):(s=this.resolveAppId(),r=e),this.http.patch(`/v1/apps/${s}/game/config`,r)}async enable(e,t){return this.set(e,{[t]:!0})}async disable(e,t){return this.set(e,{[t]:!1})}resolveAppId(e){let t=e??this.appId;if(!t)throw new Error("appId not provided (pass it explicitly or set in client constructor)");return t}};function R(a){let e=a.data??a,t=s=>e[s];return new v({code:t("code")||a.code,message:t("message")||"Unknown error",phase:t("phase")||a.phase,feature:t("feature")||a.feature,roomId:t("room_id")||a.room_id,scriptId:t("script_id")||a.script_id,originClientId:t("origin_client_id")||a.origin_client_id,requested:t("requested")||a.requested,available:t("available")||a.available})}var tt=1e3,Ce=()=>{if(typeof window<"u"){let a=window.location.hostname;if(a==="localhost"||a==="127.0.0.1")return"ws://localhost:8087"}return"wss://game.connectbase.world"};function K(a){let e={};return a.roomId&&(e.room_id=a.roomId),a.categoryId&&(e.category_id=a.categoryId),typeof a.tickRate=="number"&&(e.tick_rate=a.tickRate),typeof a.maxPlayers=="number"&&(e.max_players=a.maxPlayers),a.scriptName&&(e.script_name=a.scriptName),a.metadata&&(e.metadata=a.metadata),e}var G=class{constructor(e){this.ws=null;this.handlers={};this.reconnectAttempts=0;this.reconnectTimer=null;this.pingInterval=null;this.actionSequence=0;this._roomId=null;this._state=null;this._scriptName=null;this._scriptVersion=null;this._isConnected=!1;this.msgIdCounter=0;this.resyncInFlight=!1;this.lastResyncAt=0;this.config={gameServerUrl:Ce(),autoReconnect:!0,maxReconnectAttempts:5,reconnectInterval:1e3,...e}}get roomId(){return this._roomId}get state(){return this._state}get isConnected(){return this._isConnected}on(e,t){return this.handlers[e]=t,this}connect(e){return new Promise((t,s)=>{if(this.ws?.readyState===WebSocket.OPEN){t();return}if(!this.config.appId){s(new Error("cb.game: appId is required to connect. Pass it to `new ConnectBase({ appId })` or per-client via `cb.game.createClient({ appId, clientId })`."));return}let r=this.buildConnectionUrl(e);this.ws=new WebSocket(r);let i=()=>{this._isConnected=!0,this.reconnectAttempts=0,this.startPingInterval(),this.handlers.onConnect?.(),t()},n=l=>{this._isConnected=!1,this.stopPingInterval(),this.handlers.onDisconnect?.(l),this.config.autoReconnect&&l.code!==1e3&&this.scheduleReconnect(e)},o=l=>{this.handlers.onError?.(l),s(new Error("WebSocket connection failed"))},c=l=>{this.handleMessage(l.data)};this.ws.addEventListener("open",i,{once:!0}),this.ws.addEventListener("close",n),this.ws.addEventListener("error",o,{once:!0}),this.ws.addEventListener("message",c)})}disconnect(){this.stopPingInterval(),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=null),this.ws&&(this.ws.close(1e3,"Client disconnected"),this.ws=null),this._isConnected=!1,this._roomId=null,this._scriptName=null,this._scriptVersion=null}createRoom(e={}){return this.createRoomDetailed(e).then(t=>t.state)}createRoomDetailed(e={}){return new Promise((t,s)=>{let r=i=>{if(i.type==="room_created"){let n=i.data;return this._roomId=n.room_id,this._state=n.initial_state,this._scriptName=n.script_name??null,this._scriptVersion=n.script_version??null,t({roomId:n.room_id,state:n.initial_state,scriptName:n.script_name,scriptVersion:n.script_version}),!0}else if(i.type==="error")return s(R(i)),!0;return!1};this.sendWithHandler("create_room",K(e),r,15e3,s)})}get scriptName(){return this._scriptName}get scriptVersion(){return this._scriptVersion}joinRoom(e,t){return new Promise((s,r)=>{let i=n=>{if(n.type==="room_joined"){let o=n.data;return this._roomId=o.room_id,this._state=o.initial_state,this._scriptName=null,this._scriptVersion=null,s(o.initial_state),!0}else if(n.type==="error")return r(R(n)),!0;return!1};this.sendWithHandler("join_room",{room_id:e,metadata:t},i,15e3,r)})}leaveRoom(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>r.type==="room_left"?(this._roomId=null,this._state=null,this._scriptName=null,this._scriptVersion=null,e(),!0):r.type==="error"?(t(R(r)),!0):!1;this.sendWithHandler("leave_room",{},s,15e3,t)})}sendAction(e){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});this.send("action",{type:e.type,data:e.data,client_timestamp:e.clientTimestamp??Date.now(),sequence:this.actionSequence++})}sendChat(e){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});this.send("chat",{message:e})}requestState(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>{if(r.type==="state"){let i=r.data;return this._state=i,e(i),!0}else if(r.type==="error")return t(R(r)),!0;return!1};this.sendWithHandler("get_state",{},s,15e3,t)})}listRooms(){return new Promise((e,t)=>{let s=r=>{if(r.type==="room_list"){let i=r.data;return e(i.rooms),!0}else if(r.type==="error")return t(R(r)),!0;return!1};this.sendWithHandler("list_rooms",{},s,15e3,t)})}ping(){return new Promise((e,t)=>{let s=Date.now(),r=i=>{if(i.type==="pong"){let n=i.data,o=Date.now()-n.clientTimestamp;return this.handlers.onPong?.(n),e(o),!0}else if(i.type==="error")return t(R(i)),!0;return!1};this.sendWithHandler("ping",{timestamp:s},r,15e3,t)})}buildConnectionUrl(e){let s=this.config.gameServerUrl.replace(/^http/,"ws"),r=new URLSearchParams;if(!this.config.clientId)throw new Error("cb.game: clientId is required to build a game connection URL. Pass it via `cb.game.createClient({ appId, clientId })`.");if(r.set("client_id",this.config.clientId),e&&r.set("room_id",e),this.config.publicKey&&r.set("public_key",this.config.publicKey),this.config.accessToken&&r.set("token",this.config.accessToken),!this.config.appId)throw new Error("cb.game: appId is required to build a game connection URL");return`${s}/v1/game/${this.config.appId}/ws?${r.toString()}`}send(e,t,s){if(!this.ws||this.ws.readyState!==WebSocket.OPEN)throw new Error("WebSocket is not connected");this.ws.send(JSON.stringify({type:e,data:t,msg_id:s}))}sendWithHandler(e,t,s,r=15e3,i){let n=`${e}-${++this.msgIdCounter}`,o=null,c=()=>{this.ws?.removeEventListener("message",l),o&&(clearTimeout(o),o=null)},l=d=>{try{let u=JSON.parse(d.data);if(u.msg_id&&u.msg_id!==n)return;s(u)&&c()}catch{}};this.ws?.addEventListener("message",l),o=setTimeout(()=>{c();let d=new v({code:"TIMEOUT",message:`Request '${e}' timed out after ${r}ms`});i?.(d),this.handlers.onError?.(d)},r);try{this.send(e,t,n)}catch(d){c();let u=d instanceof Error?d:new Error(String(d));i?.(u)}}handleMessage(e){try{let t=JSON.parse(e);switch(t.type){case"delta":this.handleDelta(t);break;case"state":this._state=t.data,this.handlers.onStateUpdate?.(this._state);break;case"player_event":this.handlePlayerEvent(t);break;case"chat":this.handlers.onChat?.({roomId:t.room_id||"",clientId:t.client_id||"",userId:t.user_id,message:t.message||"",serverTime:t.server_time||0});break;case"error":this.handlers.onError?.(R(t));break;case"sync_lost":this.handleSyncLost(t);break;case"room_stale":this.handlers.onRoomStale?this.handlers.onRoomStale({reason:t.reason||"unknown",roomId:t.room_id||"",scriptId:t.script_id,scriptVersion:t.script_version,serverTime:t.server_time||0}):console.warn("[connect-base game] room_stale received but onRoomStale handler not set:",t.reason);break;default:this.handlers.onMessage?.(t);break}}catch{console.error("Failed to parse game message:",e)}}handleSyncLost(e){if(this.handlers.onSyncLost?.({roomId:e.room_id||"",tick:e.tick||0,hint:e.hint||"",serverTime:e.server_time||0}),this.resyncInFlight)return;let t=Date.now();t-this.lastResyncAt<tt||(this.resyncInFlight=!0,this.lastResyncAt=t,this.requestState().catch(s=>{console.warn("[connect-base game] sync_lost resync failed:",s)}).finally(()=>{this.resyncInFlight=!1}))}handleDelta(e){let t=e.delta;if(!t)return;let s={fromVersion:t.from_version,toVersion:t.to_version,changes:t.changes.map(r=>({path:r.path,operation:r.operation,value:r.value,oldValue:r.old_value})),tick:t.tick};if(this._state){for(let r of s.changes)this.applyChange(r);this._state.version=s.toVersion}if(this.handlers.onAction){for(let r of s.changes)if(r.path.startsWith("actions.")&&r.operation==="set"&&r.value){let i=r.value;this.handlers.onAction({type:i.type||"",clientId:i.client_id||"",data:i.data,timestamp:i.timestamp||0})}}this.handlers.onDelta?.(s)}applyChange(e){if(!this._state)return;let t=e.path.split("."),s=this._state.state;for(let i=0;i<t.length-1;i++){let n=t[i];n in s||(s[n]={}),s=s[n]}let r=t[t.length-1];e.operation==="delete"?delete s[r]:s[r]=e.value}handlePlayerEvent(e){let t={clientId:e.player?.client_id||"",userId:e.player?.user_id,joinedAt:e.player?.joined_at||0,metadata:e.player?.metadata};e.event==="joined"?this.handlers.onPlayerJoined?.(t):e.event==="left"&&this.handlers.onPlayerLeft?.(t)}scheduleReconnect(e){if(this.reconnectAttempts>=(this.config.maxReconnectAttempts??5)){console.error("Max reconnect attempts reached"),this.handlers.onError?.(new v({code:"MAX_RECONNECT_ATTEMPTS",message:"Maximum reconnection attempts reached"}));return}let t=Math.min((this.config.reconnectInterval??1e3)*2**this.reconnectAttempts,3e4);this.reconnectAttempts++;let s=e||this._roomId;this.reconnectTimer=setTimeout(async()=>{console.log(`Reconnecting... (attempt ${this.reconnectAttempts})`);try{if(await this.connect(),s){console.log(`Rejoining room ${s}...`);try{await this.joinRoom(s),console.log(`Successfully rejoined room ${s}`)}catch(r){console.error(`Failed to rejoin room ${s}:`,r),this.handlers.onError?.(new v({code:"REJOIN_FAILED",message:`Failed to rejoin room: ${r}`,roomId:s}))}}}catch{}},t)}startPingInterval(){this.pingInterval=setInterval(()=>{this.ping().catch(()=>{})},3e4)}stopPingInterval(){this.pingInterval&&(clearInterval(this.pingInterval),this.pingInterval=null)}},O=class{constructor(e,t,s){this.http=e,this.gameServerUrl=t||Ce().replace(/^ws/,"http"),this.appId=s,this.config=new L(e,s)}createClient(e){return new G({...e,gameServerUrl:this.gameServerUrl.replace(/^http/,"ws"),appId:e.appId??this.appId,publicKey:this.http.getPublicKey(),accessToken:this.http.getAccessToken()})}async listRooms(e){let t=e||this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/rooms`,{headers:this.getHeaders()});if(!s.ok)throw new m(s.status,`Failed to list rooms: ${s.statusText}`,"GAME_LIST_ROOMS_FAILED");return(await s.json()).rooms}async getRoom(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/rooms/${e}`,{headers:this.getHeaders()});if(!s.ok)throw new m(s.status,`Failed to get room: ${s.statusText}`,"GAME_GET_ROOM_FAILED");return(await s.json()).room}async createRoom(e,t={}){throw new Error("cb.game.createRoom is not yet publicly available \u2014 use the admin console or request a backend public route.")}async deleteRoom(e){throw new Error("cb.game.deleteRoom is not yet publicly available \u2014 use the admin console or request a backend public route.")}async joinSpectator(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/rooms/${e}/spectators`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({user_id:t})});if(!r.ok)throw new Error(`Failed to join spectator: ${r.statusText}`);return r.json()}async leaveSpectator(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/rooms/${e}/spectators/${t}`,{method:"DELETE",headers:this.getHeaders()});if(!r.ok)throw new Error(`Failed to leave spectator: ${r.statusText}`)}async getSpectators(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/rooms/${e}/spectators`,{headers:this.getHeaders()});if(!s.ok)throw new Error(`Failed to get spectators: ${s.statusText}`);return(await s.json()).spectators||[]}async joinVoiceChannel(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/voice/rooms/${e}/join`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({player_id:t})});if(!r.ok)throw new Error(`Failed to join voice channel: ${r.statusText}`);return r.json()}async leaveVoiceChannel(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/voice/rooms/${e}/leave`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({player_id:t})});if(!r.ok)throw new Error(`Failed to leave voice channel: ${r.statusText}`)}async setMute(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/voice/mute`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({player_id:e,muted:t})});if(!r.ok)throw new Error(`Failed to set mute: ${r.statusText}`)}async listReplays(e){let t=this.appId||"",s=`${this.gameServerUrl}/v1/game/${t}/replays`;e&&(s+=`?room_id=${e}`);let r=await fetch(s,{headers:this.getHeaders()});if(r.status===404)throw new Error("cb.game.listReplays: replay storage is not configured on this server (REPLAY_STORAGE_PATH unset).");if(!r.ok)throw new Error(`Failed to list replays: ${r.statusText}`);return(await r.json()).replays||[]}async getReplay(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/replays/${e}`,{headers:this.getHeaders()});if(s.status===404)throw new Error("cb.game.getReplay: replay not found or replay storage unconfigured.");if(!s.ok)throw new Error(`Failed to get replay: ${s.statusText}`);return s.json()}async downloadReplay(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/replays/${e}/download`,{headers:this.getHeaders()});if(s.status===404)throw new Error("cb.game.downloadReplay: replay not found or replay storage unconfigured.");if(!s.ok)throw new Error(`Failed to download replay: ${s.statusText}`);return s.arrayBuffer()}async getReplayHighlights(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/replays/${e}/highlights`,{headers:this.getHeaders()});if(s.status===404)throw new Error("cb.game.getReplayHighlights: replay not found or replay storage unconfigured.");if(!s.ok)throw new Error(`Failed to get highlights: ${s.statusText}`);return(await s.json()).highlights||[]}getHeaders(){let e={},t=this.http.getPublicKey();t&&(e["X-Public-Key"]=t);let s=this.http.getAccessToken();return s&&(e.Authorization=`Bearer ${s}`),e}async gameFetch(e,t,s,r="GAME_REQUEST_FAILED"){let i={method:e,headers:{...this.getHeaders()}};s!==void 0&&(i.headers["Content-Type"]="application/json",i.body=JSON.stringify(s));let n=await fetch(`${this.gameServerUrl}${t}`,i);if(!n.ok){let c=r,l=`${e} ${t} failed: ${n.statusText}`;try{let d=await n.json();d&&typeof d.error=="string"&&(l=d.error,c=d.error)}catch{}throw new m(n.status,l,c)}if(!(n.status===204||!(n.headers.get("content-type")||"").includes("application/json")))return n.json()}async enqueueMatch(e,t,s,r,i){return this.gameFetch("POST",`/v1/game/${e}/matchqueue/${t}/tickets`,{ticket_id:s,attributes:r,ttl_sec:i??0},"GAME_ENQUEUE_MATCH_FAILED")}async listMatchqueue(e,t){return this.gameFetch("GET",`/v1/game/${e}/matchqueue/${t}`,void 0,"GAME_LIST_MATCHQUEUE_FAILED")}async cancelMatch(e,t,s){await this.gameFetch("DELETE",`/v1/game/${e}/matchqueue/${t}/tickets/${s}`,void 0,"GAME_CANCEL_MATCH_FAILED")}async submitScore(e,t,s,r,i="set"){return this.gameFetch("POST",`/v1/game/${e}/leaderboards/${t}/scores`,{member:s,score:r,mode:i},"GAME_SUBMIT_SCORE_FAILED")}async getTopScores(e,t,s=10){return this.gameFetch("GET",`/v1/game/${e}/leaderboards/${t}/top?n=${s}`,void 0,"GAME_GET_TOP_SCORES_FAILED")}async getMemberRank(e,t,s){return this.gameFetch("GET",`/v1/game/${e}/leaderboards/${t}/members/${s}`,void 0,"GAME_GET_MEMBER_RANK_FAILED")}async getRankAround(e,t,s,r=5,i=5){return this.gameFetch("GET",`/v1/game/${e}/leaderboards/${t}/around/${s}?above=${r}&below=${i}`,void 0,"GAME_GET_RANK_AROUND_FAILED")}async resetLeaderboard(e,t){await this.gameFetch("DELETE",`/v1/game/${e}/leaderboards/${t}`,void 0,"GAME_RESET_LEADERBOARD_FAILED")}async removeFromLeaderboard(e,t,s){await this.gameFetch("DELETE",`/v1/game/${e}/leaderboards/${t}/members/${s}`,void 0,"GAME_REMOVE_FROM_LEADERBOARD_FAILED")}async uploadScript(e,t,s){return this.gameFetch("POST",`/v1/game/${e}/scripts`,{name:t,code:s},"GAME_UPLOAD_SCRIPT_FAILED")}async listScripts(e){return this.gameFetch("GET",`/v1/game/${e}/scripts`,void 0,"GAME_LIST_SCRIPTS_FAILED")}async getScript(e,t){return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}`,void 0,"GAME_GET_SCRIPT_FAILED")}async listScriptVersions(e,t){return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}/versions`,void 0,"GAME_LIST_SCRIPT_VERSIONS_FAILED")}async activateScript(e,t,s){return this.gameFetch("POST",`/v1/game/${e}/scripts/${t}/activate`,{version:s??0},"GAME_ACTIVATE_SCRIPT_FAILED")}async rollbackScript(e,t){return this.gameFetch("POST",`/v1/game/${e}/scripts/${t}/rollback`,{},"GAME_ROLLBACK_SCRIPT_FAILED")}async deactivateScript(e,t){await this.gameFetch("POST",`/v1/game/${e}/scripts/${t}/deactivate`,{},"GAME_DEACTIVATE_SCRIPT_FAILED")}async deleteScript(e,t){await this.gameFetch("DELETE",`/v1/game/${e}/scripts/${t}`,void 0,"GAME_DELETE_SCRIPT_FAILED")}async getScriptLogs(e,t,s={}){let r=new URLSearchParams;typeof s.since=="number"&&r.set("since",String(s.since)),typeof s.limit=="number"&&r.set("limit",String(s.limit));let i=r.toString();return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}/logs${i?`?${i}`:""}`,void 0,"GAME_GET_SCRIPT_LOGS_FAILED")}async getScriptMetrics(e,t){return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}/metrics`,void 0,"GAME_GET_SCRIPT_METRICS_FAILED")}};async function Ee(a){if(typeof Blob<"u"&&a instanceof Blob){let s=await a.arrayBuffer(),r="name"in a?a.name:void 0;return{data:xe(new Uint8Array(s)),mimeType:a.type||"",defaultName:r}}let e=a;if(!e||e.data===void 0)throw new Error("addDocumentFromFile: file must be a Blob/File or { data, mimeType?, name? }");let t=e.data instanceof Uint8Array?e.data:new Uint8Array(e.data);return{data:xe(t),mimeType:e.mimeType??"",defaultName:e.name}}function xe(a){let e=globalThis;if(e.Buffer)return e.Buffer.from(a).toString("base64");let t=8192,s="";for(let r=0;r<a.length;r+=t){let i=a.subarray(r,Math.min(r+t,a.length));s+=String.fromCharCode.apply(null,Array.from(i))}return btoa(s)}var Y=class{constructor(e){this.http=e}async addDocument(e,t){return this.http.post(`/v1/public/knowledge-bases/${e}/documents`,t)}async updateDocument(e,t,s){return this.http.put(`/v1/public/knowledge-bases/${e}/documents/${t}`,s)}async updateDocumentFromFile(e,t,s,r){let{data:i,mimeType:n}=await Ee(s);return this.updateDocument(e,t,{name:r?.name,file_content:i,mime_type:n,metadata:r?.metadata})}async addDocumentFromFile(e,t,s){let{data:r,mimeType:i,defaultName:n}=await Ee(t),o=s?.name??n??"document";return this.addDocument(e,{name:o,source_type:"file",file_content:r,mime_type:i,metadata:s?.metadata})}async listDocuments(e){return this.http.get(`/v1/public/knowledge-bases/${e}/documents`)}async deleteDocument(e,t){await this.http.delete(`/v1/public/knowledge-bases/${e}/documents/${t}`)}async search(e,t){return this.http.post(`/v1/public/knowledge-bases/${e}/search`,t)}async searchGet(e,t,s){let r=new URLSearchParams({query:t});return s&&r.append("top_k",String(s)),this.http.get(`/v1/public/knowledge-bases/${e}/search?${r.toString()}`)}};var D=class{constructor(){this._webSpeechRecognition=null;this.clipboard={writeText:async e=>{this.getPlatform()==="desktop"&&window.NativeBridge?.clipboard?await window.NativeBridge.clipboard.writeText(e):await navigator.clipboard.writeText(e)},readText:async()=>this.getPlatform()==="desktop"&&window.NativeBridge?.clipboard?window.NativeBridge.clipboard.readText():navigator.clipboard.readText(),writeHTML:async e=>{window.NativeBridge?.clipboard?.writeHTML?await window.NativeBridge.clipboard.writeHTML(e):await navigator.clipboard.writeText(e)},writeImage:async e=>{if(window.NativeBridge?.clipboard?.writeImage)await window.NativeBridge.clipboard.writeImage(e);else throw new Error("Image clipboard not supported on this platform")},readImage:async()=>window.NativeBridge?.clipboard?.readImage?window.NativeBridge.clipboard.readImage():null};this.filesystem={pickFile:async e=>{if(this.getPlatform()==="desktop"&&window.NativeBridge?.filesystem?.showOpenDialog){let s=await window.NativeBridge.filesystem.showOpenDialog({properties:e?.multiple?["openFile","multiSelections"]:["openFile"],filters:e?.filters});return s.canceled||!s.filePaths.length?null:s.filePaths.map(r=>new File([],r.split("/").pop()||"file"))}return new Promise(s=>{let r=document.createElement("input");r.type="file",e?.accept&&(r.accept=e.accept),e?.multiple&&(r.multiple=!0),r.onchange=()=>{s(r.files?Array.from(r.files):null)},r.click()})},saveFile:async(e,t,s)=>{let r=this.getPlatform();if(r==="desktop"&&window.NativeBridge?.filesystem){let c=await window.NativeBridge.filesystem.showSaveDialog?.({defaultPath:t,filters:s?.filters});if(c?.canceled||!c?.filePath)return!1;let l=e instanceof Blob?await e.text():e;return(await window.NativeBridge.filesystem.writeFile(c.filePath,l)).success}if(r==="mobile"&&window.NativeBridge?.filesystem){let c=e instanceof Blob?await e.text():e;return(await window.NativeBridge.filesystem.writeFile(t,c)).success}let i=e instanceof Blob?e:new Blob([e],{type:"text/plain"}),n=URL.createObjectURL(i),o=document.createElement("a");return o.href=n,o.download=t,o.click(),URL.revokeObjectURL(n),!0},readFile:async e=>{if(window.NativeBridge?.filesystem?.readFile){let t=await window.NativeBridge.filesystem.readFile(e);return t.success?t.content??null:null}return null},exists:async e=>window.NativeBridge?.filesystem?.exists?window.NativeBridge.filesystem.exists(e):!1};this.camera={takePicture:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.camera?window.NativeBridge.camera.takePicture(e):new Promise(s=>{let r=document.createElement("input");r.type="file",r.accept="image/*",r.capture="environment",r.onchange=async()=>{let i=r.files?.[0];if(!i){s(null);return}let n=new FileReader;n.onload=()=>{let o=new Image;o.onload=()=>{s({uri:URL.createObjectURL(i),base64:e?.base64?n.result.split(",")[1]:void 0,width:o.width,height:o.height})},o.src=n.result},n.readAsDataURL(i)},r.click()}),pickImage:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.camera?window.NativeBridge.camera.pickImage(e):new Promise(s=>{let r=document.createElement("input");r.type="file",r.accept="image/*",e?.multiple&&(r.multiple=!0),r.onchange=async()=>{let i=r.files;if(!i?.length){s(null);return}let n=[];for(let o of Array.from(i)){let c=await new Promise(l=>{let d=new FileReader;d.onload=()=>{let u=new Image;u.onload=()=>{l({uri:URL.createObjectURL(o),base64:e?.base64?d.result.split(",")[1]:void 0,width:u.width,height:u.height})},u.src=d.result},d.readAsDataURL(o)});n.push(c)}s(n)},r.click()})};this.location={getCurrentPosition:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.location?window.NativeBridge.location.getCurrentPosition(e):new Promise((s,r)=>{navigator.geolocation.getCurrentPosition(i=>{s({latitude:i.coords.latitude,longitude:i.coords.longitude,altitude:i.coords.altitude,accuracy:i.coords.accuracy,timestamp:i.timestamp})},r,{enableHighAccuracy:e?.accuracy==="high",timeout:1e4,maximumAge:0})}),watchPosition:async(e,t)=>{let s=this.getPlatform(),r=window.NativeBridge;if(s==="mobile"&&r?.location?.watchPosition){let{watchId:n}=await r.location.watchPosition(t),o=c=>{let l=c.detail;!l||l.watchId&&l.watchId!==n||e({latitude:l.latitude,longitude:l.longitude,altitude:l.altitude,accuracy:l.accuracy,timestamp:l.timestamp})};return window.addEventListener("nativeLocationUpdate",o),{watchId:n,clear:async()=>{window.removeEventListener("nativeLocationUpdate",o),await r.location?.stopWatch(n)}}}let i=navigator.geolocation.watchPosition(n=>e({latitude:n.coords.latitude,longitude:n.coords.longitude,altitude:n.coords.altitude,accuracy:n.coords.accuracy,timestamp:n.timestamp}),void 0,{enableHighAccuracy:t?.accuracy==="high",timeout:1e4,maximumAge:0});return{watchId:String(i),clear:async()=>navigator.geolocation.clearWatch(i)}}};this.push={getToken:async()=>this.getPlatform()==="mobile"&&window.NativeBridge?.push?window.NativeBridge.push.getToken():null,requestPermission:async()=>this.notification.requestPermission(),scheduleLocal:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.push?(await window.NativeBridge.push.scheduleLocal(e)).notificationId:null,setBadgeCount:async e=>{let t=window.NativeBridge?.push?.setBadgeCount;return t?(await t(e)).success:!1}};this.notification={show:async e=>{let t=this.getPlatform();return t==="desktop"&&window.NativeBridge?.notification?(await window.NativeBridge.notification.show(e)).success:t==="mobile"&&window.NativeBridge?.push?.scheduleLocal?await this.notification.requestPermission()?(await window.NativeBridge.push.scheduleLocal({title:e.title,body:e.body,trigger:null}),!0):!1:!("Notification"in window)||Notification.permission!=="granted"&&await Notification.requestPermission()!=="granted"?!1:(new Notification(e.title,{body:e.body,icon:e.icon,silent:e.silent}),!0)},requestPermission:async()=>this.getPlatform()==="mobile"&&window.NativeBridge?.push?(await window.NativeBridge.push.requestPermission()).granted:"Notification"in window?await Notification.requestPermission()==="granted":!1};this.shell={openExternal:async e=>{let t=this.getPlatform();return t==="desktop"&&window.NativeBridge?.shell?(await window.NativeBridge.shell.openExternal(e)).success:t==="mobile"&&window.NativeBridge?.browser?(await window.NativeBridge.browser.openExternal(e)).success:(window.open(e,"_blank"),!0)}};this.window={minimize:async()=>{await window.NativeBridge?.window?.minimize()},maximize:async()=>{await window.NativeBridge?.window?.maximize()},unmaximize:async()=>{await window.NativeBridge?.window?.unmaximize()},close:async()=>{await window.NativeBridge?.window?.close()},isMaximized:async()=>await window.NativeBridge?.window?.isMaximized()??!1,setTitle:async e=>{window.NativeBridge?.window?await window.NativeBridge.window.setTitle(e):document.title=e},setFullScreen:async e=>{window.NativeBridge?.window?await window.NativeBridge.window.setFullScreen(e):document.documentElement.requestFullscreen&&(e?await document.documentElement.requestFullscreen():document.exitFullscreen&&await document.exitFullscreen())}};this.system={getInfo:async()=>window.NativeBridge?.system?window.NativeBridge.system.getInfo():null,getMemory:async()=>window.NativeBridge?.system?window.NativeBridge.system.getMemory():null};this.biometric={isAvailable:async()=>window.NativeBridge?.biometric?window.NativeBridge.biometric.isAvailable():null,authenticate:async e=>window.NativeBridge?.biometric?window.NativeBridge.biometric.authenticate(e):null};this.secureStore={setItem:async(e,t)=>window.NativeBridge?.secureStore?(await window.NativeBridge.secureStore.setItem(e,t)).success:(localStorage.setItem(e,t),!0),getItem:async e=>window.NativeBridge?.secureStore?(await window.NativeBridge.secureStore.getItem(e)).value:localStorage.getItem(e),deleteItem:async e=>window.NativeBridge?.secureStore?(await window.NativeBridge.secureStore.deleteItem(e)).success:(localStorage.removeItem(e),!0)};this.admob={showInterstitial:async()=>window.NativeBridge?.admob?(await window.NativeBridge.admob.showInterstitial()).shown:!1,showRewarded:async()=>window.NativeBridge?.admob?(await window.NativeBridge.admob.showRewarded()).rewarded:!1};this.speech={isAvailable:async()=>this.getPlatform()==="mobile"&&window.NativeBridge?.speech?(await window.NativeBridge.speech.isAvailable()).available:typeof window>"u"?!1:"SpeechRecognition"in window||"webkitSpeechRecognition"in window,recognize:async e=>{if(this.getPlatform()==="mobile"&&window.NativeBridge?.speech){let r;e?.onPartial&&(r=i=>{let n=i.detail;n?.transcript&&e.onPartial?.(n.transcript)},window.addEventListener("nativeSpeechPartial",r));try{return await window.NativeBridge.speech.recognize(e)}finally{r&&window.removeEventListener("nativeSpeechPartial",r)}}let t=window,s=t.SpeechRecognition||t.webkitSpeechRecognition;if(!s)throw new Error("\uC774 \uD50C\uB7AB\uD3FC\uC5D0\uC11C\uB294 \uC74C\uC131 \uC778\uC2DD\uC744 \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uD328\uD0A4\uC9D5 \uC571\uC5D0\uC11C\uB294 speech \uB124\uC774\uD2F0\uBE0C \uAE30\uB2A5\uC744 \uD65C\uC131\uD654\uD558\uC138\uC694.");return new Promise((r,i)=>{let n=new s;this._webSpeechRecognition=n,n.lang=e?.lang??"en-US",n.interimResults=e?.interim??!0,n.continuous=e?.continuous??!1;let o="";n.onresult=c=>{let l="";for(let d=c.resultIndex;d<c.results.length;d++){let u=c.results[d];u.isFinal?o+=u[0].transcript:l+=u[0].transcript}l&&e?.onPartial&&e.onPartial(l)},n.onerror=c=>{this._webSpeechRecognition=null,i(new Error(c?.error||"\uC74C\uC131 \uC778\uC2DD \uC624\uB958"))},n.onend=()=>{this._webSpeechRecognition=null,r({transcript:o.trim(),isFinal:!0})},n.start()})},stop:async()=>{if(this.getPlatform()==="mobile"&&window.NativeBridge?.speech){await window.NativeBridge.speech.stop();return}if(this._webSpeechRecognition)try{this._webSpeechRecognition.stop()}catch{}}}}getPlatform(){if(typeof window>"u")return"web";let e=window.NativeBridge;return e?.platform==="electron"?"desktop":e?.platform==="react-native"||e?.platform==="ios"||e?.platform==="android"||e?.camera||window.ReactNativeWebView?"mobile":"web"}isNativeApp(){return this.getPlatform()!=="web"}async getAppInfo(){let e=this.bridge?.app?.getInfo;return e?e():null}hasFeature(e){return typeof window>"u"?!1:!!window.NativeBridge?.[e]}get bridge(){if(!(typeof window>"u"))return window.NativeBridge}};function Ae(){if(typeof window>"u")return null;let a=window.NativeBridge?.oauth;return!a||typeof a.signIn!="function"||typeof a.getCallbackScheme!="function"?null:a}function V(){if(typeof navigator>"u")return null;let a=navigator.userAgent||"";return/KAKAOTALK/i.test(a)?{type:"kakaotalk",ua:a}:/Line\//i.test(a)?{type:"line",ua:a}:/Instagram/i.test(a)?{type:"instagram",ua:a}:/FBAN|FBAV|FB_IAB/i.test(a)?{type:"facebook",ua:a}:/NAVER\(inapp/i.test(a)?{type:"naverapp",ua:a}:/MicroMessenger/i.test(a)?{type:"wechat",ua:a}:null}function Z(a){if(typeof window>"u")return!1;let e=V();if(!e)return!1;let t=a??window.location.href,s=encodeURIComponent(t);switch(e.type){case"kakaotalk":return window.location.href=`kakaotalk://web/openExternal?url=${s}`,!0;case"line":return window.location.href=`line://nv/openURL?url=${s}`,!0;default:return!1}}var ee=class{constructor(e){this.http=e;this.bootConsumePromise=null}async getEnabledProviders(){return this.http.get("/v1/public/oauth/providers")}async signIn(e,t,s,r){return this.startCentralOAuth(e,t,s,r?.createIfNotExists?"signup":"signin")}async signUp(e,t,s){return this.startCentralOAuth(e,t,s,"signup")}async startCentralOAuth(e,t,s,r){let i=Ae();if(i){let l=i.getCallbackScheme(),d=new URLSearchParams({app_callback:l,intent:r});s&&d.append("state",s);let u=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${d.toString()}`),{url:p}=await i.signIn(u.authorization_url,l),h=new URL(p),f=new URL(t,window.location.href);h.searchParams.forEach((b,g)=>{f.searchParams.set(g,b)}),window.location.href=f.toString();return}let n=V();if(n&&(e==="google"||e==="apple")){if(Z())return;throw new Error(`\uD604\uC7AC ${n.type==="kakaotalk"?"\uCE74\uCE74\uC624\uD1A1":n.type==="line"?"\uB77C\uC778":"\uC778\uC571"} \uBE0C\uB77C\uC6B0\uC800\uC5D0\uC11C\uB294 Google/Apple \uB85C\uADF8\uC778\uC774 \uC81C\uD55C\uB429\uB2C8\uB2E4. \uC6B0\uCE21 \uC0C1\uB2E8 \uBA54\uB274\uC5D0\uC11C "\uB2E4\uB978 \uBE0C\uB77C\uC6B0\uC800\uB85C \uC5F4\uAE30"\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.`)}let o=new URLSearchParams({app_callback:t,intent:r});s&&o.append("state",s);let c=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${o.toString()}`);window.location.href=c.authorization_url}async signInWithPopup(e,t,s={}){let r=s.intent??"signin",i=Ae();if(i){let f=i.getCallbackScheme(),b=new URLSearchParams({app_callback:f,intent:r}),g=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${b.toString()}`),{url:_}=await i.signIn(g.authorization_url,f),w=new URL(_),S=w.searchParams.get("error");if(S)throw new Error(S);let y=w.searchParams.get("access_token")||"",P=w.searchParams.get("refresh_token")||"",x=w.searchParams.get("member_id")||"";if(!y||!P||!x)throw new Error("OAuth \uC751\uB2F5\uC5D0 \uD1A0\uD070\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.");return this.http.setTokens(y,P),{access_token:y,refresh_token:P,member_id:x,is_new_member:w.searchParams.get("is_new_member")==="true"}}let n=V();if(n&&(e==="google"||e==="apple"))throw Z()?new Error("\uC678\uBD80 \uBE0C\uB77C\uC6B0\uC800\uB85C \uC774\uB3D9\uD588\uC2B5\uB2C8\uB2E4. \uB2E4\uC2DC \uC2DC\uB3C4\uD574\uC8FC\uC138\uC694."):new Error(`\uD604\uC7AC ${n.type==="kakaotalk"?"\uCE74\uCE74\uC624\uD1A1":n.type==="line"?"\uB77C\uC778":"\uC778\uC571"} \uBE0C\uB77C\uC6B0\uC800\uC5D0\uC11C\uB294 Google/Apple \uB85C\uADF8\uC778\uC774 \uC81C\uD55C\uB429\uB2C8\uB2E4. \uC678\uBD80 \uBE0C\uB77C\uC6B0\uC800\uC5D0\uC11C \uC5F4\uC5B4\uC8FC\uC138\uC694.`);let o=new URLSearchParams;o.set("intent",r),t&&o.set("app_callback",t);let c=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${o.toString()}`),l=500,d=600,u=window.screenX+(window.outerWidth-l)/2,p=window.screenY+(window.outerHeight-d)/2,h=window.open(c.authorization_url,"oauth-popup",`width=${l},height=${d},left=${u},top=${p}`);if(!h)throw new Error("\uD31D\uC5C5\uC774 \uCC28\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uD31D\uC5C5 \uCC28\uB2E8\uC744 \uD574\uC81C\uD574\uC8FC\uC138\uC694.");return new Promise((f,b)=>{let g=!1,_=()=>{g=!0,window.removeEventListener("message",w),clearInterval(S),clearTimeout(y)},w=async P=>{if(P.data?.type!=="oauth-callback"||g)return;if(_(),P.data.error){b(new Error(P.data.error));return}let x=P.data.email,be={member_id:P.data.member_id,access_token:P.data.access_token,refresh_token:P.data.refresh_token,is_new_member:P.data.is_new_member==="true"||P.data.is_new_member===!0,...typeof x=="string"&&x.length>0?{email:x}:{}};this.http.setTokens(be.access_token,be.refresh_token);try{await this.http.bootstrapRefreshCookie()}catch{}f(be)};window.addEventListener("message",w);let S=setInterval(()=>{try{h.closed&&(g||(_(),b(new Error("\uB85C\uADF8\uC778\uC774 \uCDE8\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4."))))}catch{clearInterval(S)}},500),y=setTimeout(()=>{if(!g){_();try{h.close()}catch{}b(new Error("\uB85C\uADF8\uC778 \uC2DC\uAC04\uC774 \uCD08\uACFC\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uB2E4\uC2DC \uC2DC\uB3C4\uD574\uC8FC\uC138\uC694."))}},18e4)})}async getCallbackResult(){let e=new URLSearchParams(window.location.search),t=e.get("error");if(t){let c={error:t};return window.opener&&(window.opener.postMessage({type:"oauth-callback",...c},"*"),window.close()),c}let s=e.get("access_token"),r=e.get("refresh_token"),i=e.get("member_id");if(!s||!r||!i)return null;let n=e.get("email"),o={access_token:s,refresh_token:r,member_id:i,is_new_member:e.get("is_new_member")==="true",...n?{email:n}:{},state:e.get("state")||void 0};return window.opener?(window.opener.postMessage({type:"oauth-callback",...o},"*"),window.close(),o):(this.bootConsumePromise&&await this.bootConsumePromise||(this.http.setTokens(s,r),await this.http.bootstrapRefreshCookie()),o)}consumeRedirectCallbackOnBoot(){return this.bootConsumePromise||(this.bootConsumePromise=this.doConsumeRedirectOnBoot()),this.bootConsumePromise}async doConsumeRedirectOnBoot(){try{if(typeof window>"u"||!window.location)return!1;let e=new URLSearchParams(window.location.search);if(e.get("error"))return!1;let t=e.get("access_token"),s=e.get("refresh_token"),r=e.get("member_id");return!t||!s||!r?!1:(this.http.setTokens(t,s),await this.http.bootstrapRefreshCookie(),!0)}catch{return!1}}async exchangeCodeFromCallback(){let e=new URLSearchParams(window.location.search),t=e.get("code");if(!t||e.get("error"))return null;let s=await this.http.post("/v1/auth/oauth/exchange",{code:t}),r={access_token:s.access_token,refresh_token:s.refresh_token,member_id:s.member_id,is_new_member:s.is_new_member,...s.email?{email:s.email}:{},state:e.get("state")||void 0};return window.opener?(window.opener.postMessage({type:"oauth-callback",...r},"*"),window.close(),r):(this.http.setTokens(r.access_token,r.refresh_token),await this.http.bootstrapRefreshCookie(),r)}};var te=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async prepare(e){let t=this.getPublicPrefix();return this.http.post(`${t}/payments/prepare`,e)}async createCheckoutSession(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/payments/checkout-session`,e);return k(s,{session_id:{type:"string"},session_url:{type:"string"}},"payment.createCheckoutSession"),s}async confirm(e){let t=this.getPublicPrefix();return this.http.post(`${t}/payments/confirm`,e)}async cancel(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/payments/cancel`,{payment_id:e,...t})}async getByOrderId(e){let t=this.getPublicPrefix();return this.http.get(`${t}/payments/orders/${e}`)}async list(e,t){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error('cb.payment.list() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["payment:read"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.');let s=new URLSearchParams;t?.status&&s.set("status",t.status),t?.mode&&s.set("mode",t.mode),t?.startDate&&s.set("start_date",t.startDate),t?.endDate&&s.set("end_date",t.endDate),t?.limit!==void 0&&s.set("limit",String(t.limit)),t?.offset!==void 0&&s.set("offset",String(t.offset));let r=s.toString();return this.http.get(`/v1/apps/${e}/payments${r?`?${r}`:""}`)}};var se=class{constructor(e){this.http=e}ensureServerAuth(e){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error(`cb.publicKey.${e}() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["publickey:read" | "publickey:manage"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.`)}async getPublicKeys(e){return this.ensureServerAuth("getPublicKeys"),this.http.get(`/v1/apps/${e}/public-keys`)}async createPublicKey(e,t){return this.ensureServerAuth("createPublicKey"),this.http.post(`/v1/apps/${e}/public-keys`,t)}async updatePublicKey(e,t,s){return this.ensureServerAuth("updatePublicKey"),this.http.patch(`/v1/apps/${e}/public-keys/${t}`,s)}async deletePublicKey(e,t){this.ensureServerAuth("deletePublicKey"),await this.http.delete(`/v1/apps/${e}/public-keys/${t}`)}};var re=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async registerDevice(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/push/devices`,e);return k(s,{device_token:{type:"string"}},"push.registerDevice"),s}async unregisterDevice(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/push/devices/${e}`)}async subscribeTopic(e,t){let s=this.getPublicPrefix(),r={topic_name:t};await this.http.post(`${s}/push/devices/${e}/topics/subscribe`,r)}async unsubscribeTopic(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/push/devices/${e}/topics/${t}/unsubscribe`)}async getVAPIDPublicKey(){let e=this.getPublicPrefix();return this.http.get(`${e}/push/vapid-public-key`)}async registerWebPush(e){let t=this.getPublicPrefix(),s;if("toJSON"in e){let i=e.toJSON();s={endpoint:i.endpoint||"",expirationTime:i.expirationTime,keys:{p256dh:i.keys?.p256dh||"",auth:i.keys?.auth||""}}}else s=e;let r={device_token:s.endpoint,platform:"web",device_id:this.generateDeviceId(),device_name:this.getBrowserName(),os_version:this.getOSInfo()};return this.http.post(`${t}/push/devices`,{...r,web_push_subscription:s})}async unregisterWebPush(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/push/devices/${encodeURIComponent(e)}`)}async sendToMembers(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("cb.push.sendToMembers() \uB294 User Secret Key(cb_sk_), \uCF58\uC194 JWT, \uB610\uB294 service_role(ctx.cbAdmin) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.");if(t.length===0)throw new Error("cb.push.sendToMembers(): memberIds \uAC00 \uBE44\uC5B4\uC788\uC2B5\uB2C8\uB2E4.");let r={target_type:"members",target_member_ids:t,title:s.title,body:s.body,...s.imageUrl!==void 0?{image_url:s.imageUrl}:{},...s.data!==void 0?{data:s.data}:{},...s.platforms!==void 0?{platforms:s.platforms}:{},...s.ttlSeconds!==void 0?{ttl:s.ttlSeconds}:{},...s.priority!==void 0?{priority:s.priority}:{},...s.clickAction!==void 0?{click_action:s.clickAction}:{},...s.scheduledAt!==void 0?{scheduled_at:s.scheduledAt}:{}};return this.http.post(`/v1/apps/${e}/push/send`,r)}async sendToTopic(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("cb.push.sendToTopic() \uB294 User Secret Key(cb_sk_), \uCF58\uC194 JWT, \uB610\uB294 service_role(ctx.cbAdmin) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.");if(!t)throw new Error("cb.push.sendToTopic(): topicName \uC774 \uBE44\uC5B4\uC788\uC2B5\uB2C8\uB2E4.");let r={topic_name:t,title:s.title,body:s.body,...s.imageUrl!==void 0?{image_url:s.imageUrl}:{},...s.data!==void 0?{data:s.data}:{},...s.platforms!==void 0?{platforms:s.platforms}:{},...s.ttlSeconds!==void 0?{ttl:s.ttlSeconds}:{},...s.priority!==void 0?{priority:s.priority}:{},...s.clickAction!==void 0?{click_action:s.clickAction}:{},...s.scheduledAt!==void 0?{scheduled_at:s.scheduledAt}:{}};return this.http.post(`/v1/apps/${e}/push/send-to-topic`,r)}async getStats(e){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error('cb.push.getStats() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["push:read"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.');return this.http.get(`/v1/apps/${e}/push/stats`)}generateDeviceId(){if(typeof window>"u"||typeof localStorage>"u")return`device_${Date.now()}_${Math.random().toString(36).substr(2,9)}`;let e="cb_push_device_id",t=localStorage.getItem(e);return t||(t=`web_${Date.now()}_${Math.random().toString(36).substr(2,9)}`,localStorage.setItem(e,t)),t}getBrowserName(){if(typeof navigator>"u")return"Unknown Browser";let e=navigator.userAgent;return e.includes("Chrome")&&!e.includes("Edg")?"Chrome":e.includes("Safari")&&!e.includes("Chrome")?"Safari":e.includes("Firefox")?"Firefox":e.includes("Edg")?"Edge":e.includes("Opera")||e.includes("OPR")?"Opera":"Unknown Browser"}getOSInfo(){if(typeof navigator>"u")return"Unknown OS";let e=navigator.userAgent;return e.includes("Windows")?"Windows":e.includes("Mac OS")?"macOS":e.includes("Linux")?"Linux":e.includes("Android")?"Android":e.includes("iOS")||e.includes("iPhone")||e.includes("iPad")?"iOS":"Unknown OS"}};var ie=class{constructor(e){this.http=e}async publish(e,t){return this.http.post(`/v1/public/queues/${e}/messages`,t)}async publishBatch(e,t){return this.http.post(`/v1/public/queues/${e}/messages/batch`,t)}async consume(e,t){let s=new URLSearchParams;t?.max_messages&&s.set("max_messages",String(t.max_messages)),t?.visibility_timeout&&s.set("visibility_timeout",String(t.visibility_timeout)),t?.auto_ack!==void 0&&s.set("auto_ack",String(t.auto_ack));let r=s.toString(),i=await this.http.get(`/v1/public/queues/${e}/messages${r?`?${r}`:""}`);return k(i,{messages:{type:"array"}},"queue.consume"),i}async ack(e,t,s){let r={message_ids:t,ack_token:s};return this.http.post(`/v1/public/queues/${e}/messages/ack`,r)}async nack(e,t,s){return this.http.post(`/v1/public/queues/${e}/messages/${t}/nack`,s||{})}async getInfo(e){return this.http.get(`/v1/public/queues/${e}`)}};var ne=class{constructor(e,t){this.ws=null;this.state="disconnected";this._connectionId=null;this._appId=null;this.activeTransport=null;this.sseFallbackActive=!1;this.sseSessions=new Map;this.options={maxRetries:5,retryInterval:1e3,userId:"",accessToken:"",timeout:3e4,debug:!1,fallback:"sse"};this.retryCount=0;this.pendingRequests=new Map;this.subscriptions=new Map;this.streamSessions=new Map;this.stateHandlers=[];this.errorHandlers=[];this.presenceHandlers=[];this.presenceSubscriptions=new Map;this.typingHandlers=new Map;this.readReceiptHandlers=new Map;this.connectPromise=null;this.http=e,this.socketUrl=t,this.clientId=this.generateClientId()}get connectionId(){return this._connectionId}get appId(){return this._appId}get transport(){return this.activeTransport}async connect(e={}){if(this.state!=="connected"){if(this.state==="connecting"&&this.connectPromise)return this.connectPromise;this.options={...this.options,...e},e.userId&&(this.userId=e.userId),this.connectPromise=this.doConnect();try{await this.connectPromise}catch(t){let s=!!(this.options.accessToken||this.http.getPublicKey());if(this.options.fallback!=="none"&&s)this.activateSseFallback(t);else throw t}finally{this.connectPromise=null}}}activateSseFallback(e){if(this.ws){try{this.ws.close()}catch{}this.ws=null}this.sseFallbackActive=!0,this.activeTransport="sse",this.state="connected",this.retryCount=0,this.log(`WS unavailable (${e instanceof Error?e.message:String(e)}); using SSE fallback transport for AI streaming`),this.notifyStateChange()}disconnect(){this.state="disconnected",this.notifyStateChange(),this.ws&&(this.ws.close(),this.ws=null),this.pendingRequests.forEach(e=>{clearTimeout(e.timeout),e.reject(new Error("Connection closed"))}),this.pendingRequests.clear(),this.subscriptions.clear(),this.streamSessions.forEach((e,t)=>{e.handlers.onError&&e.handlers.onError(new I({code:"service_unavailable",message:"\uC2E4\uC2DC\uAC04 \uC5F0\uACB0\uC774 \uC885\uB8CC\uB418\uC5B4 AI \uC2A4\uD2B8\uB9AC\uBC0D\uC774 \uC911\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC7AC\uC5F0\uACB0 \uD6C4 \uB2E4\uC2DC \uC2DC\uB3C4\uD574 \uC8FC\uC138\uC694.",retryable:!0,sessionId:t}))}),this.streamSessions.clear(),this.sseSessions.forEach(e=>{try{e.abort()}catch{}}),this.sseSessions.clear(),this.sseFallbackActive=!1,this.activeTransport=null,this.presenceHandlers=[],this.presenceSubscriptions.clear(),this.typingHandlers.clear(),this.readReceiptHandlers.clear(),this._connectionId=null,this._appId=null,this.retryCount=0,this.connectPromise=null}async subscribe(e,t={}){if(this.assertBidirectional("subscribe"),this.state!=="connected")throw new Error("Not connected. Call connect() first.");let s=this.generateRequestId(),r=await this.sendRequest({category:e,action:"subscribe",request_id:s}),i={category:r.category,persist:r.persist,historyCount:r.history_count,readReceipt:r.read_receipt},n=[];return this.subscriptions.set(e,{info:i,handlers:n}),{info:i,send:async(c,l)=>{await this.sendMessage(e,c,l)},getHistory:async c=>this.getHistory(e,c??t.historyLimit),unsubscribe:async()=>{await this.unsubscribe(e)},onMessage:c=>(n.push(c),()=>{let l=n.indexOf(c);l>-1&&n.splice(l,1)})}}async unsubscribe(e){if(this.state!=="connected")return;let t=this.generateRequestId();await this.sendRequest({category:e,action:"unsubscribe",request_id:t}),this.subscriptions.delete(e)}async sendMessage(e,t,s={}){if(this.assertBidirectional("sendMessage"),this.state!=="connected")throw new Error("Not connected");let i=s.includeSelf!==!1,n=this.generateRequestId();await this.sendRequest({category:e,action:"send",data:{data:t,broadcast:i},request_id:n})}async getHistory(e,t){if(this.assertBidirectional("getHistory"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId(),r=await this.sendRequest({category:e,action:"history",data:t?{limit:t}:void 0,request_id:s});return{category:r.category,messages:r.messages.map(i=>({id:i.id,category:i.category,from:i.from,data:i.data,sentAt:i.sent_at})),total:r.total}}async stream(e,t,s={}){if(this.state==="connected"&&this.activeTransport==="ws"&&this.ws?.readyState===WebSocket.OPEN)try{return this.streamViaWS(e,t,s)}catch(i){if(this.options.fallback==="none")throw i;this.log(`WS stream send failed (${i instanceof Error?i.message:String(i)}); falling back to SSE`)}if(this.options.fallback!=="none")return this.streamViaSSE(e,t,s);throw new Error("Not connected. Call connect() first.")}streamViaWS(e,t,s){let r=this.generateRequestId(),i=s.sessionId||this.generateRequestId();this.streamSessions.set(i,{handlers:t,requestId:r});try{this.sendRaw({category:"",action:"stream",data:{provider:s.provider,model:s.model,messages:e,system:s.system,temperature:s.temperature,max_tokens:s.maxTokens,session_id:i,metadata:s.metadata,mcp_group:s.mcpGroup},request_id:r})}catch(n){throw this.streamSessions.delete(i),n}return{sessionId:i,stop:async()=>{await this.stopStream(i)}}}streamViaSSE(e,t,s){let r=s.sessionId||this.generateRequestId(),i=new AbortController;return this.sseSessions.set(r,i),s.mcpGroup&&this.log("mcpGroup is not supported in SSE fallback mode; streaming without MCP tools"),this.log(`Streaming via SSE fallback (session ${r})`),this.runSseStream(r,e,t,s,i.signal),{sessionId:r,stop:async()=>{await this.stopStream(r)}}}async runSseStream(e,t,s,r,i){let n=Date.now(),o=0,c="",l,u={messages:r.system?[{role:"system",content:r.system},...t]:t,provider:r.provider,model:r.model,temperature:r.temperature,maxTokens:r.maxTokens};try{let p=await this.http.fetchRaw("/v1/public/ai/chat/stream",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(u),signal:i});if(!p.ok){let b=await p.json().catch(()=>({error:"stream_failed"}));s.onError?.(C(b,{message:"Stream request failed",sessionId:e,status:p.status}));return}if(l=p.body?.getReader(),!l){s.onError?.(new I({code:"stream_failed",message:"ReadableStream not supported",retryable:!1,sessionId:e}));return}let h=new TextDecoder,f="";for(;;){let{done:b,value:g}=await l.read();if(b)break;f+=h.decode(g,{stream:!0});let _=f.split(`
3
- `);f=_.pop()||"";for(let w of _){if(!w.startsWith("data: "))continue;let S=w.slice(6).trim();if(S==="[DONE]"){s.onDone?.({sessionId:e,fullText:c,totalTokens:0,promptTokens:0,duration:Date.now()-n});return}try{let y=JSON.parse(S);if(y.error){s.onError?.(C(y,{sessionId:e}));return}if(y.type==="tool_start"){s.onToolCall?.(y.name||"",y.arguments||{},o);continue}if(y.type==="tool_end"){s.onToolResult?.(y.name||"",y.success!==!1,y.durationMs||0,o);continue}if(y.type==="sources"||y.type==="searching"||y.type==="heartbeat")continue;if(y.content&&(c+=y.content,s.onToken?.(y.content,o++)),y.done){s.onDone?.({sessionId:e,fullText:c,totalTokens:0,promptTokens:0,duration:Date.now()-n});return}}catch{}}}}catch(p){i.aborted||p instanceof DOMException&&p.name==="AbortError"||typeof p=="object"&&p!==null&&p.name==="AbortError"||s.onError?.(new I({code:"service_unavailable",message:p instanceof Error?p.message:String(p)||"AI \uC2A4\uD2B8\uB9AC\uBC0D \uC694\uCCAD\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4",retryable:!0,sessionId:e}))}finally{if(this.sseSessions.delete(e),l)try{await l.cancel()}catch{}}}async stopStream(e){let t=this.sseSessions.get(e);if(t){t.abort(),this.sseSessions.delete(e);return}if(this.state!=="connected"||!this.ws||this.ws.readyState!==WebSocket.OPEN){this.streamSessions.delete(e);return}let s=this.generateRequestId();this.sendRaw({category:"",action:"stream_stop",data:{session_id:e},request_id:s}),this.streamSessions.delete(e)}getState(){return this.state}isConnected(){return this.state==="connected"}onStateChange(e){return this.stateHandlers.push(e),()=>{let t=this.stateHandlers.indexOf(e);t>-1&&this.stateHandlers.splice(t,1)}}onError(e){return this.errorHandlers.push(e),()=>{let t=this.errorHandlers.indexOf(e);t>-1&&this.errorHandlers.splice(t,1)}}async setPresence(e,t={}){if(this.assertBidirectional("setPresence"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId();await this.sendRequest({category:"",action:"presence_set",data:{status:e,device:t.device,metadata:t.metadata},request_id:s})}async setPresenceOnDisconnect(e,t){if(this.assertBidirectional("setPresenceOnDisconnect"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId();await this.sendRequest({category:"",action:"presence_on_disconnect",data:{status:e,metadata:t},request_id:s})}async getPresence(e){if(this.assertBidirectional("getPresence"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId(),s=await this.sendRequest({category:"",action:"presence_get",data:{user_id:e},request_id:t});return{userId:s.user_id,status:s.status,lastSeen:s.last_seen,device:s.device,metadata:s.metadata}}async getPresenceMany(e){if(this.assertBidirectional("getPresenceMany"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId(),s=await this.sendRequest({category:"",action:"presence_get_many",data:{user_ids:e},request_id:t}),r={};for(let[i,n]of Object.entries(s.users))r[i]={userId:n.user_id,status:n.status,lastSeen:n.last_seen,device:n.device,metadata:n.metadata};return{users:r}}async subscribePresence(e,t){if(this.assertBidirectional("subscribePresence"),this.state!=="connected")throw new Error("Not connected");if(!this.presenceSubscriptions.has(e)){let r=this.generateRequestId();await this.sendRequest({category:"",action:"presence_subscribe",data:{user_id:e},request_id:r}),this.presenceSubscriptions.set(e,[])}let s=this.presenceSubscriptions.get(e);return s.push(t),()=>{let r=s.indexOf(t);if(r>-1&&s.splice(r,1),s.length===0&&(this.presenceSubscriptions.delete(e),this.state==="connected")){let i=this.generateRequestId();this.sendRequest({category:"",action:"presence_unsubscribe",data:{user_id:e},request_id:i}).catch(n=>{this.log(`Failed to unsubscribe presence for ${e}: ${n}`)})}}}onPresenceChange(e){return this.presenceHandlers.push(e),()=>{let t=this.presenceHandlers.indexOf(e);t>-1&&this.presenceHandlers.splice(t,1)}}async startTyping(e){if(this.assertBidirectional("startTyping"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId();await this.sendRequest({category:"",action:"typing_start",data:{room_id:e},request_id:t})}async stopTyping(e){if(this.assertBidirectional("stopTyping"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId();await this.sendRequest({category:"",action:"typing_stop",data:{room_id:e},request_id:t})}async onTypingChange(e,t){if(this.assertBidirectional("onTypingChange"),this.state!=="connected")throw new Error("Not connected");if(!this.typingHandlers.has(e)){let r=this.generateRequestId();await this.sendRequest({category:"",action:"typing_subscribe",data:{room_id:e},request_id:r}),this.typingHandlers.set(e,[])}let s=this.typingHandlers.get(e);return s.push(t),()=>{let r=s.indexOf(t);if(r>-1&&s.splice(r,1),s.length===0&&(this.typingHandlers.delete(e),this.state==="connected")){let i=this.generateRequestId();this.sendRequest({category:"",action:"typing_unsubscribe",data:{room_id:e},request_id:i}).catch(n=>{this.log(`Failed to unsubscribe typing for ${e}: ${n}`)})}}}async markRead(e,t){if(this.assertBidirectional("markRead"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId();await this.sendRequest({category:e,action:"mark_read",data:{message_ids:t},request_id:s})}onReadReceipt(e,t){this.readReceiptHandlers.has(e)||this.readReceiptHandlers.set(e,[]);let s=this.readReceiptHandlers.get(e);return s.push(t),()=>{let r=s.indexOf(t);r>-1&&s.splice(r,1)}}async doConnect(){return new Promise((e,t)=>{this.state="connecting",this.notifyStateChange(),this.log("Connecting...");let s=this.socketUrl.replace(/^http/,"ws"),r;if(this.options.accessToken)r=`${s}/v1/realtime/auth?access_token=${encodeURIComponent(this.options.accessToken)}&client_id=${this.clientId}`,this.log("Using accessToken authentication");else{let o=this.http.getPublicKey();if(!o){let c=new Error("API Key or accessToken is required for realtime connection");this.log("Connection failed: no API Key or accessToken"),t(c);return}r=`${s}/v1/realtime/auth?public_key=${encodeURIComponent(o)}&client_id=${this.clientId}`,this.log("Using API Key authentication")}this.userId&&(r+=`&user_id=${encodeURIComponent(this.userId)}`);let i=!1,n=setTimeout(()=>{i||(i=!0,this.log(`Connection timeout after ${this.options.timeout}ms`),this.ws&&(this.ws.close(),this.ws=null),this.state="disconnected",this.notifyStateChange(),t(new Error(`Connection timeout after ${this.options.timeout}ms`)))},this.options.timeout);try{this.log(`Connecting to ${s}`),this.ws=new WebSocket(r),this.ws.onopen=()=>{this.log("WebSocket opened, waiting for connected event...")},this.ws.onmessage=o=>{let c=o.data.split(`
4
- `).filter(l=>l.trim());for(let l of c)try{let d=JSON.parse(l);this.handleServerMessage(d,()=>{i||(i=!0,clearTimeout(n),this.log("Connected successfully"),e())})}catch(d){this.logError("Failed to parse message",{line:l,error:d})}},this.ws.onclose=o=>{this.log(`WebSocket closed: code=${o.code}, reason=${o.reason}`),!i&&this.state==="connecting"&&(i=!0,clearTimeout(n),t(new Error(`Connection closed: ${o.reason||"unknown reason"}`))),(this.state==="connected"||this.state==="connecting")&&this.handleDisconnect()},this.ws.onerror=o=>{this.log("WebSocket error occurred"),this.logError("WebSocket error",o),this.notifyError(new Error("WebSocket connection error")),!i&&this.state==="connecting"&&(i=!0,clearTimeout(n),t(new Error("Failed to connect")))}}catch(o){i=!0,clearTimeout(n),t(o)}})}log(e){this.options.debug&&console.log(`[Realtime] ${e}`)}logError(e,t){this.options.debug&&console.error(`[Realtime] ${e}`,t)}handleServerMessage(e,t){switch(e.event){case"connected":{let s=e.data;this._connectionId=s.connection_id,this._appId=s.app_id,this.state="connected",this.activeTransport="ws",this.sseFallbackActive=!1,this.retryCount=0,this.notifyStateChange(),t&&t();break}case"subscribed":case"unsubscribed":case"sent":case"result":case"history":{if(e.request_id){let s=this.pendingRequests.get(e.request_id);s&&(clearTimeout(s.timeout),s.resolve(e.data),this.pendingRequests.delete(e.request_id))}break}case"message":{let s=e.data,r=this.subscriptions.get(s.category);if(r){let i={id:s.id,category:s.category,from:s.from,data:s.data,sentAt:s.sent_at};r.handlers.forEach(n=>n(i))}break}case"error":{if(e.request_id){let s=this.pendingRequests.get(e.request_id);s&&(clearTimeout(s.timeout),s.reject(new Error(e.error||"Unknown error")),this.pendingRequests.delete(e.request_id))}else this.notifyError(new Error(e.error||"Unknown error"));break}case"pong":break;case"stream_token":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onToken&&r.handlers.onToken(s.token,s.index);break}case"stream_done":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onDone&&r.handlers.onDone({sessionId:s.session_id,fullText:s.full_text,totalTokens:s.total_tokens,promptTokens:s.prompt_tokens,duration:s.duration_ms}),this.streamSessions.delete(s.session_id);break}case"stream_tool_call":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onToolCall&&r.handlers.onToolCall(s.tool_name,s.arguments||{},s.index);break}case"stream_tool_result":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onToolResult&&r.handlers.onToolResult(s.tool_name,s.success,s.duration_ms,s.index);break}case"stream_error":{if(e.request_id){for(let[s,r]of this.streamSessions)if(r.requestId===e.request_id){r.handlers.onError&&r.handlers.onError(C(e.data,{sessionId:s})),this.streamSessions.delete(s);break}}break}case"presence":case"presence_status":{let s=e.data,r={userId:s.user_id,status:s.status,lastSeen:s.last_seen,device:s.device,metadata:s.metadata,eventType:s.event_type};this.presenceHandlers.forEach(n=>n(r));let i=this.presenceSubscriptions.get(s.user_id);if(i&&i.forEach(n=>n(r)),e.request_id){let n=this.pendingRequests.get(e.request_id);n&&(clearTimeout(n.timeout),n.resolve(e.data),this.pendingRequests.delete(e.request_id))}break}case"typing":{let s=e.data,r={roomId:s.room_id,users:s.users},i=this.typingHandlers.get(s.room_id);i&&i.forEach(n=>n(r));break}case"read_receipt":{let s=e.data,r={category:s.category,messageIds:s.message_ids,readerId:s.reader_id,readAt:s.read_at},i=this.readReceiptHandlers.get(s.category);i&&i.forEach(n=>n(r));break}}}handleDisconnect(){if(this.sseFallbackActive){this.ws=null;return}this.ws=null,this._connectionId=null,this.streamSessions.forEach((r,i)=>{r.handlers.onError&&r.handlers.onError(new I({code:"service_unavailable",message:"\uC2E4\uC2DC\uAC04 \uC5F0\uACB0\uC774 \uB04A\uACA8 AI \uC2A4\uD2B8\uB9AC\uBC0D\uC774 \uC911\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC7AC\uC5F0\uACB0 \uD6C4 \uB2E4\uC2DC \uC2DC\uB3C4\uD574 \uC8FC\uC138\uC694.",retryable:!0,sessionId:i}))}),this.streamSessions.clear();let e=new Map;for(let[r,i]of this.subscriptions)e.set(r,[...i.handlers]);this.subscriptions.clear();let t=new Map;for(let[r,i]of this.presenceSubscriptions)t.set(r,[...i]);this.presenceSubscriptions.clear();let s=new Map;for(let[r,i]of this.typingHandlers)s.set(r,[...i]);if(this.typingHandlers.clear(),this.retryCount<this.options.maxRetries){this.state="reconnecting",this.notifyStateChange(),this.retryCount++;let r=Math.min(this.options.retryInterval*2**(this.retryCount-1),3e4);setTimeout(async()=>{if(!this.sseFallbackActive)try{await this.doConnect(),this.log("Reconnected successfully, restoring subscriptions..."),await this.restoreSubscriptions(e,t,s)}catch(i){this.logError("Reconnect failed",i),this.retryCount>=this.options.maxRetries&&this.options.fallback!=="none"&&!this.sseFallbackActive&&this.activateSseFallback(i)}},r)}else this.options.fallback!=="none"?this.activateSseFallback(new Error("Connection lost. Max WS retries exceeded.")):(this.state="disconnected",this.notifyStateChange(),this.notifyError(new Error("Connection lost. Max retries exceeded.")))}async restoreSubscriptions(e,t,s){for(let[r,i]of e)try{this.log(`Restoring subscription: ${r}`);let n=this.generateRequestId(),o=await this.sendRequest({category:r,action:"subscribe",request_id:n}),c={category:o.category,persist:o.persist,historyCount:o.history_count,readReceipt:o.read_receipt};this.subscriptions.set(r,{info:c,handlers:i}),this.log(`Restored subscription: ${r}`)}catch(n){this.logError(`Failed to restore subscription for ${r}`,n),this.notifyError(new Error(`Failed to restore subscription: ${r}`))}for(let[r,i]of t)try{this.log(`Restoring presence subscription: ${r}`);let n=this.generateRequestId();await this.sendRequest({category:"",action:"presence_subscribe",data:{user_id:r},request_id:n}),this.presenceSubscriptions.set(r,i),this.log(`Restored presence subscription: ${r}`)}catch(n){this.logError(`Failed to restore presence subscription for ${r}`,n)}for(let[r,i]of s)try{this.log(`Restoring typing subscription: ${r}`);let n=this.generateRequestId();await this.sendRequest({category:"",action:"typing_subscribe",data:{room_id:r},request_id:n}),this.typingHandlers.set(r,i),this.log(`Restored typing subscription: ${r}`)}catch(n){this.logError(`Failed to restore typing subscription for ${r}`,n)}}assertBidirectional(e){if(this.activeTransport==="sse")throw new Error(`realtime.${e}() requires a WebSocket connection, which is blocked on this network. Only AI streaming (realtime.stream) works in SSE fallback mode (cb.realtime.transport === 'sse').`)}sendRequest(e){return new Promise((t,s)=>{if(!this.ws||this.ws.readyState!==WebSocket.OPEN){s(new Error("Not connected"));return}let r=setTimeout(()=>{this.pendingRequests.delete(e.request_id),s(new Error("Request timeout"))},this.options.timeout);this.pendingRequests.set(e.request_id,{resolve:t,reject:s,timeout:r}),this.ws.send(JSON.stringify(e))})}sendRaw(e){if(!this.ws||this.ws.readyState!==WebSocket.OPEN)throw new Error("Not connected");this.ws.send(JSON.stringify(e))}notifyStateChange(){this.stateHandlers.forEach(e=>e(this.state))}notifyError(e){this.errorHandlers.forEach(t=>t(e))}generateClientId(){return`cb_${Math.random().toString(36).substring(2,15)}`}generateRequestId(){return`req_${Date.now()}_${Math.random().toString(36).substring(2,9)}`}};var q=class{constructor(e){this.http=e}ensureServerAuth(e){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error(`cb.roles.${e}() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["role:read" | "role:manage"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.`)}async list(e){return this.ensureServerAuth("list"),this.http.get(`/v1/apps/${e}/app-roles`)}async get(e,t){return this.ensureServerAuth("get"),this.http.get(`/v1/apps/${e}/app-roles/${t}`)}async create(e,t){return this.ensureServerAuth("create"),this.http.post(`/v1/apps/${e}/app-roles`,{role_title:t.title,role_description:t.description,selected_permission_ids:t.permissionIds??[]})}async update(e,t,s){this.ensureServerAuth("update"),await this.http.put(`/v1/apps/${e}/app-roles/${t}`,{role_title:s.title,role_description:s.description,selected_permission_ids:s.permissionIds,selected_user_ids:s.userIds})}async assign(e,t,s){this.ensureServerAuth("assign");let r=await this.http.get(`/v1/apps/${e}/app-roles/${t}`);await this.http.put(`/v1/apps/${e}/app-roles/${t}`,{role_title:r.role_name,role_description:r.role_description,selected_permission_ids:r.permission_item.map(i=>i.id),selected_user_ids:s})}async delete(e,t){this.ensureServerAuth("delete"),await this.http.delete(`/v1/apps/${e}/app-roles/${t}`)}};function E(a={}){let e=new AbortController,t=a.timeout??3e4,s=a.signal,r=null,i=null;return s&&(s.aborted?e.abort(s.reason):(i=()=>e.abort(s.reason),s.addEventListener("abort",i,{once:!0}))),t>0&&Number.isFinite(t)&&(r=setTimeout(()=>{e.abort(new DOMException(`Request timed out after ${t}ms`,"TimeoutError"))},t)),{signal:e.signal,cleanup:()=>{r!==null&&clearTimeout(r),s&&i&&s.removeEventListener("abort",i)}}}var _e=new Set(["localhost","127.0.0.1","::1"]),$e=2048;function Me(a,e={}){let t=e.context??"external URL";if(typeof a!="string"||a.length===0)throw new m(400,`${t}: empty URL`,"INVALID_PRESIGNED_URL");if(a.length>$e)throw new m(400,`${t}: URL exceeds ${$e} chars`,"INVALID_PRESIGNED_URL");let s;try{s=new URL(a)}catch{throw new m(400,`${t}: cannot parse URL`,"INVALID_PRESIGNED_URL")}let r=e.allowLocalhost&&_e.has(s.hostname);if(s.protocol!=="https:"&&!(r&&s.protocol==="http:"))throw new m(400,`${t}: scheme must be https (got ${s.protocol})`,"INVALID_PRESIGNED_URL");if(!e.allowLocalhost&&_e.has(s.hostname))throw new m(400,`${t}: localhost is not allowed in production`,"INVALID_PRESIGNED_URL");if(e.allowedHosts&&e.allowedHosts.length>0){let i=s.hostname;if(!e.allowedHosts.some(o=>o===i?!0:i.endsWith(`.${o}`)))throw new m(400,`${t}: host ${i} is not in allowlist`,"INVALID_PRESIGNED_URL")}return s}function Ue(){if(typeof window>"u")return!1;let a=window.location.hostname;return _e.has(a)}var oe=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async uploadToPresigned(e,t,s){let i=Me(e,{allowLocalhost:Ue(),context:"storage.presigned-url"}).toString();if(s?.onProgress&&typeof XMLHttpRequest<"u")return this.putViaXhr(i,t,s.onProgress,s);let{signal:n,cleanup:o}=E({timeout:s?.timeout,signal:s?.signal});try{s?.onProgress?.({loaded:0,total:t.size,percentage:0});let c=await fetch(i,{method:"PUT",body:t,headers:{"Content-Type":t.type||"application/octet-stream"},signal:n});if(!c.ok)throw new m(c.status,`Upload failed: ${c.statusText}`,"PRESIGNED_UPLOAD_FAILED");s?.onProgress?.({loaded:t.size,total:t.size,percentage:100})}finally{o()}}putViaXhr(e,t,s,r){return new Promise((i,n)=>{let o=r?.signal;if(o?.aborted){n(o.reason??new DOMException("Aborted","AbortError"));return}let c=new XMLHttpRequest;c.open("PUT",e,!0),c.setRequestHeader("Content-Type",t.type||"application/octet-stream");let l=r?.timeout??3e4;l>0&&Number.isFinite(l)&&(c.timeout=l);let d=null,u=()=>{o&&d&&o.removeEventListener("abort",d)};o&&(d=()=>c.abort(),o.addEventListener("abort",d,{once:!0})),c.upload.onprogress=p=>{if(!p.lengthComputable)return;let h=p.total||t.size;s({loaded:p.loaded,total:h,percentage:h>0?Math.round(p.loaded/h*100):0})},c.onload=()=>{u(),c.status>=200&&c.status<300?(s({loaded:t.size,total:t.size,percentage:100}),i()):n(new m(c.status,`Upload failed: ${c.statusText||"unknown error"}`,"PRESIGNED_UPLOAD_FAILED"))},c.onerror=()=>{u(),n(new m(0,"Upload failed: network error","PRESIGNED_UPLOAD_FAILED"))},c.ontimeout=()=>{u(),n(new DOMException(`Request timed out after ${l}ms`,"TimeoutError"))},c.onabort=()=>{u(),n(o?.reason??new DOMException("Aborted","AbortError"))},c.send(t)})}async getFiles(e,t){let s=this.getPublicPrefix(),r=t?`?parent_id=${encodeURIComponent(t)}`:"";return(await this.http.get(`${s}/storages/files/${e}/items${r}`)).files}async uploadFile(e,t,s){let r=typeof s=="string"?{parentId:s}:s??{},i=this.getPublicPrefix(),n=await this.http.post(`${i}/storages/files/${e}/presigned-url`,{file_name:t.name,file_size:t.size,mime_type:t.type||"application/octet-stream",parent_id:r.parentId});await this.uploadToPresigned(n.upload_url,t,{onProgress:r.onProgress,signal:r.signal,timeout:r.timeout});let o=await this.http.post(`${i}/storages/files/${e}/complete-upload`,{file_id:n.file_id});return{id:o.id,name:o.name,path:o.path,type:o.type,mime_type:o.mime_type,size:o.size,url:o.url,parent_id:o.parent_id,created_at:o.created_at}}async uploadFiles(e,t,s){let r=[];for(let i of t){let n=await this.uploadFile(e,i,s);r.push(n)}return r}async createFolder(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/storages/files/${e}/folders`,t)}async deleteFile(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/storages/files/${e}/items/${t}`)}async moveFile(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("storage.moveFile requires JWT (console token) auth; not available with Public Key alone.");await this.http.post(`/v1/storages/files/${e}/items/${t}/move`,s)}async renameFile(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("storage.renameFile requires JWT (console token) auth; not available with Public Key alone.");return this.http.patch(`/v1/storages/files/${e}/items/${t}/rename`,s)}getFileUrl(e){return e.url||null}isImageFile(e){return e.mime_type?.startsWith("image/")||!1}async uploadByPath(e,t,s,r){let i=this.getPublicPrefix(),n=t.startsWith("/")?t.slice(1):t,o=r?.overwrite!==!1,c=await this.http.post(`${i}/storages/files/${e}/presigned-url/path/${n}`,{file_name:s.name,file_size:s.size,mime_type:s.type||"application/octet-stream",overwrite:o});await this.uploadToPresigned(c.upload_url,s,{onProgress:r?.onProgress,signal:r?.signal,timeout:r?.timeout});let l=await this.http.post(`${i}/storages/files/${e}/complete-upload`,{file_id:c.file_id});return{id:l.id,name:l.name,path:l.path,type:l.type,mime_type:l.mime_type,size:l.size,url:l.url,parent_id:l.parent_id,created_at:l.created_at}}async getByPath(e,t){let s=this.getPublicPrefix(),r=t.startsWith("/")?t.slice(1):t;return this.http.get(`${s}/storages/files/${e}/path/${r}`)}async getUrlByPath(e,t){try{return(await this.getByPath(e,t)).url||null}catch{return null}}async setPageMeta(e,t){let s=this.getPublicPrefix();return this.http.put(`${s}/storages/webs/${e}/page-metas`,t)}async batchSetPageMeta(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/storages/webs/${e}/page-metas/batch`,t)}async listPageMetas(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;t?.limit!=null&&r.set("limit",String(t.limit)),t?.offset!=null&&r.set("offset",String(t.offset));let i=r.toString();return this.http.get(`${s}/storages/webs/${e}/page-metas${i?`?${i}`:""}`)}async getPageMeta(e,t){let s=this.getPublicPrefix(),r=encodeURIComponent(t);return this.http.get(`${s}/storages/webs/${e}/page-metas/get?path=${r}`)}async deletePageMeta(e,t){let s=this.getPublicPrefix(),r=encodeURIComponent(t);await this.http.delete(`${s}/storages/webs/${e}/page-metas?path=${r}`)}async deleteAllPageMetas(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/storages/webs/${e}/page-metas/all`)}};var ae=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async issueBillingKey(){let e=this.getPublicPrefix();return this.http.post(`${e}/subscriptions/billing-keys`,{})}async confirmBillingKey(e){let t=this.getPublicPrefix();return this.http.post(`${t}/subscriptions/billing-keys/confirm`,e)}async listBillingKeys(e){let t=this.getPublicPrefix(),s=e?`?customer_id=${e}`:"";return this.http.get(`${t}/subscriptions/billing-keys${s}`)}async getBillingKey(e){let t=this.getPublicPrefix();return this.http.get(`${t}/subscriptions/billing-keys/${e}`)}async updateBillingKey(e,t){let s=this.getPublicPrefix();return this.http.patch(`${s}/subscriptions/billing-keys/${e}`,t)}async deleteBillingKey(e){let t=this.getPublicPrefix();return this.http.delete(`${t}/subscriptions/billing-keys/${e}`)}async create(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/subscriptions`,e);return k(s,{id:{type:"string-or-number"},status:{type:"string"}},"subscription.create"),s}async list(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.status&&s.set("status",e.status),e?.limit&&s.set("limit",String(e.limit)),e?.offset&&s.set("offset",String(e.offset));let r=s.toString();return this.http.get(`${t}/subscriptions${r?`?${r}`:""}`)}async get(e){let t=this.getPublicPrefix();return this.http.get(`${t}/subscriptions/${e}`)}async update(e,t){let s=this.getPublicPrefix();return this.http.patch(`${s}/subscriptions/${e}`,t)}async postponeBilling(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/postpone-billing`,t)}async pause(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/pause`,t||{})}async resume(e){let t=this.getPublicPrefix();return this.http.post(`${t}/subscriptions/${e}/resume`,{})}async cancel(e,t={}){let s=this.getPublicPrefix(),r={reason:t.reason,cancel_at_end:!t.immediate};return this.http.post(`${s}/subscriptions/${e}/cancel`,r)}async changePlan(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/change-plan`,t)}async previewChangePlan(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/change-plan/preview`,t)}async listPayments(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;t?.status&&r.set("status",t.status),t?.limit&&r.set("limit",String(t.limit)),t?.offset&&r.set("offset",String(t.offset));let i=r.toString();return this.http.get(`${s}/subscriptions/${e}/payments${i?`?${i}`:""}`)}async chargeWithBillingKey(e){let t=this.getPublicPrefix();return this.http.post(`${t}/subscriptions/charge`,e)}};var ce=class{constructor(e){this.http=e}async reportIssue(e){let t={title:e.title,body:e.body,category:e.category,metadata:e.metadata};return e.anonymousEmail&&(t.anonymous_email=e.anonymousEmail),e.recaptchaToken&&(t.recaptcha_token=e.recaptchaToken),this.http.post("/v1/public/reports",t)}async reportIssueOnBehalfOfUser(e){if(!e.targetAppId)throw new Error("targetAppId is required");if(!e.accessToken)throw new Error("accessToken is required");let t={title:e.title,body:e.body};e.category&&(t.category=e.category),e.metadata&&(t.metadata=e.metadata);let s=`${this.http.getBaseUrl()}/v1/integrations/providers/${encodeURIComponent(e.targetAppId)}/issues/by-user`,r=await fetch(s,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e.accessToken}`},body:JSON.stringify(t)});if(!r.ok){let i;try{i=await r.json()}catch{i={error:r.statusText}}let n=i??{},o=n.error_description??n.error??`HTTP ${r.status}`;throw new Error(`reportIssueOnBehalfOfUser failed (${r.status}): ${o}`)}return await r.json()}async reportPlatformBug(e){let t=e.attachAutomaticContext!==!1,s={title:e.title,body:e.body,category:e.category??"other",severity:e.severity??"medium",metadata:e.metadata};if(e.reporterEmail&&(s.reporter_email=e.reporterEmail),e.recaptchaToken&&(s.recaptcha_token=e.recaptchaToken),t){s.sdk_version=e.sdkVersion??st(),s.sdk_platform=e.sdkPlatform??rt(),s.environment=e.environment??"unknown",e.error?s.stack_trace=Le(e.error.stack??String(e.error)):e.stackTrace&&(s.stack_trace=Le(e.stackTrace));let r=e.recentApiCalls??this.http.getRecentCalls();r.length>0&&(s.recent_api_calls=r)}return this.http.post("/v1/public/platform-issues",s)}getRecentApiCalls(){return this.http.getRecentCalls()}clearRecentApiCalls(){this.http.clearRecentCalls()}async listPlatformIssueReplies(e){return(await this.http.get(`/v1/public/platform-issues/${e}/comments`)).comments}async replyToPlatformIssue(e,t){return this.http.post(`/v1/public/platform-issues/${e}/comments`,{body:t})}async getPlatformIssue(e){return this.http.get(`/v1/public/platform-issues/${e}`)}async listMyPlatformIssues(e={}){let t=new URLSearchParams;for(let r of e.status??[])t.append("status",r);for(let r of e.severity??[])t.append("severity",r);for(let r of e.category??[])t.append("category",r);e.sinceUpdatedAt&&t.set("since_updated_at",e.sinceUpdatedAt),e.cursor&&t.set("cursor",e.cursor),typeof e.limit=="number"&&t.set("limit",String(e.limit));let s=t.toString();return this.http.get(`/v1/public/platform-issues${s?`?${s}`:""}`)}};function st(){return typeof __SDK_VERSION__<"u"&&__SDK_VERSION__?__SDK_VERSION__:"unknown"}function rt(){return typeof window<"u"&&typeof document<"u"?"web":"node"}function Le(a){let e=a;e=e.replace(/(\(|\s|^)(?:file:\/\/)?\/[^\s)]+\/([^\s/)]+)(:\d+:\d+)?/g,"$1$2$3"),e=e.replace(/(https?:\/\/[^\s)?]+)\?[^\s)]*/g,"$1");let t=32*1024;return e.length>t&&(e=`${e.slice(0,t)}
5
- \u2026[truncated]`),e}var Oe=5*1024*1024,H=class extends Error{constructor(e,t){super(e),this.name="VideoProcessingError",this.video=t}},le=class{constructor(e,t){this.http=e;this.storage={create:async e=>this.http.post("/v1/public/storages/videos",e),list:async()=>this.http.get("/v1/public/storages/videos"),get:async e=>this.http.get(`/v1/public/storages/videos/${e}`),update:async(e,t)=>this.http.put(`/v1/public/storages/videos/${e}`,t),delete:async e=>{await this.http.delete(`/v1/public/storages/videos/${e}`)},upload:async(e,t,s)=>{let r=await this.http.post(`/v1/public/storages/videos/${e}/uploads/init`,{filename:t.name,file_size:t.size,mime_type:t.type}),i=r.chunk_size||Oe,n=Math.ceil(t.size/i),o=0,c=Date.now(),l=0;for(let u=0;u<n;u++){let p=u*i,h=Math.min(p+i,t.size),f=t.slice(p,h),b=new FormData;b.append("chunk",f),await this.http.put(`/v1/public/storages/videos/${e}/uploads/${r.upload_id}/chunk?chunk_index=${u}`,b),o++;let g=Date.now(),_=(g-c)/1e3,w=h,S=w-l,y=_>0?S/_:0;c=g,l=w,s.onProgress&&s.onProgress({phase:"uploading",uploadedChunks:o,totalChunks:n,percentage:Math.round(o/n*100),currentSpeed:y})}let d=await this.http.post(`/v1/public/storages/videos/${e}/uploads/${r.upload_id}/complete`,{title:s.title,description:s.description,visibility:s.visibility||"private",tags:s.tags});return this.storage.getVideo(e,d.video_id)},listVideos:async(e,t)=>{let s=new URLSearchParams;t?.status&&s.set("status",t.status),t?.visibility&&s.set("visibility",t.visibility),t?.search&&s.set("search",t.search),t?.page&&s.set("page",String(t.page)),t?.limit&&s.set("limit",String(t.limit));let r=s.toString();return this.http.get(`/v1/public/storages/videos/${e}/videos${r?`?${r}`:""}`)},getVideo:async(e,t)=>this.http.get(`/v1/public/storages/videos/${e}/videos/${t}`),deleteVideo:async(e,t)=>{await this.http.delete(`/v1/public/storages/videos/${e}/videos/${t}`)},getStreamUrl:async(e,t)=>this.http.get(`/v1/public/storages/videos/${e}/videos/${t}/stream`),getTranscodeStatus:async(e,t)=>this.http.get(`/v1/public/storages/videos/${e}/videos/${t}/transcode`)};this.videoBaseUrl=t||this.getDefaultVideoUrl()}getDefaultVideoUrl(){if(typeof window<"u"){let e=window.location.hostname;if(e==="localhost"||e==="127.0.0.1")return"http://localhost:8089"}return"https://video.connectbase.world"}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async videoFetch(e,t,s){let r={},i=this.http.getPublicKey();i&&(r["X-Public-Key"]=i);let n=this.http.getAccessToken();n&&(r.Authorization=`Bearer ${n}`),s&&!(s instanceof FormData)&&(r["Content-Type"]="application/json");let{signal:o,cleanup:c}=E({timeout:3e4});try{let l=await fetch(`${this.videoBaseUrl}${t}`,{method:e,headers:r,body:s instanceof FormData?s:s?JSON.stringify(s):void 0,signal:o});if(!l.ok){let d=await l.json().catch(()=>({message:l.statusText})),u=d.error;if(u&&typeof u=="object"&&"message"in u)throw new m(l.status,u.message||"Unknown error",u.code,u.details);let p=typeof u=="string"?u:d.message||"Unknown error";throw new m(l.status,p)}return l.status===204||l.headers.get("content-length")==="0"?{}:await l.json()}finally{c()}}async upload(e,t){let s=this.getPublicPrefix(),r=await this.videoFetch("POST",`${s}/uploads/init`,{filename:e.name,file_size:e.size,mime_type:e.type}),i=r.chunk_size||Oe,n=Math.ceil(e.size/i),o=0,l=Date.now(),d=0;for(let p=0;p<n;p++){let h=p*i,f=Math.min(h+i,e.size),b=e.slice(h,f),g=new FormData;g.append("chunk",b),await this.videoFetch("PUT",`${s}/uploads/${r.upload_id}/chunk?chunk_index=${p}`,g),o++;let _=Date.now(),w=(_-l)/1e3,S=f,y=S-d,P=w>0?y/w:0;l=_,d=S,t.onProgress&&t.onProgress({phase:"uploading",uploadedChunks:o,totalChunks:n,percentage:Math.round(o/n*100),currentSpeed:P})}let u=await this.videoFetch("POST",`${s}/uploads/${r.upload_id}/complete`,{title:t.title,description:t.description,visibility:t.visibility||"private",tags:t.tags});return this.get(u.video_id)}async waitForReady(e,t){let s=t?.timeout||18e5,r=t?.interval||5e3,i=Date.now(),n=this.getPublicPrefix();for(;Date.now()-i<s;){let o=await this.videoFetch("GET",`${n}/videos/${e}`);if(o.status==="ready")return o;if(o.status==="failed")throw new H("Video processing failed",o);if(t?.onProgress){let c=o.qualities.filter(d=>d.status==="ready").length,l=o.qualities.length||1;t.onProgress({phase:"processing",uploadedChunks:0,totalChunks:0,percentage:Math.round(c/l*100)})}await new Promise(c=>setTimeout(c,r))}throw new H("Timeout waiting for video to be ready")}async list(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.status&&s.set("status",e.status),e?.visibility&&s.set("visibility",e.visibility),e?.search&&s.set("search",e.search),e?.channel_id&&s.set("channel_id",e.channel_id),e?.page&&s.set("page",String(e.page)),e?.limit&&s.set("limit",String(e.limit));let r=s.toString();return this.videoFetch("GET",`${t}/videos${r?`?${r}`:""}`)}async get(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/videos/${e}`)}async update(e,t){let s=this.getPublicPrefix();return this.videoFetch("PATCH",`${s}/videos/${e}`,t)}async delete(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/videos/${e}`)}async getStreamUrl(e,t){let s=this.getPublicPrefix(),r=t?`?quality=${t}`:"";return this.videoFetch("GET",`${s}/videos/${e}/stream-url${r}`)}async getThumbnails(e){let t=this.getPublicPrefix(),s=await this.videoFetch("GET",`${t}/videos/${e}/thumbnail`),r=new Set;s.thumbnail_url&&r.add(s.thumbnail_url);for(let i of s.thumbnail_urls??[])i&&r.add(i);return[...r]}async getTranscodeStatus(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/videos/${e}/transcode/status`)}async retryTranscode(e){let t=this.getPublicPrefix();await this.videoFetch("POST",`${t}/videos/${e}/transcode/retry`,{})}async createChannel(e){let t=this.getPublicPrefix();return this.videoFetch("POST",`${t}/channels`,e)}async getChannel(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/channels/${e}`)}async getChannelByHandle(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/channels/handle/${e}`)}async updateChannel(e,t){let s=this.getPublicPrefix();return this.videoFetch("PATCH",`${s}/channels/${e}`,t)}async subscribeChannel(e){let t=this.getPublicPrefix();await this.videoFetch("POST",`${t}/channels/${e}/subscribe`,{})}async unsubscribeChannel(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/channels/${e}/subscribe`)}async createPlaylist(e,t){let s=this.getPublicPrefix();return this.videoFetch("POST",`${s}/playlists`,{...t,channel_id:e})}async getPlaylists(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/playlists/public?channel_id=${encodeURIComponent(e)}`)).playlists}async getPlaylistItems(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/playlists/${e}`)).items}async addToPlaylist(e,t,s){let r=this.getPublicPrefix();return this.videoFetch("POST",`${r}/playlists/${e}/items`,{video_id:t,position:s})}async removeFromPlaylist(e,t){let s=this.getPublicPrefix();await this.videoFetch("DELETE",`${s}/playlists/${e}/items/${t}`)}async getShortsFeed(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.cursor&&s.set("cursor",e.cursor),e?.limit&&s.set("limit",String(e.limit));let r=s.toString();return this.videoFetch("GET",`${t}/shorts${r?`?${r}`:""}`)}async getTrendingShorts(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return this.videoFetch("GET",`${t}/shorts/trending${s}`)}async getShorts(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/shorts/${e}`)}async getComments(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;t?.cursor&&r.set("cursor",t.cursor),t?.limit&&r.set("limit",String(t.limit)),t?.sort&&r.set("sort",t.sort);let i=r.toString();return this.videoFetch("GET",`${s}/videos/${e}/comments${i?`?${i}`:""}`)}async postComment(e,t,s){let r=this.getPublicPrefix();return this.videoFetch("POST",`${r}/comments`,{video_id:e,content:t,parent_id:s})}async deleteComment(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/comments/${e}`)}async likeVideo(e){let t=this.getPublicPrefix();await this.videoFetch("POST",`${t}/videos/${e}/like`,{})}async unlikeVideo(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/videos/${e}/like`)}async getWatchHistory(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.cursor&&s.set("cursor",e.cursor),e?.limit&&s.set("limit",String(e.limit));let r=s.toString();return this.videoFetch("GET",`${t}/watch-history${r?`?${r}`:""}`)}async clearWatchHistory(){let e=this.getPublicPrefix();await this.videoFetch("DELETE",`${e}/watch-history`)}async reportWatchProgress(e,t,s){let r=this.getPublicPrefix();await this.videoFetch("POST",`${r}/videos/${e}/watch-progress`,{position:t,duration:s})}async getMembershipTiers(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/channels/${e}/membership/tiers`)).tiers}async joinMembership(e,t){let s=this.getPublicPrefix();return this.videoFetch("POST",`${s}/membership/join`,{tier_id:t})}async cancelMembership(e,t){let s=this.getPublicPrefix();await this.videoFetch("POST",`${s}/membership/${t}/cancel`,{})}async sendSuperChat(e,t,s){let r=this.getPublicPrefix();return this.videoFetch("POST",`${r}/super-chats`,{channel_id:e,type:s?.type??"super_thanks",amount:t,video_id:s?.videoId,live_id:s?.liveId,currency:s?.currency??"USD",message:s?.message,sticker_id:s?.stickerId})}async getSuperChats(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/videos/${e}/super-chats`)).super_chats}async getRecommendations(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return(await this.videoFetch("GET",`${t}/recommendations/feed${s}`)).videos}async getHomeFeed(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return(await this.videoFetch("GET",`${t}/recommendations/feed${s}`)).videos}async getRelatedVideos(e,t){let s=this.getPublicPrefix(),r=t?`?limit=${t}`:"";return(await this.videoFetch("GET",`${s}/videos/${e}/related${r}`)).videos}async getTrendingVideos(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return(await this.videoFetch("GET",`${t}/recommendations/trending${s}`)).videos}async submitFeedback(e,t){let s=this.getPublicPrefix();if(t==="not_interested"){await this.videoFetch("POST",`${s}/recommendations/not-interested/${e}`,{});return}await this.videoFetch("POST",`${s}/recommendations/interactions`,{video_id:e,type:"like"})}};var de=class{constructor(e,t,s){this.ws=null;this.state="disconnected";this.stateListeners=[];this.errorListeners=[];this.peerJoinedListeners=[];this.peerLeftListeners=[];this.remoteStreamListeners=[];this.reconnectAttempts=0;this.maxReconnectAttempts=5;this.reconnectTimeout=null;this.currentRoomId=null;this.currentPeerId=null;this.currentUserId=null;this.isBroadcaster=!1;this.localStream=null;this.channelType="interactive";this.peerConnections=new Map;this.remoteStreams=new Map;this.iceServers=[];this.http=e,this.webrtcUrl=t,this.appId=s}async getICEServers(){if(!this.appId)throw new Error("WebRTC getICEServers \uC5D0\uB294 appId \uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. ConnectBase \uCD08\uAE30\uD654 \uC2DC appId \uB97C \uC124\uC815\uD558\uC138\uC694.");let e=await this.http.get(`/v1/apps/${this.appId}/ice-servers`);return this.iceServers=e.ice_servers,e.ice_servers}async connect(e){if(this.state==="connected"||this.state==="connecting")throw new Error("\uC774\uBBF8 \uC5F0\uACB0\uB418\uC5B4 \uC788\uAC70\uB098 \uC5F0\uACB0 \uC911\uC785\uB2C8\uB2E4");if(this.setState("connecting"),this.currentRoomId=e.roomId,this.currentUserId=e.userId||null,this.isBroadcaster=e.isBroadcaster||!1,this.localStream=e.localStream||null,this.iceServers.length===0)try{await this.getICEServers()}catch{this.iceServers=[{urls:"stun:stun.l.google.com:19302"}]}return this.connectWebSocket()}connectWebSocket(){return new Promise((e,t)=>{let s=this.buildWebSocketUrl();this.ws=new WebSocket(s);let r=setTimeout(()=>{this.state==="connecting"&&(this.ws?.close(),t(new Error("\uC5F0\uACB0 \uC2DC\uAC04 \uCD08\uACFC")))},1e4);this.ws.onopen=()=>{clearTimeout(r),this.reconnectAttempts=0,this.sendSignaling({type:"join",room_id:this.currentRoomId,data:{user_id:this.currentUserId,is_broadcaster:this.isBroadcaster}})},this.ws.onmessage=async i=>{try{let n=JSON.parse(i.data);await this.handleSignalingMessage(n,e,t)}catch(n){console.error("Failed to parse signaling message:",n)}},this.ws.onerror=i=>{clearTimeout(r),console.error("WebSocket error:",i),this.emitError(new Error("WebSocket \uC5F0\uACB0 \uC624\uB958"))},this.ws.onclose=i=>{clearTimeout(r),this.state==="connecting"&&t(new Error("\uC5F0\uACB0\uC774 \uC885\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4")),this.handleDisconnect(i)}})}buildWebSocketUrl(){let e=this.webrtcUrl.replace("https://","wss://").replace("http://","ws://"),t=this.http.getPublicKey(),s=this.http.getAccessToken(),r="";if(s?r=`access_token=${encodeURIComponent(s)}`:t&&(r=`public_key=${encodeURIComponent(t)}`),!this.appId)throw new Error("WebRTC \uC5F0\uACB0\uC5D0\uB294 appId\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. ConnectBase \uCD08\uAE30\uD654 \uC2DC appId\uB97C \uC124\uC815\uD558\uC138\uC694.");return`${e}/v1/apps/${this.appId}/signaling?${r}`}async handleSignalingMessage(e,t,s){switch(e.type){case"joined":if(this.setState("connected"),this.currentPeerId=e.peer_id||null,e.data&&typeof e.data=="object"){let r=e.data;r.channel_type&&(this.channelType=r.channel_type);let i=r.peers||[];for(let n of i)n.peer_id!==this.currentPeerId&&await this.createPeerConnection(n.peer_id,!0)}t?.();break;case"peer_joined":if(e.peer_id&&e.peer_id!==this.currentPeerId){let r={peer_id:e.peer_id,...typeof e.data=="object"?e.data:{}};this.emitPeerJoined(e.peer_id,r),await this.createPeerConnection(e.peer_id,!1)}break;case"peer_left":e.peer_id&&(this.closePeerConnection(e.peer_id),this.emitPeerLeft(e.peer_id));break;case"offer":e.peer_id&&e.sdp&&await this.handleOffer(e.peer_id,e.sdp);break;case"answer":e.peer_id&&e.sdp&&await this.handleAnswer(e.peer_id,e.sdp);break;case"ice_candidate":e.peer_id&&e.candidate&&await this.handleICECandidate(e.peer_id,e.candidate);break;case"error":{let r=typeof e.data=="string"?e.data:"Unknown error",i=new Error(r);this.emitError(i),s?.(i);break}}}async createPeerConnection(e,t){this.closePeerConnection(e);let s={iceServers:this.iceServers.map(i=>({urls:i.urls,username:i.username,credential:i.credential}))},r=new RTCPeerConnection(s);if(this.peerConnections.set(e,r),this.localStream&&this.localStream.getTracks().forEach(i=>{r.addTrack(i,this.localStream)}),r.onicecandidate=i=>{i.candidate&&this.sendSignaling({type:"ice_candidate",target_id:e,candidate:i.candidate.toJSON()})},r.ontrack=i=>{let[n]=i.streams;n&&(this.remoteStreams.set(e,n),this.emitRemoteStream(e,n))},r.onconnectionstatechange=()=>{r.connectionState==="failed"&&(console.warn(`Peer connection failed: ${e}`),this.closePeerConnection(e))},t){let i=await r.createOffer();await r.setLocalDescription(i),this.sendSignaling({type:"offer",target_id:e,sdp:i.sdp})}return r}async handleOffer(e,t){let s=this.peerConnections.get(e);s||(s=await this.createPeerConnection(e,!1)),await s.setRemoteDescription(new RTCSessionDescription({type:"offer",sdp:t}));let r=await s.createAnswer();await s.setLocalDescription(r),this.sendSignaling({type:"answer",target_id:e,sdp:r.sdp})}async handleAnswer(e,t){let s=this.peerConnections.get(e);s&&await s.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:t}))}async handleICECandidate(e,t){let s=this.peerConnections.get(e);if(s)try{await s.addIceCandidate(new RTCIceCandidate(t))}catch(r){console.warn("Failed to add ICE candidate:",r)}}closePeerConnection(e){let t=this.peerConnections.get(e);t&&(t.close(),this.peerConnections.delete(e)),this.remoteStreams.delete(e)}sendSignaling(e){this.ws&&this.ws.readyState===WebSocket.OPEN&&this.ws.send(JSON.stringify(e))}handleDisconnect(e){let t=this.state==="connected";this.setState("disconnected"),this.peerConnections.forEach((s,r)=>{s.close(),this.emitPeerLeft(r)}),this.peerConnections.clear(),this.remoteStreams.clear(),t&&e.code!==1e3&&this.reconnectAttempts<this.maxReconnectAttempts&&this.attemptReconnect()}attemptReconnect(){this.reconnectAttempts++,this.setState("reconnecting");let e=Math.min(5e3*2**(this.reconnectAttempts-1),3e4);this.reconnectTimeout=setTimeout(async()=>{try{await this.connectWebSocket()}catch{this.reconnectAttempts<this.maxReconnectAttempts?this.attemptReconnect():(this.setState("failed"),this.emitError(new Error("\uC7AC\uC5F0\uACB0 \uC2E4\uD328: \uCD5C\uB300 \uC2DC\uB3C4 \uD69F\uC218 \uCD08\uACFC")))}},e)}disconnect(){this.reconnectTimeout&&(clearTimeout(this.reconnectTimeout),this.reconnectTimeout=null),this.ws&&this.ws.readyState===WebSocket.OPEN&&(this.sendSignaling({type:"leave"}),this.ws.close(1e3,"User disconnected")),this.peerConnections.forEach(e=>e.close()),this.peerConnections.clear(),this.remoteStreams.clear(),this.ws=null,this.currentRoomId=null,this.currentPeerId=null,this.localStream=null,this.setState("disconnected")}getState(){return this.state}getRoomId(){return this.currentRoomId}getPeerId(){return this.currentPeerId}getChannelType(){return this.channelType}getRemoteStream(e){return this.remoteStreams.get(e)}getAllRemoteStreams(){return new Map(this.remoteStreams)}replaceLocalStream(e){this.localStream=e,this.peerConnections.forEach(t=>{let s=t.getSenders();e.getTracks().forEach(r=>{let i=s.find(n=>n.track?.kind===r.kind);i?i.replaceTrack(r):t.addTrack(r,e)})})}setAudioEnabled(e){this.localStream&&this.localStream.getAudioTracks().forEach(t=>{t.enabled=e})}setVideoEnabled(e){this.localStream&&this.localStream.getVideoTracks().forEach(t=>{t.enabled=e})}onStateChange(e){return this.stateListeners.push(e),()=>{this.stateListeners=this.stateListeners.filter(t=>t!==e)}}onError(e){return this.errorListeners.push(e),()=>{this.errorListeners=this.errorListeners.filter(t=>t!==e)}}onPeerJoined(e){return this.peerJoinedListeners.push(e),()=>{this.peerJoinedListeners=this.peerJoinedListeners.filter(t=>t!==e)}}onPeerLeft(e){return this.peerLeftListeners.push(e),()=>{this.peerLeftListeners=this.peerLeftListeners.filter(t=>t!==e)}}onRemoteStream(e){return this.remoteStreamListeners.push(e),()=>{this.remoteStreamListeners=this.remoteStreamListeners.filter(t=>t!==e)}}setState(e){this.state!==e&&(this.state=e,this.stateListeners.forEach(t=>t(e)))}emitError(e){this.errorListeners.forEach(t=>t(e))}emitPeerJoined(e,t){this.peerJoinedListeners.forEach(s=>s(e,t))}emitPeerLeft(e){this.peerLeftListeners.forEach(t=>t(e))}emitRemoteStream(e,t){this.remoteStreamListeners.forEach(s=>s(e,t))}async validate(){if(!this.appId)throw new Error("WebRTC \uAC80\uC99D\uC5D0\uB294 appId\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. ConnectBase \uCD08\uAE30\uD654 \uC2DC appId\uB97C \uC124\uC815\uD558\uC138\uC694.");return this.http.get(`/v1/apps/${this.appId}/validate`)}async getStats(e){return this.http.get(`/v1/apps/${e}/stats`)}async getRooms(e){return this.http.get(`/v1/apps/${e}/rooms`)}};var ue=class{constructor(e=20){this.buf=[];this.capacity=Math.min(Math.max(1,e),50)}push(e){this.buf.length>=this.capacity&&this.buf.shift(),this.buf.push(e)}snapshot(){return this.buf.slice()}clear(){this.buf=[]}};function De(a){try{return(a.startsWith("http")?new URL(a):new URL(a,"http://x")).pathname||a}catch{let e=a.indexOf("?");return e>=0?a.slice(0,e):a}}var it=new Set(["/v1/public/app-members/signup","/v1/public/app-members/signin","/v1/public/app-members/signout"]);function Re(a){return typeof a=="object"&&a!==null&&"name"in a&&a.name==="AbortError"}function pe(a){let e=a.split("?")[0];return it.has(e)?"include":e.startsWith("/v1/public/")||e.startsWith("/v1/proxy/")?"omit":"include"}var qe="cb_auth_tokens";function nt(a){switch(a){case 502:return"bad_gateway";case 503:return"service_unavailable";case 504:return"gateway_timeout";default:return}}function ot(a){switch(a){case 502:return"\uAC8C\uC774\uD2B8\uC6E8\uC774\uAC00 \uC11C\uBC84\uB85C\uBD80\uD130 \uC62C\uBC14\uB978 \uC751\uB2F5\uC744 \uBC1B\uC9C0 \uBABB\uD588\uC2B5\uB2C8\uB2E4 (502)";case 503:return"\uC11C\uBC84\uAC00 \uC77C\uC2DC\uC801\uC73C\uB85C \uC694\uCCAD\uC744 \uCC98\uB9AC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 (503)";case 504:return"\uAC8C\uC774\uD2B8\uC6E8\uC774\uAC00 \uC751\uB2F5\uC744 \uAE30\uB2E4\uB9AC\uB2E4 \uC5F0\uACB0\uC744 \uB04A\uC5C8\uC2B5\uB2C8\uB2E4 (504). \uC624\uB798 \uAC78\uB9AC\uB294 \uC791\uC5C5\uC774\uBA74 \uC694\uCCAD \uD0C0\uC784\uC544\uC6C3\uC744 \uB298\uB9AC\uAC70\uB098 \uC2A4\uD2B8\uB9AC\uBC0D\uC744 \uC0AC\uC6A9\uD558\uC138\uC694";default:return}}function Se(a){try{let e=a.split(".")[1];if(!e)return null;let t=e.replace(/-/g,"+").replace(/_/g,"/"),s=t+"=".repeat((4-t.length%4)%4),r=JSON.parse(atob(s));return r&&typeof r=="object"?r:null}catch{return null}}function Be(a){let e=Se(a)?.role;return e==="User"||e==="AdminInvite"}var he=class{constructor(e){this.isRefreshing=!1;this.refreshPromise=null;this.refreshFailureCount=0;this.refreshLockedUntil=0;this.recentCalls=new ue;this.bootRestorePromise=null;this.bootRestoreAlwaysAwait=!1;this.directBaseUrl=null;this.directDisabled=!1;this.config={...e},this.storageKey=this.buildStorageKey(),this.warnIfUnsafePersistence(),this.restoreTokens()}get requestTimeoutMs(){return this.config.requestTimeoutMs}setBootRestorePromise(e,t){this.bootRestorePromise=e.catch(()=>!1),this.bootRestoreAlwaysAwait=t?.alwaysAwait===!0}getRecentCalls(){return this.recentCalls.snapshot()}clearRecentCalls(){this.recentCalls.clear()}warnIfUnsafePersistence(){typeof window>"u"||(this.config.persistence==="localStorage"?console.warn(`[connect-base-client] persistence="localStorage" \uB294 XSS \uC2DC refresh token \uC601\uAD6C \uD0C8\uCDE8 \uC704\uD5D8\uC774 \uC788\uC2B5\uB2C8\uB2E4. \uAE30\uBCF8\uAC12('none') \uC744 \uC0AC\uC6A9\uD558\uBA74 \uC11C\uBC84\uAC00 \uBC1C\uAE09\uD55C HttpOnly cookie \uB85C\uB9CC refresh token \uC774 \uBCF4\uAD00\uB418\uC5B4 JS \uAC00 \uC811\uADFC\uD560 \uC218 \uC5C6\uACE0, \uC0C8\uB85C\uACE0\uCE68 \uD6C4\uC5D0\uB3C4 autoRestoreSession \uC73C\uB85C \uC790\uB3D9 \uBCF5\uAD6C\uB429\uB2C8\uB2E4.`):this.config.persistence==="sessionStorage"&&console.warn(`[connect-base-client] persistence="sessionStorage" \uB294 XSS \uC2DC \uD0ED \uC138\uC158 \uD0C8\uCDE8 \uC704\uD5D8\uC774 \uC788\uC2B5\uB2C8\uB2E4. \uAE30\uBCF8\uAC12('none') + HttpOnly cookie \uD750\uB984\uC744 \uAD8C\uC7A5\uD569\uB2C8\uB2E4.`))}updateConfig(e){this.config={...this.config,...e}}setTokens(e,t){this.config.accessToken=e,this.config.refreshToken=t,this.persistTokens(),this.markSessionHint()}clearTokens(){this.config.accessToken=void 0,this.config.refreshToken=void 0,this.removePersistedTokens(),this.clearSessionHint()}buildSessionHintKey(){return`${this.buildStorageKey()}:has_session`}markSessionHint(){if(!(typeof window>"u"))try{localStorage.setItem(this.buildSessionHintKey(),"1")}catch{}}clearSessionHint(){if(!(typeof window>"u"))try{localStorage.removeItem(this.buildSessionHintKey())}catch{}}hasSessionHint(){if(typeof window>"u")return!1;try{return localStorage.getItem(this.buildSessionHintKey())==="1"}catch{return!0}}async bootstrapRefreshCookie(){if(!(typeof window>"u")&&this.persistence==="none"&&this.config.refreshToken)try{await this.refreshAccessToken()}catch{}}get persistence(){return this.config.persistence??"none"}getStorage(){return typeof window>"u"?null:this.persistence==="localStorage"&&typeof localStorage<"u"?localStorage:this.persistence==="sessionStorage"&&typeof sessionStorage<"u"?sessionStorage:null}getPersistenceStorage(){return this.getStorage()}buildStorageKey(){let e=this.config.publicKey??this.config.secretKey;if(!e)return qe;let t=0;for(let s=0;s<e.length;s++)t=(t<<5)-t+e.charCodeAt(s),t=t&t;return`${qe}_${Math.abs(t).toString(36)}`}persistTokens(){if(this.persistence==="none")return;let e=this.getStorage();!e||!this.config.accessToken||!this.config.refreshToken||e.setItem(this.storageKey,JSON.stringify({accessToken:this.config.accessToken,refreshToken:this.config.refreshToken}))}restoreTokens(){if(this.persistence==="none"||this.config.accessToken&&this.config.refreshToken)return;let e=this.getStorage();if(!e)return;let t=e.getItem(this.storageKey);if(t)try{let{accessToken:s,refreshToken:r}=JSON.parse(t);s&&r&&(this.config.accessToken=s,this.config.refreshToken=r)}catch{e.removeItem(this.storageKey)}}removePersistedTokens(){if(this.persistence==="none")return;let e=this.getStorage();e&&e.removeItem(this.storageKey)}hasPublicKey(){return!!this.config.publicKey}getPublicKey(){return this.config.publicKey}hasSecretKey(){return!!this.config.secretKey}getSecretKey(){return this.config.secretKey}getCredential(){return this.config.publicKey??this.config.secretKey}getAccessToken(){return this.config.accessToken}hasJWT(){return!!this.config.accessToken}getBaseUrl(){return this.config.baseUrl}getAppId(){return this.config.appId}async refreshAccessToken(){if(this.isRefreshing)return this.refreshPromise;if(Date.now()<this.refreshLockedUntil){let t=new T("Token refresh locked due to repeated failures. Please login again.");throw this.emitError(t),this.config.onAuthError?.(t),t}if(this.isRefreshing=!0,!this.config.refreshToken&&typeof window>"u"){this.isRefreshing=!1,this.config.onTokenExpired?.();let t=new T("Refresh token is missing. Please login again.");throw this.emitError(t),this.config.onAuthError?.(t),t}return this.refreshPromise=(async()=>{let{signal:t,cleanup:s}=E({timeout:this.config.requestTimeoutMs??3e4}),r="transient";try{let i={"Content-Type":"application/json"};this.config.refreshToken&&(i.Authorization=`Bearer ${this.config.refreshToken}`);let n=this.getCredential();n&&(i["X-Public-Key"]=n);let o=await fetch(`${this.config.baseUrl}/v1/auth/re-issue`,{method:"POST",headers:i,credentials:"include",signal:t});if(!o.ok){let d=o.status,u;try{let p=await o.clone().json();p&&typeof p.error=="string"?u=p.error:p&&typeof p.code=="string"&&(u=p.code)}catch{}throw d>=500?new Error(`Token refresh failed (${d})`):(d===401||d===403||d===400&&(u==="invalid_grant"||u==="invalid_token")?r="permanent":r="client_bug",new Error(`Token refresh failed (${d}${u?` ${u}`:""})`))}let c=await o.json();if(!c||typeof c.access_token!="string")throw new Error("Token refresh response missing access_token");if(Be(c.access_token))return this.refreshFailureCount=0,this.refreshLockedUntil=0,null;if(this.config.appId){let d=Se(c.access_token)?.app_id;if(typeof d=="string"&&d!==this.config.appId)return this.clearTokens(),this.refreshFailureCount=0,this.refreshLockedUntil=0,null}let l=typeof c.refresh_token=="string"&&c.refresh_token.length>0?c.refresh_token:this.config.refreshToken??"";return l?this.setTokens(c.access_token,l):(this.config.accessToken=c.access_token,this.persistTokens()),this.config.onTokenRefresh?.({accessToken:c.access_token,refreshToken:l}),this.refreshFailureCount=0,this.refreshLockedUntil=0,c.access_token}catch(i){let n=i instanceof Error?i.message:"Token refresh failed";this.refreshFailureCount++;let o=Math.min(500*2**Math.max(0,this.refreshFailureCount-1),3e4);if(this.refreshLockedUntil=Date.now()+o,r==="permanent"){this.clearTokens(),this.config.onTokenExpired?.();let l=new T(`${n}. Please login again.`);throw this.emitError(l),this.config.onAuthError?.(l),l}if(r==="client_bug"){let l=new T(`${n}. Client request invalid; tokens preserved.`);throw this.emitError(l),this.config.onAuthError?.(l),l}let c=new T(`${n}. Transient failure; tokens preserved, will retry after backoff.`);throw this.emitError(c),this.config.onTransientRefreshFailure?.(c),this.config.onAuthError?.(c),c}finally{s(),this.isRefreshing=!1,this.refreshPromise=null}})(),this.refreshPromise}async tryRestoreSessionFromCookie(){if(typeof window>"u")return!1;if(this.config.accessToken&&!this.isTokenExpired(this.config.accessToken))return!0;try{return!!await this.refreshAccessToken()}catch{return!1}}emitError(e){try{this.config.onError?.(e)}catch{}}isTokenExpired(e){let t=Se(e);if(!t||typeof t.exp!="number")return!0;let s=Date.now()/1e3;return t.exp<s+300}async prepareHeaders(e){let t=new Headers;t.set("Content-Type","application/json");let s=this.getCredential();if(s&&t.set("X-Public-Key",s),!e?.skipAuth&&!this.config.accessToken&&this.config.publicKey&&typeof window<"u"&&this.bootRestorePromise&&(this.bootRestoreAlwaysAwait||this.hasSessionHint()))try{await this.bootRestorePromise}catch{}if(!e?.skipAuth&&this.config.accessToken){let r=this.config.accessToken;if(this.isTokenExpired(r)&&this.config.refreshToken){let i=await this.refreshAccessToken();i&&(r=i)}Be(r)||t.set("Authorization",`Bearer ${r}`)}else!e?.skipAuth&&this.config.publicKey&&this.config.secretKey&&!t.has("Authorization")&&t.set("Authorization",`Bearer ${this.config.secretKey}`);return e?.headers&&Object.entries(e.headers).forEach(([r,i])=>{t.set(r,i)}),t}async buildApiError(e){let t={},s=!0;try{t=await e.json()}catch{s=!1}let r=e.status===429?e.headers.get("Retry-After"):null,i;if(r){let f=Number.parseInt(r,10);if(Number.isFinite(f)&&f>=0)i=f;else{let b=Date.parse(r);Number.isFinite(b)&&(i=Math.max(0,Math.round((b-Date.now())/1e3)))}}let n=t.error;if(n&&typeof n=="object"&&"message"in n){let f=n,b={...f.details&&typeof f.details=="object"?f.details:{}};return i!==void 0&&(b.retry_after_seconds=i),new m(e.status,typeof f.message=="string"&&f.message!==""?f.message:"Unknown error",typeof f.code=="string"?f.code:void 0,Object.keys(b).length>0?b:void 0)}let o=typeof t.message=="string"&&t.message!==""?t.message:void 0,c=typeof t.code=="string"&&t.code!==""?t.code:void 0,l=typeof n=="string"&&/^[a-z][a-z0-9_]*$/.test(n),d=o??(typeof n=="string"&&n!==""?n:void 0)??(s?void 0:ot(e.status))??(e.statusText!==""?e.statusText:"Unknown error"),u=c??(l?n:void 0)??nt(e.status),p={};return i!==void 0&&(p.retry_after_seconds=i),typeof t.provider=="string"&&(p.provider=t.provider),typeof t.model=="string"&&(p.model=t.model),new m(e.status,d,u,Object.keys(p).length>0?p:void 0)}async handleResponse(e){if(!e.ok){let t=await this.buildApiError(e);throw this.emitError(t),t}return e.status===204||e.headers.get("content-length")==="0"?{}:e.json()}async doFetch(e,t,s){let r=Date.now(),i=0;try{let n=await this.tryFetchOnce(e,t,s);if(i=n.status,!n.ok&&n.status===401&&!s?.skipAuth&&this.config.publicKey&&typeof window<"u"&&await this.tryRestoreSessionFromCookie()){let c=await this.prepareHeaders(s);t.body instanceof FormData&&c.delete("Content-Type");let l=await this.tryFetchOnce(e,{...t,headers:c},s);return i=l.status,await this.handleResponse(l.response)}return await this.handleResponse(n.response)}finally{this.recentCalls.push({method:(t.method||"GET").toUpperCase(),path:De(e),status:i,duration_ms:Date.now()-r,timestamp:new Date().toISOString()})}}resolveOrigin(e){return this.directBaseUrl&&!this.directDisabled&&pe(e)==="omit"?this.directBaseUrl:this.config.baseUrl}learnDirectOrigin(e){if(this.directDisabled||this.directBaseUrl)return;let t=e.headers?.get("X-CB-Direct-Base");if(t)try{let s=new URL(t),r=new URL(this.config.baseUrl);if(s.protocol!=="https:")return;let i=n=>n.split(".").slice(-2).join(".");if(i(s.hostname)!==i(r.hostname))return;this.directBaseUrl=s.origin}catch{}}async fetchPassthrough(e,t){let s=this.resolveOrigin(e);try{let r=await fetch(`${s}${e}`,t);return this.learnDirectOrigin(r),r}catch(r){if(s!==this.config.baseUrl&&!Re(r))return this.directDisabled=!0,fetch(`${this.config.baseUrl}${e}`,t);throw r}}async tryFetchOnce(e,t,s){let{signal:r,cleanup:i}=E({timeout:s?.timeout??this.config.requestTimeoutMs??3e4,signal:s?.signal}),n=this.resolveOrigin(e);try{let o=await fetch(`${n}${e}`,{...t,credentials:pe(e),signal:r});return this.learnDirectOrigin(o),{response:o,ok:o.ok,status:o.status}}catch(o){if(n!==this.config.baseUrl&&!Re(o)){this.directDisabled=!0;let c=await fetch(`${this.config.baseUrl}${e}`,{...t,credentials:pe(e),signal:r});return{response:c,ok:c.ok,status:c.status}}throw o}finally{i()}}async get(e,t){let s=await this.prepareHeaders(t);return this.doFetch(e,{method:"GET",headers:s},t)}async post(e,t,s){let r=await this.prepareHeaders(s);return t instanceof FormData&&r.delete("Content-Type"),this.doFetch(e,{method:"POST",headers:r,body:t instanceof FormData?t:JSON.stringify(t)},s)}async put(e,t,s){let r=await this.prepareHeaders(s);return t instanceof FormData&&r.delete("Content-Type"),this.doFetch(e,{method:"PUT",headers:r,body:t instanceof FormData?t:JSON.stringify(t)},s)}async patch(e,t,s){let r=await this.prepareHeaders(s);return this.doFetch(e,{method:"PATCH",headers:r,body:JSON.stringify(t)},s)}async delete(e,t){let s=await this.prepareHeaders(t);return this.doFetch(e,{method:"DELETE",headers:s},t)}async fetchRaw(e,t){let s=await this.prepareHeaders(),r=new Headers(s);t?.headers&&new Headers(t.headers).forEach((o,c)=>r.set(c,o));let i=this.resolveOrigin(e);try{let n=await fetch(`${i}${e}`,{...t,credentials:pe(e),headers:r});return this.learnDirectOrigin(n),n}catch(n){throw i!==this.config.baseUrl&&!Re(n)&&(this.directDisabled=!0),n}}};function He(a){if(!a)throw new Error("cb.game: clientId is required to build a game connection URL. Pass it via `cb.game.createClient({ appId, clientId })`.");return a}var Ie=class{constructor(e,t,s,r){this.type="webtransport";this.transport=null;this.writer=null;this.config=e,this.onMessage=t,this.onClose=s,this.onError=r}async connect(){let e=this.buildUrl();this.transport=new WebTransport(e),await this.transport.ready,this.config.useUnreliableDatagrams!==!1&&this.readDatagrams();let t=await this.transport.createBidirectionalStream();this.writer=t.writable.getWriter(),this.readStream(t.readable),this.transport.closed.then(()=>{this.onClose()}).catch(s=>{this.onError(s)})}buildUrl(){let t=(this.config.gameServerUrl||"https://game.connectbase.world").replace(/^ws/,"http").replace(/^http:/,"https:"),s=new URLSearchParams;return s.set("client_id",He(this.config.clientId)),this.config.publicKey&&s.set("public_key",this.config.publicKey),this.config.accessToken&&s.set("token",this.config.accessToken),`${t}/v1/game/webtransport?${s.toString()}`}async readDatagrams(){if(!this.transport)return;let e=this.transport.datagrams.readable.getReader();try{for(;;){let{value:t,done:s}=await e.read();if(s)break;this.onMessage(t)}}catch{}}async readStream(e){let t=e.getReader(),s=new Uint8Array(0);try{for(;;){let{value:r,done:i}=await t.read();if(i)break;let n=new Uint8Array(s.length+r.length);for(n.set(s),n.set(r,s.length),s=n;s.length>=4;){let o=new DataView(s.buffer).getUint32(0,!0);if(s.length<4+o)break;let c=s.slice(4,4+o);s=s.slice(4+o),this.onMessage(c)}}}catch{}}disconnect(){this.transport&&(this.transport.close(),this.transport=null,this.writer=null)}send(e,t=!0){if(!this.transport)throw new v({code:"NOT_CONNECTED",message:"Not connected"});let s=typeof e=="string"?new TextEncoder().encode(e):e;if(t){if(this.writer){let r=new Uint8Array(4);new DataView(r.buffer).setUint32(0,s.length,!0);let i=new Uint8Array(4+s.length);i.set(r),i.set(s,4),this.writer.write(i)}}else{let r=this.config.maxDatagramSize||1200;s.length<=r?this.transport.datagrams.writable.getWriter().write(s):(console.warn("Datagram too large, falling back to reliable stream"),this.send(e,!0))}}isConnected(){return this.transport!==null}},ge=class{constructor(e,t,s,r){this.type="websocket";this.ws=null;this.config=e,this.onMessage=t,this.onClose=s,this.onError=r}connect(){return new Promise((e,t)=>{let s=this.buildUrl();try{this.ws=new WebSocket(s),this.ws.binaryType="arraybuffer"}catch(c){t(c);return}let r=()=>{e()},i=()=>{this.onClose()},n=c=>{let l=new Error("WebSocket error");this.onError(l),t(l)},o=c=>{c.data instanceof ArrayBuffer?this.onMessage(new Uint8Array(c.data)):typeof c.data=="string"&&this.onMessage(new TextEncoder().encode(c.data))};this.ws.addEventListener("open",r,{once:!0}),this.ws.addEventListener("close",i),this.ws.addEventListener("error",n,{once:!0}),this.ws.addEventListener("message",o)})}buildUrl(){let t=(this.config.gameServerUrl||"wss://game.connectbase.world").replace(/^http/,"ws"),s=new URLSearchParams;if(s.set("client_id",He(this.config.clientId)),this.config.publicKey&&s.set("public_key",this.config.publicKey),this.config.accessToken&&s.set("token",this.config.accessToken),!this.config.appId)throw new Error("cb.game: appId is required to build a game connection URL. Pass it to `new ConnectBase({ appId })` or per-client via `cb.game.createClient({ appId, clientId })`.");return`${t}/v1/game/${this.config.appId}/ws?${s.toString()}`}disconnect(){this.ws&&(this.ws.close(1e3,"Client disconnected"),this.ws=null)}send(e,t){if(!this.ws||this.ws.readyState!==WebSocket.OPEN)throw new v({code:"NOT_CONNECTED",message:"Not connected"});typeof e=="string"?this.ws.send(e):this.ws.send(e)}isConnected(){return this.ws!==null&&this.ws.readyState===WebSocket.OPEN}};function ke(){return typeof WebTransport<"u"}var me=class{constructor(e){this.transport=null;this.handlers={};this.reconnectAttempts=0;this.reconnectTimer=null;this.pingInterval=null;this.actionSequence=0;this._roomId=null;this._state=null;this._scriptName=null;this._scriptVersion=null;this._isConnected=!1;this._connectionStatus="disconnected";this._lastError=null;this._latency=0;this._transportType="websocket";this.decoder=new TextDecoder;this.pendingHandlers=new Map;this.messageId=0;this.config={gameServerUrl:this.getDefaultGameServerUrl(),autoReconnect:!0,maxReconnectAttempts:5,reconnectInterval:1e3,connectionTimeout:1e4,transport:"auto",useUnreliableDatagrams:!0,...e}}getDefaultGameServerUrl(){if(typeof window<"u"){let e=window.location.hostname;if(e==="localhost"||e==="127.0.0.1")return"ws://localhost:8087"}return"wss://game.connectbase.world"}get transportType(){return this._transportType}get roomId(){return this._roomId}get state(){return this._state}get isConnected(){return this._isConnected}get scriptName(){return this._scriptName}get scriptVersion(){return this._scriptVersion}get connectionState(){return{status:this._connectionStatus,transport:this._transportType==="auto"?null:this._transportType,roomId:this._roomId,latency:this._latency,reconnectAttempt:this.reconnectAttempts,lastError:this._lastError||void 0}}get latency(){return this._latency}on(e,t){return this.handlers[e]=t,this}async connect(e){if(this.transport?.isConnected())return;this._connectionStatus=this.reconnectAttempts>0?"reconnecting":"connecting";let t=this.config.transport||"auto",s=(t==="webtransport"||t==="auto")&&ke(),r=o=>{this.handleMessage(this.decoder.decode(o))},i=()=>{this._isConnected=!1,this._connectionStatus="disconnected",this.stopPingInterval(),this.handlers.onDisconnect?.(new CloseEvent("close")),this.config.autoReconnect&&(this._connectionStatus="reconnecting",this.scheduleReconnect(e))},n=o=>{this._connectionStatus="error",this._lastError=o,this.handlers.onError?.(new v({code:"CONNECTION_ERROR",message:o.message}))};if(s)try{this.transport=new Ie(this.config,r,i,n),await this.transport.connect(),this._transportType="webtransport"}catch{console.log("WebTransport failed, falling back to WebSocket"),this.transport=new ge(this.config,r,i,n),await this.transport.connect(),this._transportType="websocket"}else this.transport=new ge(this.config,r,i,n),await this.transport.connect(),this._transportType="websocket";this._isConnected=!0,this._connectionStatus="connected",this._lastError=null,this.reconnectAttempts=0,this.startPingInterval(),this.handlers.onConnect?.(),e&&await this.joinRoom(e)}disconnect(){this.stopPingInterval(),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=null),this.transport&&(this.transport.disconnect(),this.transport=null),this._isConnected=!1,this._connectionStatus="disconnected",this._roomId=null,this._state=null}async createRoom(e={}){return(await this.createRoomDetailed(e)).state}async createRoomDetailed(e={}){return new Promise((t,s)=>{let r=i=>{if(i.type==="room_created"){let n=i.data;this._roomId=n.room_id,this._state=n.initial_state,this._scriptName=n.script_name??null,this._scriptVersion=n.script_version??null,t({roomId:n.room_id,state:n.initial_state,scriptName:n.script_name,scriptVersion:n.script_version})}else i.type==="error"&&s(R(i))};this.sendWithHandler("create_room",K(e),r)})}async joinRoom(e,t){return new Promise((s,r)=>{let i=n=>{if(n.type==="room_joined"){let o=n.data;this._roomId=o.room_id,this._state=o.initial_state,this._scriptName=null,this._scriptVersion=null,s(o.initial_state)}else n.type==="error"&&r(R(n))};this.sendWithHandler("join_room",{room_id:e,metadata:t},i)})}async leaveRoom(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>{r.type==="room_left"?(this._roomId=null,this._state=null,this._scriptName=null,this._scriptVersion=null,e()):r.type==="error"&&t(R(r))};this.sendWithHandler("leave_room",{},s)})}sendAction(e,t=!1){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});let s=JSON.stringify({type:"action",data:{type:e.type,data:e.data,client_timestamp:e.clientTimestamp??Date.now(),sequence:this.actionSequence++}}),r=t||this._transportType!=="webtransport";this.transport?.send(s,r)}sendChat(e){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});this.send("chat",{message:e})}async requestState(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>{if(r.type==="state"){let i=r.data;this._state=i,e(i)}else r.type==="error"&&t(R(r))};this.sendWithHandler("get_state",{},s)})}async ping(){return new Promise((e,t)=>{let s=Date.now(),r=i=>{if(i.type==="pong"){let n=i.data,o=Date.now()-n.clientTimestamp;this._latency=o,this.handlers.onPong?.(n),e(o)}else i.type==="error"&&t(R(i))};this.sendWithHandler("ping",{timestamp:s},r)})}send(e,t,s){if(!this.transport?.isConnected())throw new v({code:"NOT_CONNECTED",message:"Not connected"});let r=JSON.stringify({type:e,data:t,msg_id:s});this.transport.send(r,!0)}sendWithHandler(e,t,s){let r=`msg_${this.messageId++}`;this.pendingHandlers.set(r,s),setTimeout(()=>{this.pendingHandlers.delete(r)},1e4),this.send(e,t,r)}handleMessage(e){try{let t=JSON.parse(e);if(t.msg_id&&this.pendingHandlers.has(t.msg_id)){let s=this.pendingHandlers.get(t.msg_id);this.pendingHandlers.delete(t.msg_id),s(t);return}switch(t.type){case"delta":this.handleDelta(t);break;case"state":this._state=t.data,this.handlers.onStateUpdate?.(this._state);break;case"player_event":this.handlePlayerEvent(t);break;case"chat":this.handlers.onChat?.({roomId:t.room_id||"",clientId:t.client_id||"",userId:t.user_id,message:t.message||"",serverTime:t.server_time||0});break;case"error":this.handlers.onError?.(R(t));break;case"room_stale":this.handlers.onRoomStale?this.handlers.onRoomStale({reason:t.reason||"unknown",roomId:t.room_id||"",scriptId:t.script_id,scriptVersion:t.script_version,serverTime:t.server_time||0}):console.warn("[connect-base game] room_stale received but onRoomStale handler not set:",{reason:t.reason,roomId:t.room_id,scriptVersion:t.script_version});break}}catch{console.error("Failed to parse game message:",e)}}handleDelta(e){let t=e.delta;if(!t)return;let s={fromVersion:t.from_version,toVersion:t.to_version,changes:t.changes.map(r=>({path:r.path,operation:r.operation,value:r.value,oldValue:r.old_value})),tick:t.tick};if(this._state){for(let r of s.changes)this.applyChange(r);this._state.version=s.toVersion}if(this.handlers.onAction){for(let r of s.changes)if(r.path.startsWith("actions.")&&r.operation==="set"&&r.value){let i=r.value;this.handlers.onAction({type:i.type||"",clientId:i.client_id||"",data:i.data,timestamp:i.timestamp||0})}}this.handlers.onDelta?.(s)}applyChange(e){if(!this._state)return;let t=e.path.split("."),s=this._state.state;for(let i=0;i<t.length-1;i++){let n=t[i];n in s||(s[n]={}),s=s[n]}let r=t[t.length-1];e.operation==="delete"?delete s[r]:s[r]=e.value}handlePlayerEvent(e){let t={clientId:e.player?.client_id||"",userId:e.player?.user_id,joinedAt:e.player?.joined_at||0,metadata:e.player?.metadata};e.event==="joined"?this.handlers.onPlayerJoined?.(t):e.event==="left"&&this.handlers.onPlayerLeft?.(t)}scheduleReconnect(e){if(this.reconnectAttempts>=(this.config.maxReconnectAttempts??5)){console.error("Max reconnect attempts reached");return}let t=Math.min((this.config.reconnectInterval??1e3)*2**this.reconnectAttempts,3e4);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>{console.log(`Reconnecting... (attempt ${this.reconnectAttempts})`),this.connect(e||this._roomId||void 0).catch(()=>{})},t)}startPingInterval(){this.pingInterval=setInterval(()=>{this.ping().catch(()=>{})},3e4)}stopPingInterval(){this.pingInterval&&(clearInterval(this.pingInterval),this.pingInterval=null)}};var at="$auth.member_id";var ct="https://api.connectbase.world",lt="https://socket.connectbase.world",dt="https://webrtc.connectbase.world",ut="https://video.connectbase.world",pt="https://game.connectbase.world",fe=class{constructor(e={}){let t=i=>{if(!(typeof process>"u"||!process.env))return process.env[i]},s={baseUrl:e.baseUrl||t("CB_BASE_URL")||ct,publicKey:e.publicKey,secretKey:e.secretKey,appId:e.appId,persistence:e.persistence,autoRestoreSession:e.autoRestoreSession,requestTimeoutMs:e.requestTimeoutMs,onError:e.onError,onTokenRefresh:e.onTokenRefresh,onAuthError:e.onAuthError,onTokenExpired:e.onTokenExpired,onTransientRefreshFailure:e.onTransientRefreshFailure};this.http=new he(s),this.auth=new j(this.http),this.database=new J(this.http),this.storage=new oe(this.http),this.publicKey=new se(this.http),this.functions=new X(this.http),this.realtime=new ne(this.http,e.socketUrl||t("CB_SOCKET_URL")||lt),this.webrtc=new de(this.http,e.webrtcUrl||t("CB_WEBRTC_URL")||dt,e.appId),this.errorTracker=new Q(this.http,e.errorTracker),this.oauth=new ee(this.http),this.payment=new te(this.http),this.subscription=new ae(this.http),this.push=new re(this.http),this.roles=new q(this.http),this.appMembers=new M(this.http),this.video=new le(this.http,e.videoUrl||t("CB_VIDEO_URL")||ut),this.game=new O(this.http,e.gameUrl||t("CB_GAME_URL")||pt,e.appId),this.ads=new A(this.http),this.native=new D,this.knowledge=new Y(this.http),this.ai=new $(this.http),this.queue=new ie(this.http),this.analytics=new z(this.http),this.endpoint=new U(this.http),this.support=new ce(this.http),this.auth._attachAnalytics(this.analytics),(e.autoRestoreSession??!0)&&typeof window<"u"&&(this.isOAuthRedirectCallbackUrl()?this.http.setBootRestorePromise(this.oauth.consumeRedirectCallbackOnBoot(),{alwaysAwait:!0}):this.isOAuthCallbackUrl()||this.http.setBootRestorePromise(this.http.tryRestoreSessionFromCookie()))}isOAuthCallbackUrl(){if(typeof window>"u"||!window.location)return!1;let e=new URLSearchParams(window.location.search);return!!(e.has("access_token")&&e.has("refresh_token")||e.has("code")&&e.has("state")||e.has("error")&&e.has("state"))}isOAuthRedirectCallbackUrl(){if(typeof window>"u"||!window.location||window.opener)return!1;let e=new URLSearchParams(window.location.search);return e.has("access_token")&&e.has("refresh_token")}async restoreSession(){return this.http.tryRestoreSessionFromCookie()}setTokens(e,t){this.http.setTokens(e,t)}clearTokens(){this.http.clearTokens()}updateConfig(e){this.http.updateConfig(e)}},ht=fe;return We(gt);})();
1
+ "use strict";var ConnectBaseModule=(()=>{var ye=Object.defineProperty;var Fe=Object.getOwnPropertyDescriptor;var Ne=Object.getOwnPropertyNames;var Ge=Object.prototype.hasOwnProperty;var Ke=(a,e)=>{for(var t in e)ye(a,t,{get:e[t],enumerable:!0})},Ve=(a,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Ne(e))!Ge.call(a,r)&&r!==t&&ye(a,r,{get:()=>e[r],enumerable:!(s=Fe(e,r))||s.enumerable});return a};var We=a=>Ve(ye({},"__esModule",{value:!0}),a);var gt={};Ke(gt,{AIAPI:()=>$,AIError:()=>I,AUTH_MEMBER_ID_TOKEN:()=>at,AdsAPI:()=>A,ApiError:()=>f,AppMembersAPI:()=>M,AuthError:()=>T,ConnectBase:()=>fe,EndpointAPI:()=>U,GameAPI:()=>O,GameConfigAPI:()=>L,GameError:()=>v,GameRoom:()=>G,GameRoomTransport:()=>me,NativeAPI:()=>D,RolesAPI:()=>q,SessionManager:()=>N,VideoProcessingError:()=>H,default:()=>ht,detectInAppBrowser:()=>V,escapeToExternalBrowser:()=>Z,isWebTransportSupported:()=>ke,toAIError:()=>C,toCreateRoomWire:()=>K});var A=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async getConnectionStatus(){let e=this.getPublicPrefix();return this.http.get(`${e}/ads/connection`)}async getReport(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;e&&r.set("start",e),t&&r.set("end",t);let i=r.toString();return this.http.get(`${s}/ads/reports${i?`?${i}`:""}`)}async getReportSummary(){let e=this.getPublicPrefix();return this.http.get(`${e}/ads/reports/summary`)}async getAdMobReport(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;e&&r.set("start",e),t&&r.set("end",t);let i=r.toString();return this.http.get(`${s}/ads/admob/reports${i?`?${i}`:""}`)}async getAdMobReportSummary(){let e=this.getPublicPrefix();return this.http.get(`${e}/ads/admob/reports/summary`)}};var f=class extends Error{constructor(t,s,r,i){super(s);this.statusCode=t;this.name="ApiError",this.code=r,this.details=i}toJSON(){return{name:this.name,message:this.message,code:this.code,statusCode:this.statusCode,details:this.details}}},I=class extends Error{constructor(e){super(e.message||e.code||"AI request failed"),this.name="AIError",this.code=e.code||"stream_failed",this.retryable=e.retryable??ze(this.code),this.status=e.status,this.provider=e.provider,this.model=e.model,this.retryAfter=e.retryAfter,this.detailCode=e.detailCode,this.sessionId=e.sessionId}toJSON(){return{name:this.name,code:this.code,message:this.message,retryable:this.retryable,status:this.status,provider:this.provider,model:this.model,retryAfter:this.retryAfter,detailCode:this.detailCode,sessionId:this.sessionId}}};function ze(a){return a==="provider_timeout"||a==="service_unavailable"||a==="rate_limit_exceeded"||a==="stream_failed"}function C(a,e){if(a instanceof I)return a;let t=typeof a=="object"&&a!==null?a:{},s=d=>typeof d=="string"&&d!==""?d:void 0,r=d=>typeof d=="number"&&Number.isFinite(d)?d:void 0,i=s(t.error)??s(t.code)??e?.code,n=s(t.detail_code)??s(t.detailCode)??s(t.code),o=i??"stream_failed",c=n&&n!==o?n:void 0,l=s(t.message)??(a instanceof Error?a.message:void 0)??e?.message??o;return new I({code:o,message:l,retryable:typeof t.retryable=="boolean"?t.retryable:void 0,status:r(t.status)??r(t.statusCode)??e?.status,provider:s(t.provider),model:s(t.model),retryAfter:r(t.retry_after_seconds)??r(t.retryAfter),detailCode:c,sessionId:s(t.session_id)??s(t.sessionId)??e?.sessionId})}var T=class extends Error{constructor(e){super(e),this.name="AuthError"}},v=class extends Error{constructor(e){super(e.message||e.code||"GameError"),this.name="GameError",this.code=e.code||"UNKNOWN",this.phase=e.phase,this.feature=e.feature,this.roomId=e.roomId,this.scriptId=e.scriptId,this.originClientId=e.originClientId,this.requested=e.requested,this.available=e.available}toJSON(){return{name:this.name,code:this.code,message:this.message,phase:this.phase,feature:this.feature,roomId:this.roomId,scriptId:this.scriptId,originClientId:this.originClientId,requested:this.requested,available:this.available}}};function je(a){let e={provider_timeout:504,gateway_timeout:504,bad_gateway:502,service_unavailable:503,rate_limit_exceeded:429,quota_exceeded:429,invalid_request:400,config_error:400,unauthorized:401},t={};return a.provider&&(t.provider=a.provider),a.model&&(t.model=a.model),a.retryAfter!==void 0&&(t.retry_after_seconds=a.retryAfter),new f(a.status??e[a.code]??500,a.message,a.detailCode||a.code,Object.keys(t).length>0?t:void 0)}var Je=9e4,Qe=3e5,Xe=1e4,$=class{constructor(e){this.http=e}async chat(e,t){let s=Math.min(t?.timeout??this.http.requestTimeoutMs??Je,Qe),r=new AbortController,i=!1,n=setTimeout(()=>{i=!0,r.abort()},s+Xe),o=t?.signal,c=()=>r.abort();o&&(o.aborted?r.abort():o.addEventListener("abort",c,{once:!0}));let l={content:"",provider:"",model:""},d,u=!1,p="";try{await this.runStream({...e,timeoutSeconds:Math.ceil(s/1e3)},{onToken:h=>{l.content+=h},onReasoning:h=>{p+=h},onSources:h=>{l.sources=h},onError:h=>{d=h},onAbort:()=>{u=!0}},{signal:r.signal},{onHttpError:async h=>{throw await this.http.buildApiError(h)},onResultMeta:h=>{h.finishReason&&(l.finishReason=h.finishReason),h.toolCalls?.length&&(l.toolCalls=h.toolCalls),h.usage&&(l.usage=h.usage),h.provider&&(l.provider=h.provider),h.model&&(l.model=h.model)}})}finally{clearTimeout(n),o?.removeEventListener("abort",c)}if(d)throw je(d);if(u)throw i?new f(504,`AI \uC751\uB2F5\uC774 ${Math.round(s/1e3)}\uCD08 \uC608\uC0B0 \uC548\uC5D0 \uB05D\uB098\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4`,"provider_timeout"):new DOMException("The operation was aborted.","AbortError");if(d)throw d;return p&&(l.reasoning=p),l}async chatStream(e,t,s){return this.runStream(e,t,s)}async runStream(e,t,s,r){let i=s?.signal,n=c=>i?.aborted===!0||c instanceof DOMException&&c.name==="AbortError"||typeof c=="object"&&c!==null&&c.name==="AbortError",o;try{let c=await this.http.fetchRaw("/v1/public/ai/chat/stream",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),signal:i});if(!c.ok){r?.onHttpError&&await r.onHttpError(c);let u=await c.json().catch(()=>({error:"stream_failed"}));t.onError?.(C(u,{message:"Stream request failed",status:c.status}));return}if(o=c.body?.getReader(),!o){t.onError?.(new I({code:"stream_failed",message:"ReadableStream not supported",retryable:!1}));return}let l=new TextDecoder,d="";for(;;){let{done:u,value:p}=await o.read();if(u)break;d+=l.decode(p,{stream:!0});let h=d.split(`
2
+ `);d=h.pop()||"";for(let m of h){if(!m.startsWith("data: "))continue;let b=m.slice(6).trim();if(b==="[DONE]"){t.onDone?.();return}try{let g=JSON.parse(b);if(g.error){t.onError?.(C(g));return}if(g.type==="sources"&&g.sources){t.onSources?.(g.sources);continue}if(g.type==="tool_start"||g.type==="tool_end"){t.onToolEvent?.({type:g.type,name:g.name,toolCallId:g.toolCallId,arguments:g.arguments,result:g.result,success:g.success,durationMs:g.durationMs});continue}if(g.type==="searching"){g.searching&&t.onSearching?.(g.searching);continue}if(g.type==="heartbeat")continue;if((g.finishReason||g.toolCalls?.length||g.usage||g.provider||g.model)&&r?.onResultMeta?.(g),g.reasoning&&t.onReasoning?.(g.reasoning),g.content&&t.onToken?.(g.content),g.done){t.onDone?.();return}}catch{}}}}catch(c){if(n(c)){t.onAbort?.();return}throw c}finally{if(o)try{await o.cancel()}catch{}}}};var ve="__cb_session",we="__cb_visitor_uid",W="__cb_last_activity";function F(){return crypto?.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,a=>{let e=Math.random()*16|0;return(a==="x"?e:e&3|8).toString(16)})}var N=class{constructor(){this._sessionId=null;this._visitorUid=null;this._lastActivity=0;this._isNewSession=!1}get sessionId(){return this.ensureSession(),this._sessionId}get visitorUid(){return this._visitorUid||(this._visitorUid=this.loadOrCreateVisitorUid()),this._visitorUid}get isNewSession(){return this._isNewSession}touch(){this._lastActivity=Date.now(),this._isNewSession=!1;try{typeof sessionStorage<"u"&&sessionStorage.setItem(W,String(this._lastActivity))}catch{}}reset(){this._sessionId=null,this._isNewSession=!1;try{typeof sessionStorage<"u"&&(sessionStorage.removeItem(ve),sessionStorage.removeItem(W))}catch{}}regenerateVisitorUid(){let e=F();this._visitorUid=e;try{typeof localStorage<"u"&&localStorage.setItem(we,e)}catch{}return this.reset(),e}ensureSession(){let e=Date.now();if(!this._sessionId)try{if(typeof sessionStorage<"u"){this._sessionId=sessionStorage.getItem(ve);let t=sessionStorage.getItem(W);this._lastActivity=t?parseInt(t,10):0}}catch{}if(!this._sessionId||this._lastActivity>0&&e-this._lastActivity>18e5){this._sessionId=F(),this._isNewSession=!0,this._lastActivity=e;try{typeof sessionStorage<"u"&&(sessionStorage.setItem(ve,this._sessionId),sessionStorage.setItem(W,String(e)))}catch{}}}loadOrCreateVisitorUid(){try{if(typeof localStorage<"u"){let e=localStorage.getItem(we);if(e)return e;let t=F();return localStorage.setItem(we,t),t}}catch{}return F()}};function Te(a){if(!a)return"";let e=new URLSearchParams;a.start_date!==void 0&&e.set("start_date",String(a.start_date)),a.end_date!==void 0&&e.set("end_date",String(a.end_date)),a.limit!==void 0&&e.set("limit",String(a.limit));let t=e.toString();return t?`?${t}`:""}function Ye(){if(typeof window>"u")return{};try{let a=new URLSearchParams(window.location.search),e={};for(let t of["utm_source","utm_medium","utm_campaign","utm_content","utm_term"]){let s=a.get(t);s&&(e[t]=s)}return e}catch{return{}}}var z=class{constructor(e){this.storageWebId=null;this.memberId=null;this.eventQueue=[];this.batchTimer=null;this.isInitialized=!1;this.heartbeatTimer=null;this.visibilityHandler=null;this.unloadHeartbeatHandler=null;this.popstateHandler=null;this.beforeUnloadHandler=null;this.origPushState=null;this.origReplaceState=null;this.heatmapClickHandler=null;this.heatmapScrollHandler=null;this.utm={};this.handleHeatmapClick=e=>{let t=e.clientX/window.innerWidth*100,s=e.clientY/window.innerHeight*100;this.recordHeatmapEvent("click",t,s)};this.heatmapQueue=[];this.http=e,this.config={trackPageViews:!0,trackEvents:!0,trackSessions:!0,heatmap:!1,recording:!1,batchSize:10,flushInterval:5e3,respectDoNotTrack:!0,debug:!1},this.consent={analytics:!0,heatmap:!1,recording:!1},this.session=new N}init(e,t){if(this.isInitialized){this.log("Analytics already initialized");return}if(typeof window>"u"){this.log("Analytics only works in browser environment");return}if(t?.respectDoNotTrack!==!1&&this.isDNT()){this.log("Do Not Track enabled, analytics disabled");return}this.storageWebId=e,Object.assign(this.config,t),this.isInitialized=!0,this.utm=Ye(),this.config.trackSessions&&(this.trackSessionStart(),this.startHeartbeat()),this.config.trackPageViews&&(this.trackPageView(),this.setupAutoPageView()),this.startBatchTimer(),this.beforeUnloadHandler=()=>this.flushSync(),window.addEventListener("beforeunload",this.beforeUnloadHandler),this.log("Analytics initialized",{storageWebId:e})}destroy(){this.isInitialized&&(this.stopBatchTimer(),this.stopHeartbeat(),this.removeAutoPageView(),this.removeHeatmapListeners(),this.beforeUnloadHandler&&(window.removeEventListener("beforeunload",this.beforeUnloadHandler),this.beforeUnloadHandler=null),this.flush(),this.isInitialized=!1,this.log("Analytics destroyed"))}setConsent(e){Object.assign(this.consent,e),this.log("Consent updated",e),e.analytics===!1&&this.isInitialized&&this.destroy()}getConsent(){return{...this.consent}}trackPageView(e){if(!this.canTrack())return;this.session.touch();let t=this.createBaseEvent("page_view");t.page_path=e||window.location.pathname,t.page_url=window.location.href,t.page_title=document.title,t.referrer=document.referrer||void 0,t.screen_width=window.screen.width,t.screen_height=window.screen.height,Object.assign(t,this.utm),this.enqueue(t)}trackEvent(e,t){if(!this.canTrack()||!this.config.trackEvents)return;this.session.touch();let s=this.createBaseEvent("event");s.event_name=e,s.event_properties=t,s.page_path=window.location.pathname,s.page_url=window.location.href,this.enqueue(s)}identify(e){this.memberId&&this.memberId!==e&&this.reset(),this.setMemberId(e),this.linkMemberSilent(e)}reset(){this.setMemberId(null),this.eventQueue=[],this.heatmapQueue=[];let e=this.session.regenerateVisitorUid();this.log("Analytics reset",{newVisitorUid:e})}setMemberId(e){if(this.memberId=e||null,typeof window<"u"){let t=window;e?typeof t.__cbSetMember=="function"&&t.__cbSetMember(e):typeof t.__cbClearMember=="function"&&t.__cbClearMember()}this.log("Member id set",{memberId:e})}linkMemberSilent(e,t=!1){if(!this.storageWebId)return;let s=this.http.hasPublicKey()?"/v1/public":"/v1";this.http.post(`${s}/storages/web/${this.storageWebId}/visitors/link-member`,{visitor_uid:this.session.visitorUid,app_member_id:e}).then(r=>{r&&(this.log("link-member response",r),!t&&r.success===!1&&r.code==="VISITOR_LINKED_TO_OTHER_MEMBER"&&(this.log("user-switch detected \u2014 regenerating visitor_uid"),this.eventQueue=[],this.heatmapQueue=[],this.session.regenerateVisitorUid(),this.linkMemberSilent(e,!0)))}).catch(r=>{this.log("link-member silent fail",r)})}getMemberId(){return this.memberId}enableHeatmap(e){if(!this.canTrack()||!this.consent.heatmap)return;let t=e?.click??!0,s=e?.scroll??!0;if(t&&(this.heatmapClickHandler=this.handleHeatmapClick,document.addEventListener("click",this.heatmapClickHandler)),s){let r=null,i=0;this.heatmapScrollHandler=()=>{let n=Math.round((window.scrollY+window.innerHeight)/document.documentElement.scrollHeight*100);i=Math.max(i,n),r&&clearTimeout(r),r=setTimeout(()=>{this.recordHeatmapEvent("scroll",50,i*(window.innerHeight/100),i)},500)},window.addEventListener("scroll",this.heatmapScrollHandler,{passive:!0})}this.log("Heatmap enabled",e)}enableHeartbeat(){if(!this.canTrack()||this.heartbeatTimer)return;let e=()=>{if(!this.canTrack())return;let t=this.http.hasPublicKey()?"/v1/public":"/v1";this.http.post(`${t}/storages/web/${this.storageWebId}/sessions/heartbeat`,{visitor_uid:this.session.visitorUid,session_id:this.session.sessionId}).catch(()=>{})};this.heartbeatTimer=setInterval(e,3e4),document.addEventListener("visibilitychange",()=>{document.hidden?this.heartbeatTimer&&(clearInterval(this.heartbeatTimer),this.heartbeatTimer=null):this.heartbeatTimer||(this.heartbeatTimer=setInterval(e,3e4),e())}),window.addEventListener("beforeunload",()=>{if(navigator?.sendBeacon&&this.storageWebId){let t=this.http.hasPublicKey()?"/v1/public":"/v1",s=`${this.http.getBaseUrl()}${t}/storages/web/${this.storageWebId}/sessions/heartbeat`;navigator.sendBeacon(s,JSON.stringify({visitor_uid:this.session.visitorUid,session_id:this.session.sessionId}))}}),e(),this.log("Heartbeat enabled (30s interval)")}async flush(){await this.flushQueue()}async getPopularPages(e,t){let s=this.requireServerSideStorageId(e,"getPopularPages"),r=Te(t);return this.http.get(`/v1/storages/web/${s}/popular-pages${r}`)}async getNavigationFlow(e,t){let s=this.requireServerSideStorageId(e,"getNavigationFlow"),r=Te(t);return this.http.get(`/v1/storages/web/${s}/navigation/flow${r}`)}async getVisitors(e,t){let s=this.requireServerSideStorageId(e,"getVisitors"),r=new URLSearchParams;t?.limit!==void 0&&r.set("limit",String(t.limit)),t?.offset!==void 0&&r.set("offset",String(t.offset)),t?.sort_by&&r.set("sort_by",t.sort_by);let i=r.toString()?`?${r.toString()}`:"";return this.http.get(`/v1/storages/web/${s}/visitors${i}`)}async getVisitorGroups(e,t){let s=this.requireServerSideStorageId(e,"getVisitorGroups"),r=new URLSearchParams;t?.limit!==void 0&&r.set("limit",String(t.limit)),t?.offset!==void 0&&r.set("offset",String(t.offset)),t?.sort_by&&r.set("sort_by",t.sort_by);let i=r.toString()?`?${r.toString()}`:"";return this.http.get(`/v1/storages/web/${s}/visitor-groups${i}`)}async getVisitorByMember(e,t){let s=this.requireServerSideStorageId(e,"getVisitorByMember");return this.http.get(`/v1/storages/web/${s}/members/${t}/visitor`)}async mergeVisitors(e,t){let s=this.requireServerSideStorageId(e,"mergeVisitors");return this.http.post(`/v1/storages/web/${s}/visitors/merge`,t)}requireServerSideStorageId(e,t){if(this.http.hasPublicKey())throw new Error(`cb.analytics.${t}() \uB294 \uCF58\uC194 JWT \uB610\uB294 User Secret Key(cb_sk_) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. \uBE0C\uB77C\uC6B0\uC800 SDK \uC758 Public Key(cb_pk_) \uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.`);let s=e??this.storageWebId;if(!s)throw new Error(`cb.analytics.${t}() \uD638\uCD9C \uC2DC storageWebId \uAC00 \uD544\uC694\uD569\uB2C8\uB2E4 (init \uB610\uB294 \uC778\uC790\uB85C \uC804\uB2EC).`);return s}getSession(){return this.session}canTrack(){return!(!this.isInitialized||!this.storageWebId||!this.consent.analytics)}isDNT(){if(typeof navigator>"u")return!1;let e=navigator.globalPrivacyControl;return navigator.doNotTrack==="1"||e===!0}createBaseEvent(e){return{type:e,event_id:F(),timestamp:new Date().toISOString(),session_id:this.session.sessionId,visitor_uid:this.session.visitorUid}}enqueue(e){this.eventQueue.push(e),this.eventQueue.length>=this.config.batchSize&&this.flushQueue()}async flushQueue(){if(this.eventQueue.length===0||!this.storageWebId)return;let e=this.eventQueue.splice(0),t=this.http.hasPublicKey()?"/v1/public":"/v1";try{await this.http.post(`${t}/storages/web/${this.storageWebId}/visitors/batch`,{visitor_uid:this.session.visitorUid,...this.memberId?{app_member_id:this.memberId}:{},events:e.map(s=>({event_id:s.event_id,timestamp:s.timestamp,page_path:s.page_path||"",page_url:s.page_url||"",page_title:s.page_title||"",referrer:s.referrer||"",user_agent:typeof navigator<"u"?navigator.userAgent:"",screen_width:s.screen_width||0,screen_height:s.screen_height||0,session_id:s.session_id,session_start:s.type==="session_start",is_page_view:s.type==="page_view",event_name:s.event_name,event_properties:s.event_properties,utm_source:s.utm_source,utm_medium:s.utm_medium,utm_campaign:s.utm_campaign,utm_content:s.utm_content,utm_term:s.utm_term}))}),this.log(`Flushed ${e.length} events`)}catch(s){this.eventQueue.length<this.config.batchSize*3&&this.eventQueue.unshift(...e),this.log("Flush failed",s)}}flushSync(){if(this.eventQueue.length===0||!this.storageWebId||typeof navigator>"u"||!navigator.sendBeacon)return;let e=this.eventQueue.splice(0),t=this.http.hasPublicKey()?"/v1/public":"/v1",r=`${this.http.getBaseUrl()}${t}/storages/web/${this.storageWebId}/visitors/batch`,i=typeof navigator<"u"?navigator.userAgent:"",n=JSON.stringify({visitor_uid:this.session.visitorUid,...this.memberId?{app_member_id:this.memberId}:{},events:e.map(o=>({event_id:o.event_id,timestamp:o.timestamp,page_path:o.page_path||"",page_url:o.page_url||"",page_title:o.page_title||"",referrer:o.referrer||"",user_agent:i,screen_width:o.screen_width||0,screen_height:o.screen_height||0,session_id:o.session_id,session_start:o.type==="session_start",is_page_view:o.type==="page_view",event_name:o.event_name,event_properties:o.event_properties,utm_source:o.utm_source,utm_medium:o.utm_medium,utm_campaign:o.utm_campaign,utm_content:o.utm_content,utm_term:o.utm_term}))});try{navigator.sendBeacon(r,new Blob([n],{type:"application/json"}))}catch{}}trackSessionStart(){let e=this.createBaseEvent("session_start");e.page_path=window.location.pathname,e.page_url=window.location.href,e.referrer=document.referrer||void 0,e.screen_width=window.screen.width,e.screen_height=window.screen.height,Object.assign(e,this.utm),this.enqueue(e)}startBatchTimer(){this.batchTimer=setInterval(()=>this.flushQueue(),this.config.flushInterval)}stopBatchTimer(){this.batchTimer&&(clearInterval(this.batchTimer),this.batchTimer=null)}startHeartbeat(){this.heartbeatTimer=setInterval(()=>{this.canTrack()&&this.sendHeartbeat()},30*1e3),typeof document<"u"&&(this.visibilityHandler=()=>{document.visibilityState==="hidden"?(this.sendHeartbeatBeacon(),this.heartbeatTimer&&(clearInterval(this.heartbeatTimer),this.heartbeatTimer=null)):document.visibilityState==="visible"&&(this.heartbeatTimer||(this.sendHeartbeat(),this.heartbeatTimer=setInterval(()=>{this.canTrack()&&this.sendHeartbeat()},30*1e3)))},document.addEventListener("visibilitychange",this.visibilityHandler)),typeof window<"u"&&(this.unloadHeartbeatHandler=()=>this.sendHeartbeatBeacon(),window.addEventListener("beforeunload",this.unloadHeartbeatHandler))}stopHeartbeat(){this.heartbeatTimer&&(clearInterval(this.heartbeatTimer),this.heartbeatTimer=null),typeof document<"u"&&this.visibilityHandler&&(document.removeEventListener("visibilitychange",this.visibilityHandler),this.visibilityHandler=null),typeof window<"u"&&this.unloadHeartbeatHandler&&(window.removeEventListener("beforeunload",this.unloadHeartbeatHandler),this.unloadHeartbeatHandler=null)}sendHeartbeat(){let e=this.createBaseEvent("heartbeat");if(e.page_path=window.location.pathname,this.enqueue(e),this.storageWebId){let t=this.http.hasPublicKey()?"/v1/public":"/v1";this.http.post(`${t}/storages/web/${this.storageWebId}/sessions/heartbeat`,{visitor_uid:this.session.visitorUid,session_id:this.session.sessionId}).catch(()=>{})}}sendHeartbeatBeacon(){if(!this.storageWebId||typeof navigator>"u"||!navigator.sendBeacon)return;let e=this.http.hasPublicKey()?"/v1/public":"/v1",s=`${this.http.getBaseUrl()}${e}/storages/web/${this.storageWebId}/sessions/heartbeat`,r=JSON.stringify({visitor_uid:this.session.visitorUid,session_id:this.session.sessionId});try{navigator.sendBeacon(s,new Blob([r],{type:"application/json"}))}catch{}}setupAutoPageView(){this.popstateHandler=()=>this.trackPageView(),window.addEventListener("popstate",this.popstateHandler),this.origPushState=history.pushState.bind(history),this.origReplaceState=history.replaceState.bind(history),history.pushState=(...e)=>{this.origPushState(...e),this.trackPageView()},history.replaceState=(...e)=>{this.origReplaceState(...e),this.trackPageView()}}removeAutoPageView(){this.popstateHandler&&(window.removeEventListener("popstate",this.popstateHandler),this.popstateHandler=null),this.origPushState&&(history.pushState=this.origPushState,this.origPushState=null),this.origReplaceState&&(history.replaceState=this.origReplaceState,this.origReplaceState=null)}removeHeatmapListeners(){this.heatmapClickHandler&&(document.removeEventListener("click",this.heatmapClickHandler),this.heatmapClickHandler=null),this.heatmapScrollHandler&&(window.removeEventListener("scroll",this.heatmapScrollHandler),this.heatmapScrollHandler=null)}recordHeatmapEvent(e,t,s,r){if(!this.canTrack()||!this.storageWebId)return;let i=this.http.hasPublicKey()?"/v1/public":"/v1";if(this.heatmapQueue.push({page_path:window.location.pathname,event_type:e,x_percent:Math.round(t*100)/100,y_percent:Math.round(s*100)/100,viewport_width:window.innerWidth,viewport_height:window.innerHeight,scroll_depth_percent:r,session_id:this.session.sessionId}),this.heatmapQueue.length>=50){let n=this.heatmapQueue.splice(0);this.http.post(`${i}/storages/web/${this.storageWebId}/heatmap/batch`,{visitor_uid:this.session.visitorUid,events:n}).catch(()=>{})}}log(...e){this.config.debug&&console.log("[Analytics]",...e)}};var M=class{constructor(e){this.http=e}ensureServerAuth(e){if(this.http.hasPublicKey()&&!this.http.hasJWT()){let t=e==="remove"?"app_member:write":"app_member:read";throw new Error(`cb.appMembers.${e}() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["${t}"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 \uC790\uAE30 \uC815\uBCF4\uB294 cb.auth.getMe() \uB97C \uC4F0\uACE0, \uBCF8\uC778 \uD0C8\uD1F4\uB294 cb.auth.deleteMyAccount() \uB97C \uC4F0\uC138\uC694.`)}}async list(e,t={}){this.ensureServerAuth("list");let s=new URLSearchParams;t.page!==void 0&&s.set("page",String(t.page)),t.pageSize!==void 0&&s.set("page_size",String(t.pageSize));let r=t.search?.trim();r&&s.set("search",r);let i=s.toString();return this.http.get(`/v1/apps/${e}/app-members${i?`?${i}`:""}`)}async get(e,t){return this.ensureServerAuth("get"),this.http.get(`/v1/apps/${e}/app-members/${t}`)}async remove(e,t){return this.ensureServerAuth("remove"),this.http.delete(`/v1/apps/${e}/app-members/${t}`)}};function Ze(a,e){switch(e){case"string":return typeof a=="string";case"number":return typeof a=="number"&&Number.isFinite(a);case"boolean":return typeof a=="boolean";case"array":return Array.isArray(a);case"object":return typeof a=="object"&&a!==null&&!Array.isArray(a);case"string-or-number":return typeof a=="string"||typeof a=="number"&&Number.isFinite(a)}}function k(a,e,t){if(typeof a!="object"||a===null||Array.isArray(a))throw new f(502,`[${t}] expected object, got ${typeof a}`,"SCHEMA_MISMATCH");let s=a;for(let[r,i]of Object.entries(e)){if(!(r in s)){if(i.optional)continue;throw new f(502,`[${t}] missing required field "${r}"`,"SCHEMA_MISMATCH")}let o=s[r];if(!(i.optional&&o==null)&&!Ze(o,i.type))throw new f(502,`[${t}] field "${r}" expected ${i.type}, got ${typeof o}`,"SCHEMA_MISMATCH")}return a}var j=class{constructor(e){this.http=e;this.analytics=null}_attachAnalytics(e){this.analytics=e}notifyVisitorTracker(e){if(this.analytics){this.analytics.setMemberId(e);return}if(typeof window>"u")return;let t=window;e?typeof t.__cbSetMember=="function"&&t.__cbSetMember(e):typeof t.__cbClearMember=="function"&&t.__cbClearMember()}async getAuthSettings(){return this.http.get("/v1/public/auth-settings",{skipAuth:!0})}async signUpMember(e){let t=await this.http.post("/v1/public/app-members/signup",e,{skipAuth:!0});return k(t,{access_token:{type:"string"},refresh_token:{type:"string"},member_id:{type:"string-or-number"}},"auth.signUpMember"),this.http.setTokens(t.access_token,t.refresh_token),this.notifyVisitorTracker(t.member_id),t}async signInMember(e){let t=await this.http.post("/v1/public/app-members/signin",e,{skipAuth:!0});return k(t,{access_token:{type:"string"},refresh_token:{type:"string"},member_id:{type:"string-or-number"}},"auth.signInMember"),this.http.setTokens(t.access_token,t.refresh_token),this.notifyVisitorTracker(t.member_id),t}async getMe(){let e=await this.http.get("/v1/public/app-members/me");return k(e,{member_id:{type:"string-or-number"}},"auth.getMe"),e}async updateCustomData(e){return this.http.patch("/v1/public/app-members/me/custom-data",e)}async adminUpdateMember(e,t){if(!this.http.getSecretKey())throw new Error("adminUpdateMember requires a secretKey. Initialize ConnectBase with both publicKey and secretKey.");return this.http.patch(`/v1/public/app-members/${encodeURIComponent(e)}`,t)}async adminDeleteMember(e){if(!this.http.getSecretKey())throw new Error("adminDeleteMember requires a secretKey. Initialize ConnectBase with both publicKey and secretKey.");return this.http.delete(`/v1/public/app-members/${encodeURIComponent(e)}`)}async deleteMyAccount(){try{return await this.http.delete("/v1/public/app-members/me")}finally{this.http.clearTokens(),this.notifyVisitorTracker(null)}}async signOut(){try{await this.http.post("/v1/auth/logout")}finally{this.http.clearTokens(),this.notifyVisitorTracker(null)}}};var J=class{constructor(e){this.realtimeWs=null;this.realtimeState="disconnected";this.realtimeHandlers=new Map;this.realtimeRetryCount=0;this.realtimeOptions=null;this.pendingRequests=new Map;this.pingInterval=null;this.realtimeOnStateChange=null;this.realtimeOnError=null;this.activeSubscriptions=new Map;this.http=e}getPublicPrefix(){return"/v1/public"}async getTables(){let e=this.getPublicPrefix();return(await this.http.get(`${e}/tables`)).tables}async getTable(e){let t=this.getPublicPrefix();return this.http.get(`${t}/tables/${e}`)}async createTable(e){let t=this.getPublicPrefix(),s={title:e.name,access_level:e.accessLevel??"Creator"};e.schema&&Object.keys(e.schema).length>0&&(s.schema=e.schema),await this.http.post(`${t}/tables`,s)}async updateTable(e,t){let s=this.getPublicPrefix(),r={};t.name!==void 0&&(r.title=t.name),t.schema!==void 0&&(r.schema=t.schema),t.accessLevel!==void 0&&(r.access_level=t.accessLevel),t.description!==void 0&&(r.description=t.description),await this.http.patch(`${s}/tables/${e}`,r)}async deleteTable(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/tables/${e}`)}async getValidationSchema(e){let t=this.getPublicPrefix();return(await this.http.get(`${t}/tables/${e}/validation-schema`)).validation_schema}async setValidationSchema(e,t){await this.http.put(`/v1/apps/${this.requireAppId()}/databases/tables/${e}/validation-schema`,{validation_schema:t})}async deleteValidationSchema(e){await this.http.delete(`/v1/apps/${this.requireAppId()}/databases/tables/${e}/validation-schema`)}requireAppId(){let e=this.http.getAppId();if(!e)throw new Error("setValidationSchema/deleteValidationSchema \uB294 \uCF58\uC194 (JWT) \uC778\uC99D\uC774 \uD544\uC694\uD558\uBA70 ConnectBase config \uC5D0 appId \uAC00 \uC124\uC815\uB418\uC5B4\uC57C \uD569\uB2C8\uB2E4.");return e}async getColumns(e){let t=await this.getTable(e),s=t.schema??{},r=new Set(Array.isArray(s.$required)?s.$required:[]),i=[],n=0;for(let[o,c]of Object.entries(s)){if(o.startsWith("$")||c===void 0||Array.isArray(c))continue;let l="string",d=r.has(o),u,p,h;typeof c=="string"?l=c:(l=c.type,c.required===!0&&(d=!0),c.default!==void 0&&(u=c.default),c.description!==void 0&&(p=c.description),c.encrypted!==void 0&&(h=c.encrypted)),i.push({id:o,name:o,data_type:l,is_required:d,default_value:u,description:p,encrypted:h,order:n++,created_at:t.created_at})}return i}async createColumn(e,t){let s=this.getPublicPrefix();await this.http.post(`${s}/tables/${e}/columns`,t)}async updateColumn(e,t,s){let r=this.getPublicPrefix();await this.http.patch(`${r}/tables/${e}/columns/${t}`,s)}async deleteColumn(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/tables/${e}/columns/${t}`)}async getData(e,t){let s=this.getPublicPrefix();if(t?.where||t?.select||t?.exclude)return this.queryData(e,t);let r=new URLSearchParams;t?.limit&&r.append("limit",t.limit.toString()),t?.offset&&r.append("offset",t.offset.toString()),t?.count===!1&&r.append("count","false"),t?.cursor&&r.append("cursor",t.cursor);let i=r.toString(),n=i?`${s}/tables/${e}/data?${i}`:`${s}/tables/${e}/data`;return this.http.get(n)}async queryData(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/query`,{where:t.where,order_by:t.orderBy,order_direction:t.orderDirection,limit:t.limit,offset:t.offset,select:t.select,exclude:t.exclude,count:t.count,cursor:t.cursor})}async getDataById(e,t){let s=this.getPublicPrefix();return this.http.get(`${s}/tables/${e}/data/${t}`)}async createData(e,t,s){let r=this.getPublicPrefix();if(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e))return this.http.post(`${r}/tables/${e}/data`,t);let n=s?.autoCreate?"?auto_create=true":"";return this.http.post(`${r}/tables/name/${encodeURIComponent(e)}/data${n}`,t)}async updateData(e,t,s){let r=this.getPublicPrefix();return this.http.patch(`${r}/tables/${e}/data/${t}`,s)}async deleteData(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/tables/${e}/data/${t}`)}async createMany(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/bulk`,{data:t.map(r=>r.data)})}async deleteWhere(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/delete-where`,{where:t})}async aggregate(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/aggregate`,{table_id:e,pipeline:t})}async search(e,t,s,r){let i=this.getPublicPrefix();return this.http.post(`${i}/search`,{table_id:e,query:t,fields:s,options:r})}async autocomplete(e,t,s,r){let i=this.getPublicPrefix();return this.http.post(`${i}/autocomplete`,{table_id:e,query:t,field:s,...r})}async geoQuery(e,t,s,r){let i=this.getPublicPrefix();return this.http.post(`${i}/geo`,{table_id:e,field:t,query:s,...r})}async batch(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/batch`,{operations:e});if(s&&s.success===!1){let r=s.results?.find(i=>i&&i.success===!1);throw new Error(r?.error||"batch operation failed")}return s}async transaction(e,t){let s=this.getPublicPrefix(),r=await this.http.post(`${s}/transactions`,{reads:e,writes:t});if(r&&r.success===!1)throw new Error(r.error||"transaction failed");return r}async getDataWithPopulate(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/tables/${e}/data/query`,{where:t.where,order_by:t.orderBy,order_direction:t.orderDirection,limit:t.limit,offset:t.offset,select:t.select,exclude:t.exclude,populate:t.populate,count:t.count})}async listSecurityRules(e){return(await this.http.get(`/v1/apps/${e}/databases/security/rules`)).rules}async createSecurityRule(e,t){return this.http.post(`/v1/apps/${e}/databases/security/rules`,t)}async updateSecurityRule(e,t,s){return this.http.put(`/v1/apps/${e}/databases/security/rules/${t}`,s)}async deleteSecurityRule(e,t){await this.http.delete(`/v1/apps/${e}/databases/security/rules/${t}`)}async listIndexes(e,t){return(await this.http.get(`/v1/apps/${e}/databases/tables/${t}/indexes`)).indexes}async createIndex(e,t,s){return this.http.post(`/v1/apps/${e}/databases/tables/${t}/indexes`,s)}async deleteIndex(e,t,s){await this.http.delete(`/v1/apps/${e}/databases/tables/${t}/indexes/${s}`)}async analyzeIndexes(e,t){return this.http.get(`/v1/apps/${e}/databases/tables/${t}/indexes/analyze`)}async listSearchIndexes(e,t){return(await this.http.get(`/v1/apps/${e}/databases/tables/${t}/search-indexes`)).indexes}async createSearchIndex(e,t,s){return this.http.post(`/v1/apps/${e}/databases/tables/${t}/search-indexes`,s)}async deleteSearchIndex(e,t,s){await this.http.delete(`/v1/apps/${e}/databases/tables/${t}/search-indexes/${s}`)}async listGeoIndexes(e,t){return(await this.http.get(`/v1/apps/${e}/databases/tables/${t}/geo-indexes`)).indexes}async createGeoIndex(e,t,s){return this.http.post(`/v1/apps/${e}/databases/tables/${t}/geo-indexes`,s)}async deleteGeoIndex(e,t,s){await this.http.delete(`/v1/apps/${e}/databases/tables/${t}/geo-indexes/${s}`)}async listRelations(e,t){let s=t?`?source_table=${encodeURIComponent(t)}`:"";return(await this.http.get(`/v1/apps/${e}/databases/relations${s}`)).relations}async createRelation(e,t){return this.http.post(`/v1/apps/${e}/databases/relations`,t)}async deleteRelation(e,t){await this.http.delete(`/v1/apps/${e}/databases/relations/${t}`)}async listTriggers(e){return(await this.http.get(`/v1/apps/${e}/databases/triggers`)).triggers}async createTrigger(e,t){return this.http.post(`/v1/apps/${e}/databases/triggers`,t)}async updateTrigger(e,t,s){return this.http.put(`/v1/apps/${e}/databases/triggers/${t}`,s)}async deleteTrigger(e,t){await this.http.delete(`/v1/apps/${e}/databases/triggers/${t}`)}async setTTL(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/ttl`,t)}async getTTL(e,t){return this.http.get(`/v1/apps/${e}/lifecycle/ttl/${t}`)}async setRetentionPolicy(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/retention`,t)}async getRetentionPolicy(e,t){return this.http.get(`/v1/apps/${e}/lifecycle/retention/${t}`)}async setArchivePolicy(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/archive`,t)}async getArchivePolicy(e,t){return this.http.get(`/v1/apps/${e}/lifecycle/archive/${t}`)}async executeTTL(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/ttl/${t}/execute`,{})}async executeArchive(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/archive/${t}/execute`,{})}async executeRetention(e,t){return this.http.post(`/v1/apps/${e}/lifecycle/retention/${t}/execute`,{})}async listPolicies(e){return(await this.http.get(`/v1/apps/${e}/lifecycle`)).policies}async deletePolicy(e,t){await this.http.delete(`/v1/apps/${e}/lifecycle/${t}`)}async generateTypes(e){return this.http.get(`/v1/apps/${e}/types`)}async listBackups(e){return this.http.get(`/v1/apps/${e}/backups`)}async createBackup(e,t){return this.http.post(`/v1/apps/${e}/backups`,t)}async getBackup(e,t){return this.http.get(`/v1/apps/${e}/backups/${t}`)}async deleteBackup(e,t){await this.http.delete(`/v1/apps/${e}/backups/${t}`)}async restoreBackup(e,t,s){return this.http.post(`/v1/apps/${e}/backups/${t}/restore`,s||{backup_id:t})}async exportData(e,t){return this.http.post(`/v1/apps/${e}/data/export`,t||{format:"json"})}async importData(e,t){return this.http.post(`/v1/apps/${e}/data/import`,t)}async copyTable(e,t){return this.http.post(`/v1/apps/${e}/tables/copy`,t)}async migrateData(e,t){return this.http.post(`/v1/apps/${e}/tables/migrate`,t)}connectRealtime(e){return this.realtimeState==="connected"?Promise.resolve():this.realtimeState==="connecting"?Promise.reject(new Error("Already connecting")):(this.realtimeOptions=e,this.realtimeRetryCount=0,this.doRealtimeConnect())}disconnectRealtime(){this.realtimeOptions=null,this.setRealtimeState("disconnected"),this.realtimeRetryCount=0,this.stopRealtimePing(),this.realtimeWs&&(this.realtimeWs.close(),this.realtimeWs=null),this.pendingRequests.forEach(e=>{clearTimeout(e.timeout),e.reject(new Error("Connection closed"))}),this.pendingRequests.clear(),this.realtimeHandlers.clear(),this.activeSubscriptions.clear()}subscribe(e,t,s){if(this.realtimeState!=="connected")throw new Error("Not connected. Call connectRealtime() first.");let r=`csub_${Date.now()}_${Math.random().toString(36).substring(2,9)}`;this.activeSubscriptions.set(r,{tableId:e,options:s,handlers:t});let i=this.sendSubscribeRequest(e,t,s);return i.catch(n=>{this.activeSubscriptions.delete(r),t.onError?.(n instanceof Error?n:new Error(String(n)))}),{subscriptionId:r,unsubscribe:()=>{this.activeSubscriptions.delete(r),i.then(n=>{this.realtimeHandlers.delete(n),this.realtimeState==="connected"&&this.sendRealtimeMessage({type:"unsubscribe",request_id:this.generateRequestId(),subscription_id:n})}).catch(()=>{})},loadMore:(n,o)=>{this.realtimeState==="connected"&&i.then(c=>{let l={type:"snapshot_more",request_id:this.generateRequestId(),subscription_id:c,offset:n};o!==void 0&&(l.limit=o),this.sendRealtimeMessage(l)}).catch(()=>{})}}}isRealtimeConnected(){return this.realtimeState==="connected"}getRealtimeState(){return this.realtimeState}onRealtimeStateChange(e){return this.realtimeOnStateChange=e,()=>{this.realtimeOnStateChange=null}}onRealtimeError(e){return this.realtimeOnError=e,()=>{this.realtimeOnError=null}}setRealtimeState(e){this.realtimeState!==e&&(this.realtimeState=e,this.realtimeOnStateChange?.(e))}doRealtimeConnect(){if(!this.realtimeOptions)return Promise.reject(new Error("No realtime options"));this.setRealtimeState("connecting");let s=`${(this.realtimeOptions.dataServerUrl||this.http.getBaseUrl()).replace(/^http/,"ws")}/v1/database/realtime/ws?access_token=${encodeURIComponent(this.realtimeOptions.accessToken)}`;return new Promise((r,i)=>{try{this.realtimeWs=new WebSocket(s);let n=!1,o=setTimeout(()=>{n||(n=!0,this.realtimeWs&&(this.realtimeWs.close(),this.realtimeWs=null),this.setRealtimeState("disconnected"),i(new Error("Connection timeout")))},15e3);this.realtimeWs.onopen=()=>{n||(n=!0,clearTimeout(o)),this.setRealtimeState("connected"),this.realtimeRetryCount=0,this.startRealtimePing(),this.debugLog("Database realtime connected"),this.resubscribeAll(),r()},this.realtimeWs.onmessage=c=>{try{let l=JSON.parse(c.data);this.handleRealtimeMessage(l)}catch{this.debugLog("Failed to parse realtime message")}},this.realtimeWs.onclose=()=>{this.debugLog("Database realtime disconnected"),this.realtimeWs=null,this.stopRealtimePing(),n||(n=!0,clearTimeout(o),i(new Error("Connection closed during handshake"))),this.realtimeOptions&&this.realtimeState!=="disconnected"&&this.attemptRealtimeReconnect()},this.realtimeWs.onerror=()=>{this.debugLog("Database realtime error"),this.realtimeOnError?.(new Error("WebSocket connection error"))}}catch(n){this.setRealtimeState("disconnected"),i(n)}})}sendSubscribeRequest(e,t,s){let r=this.generateRequestId();this.realtimeHandlers.set(r,t);let i=s?.where?{filters:s.where.map(n=>({field:n.field,operator:n.operator,value:n.value}))}:void 0;return this.sendRealtimeMessage({type:"subscribe",request_id:r,table_id:e,doc_id:s?.docId,query:i,options:{include_self:s?.includeSelf??!1,include_metadata_changes:s?.includeMetadataChanges??!1}}),new Promise((n,o)=>{let c=setTimeout(()=>{this.pendingRequests.delete(r),this.realtimeHandlers.delete(r),o(new Error("Subscribe request timeout"))},3e4);this.pendingRequests.set(r,{resolve:l=>{let d=l,u=this.realtimeHandlers.get(r);u&&(this.realtimeHandlers.delete(r),this.realtimeHandlers.set(d,u)),n(d)},reject:o,timeout:c})})}resubscribeAll(){if(this.activeSubscriptions.size!==0){this.realtimeHandlers.clear(),this.pendingRequests.forEach(e=>clearTimeout(e.timeout)),this.pendingRequests.clear(),this.debugLog(`Resubscribing ${this.activeSubscriptions.size} subscriptions`);for(let[,e]of this.activeSubscriptions)this.sendSubscribeRequest(e.tableId,e.handlers,e.options).catch(t=>{e.handlers.onError?.(t instanceof Error?t:new Error(String(t)))})}}handleRealtimeMessage(e){switch(e.type){case"subscribed":{let s=e.request_id,r=e.subscription_id,i=this.pendingRequests.get(s);i&&(clearTimeout(i.timeout),i.resolve(r),this.pendingRequests.delete(s));break}case"snapshot":{let s=e.subscription_id,r=this.realtimeHandlers.get(s);if(r?.onSnapshot){let i=e.docs||[],n=e.has_more||!1,o=n?e.next_offset:void 0;r.onSnapshot(i,{totalCount:e.total_count||0,hasMore:n,nextOffset:o})}break}case"change":{let s=e.subscription_id,r=this.realtimeHandlers.get(s);if(r?.onChange){let i=e.changes||[];r.onChange(i)}break}case"presence":{let s=this.realtimeHandlers.get("__presence__");if(s?.onSnapshot){let r=e.states,i=Object.entries(r||{}).map(([n,o])=>({id:n,data:o,exists:!0}));s.onSnapshot(i,{totalCount:i.length,hasMore:!1})}break}case"error":{let s=e.request_id,r=e.message||"Unknown error";if(s){let i=this.pendingRequests.get(s);i&&(clearTimeout(i.timeout),i.reject(new Error(r)),this.pendingRequests.delete(s));let n=this.realtimeHandlers.get(s);n?.onError&&n.onError(new Error(r))}else this.realtimeOnError?.(new Error(r));break}case"pong":break;case"unsubscribed":case"presence_set_ack":case"presence_subscribed":case"typing_subscribed":break}}attemptRealtimeReconnect(){let e=this.realtimeOptions?.maxRetries??5,t=this.realtimeOptions?.retryInterval??1e3;if(this.realtimeRetryCount>=e){this.setRealtimeState("disconnected"),this.realtimeOnError?.(new Error("Realtime connection lost. Max retries exceeded."));return}this.setRealtimeState("connecting"),this.realtimeRetryCount++;let s=Math.min(t*2**(this.realtimeRetryCount-1),3e4);this.debugLog(`Reconnecting in ${s}ms (attempt ${this.realtimeRetryCount}/${e})`),setTimeout(()=>{this.realtimeOptions&&this.doRealtimeConnect().catch(r=>{this.debugLog(`Reconnect failed: ${r}`)})},s)}startRealtimePing(){this.stopRealtimePing(),this.pingInterval=setInterval(()=>{this.realtimeState==="connected"&&this.realtimeWs?.readyState===WebSocket.OPEN&&this.sendRealtimeMessage({type:"ping",timestamp:Date.now()})},3e4)}stopRealtimePing(){this.pingInterval&&(clearInterval(this.pingInterval),this.pingInterval=null)}sendRealtimeMessage(e){this.realtimeWs?.readyState===WebSocket.OPEN&&this.realtimeWs.send(JSON.stringify(e))}generateRequestId(){return`req_${Date.now()}_${Math.random().toString(36).substring(2,9)}`}debugLog(e){this.realtimeOptions?.debug&&console.log(`[DatabaseRealtime] ${e}`)}};var U=class{constructor(e){this.http=e}async call(e,t){if(!e)throw new Error("EndpointAPI.call: label required");if(!t.path||!t.path.startsWith("/"))throw new Error(`EndpointAPI.call: path must start with '/', got ${JSON.stringify(t.path)}`);let s=this.proxyPath(e,t.path),r=new Headers(t.headers??{});if(!r.has("X-Public-Key")){let i=this.http.getPublicKey();if(!i)throw new Error("EndpointAPI.call: publicKey not configured. Pass `publicKey` to ConnectBase constructor.");r.set("X-Public-Key",i)}return this.http.fetchPassthrough(s,{method:t.method??"GET",headers:r,body:t.body,signal:t.signal,redirect:"follow"})}proxyPath(e,t){if(!e)throw new Error("EndpointAPI.call: label required");if(!t||!t.startsWith("/"))throw new Error(`EndpointAPI.call: path must start with '/', got ${JSON.stringify(t)}`);return`/v1/proxy/${encodeURIComponent(e)}${t}`}url(e,t){if(!e)throw new Error("EndpointAPI.url: label required");if(!t||!t.startsWith("/"))throw new Error(`EndpointAPI.url: path must start with '/', got ${JSON.stringify(t)}`);return`${this.http.getBaseUrl().replace(/\/+$/,"")}/v1/proxy/${encodeURIComponent(e)}${t}`}async connectWebSocket(e,t={}){if(!e)throw new Error("EndpointAPI.connectWebSocket: label required");let s=t.path??"/";if(!s.startsWith("/"))throw new Error(`EndpointAPI.connectWebSocket: path must start with '/', got ${JSON.stringify(s)}`);let r=this.http.getBaseUrl().replace(/\/+$/,""),i=`${r}/v1/proxy/${encodeURIComponent(e)}/ws-ticket`,n=new Headers,o=this.http.getPublicKey();if(!o)throw new Error("EndpointAPI.connectWebSocket: publicKey not configured. Pass `publicKey` to ConnectBase constructor.");n.set("X-Public-Key",o);let c=await fetch(i,{method:"POST",headers:n,signal:t.signal});if(!c.ok){let p=await c.text().catch(()=>"");throw new Error(`EndpointAPI.connectWebSocket: ticket issuance failed (${c.status}) ${p.slice(0,200)}`)}let{ticket:l}=await c.json();if(!l)throw new Error("EndpointAPI.connectWebSocket: server returned empty ticket");let d=new URL(`${r}/v1/proxy/${encodeURIComponent(e)}${s}`);if(d.protocol=d.protocol==="https:"?"wss:":"ws:",t.query)for(let[p,h]of Object.entries(t.query))d.searchParams.set(p,h);d.searchParams.set("ticket",l);let u=t.protocols?new WebSocket(d.toString(),t.protocols):new WebSocket(d.toString());if(t.signal){let p=()=>{try{u.close(1e3,"client aborted")}catch{}};t.signal.aborted?p():t.signal.addEventListener("abort",p,{once:!0})}return u}async pollUntil(e,t,s,r={}){let i=r.intervalMs??1500,n=r.timeoutMs??5*6e4,o=r.parse??"json",c=Date.now();for(;;){if(r.signal?.aborted)throw new DOMException("aborted","AbortError");if(Date.now()-c>n)throw new Error(`EndpointAPI.pollUntil: timeout after ${n}ms (label=${e}, path=${t.path})`);let l;try{l=await this.call(e,{...t,signal:r.signal})}catch(p){if(p.name==="AbortError")throw p;await Pe(i,r.signal);continue}if(l.status>=500){await et(l),await Pe(i,r.signal);continue}if(l.status>=400){let p=await l.text().catch(()=>"");throw new Error(`EndpointAPI.pollUntil: ${l.status} ${l.statusText} (label=${e}, path=${t.path})${p?` \u2014 ${p.slice(0,200)}`:""}`)}let d;o==="text"?d=await l.text():o==="none"?d=void 0:d=await l.json().catch(()=>{});let u=await s(d,l);if(u!==void 0)return u;await Pe(i,r.signal)}}};async function Pe(a,e){if(e?.aborted)throw new DOMException("aborted","AbortError");return new Promise((t,s)=>{let r=setTimeout(()=>{e?.removeEventListener("abort",i),t()},a),i=()=>{clearTimeout(r),s(new DOMException("aborted","AbortError"))};e?.addEventListener("abort",i,{once:!0})})}async function et(a){try{await a.text()}catch{}}var Q=class{constructor(e,t={}){this.storageWebId=null;this.errorQueue=[];this.batchTimer=null;this.isInitialized=!1;this.originalOnError=null;this.originalOnUnhandledRejection=null;this.http=e,this.config={autoCapture:t.autoCapture??!0,captureTypes:t.captureTypes??["error","unhandledrejection"],batchInterval:t.batchInterval??5e3,maxBatchSize:t.maxBatchSize??10,beforeSend:t.beforeSend??(s=>s),debug:t.debug??!1}}init(e){if(this.isInitialized){this.log("ErrorTracker already initialized");return}if(typeof window>"u"){this.log("ErrorTracker only works in browser environment");return}this.storageWebId=e,this.isInitialized=!0,this.config.autoCapture&&this.setupAutoCapture(),this.startBatchTimer(),this.log("ErrorTracker initialized",{storageWebId:e})}destroy(){this.stopBatchTimer(),this.removeAutoCapture(),this.flushQueue(),this.isInitialized=!1,this.log("ErrorTracker destroyed")}async captureError(e,t){let s=this.createErrorReport(e,t);s&&this.queueError(s)}async captureMessage(e,t){let s={message:e,error_type:"custom",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0,...t};this.queueError(s)}async flush(){await this.flushQueue()}log(...e){this.config.debug&&console.log("[ErrorTracker]",...e)}setupAutoCapture(){typeof window>"u"||(this.config.captureTypes.includes("error")&&(this.originalOnError=window.onerror,window.onerror=(e,t,s,r,i)=>(this.handleGlobalError(e,t,s,r,i),this.originalOnError?this.originalOnError(e,t,s,r,i):!1)),this.config.captureTypes.includes("unhandledrejection")&&(this.originalOnUnhandledRejection=window.onunhandledrejection,window.onunhandledrejection=e=>{this.handleUnhandledRejection(e),this.originalOnUnhandledRejection&&this.originalOnUnhandledRejection(e)}),this.log("Auto capture enabled",{types:this.config.captureTypes}))}removeAutoCapture(){typeof window>"u"||(this.originalOnError!==null&&(window.onerror=this.originalOnError),this.originalOnUnhandledRejection!==null&&(window.onunhandledrejection=this.originalOnUnhandledRejection))}handleGlobalError(e,t,s,r,i){let n={message:typeof e=="string"?e:e.type||"Unknown error",source:t||void 0,lineno:s||void 0,colno:r||void 0,stack:i?.stack,error_type:"error",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0};this.queueError(n)}handleUnhandledRejection(e){let t=e.reason,s="Unhandled Promise Rejection",r;t instanceof Error?(s=t.message,r=t.stack):typeof t=="string"?s=t:t&&typeof t=="object"&&(s=JSON.stringify(t));let i={message:s,stack:r,error_type:"unhandledrejection",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0};this.queueError(i)}createErrorReport(e,t){let s;e instanceof Error?s={message:e.message,stack:e.stack,error_type:"error",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0,...t}:s={message:e,error_type:"custom",url:typeof window<"u"?window.location.href:void 0,referrer:typeof document<"u"?document.referrer:void 0,...t};let r=this.config.beforeSend(s);return r===!1||r===null?(this.log("Error filtered out by beforeSend"),null):r}queueError(e){this.errorQueue.push(e),this.log("Error queued",{message:e.message,queueSize:this.errorQueue.length}),this.errorQueue.length>=this.config.maxBatchSize&&this.flushQueue()}startBatchTimer(){this.batchTimer||(this.batchTimer=setInterval(()=>{this.flushQueue()},this.config.batchInterval))}stopBatchTimer(){this.batchTimer&&(clearInterval(this.batchTimer),this.batchTimer=null)}async flushQueue(){if(!this.storageWebId||this.errorQueue.length===0)return;let e=[...this.errorQueue];this.errorQueue=[];try{e.length===1?await this.http.post(`/v1/public/storages/web/${this.storageWebId}/errors/report`,e[0]):await this.http.post(`/v1/public/storages/web/${this.storageWebId}/errors/batch`,{errors:e,user_agent:typeof navigator<"u"?navigator.userAgent:void 0}),this.log("Errors sent",{count:e.length})}catch(t){let s=this.config.maxBatchSize-this.errorQueue.length;s>0&&this.errorQueue.unshift(...e.slice(0,s)),this.log("Failed to send errors, re-queued",{error:t})}}};var X=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async invoke(e,t,s){let r=this.getPublicPrefix(),i={};return t!==void 0&&(i.payload=t),s!==void 0&&(i.timeout=s),this.http.post(`${r}/functions/${e}/invoke`,i)}async invokeCrossApp(e,t,s,r,i){let n={};return r!==void 0&&(n.payload=r),i!==void 0&&(n.timeout=i),this.http.post(`/v1/integrations/providers/${e}/functions/${t}/invoke`,n,{skipAuth:!0,headers:{Authorization:`Bearer ${s}`}})}async call(e,t){let s=await this.invoke(e,t);if(!s.success)throw s.retryable?new f(503,s.error||"Function gateway is temporarily unavailable","FUNCTION_UNAVAILABLE"):new f(500,s.error||"Function execution failed","FUNCTION_EXECUTION_FAILED");return s.result}getWebhookURL(e){return`${this.http.getBaseUrl().replace(/\/+$/,"")}/v1/public/functions/${encodeURIComponent(e)}/webhook`}};var L=class{constructor(e,t){this.http=e,this.appId=t}async get(e){let t=this.resolveAppId(e);return this.http.get(`/v1/apps/${t}/game/config`)}async set(e,t){let s,r;return typeof e=="string"?(s=e,r=t??{}):(s=this.resolveAppId(),r=e),this.http.patch(`/v1/apps/${s}/game/config`,r)}async enable(e,t){return this.set(e,{[t]:!0})}async disable(e,t){return this.set(e,{[t]:!1})}resolveAppId(e){let t=e??this.appId;if(!t)throw new Error("appId not provided (pass it explicitly or set in client constructor)");return t}};function R(a){let e=a.data??a,t=s=>e[s];return new v({code:t("code")||a.code,message:t("message")||"Unknown error",phase:t("phase")||a.phase,feature:t("feature")||a.feature,roomId:t("room_id")||a.room_id,scriptId:t("script_id")||a.script_id,originClientId:t("origin_client_id")||a.origin_client_id,requested:t("requested")||a.requested,available:t("available")||a.available})}var tt=1e3,Ce=()=>{if(typeof window<"u"){let a=window.location.hostname;if(a==="localhost"||a==="127.0.0.1")return"ws://localhost:8087"}return"wss://game.connectbase.world"};function K(a){let e={};return a.roomId&&(e.room_id=a.roomId),a.categoryId&&(e.category_id=a.categoryId),typeof a.tickRate=="number"&&(e.tick_rate=a.tickRate),typeof a.maxPlayers=="number"&&(e.max_players=a.maxPlayers),a.scriptName&&(e.script_name=a.scriptName),a.metadata&&(e.metadata=a.metadata),e}var G=class{constructor(e){this.ws=null;this.handlers={};this.reconnectAttempts=0;this.reconnectTimer=null;this.pingInterval=null;this.actionSequence=0;this._roomId=null;this._state=null;this._scriptName=null;this._scriptVersion=null;this._isConnected=!1;this.msgIdCounter=0;this.resyncInFlight=!1;this.lastResyncAt=0;this.config={gameServerUrl:Ce(),autoReconnect:!0,maxReconnectAttempts:5,reconnectInterval:1e3,...e}}get roomId(){return this._roomId}get state(){return this._state}get isConnected(){return this._isConnected}on(e,t){return this.handlers[e]=t,this}connect(e){return new Promise((t,s)=>{if(this.ws?.readyState===WebSocket.OPEN){t();return}if(!this.config.appId){s(new Error("cb.game: appId is required to connect. Pass it to `new ConnectBase({ appId })` or per-client via `cb.game.createClient({ appId, clientId })`."));return}let r=this.buildConnectionUrl(e);this.ws=new WebSocket(r);let i=()=>{this._isConnected=!0,this.reconnectAttempts=0,this.startPingInterval(),this.handlers.onConnect?.(),t()},n=l=>{this._isConnected=!1,this.stopPingInterval(),this.handlers.onDisconnect?.(l),this.config.autoReconnect&&l.code!==1e3&&this.scheduleReconnect(e)},o=l=>{this.handlers.onError?.(l),s(new Error("WebSocket connection failed"))},c=l=>{this.handleMessage(l.data)};this.ws.addEventListener("open",i,{once:!0}),this.ws.addEventListener("close",n),this.ws.addEventListener("error",o,{once:!0}),this.ws.addEventListener("message",c)})}disconnect(){this.stopPingInterval(),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=null),this.ws&&(this.ws.close(1e3,"Client disconnected"),this.ws=null),this._isConnected=!1,this._roomId=null,this._scriptName=null,this._scriptVersion=null}createRoom(e={}){return this.createRoomDetailed(e).then(t=>t.state)}createRoomDetailed(e={}){return new Promise((t,s)=>{let r=i=>{if(i.type==="room_created"){let n=i.data;return this._roomId=n.room_id,this._state=n.initial_state,this._scriptName=n.script_name??null,this._scriptVersion=n.script_version??null,t({roomId:n.room_id,state:n.initial_state,scriptName:n.script_name,scriptVersion:n.script_version}),!0}else if(i.type==="error")return s(R(i)),!0;return!1};this.sendWithHandler("create_room",K(e),r,15e3,s)})}get scriptName(){return this._scriptName}get scriptVersion(){return this._scriptVersion}joinRoom(e,t){return new Promise((s,r)=>{let i=n=>{if(n.type==="room_joined"){let o=n.data;return this._roomId=o.room_id,this._state=o.initial_state,this._scriptName=null,this._scriptVersion=null,s(o.initial_state),!0}else if(n.type==="error")return r(R(n)),!0;return!1};this.sendWithHandler("join_room",{room_id:e,metadata:t},i,15e3,r)})}leaveRoom(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>r.type==="room_left"?(this._roomId=null,this._state=null,this._scriptName=null,this._scriptVersion=null,e(),!0):r.type==="error"?(t(R(r)),!0):!1;this.sendWithHandler("leave_room",{},s,15e3,t)})}sendAction(e){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});this.send("action",{type:e.type,data:e.data,client_timestamp:e.clientTimestamp??Date.now(),sequence:this.actionSequence++})}sendChat(e){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});this.send("chat",{message:e})}requestState(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>{if(r.type==="state"){let i=r.data;return this._state=i,e(i),!0}else if(r.type==="error")return t(R(r)),!0;return!1};this.sendWithHandler("get_state",{},s,15e3,t)})}listRooms(){return new Promise((e,t)=>{let s=r=>{if(r.type==="room_list"){let i=r.data;return e(i.rooms),!0}else if(r.type==="error")return t(R(r)),!0;return!1};this.sendWithHandler("list_rooms",{},s,15e3,t)})}ping(){return new Promise((e,t)=>{let s=Date.now(),r=i=>{if(i.type==="pong"){let n=i.data,o=Date.now()-n.clientTimestamp;return this.handlers.onPong?.(n),e(o),!0}else if(i.type==="error")return t(R(i)),!0;return!1};this.sendWithHandler("ping",{timestamp:s},r,15e3,t)})}buildConnectionUrl(e){let s=this.config.gameServerUrl.replace(/^http/,"ws"),r=new URLSearchParams;if(!this.config.clientId)throw new Error("cb.game: clientId is required to build a game connection URL. Pass it via `cb.game.createClient({ appId, clientId })`.");if(r.set("client_id",this.config.clientId),e&&r.set("room_id",e),this.config.publicKey&&r.set("public_key",this.config.publicKey),this.config.accessToken&&r.set("token",this.config.accessToken),!this.config.appId)throw new Error("cb.game: appId is required to build a game connection URL");return`${s}/v1/game/${this.config.appId}/ws?${r.toString()}`}send(e,t,s){if(!this.ws||this.ws.readyState!==WebSocket.OPEN)throw new Error("WebSocket is not connected");this.ws.send(JSON.stringify({type:e,data:t,msg_id:s}))}sendWithHandler(e,t,s,r=15e3,i){let n=`${e}-${++this.msgIdCounter}`,o=null,c=()=>{this.ws?.removeEventListener("message",l),o&&(clearTimeout(o),o=null)},l=d=>{try{let u=JSON.parse(d.data);if(u.msg_id&&u.msg_id!==n)return;s(u)&&c()}catch{}};this.ws?.addEventListener("message",l),o=setTimeout(()=>{c();let d=new v({code:"TIMEOUT",message:`Request '${e}' timed out after ${r}ms`});i?.(d),this.handlers.onError?.(d)},r);try{this.send(e,t,n)}catch(d){c();let u=d instanceof Error?d:new Error(String(d));i?.(u)}}handleMessage(e){try{let t=JSON.parse(e);switch(t.type){case"delta":this.handleDelta(t);break;case"state":this._state=t.data,this.handlers.onStateUpdate?.(this._state);break;case"player_event":this.handlePlayerEvent(t);break;case"chat":this.handlers.onChat?.({roomId:t.room_id||"",clientId:t.client_id||"",userId:t.user_id,message:t.message||"",serverTime:t.server_time||0});break;case"error":this.handlers.onError?.(R(t));break;case"sync_lost":this.handleSyncLost(t);break;case"room_stale":this.handlers.onRoomStale?this.handlers.onRoomStale({reason:t.reason||"unknown",roomId:t.room_id||"",scriptId:t.script_id,scriptVersion:t.script_version,serverTime:t.server_time||0}):console.warn("[connect-base game] room_stale received but onRoomStale handler not set:",t.reason);break;default:this.handlers.onMessage?.(t);break}}catch{console.error("Failed to parse game message:",e)}}handleSyncLost(e){if(this.handlers.onSyncLost?.({roomId:e.room_id||"",tick:e.tick||0,hint:e.hint||"",serverTime:e.server_time||0}),this.resyncInFlight)return;let t=Date.now();t-this.lastResyncAt<tt||(this.resyncInFlight=!0,this.lastResyncAt=t,this.requestState().catch(s=>{console.warn("[connect-base game] sync_lost resync failed:",s)}).finally(()=>{this.resyncInFlight=!1}))}handleDelta(e){let t=e.delta;if(!t)return;let s={fromVersion:t.from_version,toVersion:t.to_version,changes:t.changes.map(r=>({path:r.path,operation:r.operation,value:r.value,oldValue:r.old_value})),tick:t.tick};if(this._state){for(let r of s.changes)this.applyChange(r);this._state.version=s.toVersion}if(this.handlers.onAction){for(let r of s.changes)if(r.path.startsWith("actions.")&&r.operation==="set"&&r.value){let i=r.value;this.handlers.onAction({type:i.type||"",clientId:i.client_id||"",data:i.data,timestamp:i.timestamp||0})}}this.handlers.onDelta?.(s)}applyChange(e){if(!this._state)return;let t=e.path.split("."),s=this._state.state;for(let i=0;i<t.length-1;i++){let n=t[i];n in s||(s[n]={}),s=s[n]}let r=t[t.length-1];e.operation==="delete"?delete s[r]:s[r]=e.value}handlePlayerEvent(e){let t={clientId:e.player?.client_id||"",userId:e.player?.user_id,joinedAt:e.player?.joined_at||0,metadata:e.player?.metadata};e.event==="joined"?this.handlers.onPlayerJoined?.(t):e.event==="left"&&this.handlers.onPlayerLeft?.(t)}scheduleReconnect(e){if(this.reconnectAttempts>=(this.config.maxReconnectAttempts??5)){console.error("Max reconnect attempts reached"),this.handlers.onError?.(new v({code:"MAX_RECONNECT_ATTEMPTS",message:"Maximum reconnection attempts reached"}));return}let t=Math.min((this.config.reconnectInterval??1e3)*2**this.reconnectAttempts,3e4);this.reconnectAttempts++;let s=e||this._roomId;this.reconnectTimer=setTimeout(async()=>{console.log(`Reconnecting... (attempt ${this.reconnectAttempts})`);try{if(await this.connect(),s){console.log(`Rejoining room ${s}...`);try{await this.joinRoom(s),console.log(`Successfully rejoined room ${s}`)}catch(r){console.error(`Failed to rejoin room ${s}:`,r),this.handlers.onError?.(new v({code:"REJOIN_FAILED",message:`Failed to rejoin room: ${r}`,roomId:s}))}}}catch{}},t)}startPingInterval(){this.pingInterval=setInterval(()=>{this.ping().catch(()=>{})},3e4)}stopPingInterval(){this.pingInterval&&(clearInterval(this.pingInterval),this.pingInterval=null)}},O=class{constructor(e,t,s){this.http=e,this.gameServerUrl=t||Ce().replace(/^ws/,"http"),this.appId=s,this.config=new L(e,s)}createClient(e){return new G({...e,gameServerUrl:this.gameServerUrl.replace(/^http/,"ws"),appId:e.appId??this.appId,publicKey:this.http.getPublicKey(),accessToken:this.http.getAccessToken()})}async listRooms(e){let t=e||this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/rooms`,{headers:this.getHeaders()});if(!s.ok)throw new f(s.status,`Failed to list rooms: ${s.statusText}`,"GAME_LIST_ROOMS_FAILED");return(await s.json()).rooms}async getRoom(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/rooms/${e}`,{headers:this.getHeaders()});if(!s.ok)throw new f(s.status,`Failed to get room: ${s.statusText}`,"GAME_GET_ROOM_FAILED");return(await s.json()).room}async createRoom(e,t={}){throw new Error("cb.game.createRoom is not yet publicly available \u2014 use the admin console or request a backend public route.")}async deleteRoom(e){throw new Error("cb.game.deleteRoom is not yet publicly available \u2014 use the admin console or request a backend public route.")}async joinSpectator(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/rooms/${e}/spectators`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({user_id:t})});if(!r.ok)throw new Error(`Failed to join spectator: ${r.statusText}`);return r.json()}async leaveSpectator(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/rooms/${e}/spectators/${t}`,{method:"DELETE",headers:this.getHeaders()});if(!r.ok)throw new Error(`Failed to leave spectator: ${r.statusText}`)}async getSpectators(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/rooms/${e}/spectators`,{headers:this.getHeaders()});if(!s.ok)throw new Error(`Failed to get spectators: ${s.statusText}`);return(await s.json()).spectators||[]}async joinVoiceChannel(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/voice/rooms/${e}/join`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({player_id:t})});if(!r.ok)throw new Error(`Failed to join voice channel: ${r.statusText}`);return r.json()}async leaveVoiceChannel(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/voice/rooms/${e}/leave`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({player_id:t})});if(!r.ok)throw new Error(`Failed to leave voice channel: ${r.statusText}`)}async setMute(e,t){let s=this.appId||"",r=await fetch(`${this.gameServerUrl}/v1/game/${s}/voice/mute`,{method:"POST",headers:{...this.getHeaders(),"Content-Type":"application/json"},body:JSON.stringify({player_id:e,muted:t})});if(!r.ok)throw new Error(`Failed to set mute: ${r.statusText}`)}async listReplays(e){let t=this.appId||"",s=`${this.gameServerUrl}/v1/game/${t}/replays`;e&&(s+=`?room_id=${e}`);let r=await fetch(s,{headers:this.getHeaders()});if(r.status===404)throw new Error("cb.game.listReplays: replay storage is not configured on this server (REPLAY_STORAGE_PATH unset).");if(!r.ok)throw new Error(`Failed to list replays: ${r.statusText}`);return(await r.json()).replays||[]}async getReplay(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/replays/${e}`,{headers:this.getHeaders()});if(s.status===404)throw new Error("cb.game.getReplay: replay not found or replay storage unconfigured.");if(!s.ok)throw new Error(`Failed to get replay: ${s.statusText}`);return s.json()}async downloadReplay(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/replays/${e}/download`,{headers:this.getHeaders()});if(s.status===404)throw new Error("cb.game.downloadReplay: replay not found or replay storage unconfigured.");if(!s.ok)throw new Error(`Failed to download replay: ${s.statusText}`);return s.arrayBuffer()}async getReplayHighlights(e){let t=this.appId||"",s=await fetch(`${this.gameServerUrl}/v1/game/${t}/replays/${e}/highlights`,{headers:this.getHeaders()});if(s.status===404)throw new Error("cb.game.getReplayHighlights: replay not found or replay storage unconfigured.");if(!s.ok)throw new Error(`Failed to get highlights: ${s.statusText}`);return(await s.json()).highlights||[]}getHeaders(){let e={},t=this.http.getPublicKey();t&&(e["X-Public-Key"]=t);let s=this.http.getAccessToken();return s&&(e.Authorization=`Bearer ${s}`),e}async gameFetch(e,t,s,r="GAME_REQUEST_FAILED"){let i={method:e,headers:{...this.getHeaders()}};s!==void 0&&(i.headers["Content-Type"]="application/json",i.body=JSON.stringify(s));let n=await fetch(`${this.gameServerUrl}${t}`,i);if(!n.ok){let c=r,l=`${e} ${t} failed: ${n.statusText}`;try{let d=await n.json();d&&typeof d.error=="string"&&(l=d.error,c=d.error)}catch{}throw new f(n.status,l,c)}if(!(n.status===204||!(n.headers.get("content-type")||"").includes("application/json")))return n.json()}async enqueueMatch(e,t,s,r,i){return this.gameFetch("POST",`/v1/game/${e}/matchqueue/${t}/tickets`,{ticket_id:s,attributes:r,ttl_sec:i??0},"GAME_ENQUEUE_MATCH_FAILED")}async listMatchqueue(e,t){return this.gameFetch("GET",`/v1/game/${e}/matchqueue/${t}`,void 0,"GAME_LIST_MATCHQUEUE_FAILED")}async cancelMatch(e,t,s){await this.gameFetch("DELETE",`/v1/game/${e}/matchqueue/${t}/tickets/${s}`,void 0,"GAME_CANCEL_MATCH_FAILED")}async submitScore(e,t,s,r,i="set"){return this.gameFetch("POST",`/v1/game/${e}/leaderboards/${t}/scores`,{member:s,score:r,mode:i},"GAME_SUBMIT_SCORE_FAILED")}async getTopScores(e,t,s=10){return this.gameFetch("GET",`/v1/game/${e}/leaderboards/${t}/top?n=${s}`,void 0,"GAME_GET_TOP_SCORES_FAILED")}async getMemberRank(e,t,s){return this.gameFetch("GET",`/v1/game/${e}/leaderboards/${t}/members/${s}`,void 0,"GAME_GET_MEMBER_RANK_FAILED")}async getRankAround(e,t,s,r=5,i=5){return this.gameFetch("GET",`/v1/game/${e}/leaderboards/${t}/around/${s}?above=${r}&below=${i}`,void 0,"GAME_GET_RANK_AROUND_FAILED")}async resetLeaderboard(e,t){await this.gameFetch("DELETE",`/v1/game/${e}/leaderboards/${t}`,void 0,"GAME_RESET_LEADERBOARD_FAILED")}async removeFromLeaderboard(e,t,s){await this.gameFetch("DELETE",`/v1/game/${e}/leaderboards/${t}/members/${s}`,void 0,"GAME_REMOVE_FROM_LEADERBOARD_FAILED")}async uploadScript(e,t,s){return this.gameFetch("POST",`/v1/game/${e}/scripts`,{name:t,code:s},"GAME_UPLOAD_SCRIPT_FAILED")}async listScripts(e){return this.gameFetch("GET",`/v1/game/${e}/scripts`,void 0,"GAME_LIST_SCRIPTS_FAILED")}async getScript(e,t){return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}`,void 0,"GAME_GET_SCRIPT_FAILED")}async listScriptVersions(e,t){return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}/versions`,void 0,"GAME_LIST_SCRIPT_VERSIONS_FAILED")}async activateScript(e,t,s){return this.gameFetch("POST",`/v1/game/${e}/scripts/${t}/activate`,{version:s??0},"GAME_ACTIVATE_SCRIPT_FAILED")}async rollbackScript(e,t){return this.gameFetch("POST",`/v1/game/${e}/scripts/${t}/rollback`,{},"GAME_ROLLBACK_SCRIPT_FAILED")}async deactivateScript(e,t){await this.gameFetch("POST",`/v1/game/${e}/scripts/${t}/deactivate`,{},"GAME_DEACTIVATE_SCRIPT_FAILED")}async deleteScript(e,t){await this.gameFetch("DELETE",`/v1/game/${e}/scripts/${t}`,void 0,"GAME_DELETE_SCRIPT_FAILED")}async getScriptLogs(e,t,s={}){let r=new URLSearchParams;typeof s.since=="number"&&r.set("since",String(s.since)),typeof s.limit=="number"&&r.set("limit",String(s.limit));let i=r.toString();return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}/logs${i?`?${i}`:""}`,void 0,"GAME_GET_SCRIPT_LOGS_FAILED")}async getScriptMetrics(e,t){return this.gameFetch("GET",`/v1/game/${e}/scripts/${t}/metrics`,void 0,"GAME_GET_SCRIPT_METRICS_FAILED")}};async function Ee(a){if(typeof Blob<"u"&&a instanceof Blob){let s=await a.arrayBuffer(),r="name"in a?a.name:void 0;return{data:xe(new Uint8Array(s)),mimeType:a.type||"",defaultName:r}}let e=a;if(!e||e.data===void 0)throw new Error("addDocumentFromFile: file must be a Blob/File or { data, mimeType?, name? }");let t=e.data instanceof Uint8Array?e.data:new Uint8Array(e.data);return{data:xe(t),mimeType:e.mimeType??"",defaultName:e.name}}function xe(a){let e=globalThis;if(e.Buffer)return e.Buffer.from(a).toString("base64");let t=8192,s="";for(let r=0;r<a.length;r+=t){let i=a.subarray(r,Math.min(r+t,a.length));s+=String.fromCharCode.apply(null,Array.from(i))}return btoa(s)}var Y=class{constructor(e){this.http=e}async addDocument(e,t){return this.http.post(`/v1/public/knowledge-bases/${e}/documents`,t)}async updateDocument(e,t,s){return this.http.put(`/v1/public/knowledge-bases/${e}/documents/${t}`,s)}async updateDocumentFromFile(e,t,s,r){let{data:i,mimeType:n}=await Ee(s);return this.updateDocument(e,t,{name:r?.name,file_content:i,mime_type:n,metadata:r?.metadata})}async addDocumentFromFile(e,t,s){let{data:r,mimeType:i,defaultName:n}=await Ee(t),o=s?.name??n??"document";return this.addDocument(e,{name:o,source_type:"file",file_content:r,mime_type:i,metadata:s?.metadata})}async listDocuments(e){return this.http.get(`/v1/public/knowledge-bases/${e}/documents`)}async deleteDocument(e,t){await this.http.delete(`/v1/public/knowledge-bases/${e}/documents/${t}`)}async search(e,t){return this.http.post(`/v1/public/knowledge-bases/${e}/search`,t)}async searchGet(e,t,s){let r=new URLSearchParams({query:t});return s&&r.append("top_k",String(s)),this.http.get(`/v1/public/knowledge-bases/${e}/search?${r.toString()}`)}};var D=class{constructor(){this._webSpeechRecognition=null;this.clipboard={writeText:async e=>{this.getPlatform()==="desktop"&&window.NativeBridge?.clipboard?await window.NativeBridge.clipboard.writeText(e):await navigator.clipboard.writeText(e)},readText:async()=>this.getPlatform()==="desktop"&&window.NativeBridge?.clipboard?window.NativeBridge.clipboard.readText():navigator.clipboard.readText(),writeHTML:async e=>{window.NativeBridge?.clipboard?.writeHTML?await window.NativeBridge.clipboard.writeHTML(e):await navigator.clipboard.writeText(e)},writeImage:async e=>{if(window.NativeBridge?.clipboard?.writeImage)await window.NativeBridge.clipboard.writeImage(e);else throw new Error("Image clipboard not supported on this platform")},readImage:async()=>window.NativeBridge?.clipboard?.readImage?window.NativeBridge.clipboard.readImage():null};this.filesystem={pickFile:async e=>{if(this.getPlatform()==="desktop"&&window.NativeBridge?.filesystem?.showOpenDialog){let s=await window.NativeBridge.filesystem.showOpenDialog({properties:e?.multiple?["openFile","multiSelections"]:["openFile"],filters:e?.filters});return s.canceled||!s.filePaths.length?null:s.filePaths.map(r=>new File([],r.split("/").pop()||"file"))}return new Promise(s=>{let r=document.createElement("input");r.type="file",e?.accept&&(r.accept=e.accept),e?.multiple&&(r.multiple=!0),r.onchange=()=>{s(r.files?Array.from(r.files):null)},r.click()})},saveFile:async(e,t,s)=>{let r=this.getPlatform();if(r==="desktop"&&window.NativeBridge?.filesystem){let c=await window.NativeBridge.filesystem.showSaveDialog?.({defaultPath:t,filters:s?.filters});if(c?.canceled||!c?.filePath)return!1;let l=e instanceof Blob?await e.text():e;return(await window.NativeBridge.filesystem.writeFile(c.filePath,l)).success}if(r==="mobile"&&window.NativeBridge?.filesystem){let c=e instanceof Blob?await e.text():e;return(await window.NativeBridge.filesystem.writeFile(t,c)).success}let i=e instanceof Blob?e:new Blob([e],{type:"text/plain"}),n=URL.createObjectURL(i),o=document.createElement("a");return o.href=n,o.download=t,o.click(),URL.revokeObjectURL(n),!0},readFile:async e=>{if(window.NativeBridge?.filesystem?.readFile){let t=await window.NativeBridge.filesystem.readFile(e);return t.success?t.content??null:null}return null},exists:async e=>window.NativeBridge?.filesystem?.exists?window.NativeBridge.filesystem.exists(e):!1};this.camera={takePicture:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.camera?window.NativeBridge.camera.takePicture(e):new Promise(s=>{let r=document.createElement("input");r.type="file",r.accept="image/*",r.capture="environment",r.onchange=async()=>{let i=r.files?.[0];if(!i){s(null);return}let n=new FileReader;n.onload=()=>{let o=new Image;o.onload=()=>{s({uri:URL.createObjectURL(i),base64:e?.base64?n.result.split(",")[1]:void 0,width:o.width,height:o.height})},o.src=n.result},n.readAsDataURL(i)},r.click()}),pickImage:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.camera?window.NativeBridge.camera.pickImage(e):new Promise(s=>{let r=document.createElement("input");r.type="file",r.accept="image/*",e?.multiple&&(r.multiple=!0),r.onchange=async()=>{let i=r.files;if(!i?.length){s(null);return}let n=[];for(let o of Array.from(i)){let c=await new Promise(l=>{let d=new FileReader;d.onload=()=>{let u=new Image;u.onload=()=>{l({uri:URL.createObjectURL(o),base64:e?.base64?d.result.split(",")[1]:void 0,width:u.width,height:u.height})},u.src=d.result},d.readAsDataURL(o)});n.push(c)}s(n)},r.click()})};this.location={getCurrentPosition:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.location?window.NativeBridge.location.getCurrentPosition(e):new Promise((s,r)=>{navigator.geolocation.getCurrentPosition(i=>{s({latitude:i.coords.latitude,longitude:i.coords.longitude,altitude:i.coords.altitude,accuracy:i.coords.accuracy,timestamp:i.timestamp})},r,{enableHighAccuracy:e?.accuracy==="high",timeout:1e4,maximumAge:0})}),watchPosition:async(e,t)=>{let s=this.getPlatform(),r=window.NativeBridge;if(s==="mobile"&&r?.location?.watchPosition){let{watchId:n}=await r.location.watchPosition(t),o=c=>{let l=c.detail;!l||l.watchId&&l.watchId!==n||e({latitude:l.latitude,longitude:l.longitude,altitude:l.altitude,accuracy:l.accuracy,timestamp:l.timestamp})};return window.addEventListener("nativeLocationUpdate",o),{watchId:n,clear:async()=>{window.removeEventListener("nativeLocationUpdate",o),await r.location?.stopWatch(n)}}}let i=navigator.geolocation.watchPosition(n=>e({latitude:n.coords.latitude,longitude:n.coords.longitude,altitude:n.coords.altitude,accuracy:n.coords.accuracy,timestamp:n.timestamp}),void 0,{enableHighAccuracy:t?.accuracy==="high",timeout:1e4,maximumAge:0});return{watchId:String(i),clear:async()=>navigator.geolocation.clearWatch(i)}}};this.push={getToken:async()=>this.getPlatform()==="mobile"&&window.NativeBridge?.push?window.NativeBridge.push.getToken():null,requestPermission:async()=>this.notification.requestPermission(),scheduleLocal:async e=>this.getPlatform()==="mobile"&&window.NativeBridge?.push?(await window.NativeBridge.push.scheduleLocal(e)).notificationId:null,setBadgeCount:async e=>{let t=window.NativeBridge?.push?.setBadgeCount;return t?(await t(e)).success:!1}};this.notification={show:async e=>{let t=this.getPlatform();return t==="desktop"&&window.NativeBridge?.notification?(await window.NativeBridge.notification.show(e)).success:t==="mobile"&&window.NativeBridge?.push?.scheduleLocal?await this.notification.requestPermission()?(await window.NativeBridge.push.scheduleLocal({title:e.title,body:e.body,trigger:null}),!0):!1:!("Notification"in window)||Notification.permission!=="granted"&&await Notification.requestPermission()!=="granted"?!1:(new Notification(e.title,{body:e.body,icon:e.icon,silent:e.silent}),!0)},requestPermission:async()=>this.getPlatform()==="mobile"&&window.NativeBridge?.push?(await window.NativeBridge.push.requestPermission()).granted:"Notification"in window?await Notification.requestPermission()==="granted":!1};this.shell={openExternal:async e=>{let t=this.getPlatform();return t==="desktop"&&window.NativeBridge?.shell?(await window.NativeBridge.shell.openExternal(e)).success:t==="mobile"&&window.NativeBridge?.browser?(await window.NativeBridge.browser.openExternal(e)).success:(window.open(e,"_blank"),!0)}};this.window={minimize:async()=>{await window.NativeBridge?.window?.minimize()},maximize:async()=>{await window.NativeBridge?.window?.maximize()},unmaximize:async()=>{await window.NativeBridge?.window?.unmaximize()},close:async()=>{await window.NativeBridge?.window?.close()},isMaximized:async()=>await window.NativeBridge?.window?.isMaximized()??!1,setTitle:async e=>{window.NativeBridge?.window?await window.NativeBridge.window.setTitle(e):document.title=e},setFullScreen:async e=>{window.NativeBridge?.window?await window.NativeBridge.window.setFullScreen(e):document.documentElement.requestFullscreen&&(e?await document.documentElement.requestFullscreen():document.exitFullscreen&&await document.exitFullscreen())}};this.system={getInfo:async()=>window.NativeBridge?.system?window.NativeBridge.system.getInfo():null,getMemory:async()=>window.NativeBridge?.system?window.NativeBridge.system.getMemory():null};this.biometric={isAvailable:async()=>window.NativeBridge?.biometric?window.NativeBridge.biometric.isAvailable():null,authenticate:async e=>window.NativeBridge?.biometric?window.NativeBridge.biometric.authenticate(e):null};this.secureStore={setItem:async(e,t)=>window.NativeBridge?.secureStore?(await window.NativeBridge.secureStore.setItem(e,t)).success:(localStorage.setItem(e,t),!0),getItem:async e=>window.NativeBridge?.secureStore?(await window.NativeBridge.secureStore.getItem(e)).value:localStorage.getItem(e),deleteItem:async e=>window.NativeBridge?.secureStore?(await window.NativeBridge.secureStore.deleteItem(e)).success:(localStorage.removeItem(e),!0)};this.admob={showInterstitial:async()=>window.NativeBridge?.admob?(await window.NativeBridge.admob.showInterstitial()).shown:!1,showRewarded:async()=>window.NativeBridge?.admob?(await window.NativeBridge.admob.showRewarded()).rewarded:!1};this.speech={isAvailable:async()=>this.getPlatform()==="mobile"&&window.NativeBridge?.speech?(await window.NativeBridge.speech.isAvailable()).available:typeof window>"u"?!1:"SpeechRecognition"in window||"webkitSpeechRecognition"in window,recognize:async e=>{if(this.getPlatform()==="mobile"&&window.NativeBridge?.speech){let r;e?.onPartial&&(r=i=>{let n=i.detail;n?.transcript&&e.onPartial?.(n.transcript)},window.addEventListener("nativeSpeechPartial",r));try{return await window.NativeBridge.speech.recognize(e)}finally{r&&window.removeEventListener("nativeSpeechPartial",r)}}let t=window,s=t.SpeechRecognition||t.webkitSpeechRecognition;if(!s)throw new Error("\uC774 \uD50C\uB7AB\uD3FC\uC5D0\uC11C\uB294 \uC74C\uC131 \uC778\uC2DD\uC744 \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uD328\uD0A4\uC9D5 \uC571\uC5D0\uC11C\uB294 speech \uB124\uC774\uD2F0\uBE0C \uAE30\uB2A5\uC744 \uD65C\uC131\uD654\uD558\uC138\uC694.");return new Promise((r,i)=>{let n=new s;this._webSpeechRecognition=n,n.lang=e?.lang??"en-US",n.interimResults=e?.interim??!0,n.continuous=e?.continuous??!1;let o="";n.onresult=c=>{let l="";for(let d=c.resultIndex;d<c.results.length;d++){let u=c.results[d];u.isFinal?o+=u[0].transcript:l+=u[0].transcript}l&&e?.onPartial&&e.onPartial(l)},n.onerror=c=>{this._webSpeechRecognition=null,i(new Error(c?.error||"\uC74C\uC131 \uC778\uC2DD \uC624\uB958"))},n.onend=()=>{this._webSpeechRecognition=null,r({transcript:o.trim(),isFinal:!0})},n.start()})},stop:async()=>{if(this.getPlatform()==="mobile"&&window.NativeBridge?.speech){await window.NativeBridge.speech.stop();return}if(this._webSpeechRecognition)try{this._webSpeechRecognition.stop()}catch{}}}}getPlatform(){if(typeof window>"u")return"web";let e=window.NativeBridge;return e?.platform==="electron"?"desktop":e?.platform==="react-native"||e?.platform==="ios"||e?.platform==="android"||e?.camera||window.ReactNativeWebView?"mobile":"web"}isNativeApp(){return this.getPlatform()!=="web"}async getAppInfo(){let e=this.bridge?.app?.getInfo;return e?e():null}hasFeature(e){return typeof window>"u"?!1:!!window.NativeBridge?.[e]}get bridge(){if(!(typeof window>"u"))return window.NativeBridge}};function Ae(){if(typeof window>"u")return null;let a=window.NativeBridge?.oauth;return!a||typeof a.signIn!="function"||typeof a.getCallbackScheme!="function"?null:a}function V(){if(typeof navigator>"u")return null;let a=navigator.userAgent||"";return/KAKAOTALK/i.test(a)?{type:"kakaotalk",ua:a}:/Line\//i.test(a)?{type:"line",ua:a}:/Instagram/i.test(a)?{type:"instagram",ua:a}:/FBAN|FBAV|FB_IAB/i.test(a)?{type:"facebook",ua:a}:/NAVER\(inapp/i.test(a)?{type:"naverapp",ua:a}:/MicroMessenger/i.test(a)?{type:"wechat",ua:a}:null}function Z(a){if(typeof window>"u")return!1;let e=V();if(!e)return!1;let t=a??window.location.href,s=encodeURIComponent(t);switch(e.type){case"kakaotalk":return window.location.href=`kakaotalk://web/openExternal?url=${s}`,!0;case"line":return window.location.href=`line://nv/openURL?url=${s}`,!0;default:return!1}}var ee=class{constructor(e){this.http=e;this.bootConsumePromise=null}async getEnabledProviders(){return this.http.get("/v1/public/oauth/providers")}async signIn(e,t,s,r){return this.startCentralOAuth(e,t,s,r?.createIfNotExists?"signup":"signin")}async signUp(e,t,s){return this.startCentralOAuth(e,t,s,"signup")}async startCentralOAuth(e,t,s,r){let i=Ae();if(i){let l=i.getCallbackScheme(),d=new URLSearchParams({app_callback:l,intent:r});s&&d.append("state",s);let u=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${d.toString()}`),{url:p}=await i.signIn(u.authorization_url,l),h=new URL(p),m=new URL(t,window.location.href);h.searchParams.forEach((b,g)=>{m.searchParams.set(g,b)}),window.location.href=m.toString();return}let n=V();if(n&&(e==="google"||e==="apple")){if(Z())return;throw new Error(`\uD604\uC7AC ${n.type==="kakaotalk"?"\uCE74\uCE74\uC624\uD1A1":n.type==="line"?"\uB77C\uC778":"\uC778\uC571"} \uBE0C\uB77C\uC6B0\uC800\uC5D0\uC11C\uB294 Google/Apple \uB85C\uADF8\uC778\uC774 \uC81C\uD55C\uB429\uB2C8\uB2E4. \uC6B0\uCE21 \uC0C1\uB2E8 \uBA54\uB274\uC5D0\uC11C "\uB2E4\uB978 \uBE0C\uB77C\uC6B0\uC800\uB85C \uC5F4\uAE30"\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.`)}let o=new URLSearchParams({app_callback:t,intent:r});s&&o.append("state",s);let c=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${o.toString()}`);window.location.href=c.authorization_url}async signInWithPopup(e,t,s={}){let r=s.intent??"signin",i=Ae();if(i){let m=i.getCallbackScheme(),b=new URLSearchParams({app_callback:m,intent:r}),g=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${b.toString()}`),{url:_}=await i.signIn(g.authorization_url,m),w=new URL(_),S=w.searchParams.get("error");if(S)throw new Error(S);let y=w.searchParams.get("access_token")||"",P=w.searchParams.get("refresh_token")||"",x=w.searchParams.get("member_id")||"";if(!y||!P||!x)throw new Error("OAuth \uC751\uB2F5\uC5D0 \uD1A0\uD070\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.");return this.http.setTokens(y,P),{access_token:y,refresh_token:P,member_id:x,is_new_member:w.searchParams.get("is_new_member")==="true"}}let n=V();if(n&&(e==="google"||e==="apple"))throw Z()?new Error("\uC678\uBD80 \uBE0C\uB77C\uC6B0\uC800\uB85C \uC774\uB3D9\uD588\uC2B5\uB2C8\uB2E4. \uB2E4\uC2DC \uC2DC\uB3C4\uD574\uC8FC\uC138\uC694."):new Error(`\uD604\uC7AC ${n.type==="kakaotalk"?"\uCE74\uCE74\uC624\uD1A1":n.type==="line"?"\uB77C\uC778":"\uC778\uC571"} \uBE0C\uB77C\uC6B0\uC800\uC5D0\uC11C\uB294 Google/Apple \uB85C\uADF8\uC778\uC774 \uC81C\uD55C\uB429\uB2C8\uB2E4. \uC678\uBD80 \uBE0C\uB77C\uC6B0\uC800\uC5D0\uC11C \uC5F4\uC5B4\uC8FC\uC138\uC694.`);let o=new URLSearchParams;o.set("intent",r),t&&o.set("app_callback",t);let c=await this.http.get(`/v1/public/oauth/${e}/authorize/central?${o.toString()}`),l=500,d=600,u=window.screenX+(window.outerWidth-l)/2,p=window.screenY+(window.outerHeight-d)/2,h=window.open(c.authorization_url,"oauth-popup",`width=${l},height=${d},left=${u},top=${p}`);if(!h)throw new Error("\uD31D\uC5C5\uC774 \uCC28\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uD31D\uC5C5 \uCC28\uB2E8\uC744 \uD574\uC81C\uD574\uC8FC\uC138\uC694.");return new Promise((m,b)=>{let g=!1,_=()=>{g=!0,window.removeEventListener("message",w),clearInterval(S),clearTimeout(y)},w=async P=>{if(P.data?.type!=="oauth-callback"||g)return;if(_(),P.data.error){b(new Error(P.data.error));return}let x=P.data.email,be={member_id:P.data.member_id,access_token:P.data.access_token,refresh_token:P.data.refresh_token,is_new_member:P.data.is_new_member==="true"||P.data.is_new_member===!0,...typeof x=="string"&&x.length>0?{email:x}:{}};this.http.setTokens(be.access_token,be.refresh_token);try{await this.http.bootstrapRefreshCookie()}catch{}m(be)};window.addEventListener("message",w);let S=setInterval(()=>{try{h.closed&&(g||(_(),b(new Error("\uB85C\uADF8\uC778\uC774 \uCDE8\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4."))))}catch{clearInterval(S)}},500),y=setTimeout(()=>{if(!g){_();try{h.close()}catch{}b(new Error("\uB85C\uADF8\uC778 \uC2DC\uAC04\uC774 \uCD08\uACFC\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uB2E4\uC2DC \uC2DC\uB3C4\uD574\uC8FC\uC138\uC694."))}},18e4)})}async getCallbackResult(){let e=new URLSearchParams(window.location.search),t=e.get("error");if(t){let c={error:t};return window.opener&&(window.opener.postMessage({type:"oauth-callback",...c},"*"),window.close()),c}let s=e.get("access_token"),r=e.get("refresh_token"),i=e.get("member_id");if(!s||!r||!i)return null;let n=e.get("email"),o={access_token:s,refresh_token:r,member_id:i,is_new_member:e.get("is_new_member")==="true",...n?{email:n}:{},state:e.get("state")||void 0};return window.opener?(window.opener.postMessage({type:"oauth-callback",...o},"*"),window.close(),o):(this.bootConsumePromise&&await this.bootConsumePromise||(this.http.setTokens(s,r),await this.http.bootstrapRefreshCookie()),o)}consumeRedirectCallbackOnBoot(){return this.bootConsumePromise||(this.bootConsumePromise=this.doConsumeRedirectOnBoot()),this.bootConsumePromise}async doConsumeRedirectOnBoot(){try{if(typeof window>"u"||!window.location)return!1;let e=new URLSearchParams(window.location.search);if(e.get("error"))return!1;let t=e.get("access_token"),s=e.get("refresh_token"),r=e.get("member_id");return!t||!s||!r?!1:(this.http.setTokens(t,s),await this.http.bootstrapRefreshCookie(),!0)}catch{return!1}}async exchangeCodeFromCallback(){let e=new URLSearchParams(window.location.search),t=e.get("code");if(!t||e.get("error"))return null;let s=await this.http.post("/v1/auth/oauth/exchange",{code:t}),r={access_token:s.access_token,refresh_token:s.refresh_token,member_id:s.member_id,is_new_member:s.is_new_member,...s.email?{email:s.email}:{},state:e.get("state")||void 0};return window.opener?(window.opener.postMessage({type:"oauth-callback",...r},"*"),window.close(),r):(this.http.setTokens(r.access_token,r.refresh_token),await this.http.bootstrapRefreshCookie(),r)}};var te=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async prepare(e){let t=this.getPublicPrefix();return this.http.post(`${t}/payments/prepare`,e)}async createCheckoutSession(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/payments/checkout-session`,e);return k(s,{session_id:{type:"string"},session_url:{type:"string"}},"payment.createCheckoutSession"),s}async confirm(e){let t=this.getPublicPrefix();return this.http.post(`${t}/payments/confirm`,e)}async cancel(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/payments/cancel`,{payment_id:e,...t})}async getByOrderId(e){let t=this.getPublicPrefix();return this.http.get(`${t}/payments/orders/${e}`)}async list(e,t){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error('cb.payment.list() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["payment:read"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.');let s=new URLSearchParams;t?.status&&s.set("status",t.status),t?.mode&&s.set("mode",t.mode),t?.startDate&&s.set("start_date",t.startDate),t?.endDate&&s.set("end_date",t.endDate),t?.limit!==void 0&&s.set("limit",String(t.limit)),t?.offset!==void 0&&s.set("offset",String(t.offset));let r=s.toString();return this.http.get(`/v1/apps/${e}/payments${r?`?${r}`:""}`)}};var se=class{constructor(e){this.http=e}ensureServerAuth(e){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error(`cb.publicKey.${e}() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["publickey:read" | "publickey:manage"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.`)}async getPublicKeys(e){return this.ensureServerAuth("getPublicKeys"),this.http.get(`/v1/apps/${e}/public-keys`)}async createPublicKey(e,t){return this.ensureServerAuth("createPublicKey"),this.http.post(`/v1/apps/${e}/public-keys`,t)}async updatePublicKey(e,t,s){return this.ensureServerAuth("updatePublicKey"),this.http.patch(`/v1/apps/${e}/public-keys/${t}`,s)}async deletePublicKey(e,t){this.ensureServerAuth("deletePublicKey"),await this.http.delete(`/v1/apps/${e}/public-keys/${t}`)}};var re=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async registerDevice(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/push/devices`,e);return k(s,{device_token:{type:"string"}},"push.registerDevice"),s}async unregisterDevice(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/push/devices/${e}`)}async subscribeTopic(e,t){let s=this.getPublicPrefix(),r={topic_name:t};await this.http.post(`${s}/push/devices/${e}/topics/subscribe`,r)}async unsubscribeTopic(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/push/devices/${e}/topics/${t}/unsubscribe`)}async getVAPIDPublicKey(){let e=this.getPublicPrefix();return this.http.get(`${e}/push/vapid-public-key`)}async registerWebPush(e){let t=this.getPublicPrefix(),s;if("toJSON"in e){let i=e.toJSON();s={endpoint:i.endpoint||"",expirationTime:i.expirationTime,keys:{p256dh:i.keys?.p256dh||"",auth:i.keys?.auth||""}}}else s=e;let r={device_token:s.endpoint,platform:"web",device_id:this.generateDeviceId(),device_name:this.getBrowserName(),os_version:this.getOSInfo()};return this.http.post(`${t}/push/devices`,{...r,web_push_subscription:s})}async unregisterWebPush(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/push/devices/${encodeURIComponent(e)}`)}async sendToMembers(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("cb.push.sendToMembers() \uB294 User Secret Key(cb_sk_), \uCF58\uC194 JWT, \uB610\uB294 service_role(ctx.cbAdmin) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.");if(t.length===0)throw new Error("cb.push.sendToMembers(): memberIds \uAC00 \uBE44\uC5B4\uC788\uC2B5\uB2C8\uB2E4.");let r={target_type:"members",target_member_ids:t,title:s.title,body:s.body,...s.imageUrl!==void 0?{image_url:s.imageUrl}:{},...s.data!==void 0?{data:s.data}:{},...s.platforms!==void 0?{platforms:s.platforms}:{},...s.ttlSeconds!==void 0?{ttl:s.ttlSeconds}:{},...s.priority!==void 0?{priority:s.priority}:{},...s.clickAction!==void 0?{click_action:s.clickAction}:{},...s.scheduledAt!==void 0?{scheduled_at:s.scheduledAt}:{}};return this.http.post(`/v1/apps/${e}/push/send`,r)}async sendToTopic(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("cb.push.sendToTopic() \uB294 User Secret Key(cb_sk_), \uCF58\uC194 JWT, \uB610\uB294 service_role(ctx.cbAdmin) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.");if(!t)throw new Error("cb.push.sendToTopic(): topicName \uC774 \uBE44\uC5B4\uC788\uC2B5\uB2C8\uB2E4.");let r={topic_name:t,title:s.title,body:s.body,...s.imageUrl!==void 0?{image_url:s.imageUrl}:{},...s.data!==void 0?{data:s.data}:{},...s.platforms!==void 0?{platforms:s.platforms}:{},...s.ttlSeconds!==void 0?{ttl:s.ttlSeconds}:{},...s.priority!==void 0?{priority:s.priority}:{},...s.clickAction!==void 0?{click_action:s.clickAction}:{},...s.scheduledAt!==void 0?{scheduled_at:s.scheduledAt}:{}};return this.http.post(`/v1/apps/${e}/push/send-to-topic`,r)}async getStats(e){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error('cb.push.getStats() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["push:read"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.');return this.http.get(`/v1/apps/${e}/push/stats`)}generateDeviceId(){if(typeof window>"u"||typeof localStorage>"u")return`device_${Date.now()}_${Math.random().toString(36).substr(2,9)}`;let e="cb_push_device_id",t=localStorage.getItem(e);return t||(t=`web_${Date.now()}_${Math.random().toString(36).substr(2,9)}`,localStorage.setItem(e,t)),t}getBrowserName(){if(typeof navigator>"u")return"Unknown Browser";let e=navigator.userAgent;return e.includes("Chrome")&&!e.includes("Edg")?"Chrome":e.includes("Safari")&&!e.includes("Chrome")?"Safari":e.includes("Firefox")?"Firefox":e.includes("Edg")?"Edge":e.includes("Opera")||e.includes("OPR")?"Opera":"Unknown Browser"}getOSInfo(){if(typeof navigator>"u")return"Unknown OS";let e=navigator.userAgent;return e.includes("Windows")?"Windows":e.includes("Mac OS")?"macOS":e.includes("Linux")?"Linux":e.includes("Android")?"Android":e.includes("iOS")||e.includes("iPhone")||e.includes("iPad")?"iOS":"Unknown OS"}};var ie=class{constructor(e){this.http=e}async publish(e,t){return this.http.post(`/v1/public/queues/${e}/messages`,t)}async publishBatch(e,t){return this.http.post(`/v1/public/queues/${e}/messages/batch`,t)}async consume(e,t){let s=new URLSearchParams;t?.max_messages&&s.set("max_messages",String(t.max_messages)),t?.visibility_timeout&&s.set("visibility_timeout",String(t.visibility_timeout)),t?.auto_ack!==void 0&&s.set("auto_ack",String(t.auto_ack));let r=s.toString(),i=await this.http.get(`/v1/public/queues/${e}/messages${r?`?${r}`:""}`);return k(i,{messages:{type:"array"}},"queue.consume"),i}async ack(e,t,s){let r={message_ids:t,ack_token:s};return this.http.post(`/v1/public/queues/${e}/messages/ack`,r)}async nack(e,t,s){return this.http.post(`/v1/public/queues/${e}/messages/${t}/nack`,s||{})}async getInfo(e){return this.http.get(`/v1/public/queues/${e}`)}};var ne=class{constructor(e,t){this.ws=null;this.state="disconnected";this._connectionId=null;this._appId=null;this.activeTransport=null;this.sseFallbackActive=!1;this.sseSessions=new Map;this.options={maxRetries:5,retryInterval:1e3,userId:"",accessToken:"",timeout:3e4,debug:!1,fallback:"sse"};this.retryCount=0;this.pendingRequests=new Map;this.subscriptions=new Map;this.streamSessions=new Map;this.stateHandlers=[];this.errorHandlers=[];this.presenceHandlers=[];this.presenceSubscriptions=new Map;this.typingHandlers=new Map;this.readReceiptHandlers=new Map;this.connectPromise=null;this.http=e,this.socketUrl=t,this.clientId=this.generateClientId()}get connectionId(){return this._connectionId}get appId(){return this._appId}get transport(){return this.activeTransport}async connect(e={}){if(this.state!=="connected"){if(this.state==="connecting"&&this.connectPromise)return this.connectPromise;this.options={...this.options,...e},e.userId&&(this.userId=e.userId),this.connectPromise=this.doConnect();try{await this.connectPromise}catch(t){let s=!!(this.options.accessToken||this.http.getPublicKey());if(this.options.fallback!=="none"&&s)this.activateSseFallback(t);else throw t}finally{this.connectPromise=null}}}activateSseFallback(e){if(this.sseFallbackActive)return;if(this.ws){try{this.ws.close()}catch{}this.ws=null}let t=e instanceof Error?e.message:String(e);this.sseFallbackActive=!0,this.activeTransport="sse",this.state="connected",this.retryCount=0,this.log(`WS unavailable (${t}); using SSE fallback transport for AI streaming`),this.notifyStateChange(),this.notifyError(new Error(`Realtime WebSocket unavailable, downgraded to SSE fallback transport (cb.realtime.transport === 'sse'). Only realtime.stream() works in this mode \u2014 subscribe/send/setPresence/typing calls will throw. Cause: ${t}`))}disconnect(){this.state="disconnected",this.notifyStateChange(),this.ws&&(this.ws.close(),this.ws=null),this.pendingRequests.forEach(e=>{clearTimeout(e.timeout),e.reject(new Error("Connection closed"))}),this.pendingRequests.clear(),this.subscriptions.clear(),this.streamSessions.forEach((e,t)=>{e.handlers.onError&&e.handlers.onError(new I({code:"service_unavailable",message:"\uC2E4\uC2DC\uAC04 \uC5F0\uACB0\uC774 \uC885\uB8CC\uB418\uC5B4 AI \uC2A4\uD2B8\uB9AC\uBC0D\uC774 \uC911\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC7AC\uC5F0\uACB0 \uD6C4 \uB2E4\uC2DC \uC2DC\uB3C4\uD574 \uC8FC\uC138\uC694.",retryable:!0,sessionId:t}))}),this.streamSessions.clear(),this.sseSessions.forEach(e=>{try{e.abort()}catch{}}),this.sseSessions.clear(),this.sseFallbackActive=!1,this.activeTransport=null,this.presenceHandlers=[],this.presenceSubscriptions.clear(),this.typingHandlers.clear(),this.readReceiptHandlers.clear(),this._connectionId=null,this._appId=null,this.retryCount=0,this.connectPromise=null}async subscribe(e,t={}){if(this.assertBidirectional("subscribe"),this.state!=="connected")throw new Error("Not connected. Call connect() first.");let s=this.generateRequestId(),r=await this.sendRequest({category:e,action:"subscribe",request_id:s}),i={category:r.category,persist:r.persist,historyCount:r.history_count,readReceipt:r.read_receipt},n=[];return this.subscriptions.set(e,{info:i,handlers:n}),{info:i,send:async(c,l)=>{await this.sendMessage(e,c,l)},getHistory:async c=>this.getHistory(e,c??t.historyLimit),unsubscribe:async()=>{await this.unsubscribe(e)},onMessage:c=>(n.push(c),()=>{let l=n.indexOf(c);l>-1&&n.splice(l,1)})}}async unsubscribe(e){if(this.state!=="connected")return;let t=this.generateRequestId();await this.sendRequest({category:e,action:"unsubscribe",request_id:t}),this.subscriptions.delete(e)}async sendMessage(e,t,s={}){if(this.assertBidirectional("sendMessage"),this.state!=="connected")throw new Error("Not connected");let i=s.includeSelf!==!1,n=this.generateRequestId();await this.sendRequest({category:e,action:"send",data:{data:t,broadcast:i},request_id:n})}async getHistory(e,t){if(this.assertBidirectional("getHistory"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId(),r=await this.sendRequest({category:e,action:"history",data:t?{limit:t}:void 0,request_id:s});return{category:r.category,messages:r.messages.map(i=>({id:i.id,category:i.category,from:i.from,data:i.data,sentAt:i.sent_at})),total:r.total}}async stream(e,t,s={}){if(this.state==="connected"&&this.activeTransport==="ws"&&this.ws?.readyState===WebSocket.OPEN)try{return this.streamViaWS(e,t,s)}catch(i){if(this.options.fallback==="none")throw i;this.log(`WS stream send failed (${i instanceof Error?i.message:String(i)}); falling back to SSE`)}if(this.options.fallback!=="none")return this.streamViaSSE(e,t,s);throw new Error("Not connected. Call connect() first.")}streamViaWS(e,t,s){let r=this.generateRequestId(),i=s.sessionId||this.generateRequestId();this.streamSessions.set(i,{handlers:t,requestId:r});try{this.sendRaw({category:"",action:"stream",data:{provider:s.provider,model:s.model,messages:e,system:s.system,temperature:s.temperature,max_tokens:s.maxTokens,session_id:i,metadata:s.metadata,mcp_group:s.mcpGroup},request_id:r})}catch(n){throw this.streamSessions.delete(i),n}return{sessionId:i,stop:async()=>{await this.stopStream(i)}}}streamViaSSE(e,t,s){let r=s.sessionId||this.generateRequestId(),i=new AbortController;return this.sseSessions.set(r,i),s.mcpGroup&&this.log("mcpGroup is not supported in SSE fallback mode; streaming without MCP tools"),this.log(`Streaming via SSE fallback (session ${r})`),this.runSseStream(r,e,t,s,i.signal),{sessionId:r,stop:async()=>{await this.stopStream(r)}}}async runSseStream(e,t,s,r,i){let n=Date.now(),o=0,c="",l,u={messages:r.system?[{role:"system",content:r.system},...t]:t,provider:r.provider,model:r.model,temperature:r.temperature,maxTokens:r.maxTokens};try{let p=await this.http.fetchRaw("/v1/public/ai/chat/stream",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(u),signal:i});if(!p.ok){let b=await p.json().catch(()=>({error:"stream_failed"}));s.onError?.(C(b,{message:"Stream request failed",sessionId:e,status:p.status}));return}if(l=p.body?.getReader(),!l){s.onError?.(new I({code:"stream_failed",message:"ReadableStream not supported",retryable:!1,sessionId:e}));return}let h=new TextDecoder,m="";for(;;){let{done:b,value:g}=await l.read();if(b)break;m+=h.decode(g,{stream:!0});let _=m.split(`
3
+ `);m=_.pop()||"";for(let w of _){if(!w.startsWith("data: "))continue;let S=w.slice(6).trim();if(S==="[DONE]"){s.onDone?.({sessionId:e,fullText:c,totalTokens:0,promptTokens:0,duration:Date.now()-n});return}try{let y=JSON.parse(S);if(y.error){s.onError?.(C(y,{sessionId:e}));return}if(y.type==="tool_start"){s.onToolCall?.(y.name||"",y.arguments||{},o);continue}if(y.type==="tool_end"){s.onToolResult?.(y.name||"",y.success!==!1,y.durationMs||0,o);continue}if(y.type==="sources"||y.type==="searching"||y.type==="heartbeat")continue;if(y.content&&(c+=y.content,s.onToken?.(y.content,o++)),y.done){s.onDone?.({sessionId:e,fullText:c,totalTokens:0,promptTokens:0,duration:Date.now()-n});return}}catch{}}}}catch(p){i.aborted||p instanceof DOMException&&p.name==="AbortError"||typeof p=="object"&&p!==null&&p.name==="AbortError"||s.onError?.(new I({code:"service_unavailable",message:p instanceof Error?p.message:String(p)||"AI \uC2A4\uD2B8\uB9AC\uBC0D \uC694\uCCAD\uC5D0 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4",retryable:!0,sessionId:e}))}finally{if(this.sseSessions.delete(e),l)try{await l.cancel()}catch{}}}async stopStream(e){let t=this.sseSessions.get(e);if(t){t.abort(),this.sseSessions.delete(e);return}if(this.state!=="connected"||!this.ws||this.ws.readyState!==WebSocket.OPEN){this.streamSessions.delete(e);return}let s=this.generateRequestId();this.sendRaw({category:"",action:"stream_stop",data:{session_id:e},request_id:s}),this.streamSessions.delete(e)}getState(){return this.state}isConnected(){return this.state==="connected"}onStateChange(e){return this.stateHandlers.push(e),()=>{let t=this.stateHandlers.indexOf(e);t>-1&&this.stateHandlers.splice(t,1)}}onError(e){return this.errorHandlers.push(e),()=>{let t=this.errorHandlers.indexOf(e);t>-1&&this.errorHandlers.splice(t,1)}}async setPresence(e,t={}){if(this.assertBidirectional("setPresence"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId();await this.sendRequest({category:"",action:"presence_set",data:{status:e,device:t.device,metadata:t.metadata},request_id:s})}async setPresenceOnDisconnect(e,t){if(this.assertBidirectional("setPresenceOnDisconnect"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId();await this.sendRequest({category:"",action:"presence_on_disconnect",data:{status:e,metadata:t},request_id:s})}async getPresence(e){if(this.assertBidirectional("getPresence"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId(),s=await this.sendRequest({category:"",action:"presence_get",data:{user_id:e},request_id:t});return{userId:s.user_id,status:s.status,lastSeen:s.last_seen,device:s.device,metadata:s.metadata}}async getPresenceMany(e){if(this.assertBidirectional("getPresenceMany"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId(),s=await this.sendRequest({category:"",action:"presence_get_many",data:{user_ids:e},request_id:t}),r={};for(let[i,n]of Object.entries(s.users))r[i]={userId:n.user_id,status:n.status,lastSeen:n.last_seen,device:n.device,metadata:n.metadata};return{users:r}}async subscribePresence(e,t){if(this.assertBidirectional("subscribePresence"),this.state!=="connected")throw new Error("Not connected");if(!this.presenceSubscriptions.has(e)){let r=this.generateRequestId();await this.sendRequest({category:"",action:"presence_subscribe",data:{user_id:e},request_id:r}),this.presenceSubscriptions.set(e,[])}let s=this.presenceSubscriptions.get(e);return s.push(t),()=>{let r=s.indexOf(t);if(r>-1&&s.splice(r,1),s.length===0&&(this.presenceSubscriptions.delete(e),this.state==="connected")){let i=this.generateRequestId();this.sendRequest({category:"",action:"presence_unsubscribe",data:{user_id:e},request_id:i}).catch(n=>{this.log(`Failed to unsubscribe presence for ${e}: ${n}`)})}}}onPresenceChange(e){return this.presenceHandlers.push(e),()=>{let t=this.presenceHandlers.indexOf(e);t>-1&&this.presenceHandlers.splice(t,1)}}async startTyping(e){if(this.assertBidirectional("startTyping"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId();await this.sendRequest({category:"",action:"typing_start",data:{room_id:e},request_id:t})}async stopTyping(e){if(this.assertBidirectional("stopTyping"),this.state!=="connected")throw new Error("Not connected");let t=this.generateRequestId();await this.sendRequest({category:"",action:"typing_stop",data:{room_id:e},request_id:t})}async onTypingChange(e,t){if(this.assertBidirectional("onTypingChange"),this.state!=="connected")throw new Error("Not connected");if(!this.typingHandlers.has(e)){let r=this.generateRequestId();await this.sendRequest({category:"",action:"typing_subscribe",data:{room_id:e},request_id:r}),this.typingHandlers.set(e,[])}let s=this.typingHandlers.get(e);return s.push(t),()=>{let r=s.indexOf(t);if(r>-1&&s.splice(r,1),s.length===0&&(this.typingHandlers.delete(e),this.state==="connected")){let i=this.generateRequestId();this.sendRequest({category:"",action:"typing_unsubscribe",data:{room_id:e},request_id:i}).catch(n=>{this.log(`Failed to unsubscribe typing for ${e}: ${n}`)})}}}async markRead(e,t){if(this.assertBidirectional("markRead"),this.state!=="connected")throw new Error("Not connected");let s=this.generateRequestId();await this.sendRequest({category:e,action:"mark_read",data:{message_ids:t},request_id:s})}onReadReceipt(e,t){this.readReceiptHandlers.has(e)||this.readReceiptHandlers.set(e,[]);let s=this.readReceiptHandlers.get(e);return s.push(t),()=>{let r=s.indexOf(t);r>-1&&s.splice(r,1)}}async doConnect(){return new Promise((e,t)=>{this.state="connecting",this.notifyStateChange(),this.log("Connecting...");let s=this.socketUrl.replace(/^http/,"ws"),r;if(this.options.accessToken)r=`${s}/v1/realtime/auth?access_token=${encodeURIComponent(this.options.accessToken)}&client_id=${this.clientId}`,this.log("Using accessToken authentication");else{let o=this.http.getPublicKey();if(!o){let c=new Error("API Key or accessToken is required for realtime connection");this.log("Connection failed: no API Key or accessToken"),t(c);return}r=`${s}/v1/realtime/auth?public_key=${encodeURIComponent(o)}&client_id=${this.clientId}`,this.log("Using API Key authentication")}this.userId&&(r+=`&user_id=${encodeURIComponent(this.userId)}`);let i=!1,n=setTimeout(()=>{i||(i=!0,this.log(`Connection timeout after ${this.options.timeout}ms`),this.ws&&(this.ws.close(),this.ws=null),this.state="disconnected",this.notifyStateChange(),t(new Error(`Connection timeout after ${this.options.timeout}ms`)))},this.options.timeout);try{this.log(`Connecting to ${s}`),this.ws=new WebSocket(r),this.ws.onopen=()=>{this.log("WebSocket opened, waiting for connected event...")},this.ws.onmessage=o=>{let c=o.data.split(`
4
+ `).filter(l=>l.trim());for(let l of c)try{let d=JSON.parse(l);this.handleServerMessage(d,()=>{i||(i=!0,clearTimeout(n),this.log("Connected successfully"),e())})}catch(d){this.logError("Failed to parse message",{line:l,error:d})}},this.ws.onclose=o=>{this.log(`WebSocket closed: code=${o.code}, reason=${o.reason}`),!i&&this.state==="connecting"&&(i=!0,clearTimeout(n),t(new Error(`Connection closed: ${o.reason||"unknown reason"}`))),(this.state==="connected"||this.state==="connecting")&&this.handleDisconnect()},this.ws.onerror=o=>{this.log("WebSocket error occurred"),this.logError("WebSocket error",o),this.notifyError(new Error("WebSocket connection error")),!i&&this.state==="connecting"&&(i=!0,clearTimeout(n),t(new Error("Failed to connect")))}}catch(o){i=!0,clearTimeout(n),t(o)}})}log(e){this.options.debug&&console.log(`[Realtime] ${e}`)}logError(e,t){this.options.debug&&console.error(`[Realtime] ${e}`,t)}handleServerMessage(e,t){switch(e.event){case"connected":{let s=e.data;this._connectionId=s.connection_id,this._appId=s.app_id,this.state="connected",this.activeTransport="ws",this.sseFallbackActive=!1,this.retryCount=0,this.notifyStateChange(),t&&t();break}case"subscribed":case"unsubscribed":case"sent":case"result":case"history":{if(e.request_id){let s=this.pendingRequests.get(e.request_id);s&&(clearTimeout(s.timeout),s.resolve(e.data),this.pendingRequests.delete(e.request_id))}break}case"message":{let s=e.data,r=this.subscriptions.get(s.category);if(r){let i={id:s.id,category:s.category,from:s.from,data:s.data,sentAt:s.sent_at};r.handlers.forEach(n=>n(i))}break}case"error":{if(e.request_id){let s=this.pendingRequests.get(e.request_id);s&&(clearTimeout(s.timeout),s.reject(new Error(e.error||"Unknown error")),this.pendingRequests.delete(e.request_id))}else this.notifyError(new Error(e.error||"Unknown error"));break}case"pong":break;case"stream_token":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onToken&&r.handlers.onToken(s.token,s.index);break}case"stream_done":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onDone&&r.handlers.onDone({sessionId:s.session_id,fullText:s.full_text,totalTokens:s.total_tokens,promptTokens:s.prompt_tokens,duration:s.duration_ms}),this.streamSessions.delete(s.session_id);break}case"stream_tool_call":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onToolCall&&r.handlers.onToolCall(s.tool_name,s.arguments||{},s.index);break}case"stream_tool_result":{let s=e.data,r=this.streamSessions.get(s.session_id);r?.handlers.onToolResult&&r.handlers.onToolResult(s.tool_name,s.success,s.duration_ms,s.index);break}case"stream_error":{if(e.request_id){for(let[s,r]of this.streamSessions)if(r.requestId===e.request_id){r.handlers.onError&&r.handlers.onError(C(e.data,{sessionId:s})),this.streamSessions.delete(s);break}}break}case"presence":case"presence_status":{let s=e.data,r={userId:s.user_id,status:s.status,lastSeen:s.last_seen,device:s.device,metadata:s.metadata,eventType:s.event_type};this.presenceHandlers.forEach(n=>n(r));let i=this.presenceSubscriptions.get(s.user_id);if(i&&i.forEach(n=>n(r)),e.request_id){let n=this.pendingRequests.get(e.request_id);n&&(clearTimeout(n.timeout),n.resolve(e.data),this.pendingRequests.delete(e.request_id))}break}case"typing":{let s=e.data,r={roomId:s.room_id,users:s.users},i=this.typingHandlers.get(s.room_id);i&&i.forEach(n=>n(r));break}case"read_receipt":{let s=e.data,r={category:s.category,messageIds:s.message_ids,readerId:s.reader_id,readAt:s.read_at},i=this.readReceiptHandlers.get(s.category);i&&i.forEach(n=>n(r));break}}}handleDisconnect(){if(this.sseFallbackActive){this.ws=null;return}this.ws=null,this._connectionId=null,this.streamSessions.forEach((r,i)=>{r.handlers.onError&&r.handlers.onError(new I({code:"service_unavailable",message:"\uC2E4\uC2DC\uAC04 \uC5F0\uACB0\uC774 \uB04A\uACA8 AI \uC2A4\uD2B8\uB9AC\uBC0D\uC774 \uC911\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC7AC\uC5F0\uACB0 \uD6C4 \uB2E4\uC2DC \uC2DC\uB3C4\uD574 \uC8FC\uC138\uC694.",retryable:!0,sessionId:i}))}),this.streamSessions.clear();let e=new Map;for(let[r,i]of this.subscriptions)e.set(r,[...i.handlers]);this.subscriptions.clear();let t=new Map;for(let[r,i]of this.presenceSubscriptions)t.set(r,[...i]);this.presenceSubscriptions.clear();let s=new Map;for(let[r,i]of this.typingHandlers)s.set(r,[...i]);if(this.typingHandlers.clear(),this.retryCount<this.options.maxRetries){this.state="reconnecting",this.notifyStateChange(),this.retryCount++;let r=Math.min(this.options.retryInterval*2**(this.retryCount-1),3e4);setTimeout(async()=>{if(!this.sseFallbackActive)try{await this.doConnect(),this.log("Reconnected successfully, restoring subscriptions..."),await this.restoreSubscriptions(e,t,s)}catch(i){this.logError("Reconnect failed",i),this.retryCount>=this.options.maxRetries&&this.options.fallback!=="none"&&!this.sseFallbackActive&&this.activateSseFallback(i)}},r)}else this.options.fallback!=="none"?this.activateSseFallback(new Error("Connection lost. Max WS retries exceeded.")):(this.state="disconnected",this.notifyStateChange(),this.notifyError(new Error("Connection lost. Max retries exceeded.")))}async restoreSubscriptions(e,t,s){for(let[r,i]of e)try{this.log(`Restoring subscription: ${r}`);let n=this.generateRequestId(),o=await this.sendRequest({category:r,action:"subscribe",request_id:n}),c={category:o.category,persist:o.persist,historyCount:o.history_count,readReceipt:o.read_receipt};this.subscriptions.set(r,{info:c,handlers:i}),this.log(`Restored subscription: ${r}`)}catch(n){this.logError(`Failed to restore subscription for ${r}`,n),this.notifyError(new Error(`Failed to restore subscription: ${r}`))}for(let[r,i]of t)try{this.log(`Restoring presence subscription: ${r}`);let n=this.generateRequestId();await this.sendRequest({category:"",action:"presence_subscribe",data:{user_id:r},request_id:n}),this.presenceSubscriptions.set(r,i),this.log(`Restored presence subscription: ${r}`)}catch(n){this.logError(`Failed to restore presence subscription for ${r}`,n)}for(let[r,i]of s)try{this.log(`Restoring typing subscription: ${r}`);let n=this.generateRequestId();await this.sendRequest({category:"",action:"typing_subscribe",data:{room_id:r},request_id:n}),this.typingHandlers.set(r,i),this.log(`Restored typing subscription: ${r}`)}catch(n){this.logError(`Failed to restore typing subscription for ${r}`,n)}}assertBidirectional(e){if(this.activeTransport==="sse")throw new Error(`realtime.${e}() requires a WebSocket connection, which is blocked on this network. Only AI streaming (realtime.stream) works in SSE fallback mode (cb.realtime.transport === 'sse').`)}sendRequest(e){return new Promise((t,s)=>{if(!this.ws||this.ws.readyState!==WebSocket.OPEN){s(new Error("Not connected"));return}let r=setTimeout(()=>{this.pendingRequests.delete(e.request_id),s(new Error("Request timeout"))},this.options.timeout);this.pendingRequests.set(e.request_id,{resolve:t,reject:s,timeout:r}),this.ws.send(JSON.stringify(e))})}sendRaw(e){if(!this.ws||this.ws.readyState!==WebSocket.OPEN)throw new Error("Not connected");this.ws.send(JSON.stringify(e))}notifyStateChange(){this.stateHandlers.forEach(e=>e(this.state))}notifyError(e){this.errorHandlers.forEach(t=>t(e))}generateClientId(){return`cb_${Math.random().toString(36).substring(2,15)}`}generateRequestId(){return`req_${Date.now()}_${Math.random().toString(36).substring(2,9)}`}};var q=class{constructor(e){this.http=e}ensureServerAuth(e){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error(`cb.roles.${e}() \uB294 \uCF58\uC194 JWT \uB610\uB294 service_role(ctx.cbAdmin, management_scopes: ["role:read" | "role:manage"]) \uC778\uC99D\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. Public Key(cb_pk_) \uB2E8\uB3C5 SDK \uC778\uC2A4\uD134\uC2A4\uB85C\uB294 \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 \u2014 Functions \uD658\uACBD\uC5D0\uC11C \uC0AC\uC6A9\uD558\uC138\uC694.`)}async list(e){return this.ensureServerAuth("list"),this.http.get(`/v1/apps/${e}/app-roles`)}async get(e,t){return this.ensureServerAuth("get"),this.http.get(`/v1/apps/${e}/app-roles/${t}`)}async create(e,t){return this.ensureServerAuth("create"),this.http.post(`/v1/apps/${e}/app-roles`,{role_title:t.title,role_description:t.description,selected_permission_ids:t.permissionIds??[]})}async update(e,t,s){this.ensureServerAuth("update"),await this.http.put(`/v1/apps/${e}/app-roles/${t}`,{role_title:s.title,role_description:s.description,selected_permission_ids:s.permissionIds,selected_user_ids:s.userIds})}async assign(e,t,s){this.ensureServerAuth("assign");let r=await this.http.get(`/v1/apps/${e}/app-roles/${t}`);await this.http.put(`/v1/apps/${e}/app-roles/${t}`,{role_title:r.role_name,role_description:r.role_description,selected_permission_ids:r.permission_item.map(i=>i.id),selected_user_ids:s})}async delete(e,t){this.ensureServerAuth("delete"),await this.http.delete(`/v1/apps/${e}/app-roles/${t}`)}};function E(a={}){let e=new AbortController,t=a.timeout??3e4,s=a.signal,r=null,i=null;return s&&(s.aborted?e.abort(s.reason):(i=()=>e.abort(s.reason),s.addEventListener("abort",i,{once:!0}))),t>0&&Number.isFinite(t)&&(r=setTimeout(()=>{e.abort(new DOMException(`Request timed out after ${t}ms`,"TimeoutError"))},t)),{signal:e.signal,cleanup:()=>{r!==null&&clearTimeout(r),s&&i&&s.removeEventListener("abort",i)}}}var _e=new Set(["localhost","127.0.0.1","::1"]),$e=2048;function Me(a,e={}){let t=e.context??"external URL";if(typeof a!="string"||a.length===0)throw new f(400,`${t}: empty URL`,"INVALID_PRESIGNED_URL");if(a.length>$e)throw new f(400,`${t}: URL exceeds ${$e} chars`,"INVALID_PRESIGNED_URL");let s;try{s=new URL(a)}catch{throw new f(400,`${t}: cannot parse URL`,"INVALID_PRESIGNED_URL")}let r=e.allowLocalhost&&_e.has(s.hostname);if(s.protocol!=="https:"&&!(r&&s.protocol==="http:"))throw new f(400,`${t}: scheme must be https (got ${s.protocol})`,"INVALID_PRESIGNED_URL");if(!e.allowLocalhost&&_e.has(s.hostname))throw new f(400,`${t}: localhost is not allowed in production`,"INVALID_PRESIGNED_URL");if(e.allowedHosts&&e.allowedHosts.length>0){let i=s.hostname;if(!e.allowedHosts.some(o=>o===i?!0:i.endsWith(`.${o}`)))throw new f(400,`${t}: host ${i} is not in allowlist`,"INVALID_PRESIGNED_URL")}return s}function Ue(){if(typeof window>"u")return!1;let a=window.location.hostname;return _e.has(a)}var oe=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async uploadToPresigned(e,t,s){let i=Me(e,{allowLocalhost:Ue(),context:"storage.presigned-url"}).toString();if(s?.onProgress&&typeof XMLHttpRequest<"u")return this.putViaXhr(i,t,s.onProgress,s);let{signal:n,cleanup:o}=E({timeout:s?.timeout,signal:s?.signal});try{s?.onProgress?.({loaded:0,total:t.size,percentage:0});let c=await fetch(i,{method:"PUT",body:t,headers:{"Content-Type":t.type||"application/octet-stream"},signal:n});if(!c.ok)throw new f(c.status,`Upload failed: ${c.statusText}`,"PRESIGNED_UPLOAD_FAILED");s?.onProgress?.({loaded:t.size,total:t.size,percentage:100})}finally{o()}}putViaXhr(e,t,s,r){return new Promise((i,n)=>{let o=r?.signal;if(o?.aborted){n(o.reason??new DOMException("Aborted","AbortError"));return}let c=new XMLHttpRequest;c.open("PUT",e,!0),c.setRequestHeader("Content-Type",t.type||"application/octet-stream");let l=r?.timeout??3e4;l>0&&Number.isFinite(l)&&(c.timeout=l);let d=null,u=()=>{o&&d&&o.removeEventListener("abort",d)};o&&(d=()=>c.abort(),o.addEventListener("abort",d,{once:!0})),c.upload.onprogress=p=>{if(!p.lengthComputable)return;let h=p.total||t.size;s({loaded:p.loaded,total:h,percentage:h>0?Math.round(p.loaded/h*100):0})},c.onload=()=>{u(),c.status>=200&&c.status<300?(s({loaded:t.size,total:t.size,percentage:100}),i()):n(new f(c.status,`Upload failed: ${c.statusText||"unknown error"}`,"PRESIGNED_UPLOAD_FAILED"))},c.onerror=()=>{u(),n(new f(0,"Upload failed: network error","PRESIGNED_UPLOAD_FAILED"))},c.ontimeout=()=>{u(),n(new DOMException(`Request timed out after ${l}ms`,"TimeoutError"))},c.onabort=()=>{u(),n(o?.reason??new DOMException("Aborted","AbortError"))},c.send(t)})}async getFiles(e,t){let s=this.getPublicPrefix(),r=t?`?parent_id=${encodeURIComponent(t)}`:"";return(await this.http.get(`${s}/storages/files/${e}/items${r}`)).files}async uploadFile(e,t,s){let r=typeof s=="string"?{parentId:s}:s??{},i=this.getPublicPrefix(),n=await this.http.post(`${i}/storages/files/${e}/presigned-url`,{file_name:t.name,file_size:t.size,mime_type:t.type||"application/octet-stream",parent_id:r.parentId});await this.uploadToPresigned(n.upload_url,t,{onProgress:r.onProgress,signal:r.signal,timeout:r.timeout});let o=await this.http.post(`${i}/storages/files/${e}/complete-upload`,{file_id:n.file_id});return{id:o.id,name:o.name,path:o.path,type:o.type,mime_type:o.mime_type,size:o.size,url:o.url,parent_id:o.parent_id,created_at:o.created_at}}async uploadFiles(e,t,s){let r=[];for(let i of t){let n=await this.uploadFile(e,i,s);r.push(n)}return r}async createFolder(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/storages/files/${e}/folders`,t)}async deleteFile(e,t){let s=this.getPublicPrefix();await this.http.delete(`${s}/storages/files/${e}/items/${t}`)}async moveFile(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("storage.moveFile requires JWT (console token) auth; not available with Public Key alone.");await this.http.post(`/v1/storages/files/${e}/items/${t}/move`,s)}async renameFile(e,t,s){if(this.http.hasPublicKey()&&!this.http.hasJWT())throw new Error("storage.renameFile requires JWT (console token) auth; not available with Public Key alone.");return this.http.patch(`/v1/storages/files/${e}/items/${t}/rename`,s)}getFileUrl(e){return e.url||null}isImageFile(e){return e.mime_type?.startsWith("image/")||!1}async uploadByPath(e,t,s,r){let i=this.getPublicPrefix(),n=t.startsWith("/")?t.slice(1):t,o=r?.overwrite!==!1,c=await this.http.post(`${i}/storages/files/${e}/presigned-url/path/${n}`,{file_name:s.name,file_size:s.size,mime_type:s.type||"application/octet-stream",overwrite:o});await this.uploadToPresigned(c.upload_url,s,{onProgress:r?.onProgress,signal:r?.signal,timeout:r?.timeout});let l=await this.http.post(`${i}/storages/files/${e}/complete-upload`,{file_id:c.file_id});return{id:l.id,name:l.name,path:l.path,type:l.type,mime_type:l.mime_type,size:l.size,url:l.url,parent_id:l.parent_id,created_at:l.created_at}}async getByPath(e,t){let s=this.getPublicPrefix(),r=t.startsWith("/")?t.slice(1):t;return this.http.get(`${s}/storages/files/${e}/path/${r}`)}async getUrlByPath(e,t){try{return(await this.getByPath(e,t)).url||null}catch{return null}}async setPageMeta(e,t){let s=this.getPublicPrefix();return this.http.put(`${s}/storages/webs/${e}/page-metas`,t)}async batchSetPageMeta(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/storages/webs/${e}/page-metas/batch`,t)}async listPageMetas(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;t?.limit!=null&&r.set("limit",String(t.limit)),t?.offset!=null&&r.set("offset",String(t.offset));let i=r.toString();return this.http.get(`${s}/storages/webs/${e}/page-metas${i?`?${i}`:""}`)}async getPageMeta(e,t){let s=this.getPublicPrefix(),r=encodeURIComponent(t);return this.http.get(`${s}/storages/webs/${e}/page-metas/get?path=${r}`)}async deletePageMeta(e,t){let s=this.getPublicPrefix(),r=encodeURIComponent(t);await this.http.delete(`${s}/storages/webs/${e}/page-metas?path=${r}`)}async deleteAllPageMetas(e){let t=this.getPublicPrefix();await this.http.delete(`${t}/storages/webs/${e}/page-metas/all`)}};var ae=class{constructor(e){this.http=e}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async issueBillingKey(){let e=this.getPublicPrefix();return this.http.post(`${e}/subscriptions/billing-keys`,{})}async confirmBillingKey(e){let t=this.getPublicPrefix();return this.http.post(`${t}/subscriptions/billing-keys/confirm`,e)}async listBillingKeys(e){let t=this.getPublicPrefix(),s=e?`?customer_id=${e}`:"";return this.http.get(`${t}/subscriptions/billing-keys${s}`)}async getBillingKey(e){let t=this.getPublicPrefix();return this.http.get(`${t}/subscriptions/billing-keys/${e}`)}async updateBillingKey(e,t){let s=this.getPublicPrefix();return this.http.patch(`${s}/subscriptions/billing-keys/${e}`,t)}async deleteBillingKey(e){let t=this.getPublicPrefix();return this.http.delete(`${t}/subscriptions/billing-keys/${e}`)}async create(e){let t=this.getPublicPrefix(),s=await this.http.post(`${t}/subscriptions`,e);return k(s,{id:{type:"string-or-number"},status:{type:"string"}},"subscription.create"),s}async list(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.status&&s.set("status",e.status),e?.limit&&s.set("limit",String(e.limit)),e?.offset&&s.set("offset",String(e.offset));let r=s.toString();return this.http.get(`${t}/subscriptions${r?`?${r}`:""}`)}async get(e){let t=this.getPublicPrefix();return this.http.get(`${t}/subscriptions/${e}`)}async update(e,t){let s=this.getPublicPrefix();return this.http.patch(`${s}/subscriptions/${e}`,t)}async postponeBilling(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/postpone-billing`,t)}async pause(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/pause`,t||{})}async resume(e){let t=this.getPublicPrefix();return this.http.post(`${t}/subscriptions/${e}/resume`,{})}async cancel(e,t={}){let s=this.getPublicPrefix(),r={reason:t.reason,cancel_at_end:!t.immediate};return this.http.post(`${s}/subscriptions/${e}/cancel`,r)}async changePlan(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/change-plan`,t)}async previewChangePlan(e,t){let s=this.getPublicPrefix();return this.http.post(`${s}/subscriptions/${e}/change-plan/preview`,t)}async listPayments(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;t?.status&&r.set("status",t.status),t?.limit&&r.set("limit",String(t.limit)),t?.offset&&r.set("offset",String(t.offset));let i=r.toString();return this.http.get(`${s}/subscriptions/${e}/payments${i?`?${i}`:""}`)}async chargeWithBillingKey(e){let t=this.getPublicPrefix();return this.http.post(`${t}/subscriptions/charge`,e)}};var ce=class{constructor(e){this.http=e}async reportIssue(e){let t={title:e.title,body:e.body,category:e.category,metadata:e.metadata};return e.anonymousEmail&&(t.anonymous_email=e.anonymousEmail),e.recaptchaToken&&(t.recaptcha_token=e.recaptchaToken),this.http.post("/v1/public/reports",t)}async reportIssueOnBehalfOfUser(e){if(!e.targetAppId)throw new Error("targetAppId is required");if(!e.accessToken)throw new Error("accessToken is required");let t={title:e.title,body:e.body};e.category&&(t.category=e.category),e.metadata&&(t.metadata=e.metadata);let s=`${this.http.getBaseUrl()}/v1/integrations/providers/${encodeURIComponent(e.targetAppId)}/issues/by-user`,r=await fetch(s,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e.accessToken}`},body:JSON.stringify(t)});if(!r.ok){let i;try{i=await r.json()}catch{i={error:r.statusText}}let n=i??{},o=n.error_description??n.error??`HTTP ${r.status}`;throw new Error(`reportIssueOnBehalfOfUser failed (${r.status}): ${o}`)}return await r.json()}async reportPlatformBug(e){let t=e.attachAutomaticContext!==!1,s={title:e.title,body:e.body,category:e.category??"other",severity:e.severity??"medium",metadata:e.metadata};if(e.reporterEmail&&(s.reporter_email=e.reporterEmail),e.recaptchaToken&&(s.recaptcha_token=e.recaptchaToken),t){s.sdk_version=e.sdkVersion??st(),s.sdk_platform=e.sdkPlatform??rt(),s.environment=e.environment??"unknown",e.error?s.stack_trace=Le(e.error.stack??String(e.error)):e.stackTrace&&(s.stack_trace=Le(e.stackTrace));let r=e.recentApiCalls??this.http.getRecentCalls();r.length>0&&(s.recent_api_calls=r)}return this.http.post("/v1/public/platform-issues",s)}getRecentApiCalls(){return this.http.getRecentCalls()}clearRecentApiCalls(){this.http.clearRecentCalls()}async listPlatformIssueReplies(e){return(await this.http.get(`/v1/public/platform-issues/${e}/comments`)).comments}async replyToPlatformIssue(e,t){return this.http.post(`/v1/public/platform-issues/${e}/comments`,{body:t})}async getPlatformIssue(e){return this.http.get(`/v1/public/platform-issues/${e}`)}async listMyPlatformIssues(e={}){let t=new URLSearchParams;for(let r of e.status??[])t.append("status",r);for(let r of e.severity??[])t.append("severity",r);for(let r of e.category??[])t.append("category",r);e.sinceUpdatedAt&&t.set("since_updated_at",e.sinceUpdatedAt),e.cursor&&t.set("cursor",e.cursor),typeof e.limit=="number"&&t.set("limit",String(e.limit));let s=t.toString();return this.http.get(`/v1/public/platform-issues${s?`?${s}`:""}`)}};function st(){return typeof __SDK_VERSION__<"u"&&__SDK_VERSION__?__SDK_VERSION__:"unknown"}function rt(){return typeof window<"u"&&typeof document<"u"?"web":"node"}function Le(a){let e=a;e=e.replace(/(\(|\s|^)(?:file:\/\/)?\/[^\s)]+\/([^\s/)]+)(:\d+:\d+)?/g,"$1$2$3"),e=e.replace(/(https?:\/\/[^\s)?]+)\?[^\s)]*/g,"$1");let t=32*1024;return e.length>t&&(e=`${e.slice(0,t)}
5
+ \u2026[truncated]`),e}var Oe=5*1024*1024,H=class extends Error{constructor(e,t){super(e),this.name="VideoProcessingError",this.video=t}},le=class{constructor(e,t){this.http=e;this.storage={create:async e=>this.http.post("/v1/public/storages/videos",e),list:async()=>this.http.get("/v1/public/storages/videos"),get:async e=>this.http.get(`/v1/public/storages/videos/${e}`),update:async(e,t)=>this.http.put(`/v1/public/storages/videos/${e}`,t),delete:async e=>{await this.http.delete(`/v1/public/storages/videos/${e}`)},upload:async(e,t,s)=>{let r=await this.http.post(`/v1/public/storages/videos/${e}/uploads/init`,{filename:t.name,file_size:t.size,mime_type:t.type}),i=r.chunk_size||Oe,n=Math.ceil(t.size/i),o=0,c=Date.now(),l=0;for(let u=0;u<n;u++){let p=u*i,h=Math.min(p+i,t.size),m=t.slice(p,h),b=new FormData;b.append("chunk",m),await this.http.put(`/v1/public/storages/videos/${e}/uploads/${r.upload_id}/chunk?chunk_index=${u}`,b),o++;let g=Date.now(),_=(g-c)/1e3,w=h,S=w-l,y=_>0?S/_:0;c=g,l=w,s.onProgress&&s.onProgress({phase:"uploading",uploadedChunks:o,totalChunks:n,percentage:Math.round(o/n*100),currentSpeed:y})}let d=await this.http.post(`/v1/public/storages/videos/${e}/uploads/${r.upload_id}/complete`,{title:s.title,description:s.description,visibility:s.visibility||"private",tags:s.tags});return this.storage.getVideo(e,d.video_id)},listVideos:async(e,t)=>{let s=new URLSearchParams;t?.status&&s.set("status",t.status),t?.visibility&&s.set("visibility",t.visibility),t?.search&&s.set("search",t.search),t?.page&&s.set("page",String(t.page)),t?.limit&&s.set("limit",String(t.limit));let r=s.toString();return this.http.get(`/v1/public/storages/videos/${e}/videos${r?`?${r}`:""}`)},getVideo:async(e,t)=>this.http.get(`/v1/public/storages/videos/${e}/videos/${t}`),deleteVideo:async(e,t)=>{await this.http.delete(`/v1/public/storages/videos/${e}/videos/${t}`)},getStreamUrl:async(e,t)=>this.http.get(`/v1/public/storages/videos/${e}/videos/${t}/stream`),getTranscodeStatus:async(e,t)=>this.http.get(`/v1/public/storages/videos/${e}/videos/${t}/transcode`)};this.videoBaseUrl=t||this.getDefaultVideoUrl()}getDefaultVideoUrl(){if(typeof window<"u"){let e=window.location.hostname;if(e==="localhost"||e==="127.0.0.1")return"http://localhost:8089"}return"https://video.connectbase.world"}getPublicPrefix(){return this.http.hasPublicKey()?"/v1/public":"/v1"}async videoFetch(e,t,s){let r={},i=this.http.getPublicKey();i&&(r["X-Public-Key"]=i);let n=this.http.getAccessToken();n&&(r.Authorization=`Bearer ${n}`),s&&!(s instanceof FormData)&&(r["Content-Type"]="application/json");let{signal:o,cleanup:c}=E({timeout:3e4});try{let l=await fetch(`${this.videoBaseUrl}${t}`,{method:e,headers:r,body:s instanceof FormData?s:s?JSON.stringify(s):void 0,signal:o});if(!l.ok){let d=await l.json().catch(()=>({message:l.statusText})),u=d.error;if(u&&typeof u=="object"&&"message"in u)throw new f(l.status,u.message||"Unknown error",u.code,u.details);let p=typeof u=="string"?u:d.message||"Unknown error";throw new f(l.status,p)}return l.status===204||l.headers.get("content-length")==="0"?{}:await l.json()}finally{c()}}async upload(e,t){let s=this.getPublicPrefix(),r=await this.videoFetch("POST",`${s}/uploads/init`,{filename:e.name,file_size:e.size,mime_type:e.type}),i=r.chunk_size||Oe,n=Math.ceil(e.size/i),o=0,l=Date.now(),d=0;for(let p=0;p<n;p++){let h=p*i,m=Math.min(h+i,e.size),b=e.slice(h,m),g=new FormData;g.append("chunk",b),await this.videoFetch("PUT",`${s}/uploads/${r.upload_id}/chunk?chunk_index=${p}`,g),o++;let _=Date.now(),w=(_-l)/1e3,S=m,y=S-d,P=w>0?y/w:0;l=_,d=S,t.onProgress&&t.onProgress({phase:"uploading",uploadedChunks:o,totalChunks:n,percentage:Math.round(o/n*100),currentSpeed:P})}let u=await this.videoFetch("POST",`${s}/uploads/${r.upload_id}/complete`,{title:t.title,description:t.description,visibility:t.visibility||"private",tags:t.tags});return this.get(u.video_id)}async waitForReady(e,t){let s=t?.timeout||18e5,r=t?.interval||5e3,i=Date.now(),n=this.getPublicPrefix();for(;Date.now()-i<s;){let o=await this.videoFetch("GET",`${n}/videos/${e}`);if(o.status==="ready")return o;if(o.status==="failed")throw new H("Video processing failed",o);if(t?.onProgress){let c=o.qualities.filter(d=>d.status==="ready").length,l=o.qualities.length||1;t.onProgress({phase:"processing",uploadedChunks:0,totalChunks:0,percentage:Math.round(c/l*100)})}await new Promise(c=>setTimeout(c,r))}throw new H("Timeout waiting for video to be ready")}async list(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.status&&s.set("status",e.status),e?.visibility&&s.set("visibility",e.visibility),e?.search&&s.set("search",e.search),e?.channel_id&&s.set("channel_id",e.channel_id),e?.page&&s.set("page",String(e.page)),e?.limit&&s.set("limit",String(e.limit));let r=s.toString();return this.videoFetch("GET",`${t}/videos${r?`?${r}`:""}`)}async get(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/videos/${e}`)}async update(e,t){let s=this.getPublicPrefix();return this.videoFetch("PATCH",`${s}/videos/${e}`,t)}async delete(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/videos/${e}`)}async getStreamUrl(e,t){let s=this.getPublicPrefix(),r=t?`?quality=${t}`:"";return this.videoFetch("GET",`${s}/videos/${e}/stream-url${r}`)}async getThumbnails(e){let t=this.getPublicPrefix(),s=await this.videoFetch("GET",`${t}/videos/${e}/thumbnail`),r=new Set;s.thumbnail_url&&r.add(s.thumbnail_url);for(let i of s.thumbnail_urls??[])i&&r.add(i);return[...r]}async getTranscodeStatus(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/videos/${e}/transcode/status`)}async retryTranscode(e){let t=this.getPublicPrefix();await this.videoFetch("POST",`${t}/videos/${e}/transcode/retry`,{})}async createChannel(e){let t=this.getPublicPrefix();return this.videoFetch("POST",`${t}/channels`,e)}async getChannel(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/channels/${e}`)}async getChannelByHandle(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/channels/handle/${e}`)}async updateChannel(e,t){let s=this.getPublicPrefix();return this.videoFetch("PATCH",`${s}/channels/${e}`,t)}async subscribeChannel(e){let t=this.getPublicPrefix();await this.videoFetch("POST",`${t}/channels/${e}/subscribe`,{})}async unsubscribeChannel(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/channels/${e}/subscribe`)}async createPlaylist(e,t){let s=this.getPublicPrefix();return this.videoFetch("POST",`${s}/playlists`,{...t,channel_id:e})}async getPlaylists(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/playlists/public?channel_id=${encodeURIComponent(e)}`)).playlists}async getPlaylistItems(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/playlists/${e}`)).items}async addToPlaylist(e,t,s){let r=this.getPublicPrefix();return this.videoFetch("POST",`${r}/playlists/${e}/items`,{video_id:t,position:s})}async removeFromPlaylist(e,t){let s=this.getPublicPrefix();await this.videoFetch("DELETE",`${s}/playlists/${e}/items/${t}`)}async getShortsFeed(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.cursor&&s.set("cursor",e.cursor),e?.limit&&s.set("limit",String(e.limit));let r=s.toString();return this.videoFetch("GET",`${t}/shorts${r?`?${r}`:""}`)}async getTrendingShorts(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return this.videoFetch("GET",`${t}/shorts/trending${s}`)}async getShorts(e){let t=this.getPublicPrefix();return this.videoFetch("GET",`${t}/shorts/${e}`)}async getComments(e,t){let s=this.getPublicPrefix(),r=new URLSearchParams;t?.cursor&&r.set("cursor",t.cursor),t?.limit&&r.set("limit",String(t.limit)),t?.sort&&r.set("sort",t.sort);let i=r.toString();return this.videoFetch("GET",`${s}/videos/${e}/comments${i?`?${i}`:""}`)}async postComment(e,t,s){let r=this.getPublicPrefix();return this.videoFetch("POST",`${r}/comments`,{video_id:e,content:t,parent_id:s})}async deleteComment(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/comments/${e}`)}async likeVideo(e){let t=this.getPublicPrefix();await this.videoFetch("POST",`${t}/videos/${e}/like`,{})}async unlikeVideo(e){let t=this.getPublicPrefix();await this.videoFetch("DELETE",`${t}/videos/${e}/like`)}async getWatchHistory(e){let t=this.getPublicPrefix(),s=new URLSearchParams;e?.cursor&&s.set("cursor",e.cursor),e?.limit&&s.set("limit",String(e.limit));let r=s.toString();return this.videoFetch("GET",`${t}/watch-history${r?`?${r}`:""}`)}async clearWatchHistory(){let e=this.getPublicPrefix();await this.videoFetch("DELETE",`${e}/watch-history`)}async reportWatchProgress(e,t,s){let r=this.getPublicPrefix();await this.videoFetch("POST",`${r}/videos/${e}/watch-progress`,{position:t,duration:s})}async getMembershipTiers(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/channels/${e}/membership/tiers`)).tiers}async joinMembership(e,t){let s=this.getPublicPrefix();return this.videoFetch("POST",`${s}/membership/join`,{tier_id:t})}async cancelMembership(e,t){let s=this.getPublicPrefix();await this.videoFetch("POST",`${s}/membership/${t}/cancel`,{})}async sendSuperChat(e,t,s){let r=this.getPublicPrefix();return this.videoFetch("POST",`${r}/super-chats`,{channel_id:e,type:s?.type??"super_thanks",amount:t,video_id:s?.videoId,live_id:s?.liveId,currency:s?.currency??"USD",message:s?.message,sticker_id:s?.stickerId})}async getSuperChats(e){let t=this.getPublicPrefix();return(await this.videoFetch("GET",`${t}/videos/${e}/super-chats`)).super_chats}async getRecommendations(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return(await this.videoFetch("GET",`${t}/recommendations/feed${s}`)).videos}async getHomeFeed(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return(await this.videoFetch("GET",`${t}/recommendations/feed${s}`)).videos}async getRelatedVideos(e,t){let s=this.getPublicPrefix(),r=t?`?limit=${t}`:"";return(await this.videoFetch("GET",`${s}/videos/${e}/related${r}`)).videos}async getTrendingVideos(e){let t=this.getPublicPrefix(),s=e?`?limit=${e}`:"";return(await this.videoFetch("GET",`${t}/recommendations/trending${s}`)).videos}async submitFeedback(e,t){let s=this.getPublicPrefix();if(t==="not_interested"){await this.videoFetch("POST",`${s}/recommendations/not-interested/${e}`,{});return}await this.videoFetch("POST",`${s}/recommendations/interactions`,{video_id:e,type:"like"})}};var de=class{constructor(e,t,s){this.ws=null;this.state="disconnected";this.stateListeners=[];this.errorListeners=[];this.peerJoinedListeners=[];this.peerLeftListeners=[];this.remoteStreamListeners=[];this.reconnectAttempts=0;this.maxReconnectAttempts=5;this.reconnectTimeout=null;this.currentRoomId=null;this.currentPeerId=null;this.currentUserId=null;this.isBroadcaster=!1;this.localStream=null;this.channelType="interactive";this.peerConnections=new Map;this.remoteStreams=new Map;this.iceServers=[];this.http=e,this.webrtcUrl=t,this.appId=s}async getICEServers(){if(!this.appId)throw new Error("WebRTC getICEServers \uC5D0\uB294 appId \uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. ConnectBase \uCD08\uAE30\uD654 \uC2DC appId \uB97C \uC124\uC815\uD558\uC138\uC694.");let e=await this.http.get(`/v1/apps/${this.appId}/ice-servers`);return this.iceServers=e.ice_servers,e.ice_servers}async connect(e){if(this.state==="connected"||this.state==="connecting")throw new Error("\uC774\uBBF8 \uC5F0\uACB0\uB418\uC5B4 \uC788\uAC70\uB098 \uC5F0\uACB0 \uC911\uC785\uB2C8\uB2E4");if(this.setState("connecting"),this.currentRoomId=e.roomId,this.currentUserId=e.userId||null,this.isBroadcaster=e.isBroadcaster||!1,this.localStream=e.localStream||null,this.iceServers.length===0)try{await this.getICEServers()}catch{this.iceServers=[{urls:"stun:stun.l.google.com:19302"}]}return this.connectWebSocket()}connectWebSocket(){return new Promise((e,t)=>{let s=this.buildWebSocketUrl();this.ws=new WebSocket(s);let r=setTimeout(()=>{this.state==="connecting"&&(this.ws?.close(),t(new Error("\uC5F0\uACB0 \uC2DC\uAC04 \uCD08\uACFC")))},1e4);this.ws.onopen=()=>{clearTimeout(r),this.reconnectAttempts=0,this.sendSignaling({type:"join",room_id:this.currentRoomId,data:{user_id:this.currentUserId,is_broadcaster:this.isBroadcaster}})},this.ws.onmessage=async i=>{try{let n=JSON.parse(i.data);await this.handleSignalingMessage(n,e,t)}catch(n){console.error("Failed to parse signaling message:",n)}},this.ws.onerror=i=>{clearTimeout(r),console.error("WebSocket error:",i),this.emitError(new Error("WebSocket \uC5F0\uACB0 \uC624\uB958"))},this.ws.onclose=i=>{clearTimeout(r),this.state==="connecting"&&t(new Error("\uC5F0\uACB0\uC774 \uC885\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4")),this.handleDisconnect(i)}})}buildWebSocketUrl(){let e=this.webrtcUrl.replace("https://","wss://").replace("http://","ws://"),t=this.http.getPublicKey(),s=this.http.getAccessToken(),r="";if(s?r=`access_token=${encodeURIComponent(s)}`:t&&(r=`public_key=${encodeURIComponent(t)}`),!this.appId)throw new Error("WebRTC \uC5F0\uACB0\uC5D0\uB294 appId\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. ConnectBase \uCD08\uAE30\uD654 \uC2DC appId\uB97C \uC124\uC815\uD558\uC138\uC694.");return`${e}/v1/apps/${this.appId}/signaling?${r}`}async handleSignalingMessage(e,t,s){switch(e.type){case"joined":if(this.setState("connected"),this.currentPeerId=e.peer_id||null,e.data&&typeof e.data=="object"){let r=e.data;r.channel_type&&(this.channelType=r.channel_type);let i=r.peers||[];for(let n of i)n.peer_id!==this.currentPeerId&&await this.createPeerConnection(n.peer_id,!0)}t?.();break;case"peer_joined":if(e.peer_id&&e.peer_id!==this.currentPeerId){let r={peer_id:e.peer_id,...typeof e.data=="object"?e.data:{}};this.emitPeerJoined(e.peer_id,r),await this.createPeerConnection(e.peer_id,!1)}break;case"peer_left":e.peer_id&&(this.closePeerConnection(e.peer_id),this.emitPeerLeft(e.peer_id));break;case"offer":e.peer_id&&e.sdp&&await this.handleOffer(e.peer_id,e.sdp);break;case"answer":e.peer_id&&e.sdp&&await this.handleAnswer(e.peer_id,e.sdp);break;case"ice_candidate":e.peer_id&&e.candidate&&await this.handleICECandidate(e.peer_id,e.candidate);break;case"error":{let r=typeof e.data=="string"?e.data:"Unknown error",i=new Error(r);this.emitError(i),s?.(i);break}}}async createPeerConnection(e,t){this.closePeerConnection(e);let s={iceServers:this.iceServers.map(i=>({urls:i.urls,username:i.username,credential:i.credential}))},r=new RTCPeerConnection(s);if(this.peerConnections.set(e,r),this.localStream&&this.localStream.getTracks().forEach(i=>{r.addTrack(i,this.localStream)}),r.onicecandidate=i=>{i.candidate&&this.sendSignaling({type:"ice_candidate",target_id:e,candidate:i.candidate.toJSON()})},r.ontrack=i=>{let[n]=i.streams;n&&(this.remoteStreams.set(e,n),this.emitRemoteStream(e,n))},r.onconnectionstatechange=()=>{r.connectionState==="failed"&&(console.warn(`Peer connection failed: ${e}`),this.closePeerConnection(e))},t){let i=await r.createOffer();await r.setLocalDescription(i),this.sendSignaling({type:"offer",target_id:e,sdp:i.sdp})}return r}async handleOffer(e,t){let s=this.peerConnections.get(e);s||(s=await this.createPeerConnection(e,!1)),await s.setRemoteDescription(new RTCSessionDescription({type:"offer",sdp:t}));let r=await s.createAnswer();await s.setLocalDescription(r),this.sendSignaling({type:"answer",target_id:e,sdp:r.sdp})}async handleAnswer(e,t){let s=this.peerConnections.get(e);s&&await s.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:t}))}async handleICECandidate(e,t){let s=this.peerConnections.get(e);if(s)try{await s.addIceCandidate(new RTCIceCandidate(t))}catch(r){console.warn("Failed to add ICE candidate:",r)}}closePeerConnection(e){let t=this.peerConnections.get(e);t&&(t.close(),this.peerConnections.delete(e)),this.remoteStreams.delete(e)}sendSignaling(e){this.ws&&this.ws.readyState===WebSocket.OPEN&&this.ws.send(JSON.stringify(e))}handleDisconnect(e){let t=this.state==="connected";this.setState("disconnected"),this.peerConnections.forEach((s,r)=>{s.close(),this.emitPeerLeft(r)}),this.peerConnections.clear(),this.remoteStreams.clear(),t&&e.code!==1e3&&this.reconnectAttempts<this.maxReconnectAttempts&&this.attemptReconnect()}attemptReconnect(){this.reconnectAttempts++,this.setState("reconnecting");let e=Math.min(5e3*2**(this.reconnectAttempts-1),3e4);this.reconnectTimeout=setTimeout(async()=>{try{await this.connectWebSocket()}catch{this.reconnectAttempts<this.maxReconnectAttempts?this.attemptReconnect():(this.setState("failed"),this.emitError(new Error("\uC7AC\uC5F0\uACB0 \uC2E4\uD328: \uCD5C\uB300 \uC2DC\uB3C4 \uD69F\uC218 \uCD08\uACFC")))}},e)}disconnect(){this.reconnectTimeout&&(clearTimeout(this.reconnectTimeout),this.reconnectTimeout=null),this.ws&&this.ws.readyState===WebSocket.OPEN&&(this.sendSignaling({type:"leave"}),this.ws.close(1e3,"User disconnected")),this.peerConnections.forEach(e=>e.close()),this.peerConnections.clear(),this.remoteStreams.clear(),this.ws=null,this.currentRoomId=null,this.currentPeerId=null,this.localStream=null,this.setState("disconnected")}getState(){return this.state}getRoomId(){return this.currentRoomId}getPeerId(){return this.currentPeerId}getChannelType(){return this.channelType}getRemoteStream(e){return this.remoteStreams.get(e)}getAllRemoteStreams(){return new Map(this.remoteStreams)}replaceLocalStream(e){this.localStream=e,this.peerConnections.forEach(t=>{let s=t.getSenders();e.getTracks().forEach(r=>{let i=s.find(n=>n.track?.kind===r.kind);i?i.replaceTrack(r):t.addTrack(r,e)})})}setAudioEnabled(e){this.localStream&&this.localStream.getAudioTracks().forEach(t=>{t.enabled=e})}setVideoEnabled(e){this.localStream&&this.localStream.getVideoTracks().forEach(t=>{t.enabled=e})}onStateChange(e){return this.stateListeners.push(e),()=>{this.stateListeners=this.stateListeners.filter(t=>t!==e)}}onError(e){return this.errorListeners.push(e),()=>{this.errorListeners=this.errorListeners.filter(t=>t!==e)}}onPeerJoined(e){return this.peerJoinedListeners.push(e),()=>{this.peerJoinedListeners=this.peerJoinedListeners.filter(t=>t!==e)}}onPeerLeft(e){return this.peerLeftListeners.push(e),()=>{this.peerLeftListeners=this.peerLeftListeners.filter(t=>t!==e)}}onRemoteStream(e){return this.remoteStreamListeners.push(e),()=>{this.remoteStreamListeners=this.remoteStreamListeners.filter(t=>t!==e)}}setState(e){this.state!==e&&(this.state=e,this.stateListeners.forEach(t=>t(e)))}emitError(e){this.errorListeners.forEach(t=>t(e))}emitPeerJoined(e,t){this.peerJoinedListeners.forEach(s=>s(e,t))}emitPeerLeft(e){this.peerLeftListeners.forEach(t=>t(e))}emitRemoteStream(e,t){this.remoteStreamListeners.forEach(s=>s(e,t))}async validate(){if(!this.appId)throw new Error("WebRTC \uAC80\uC99D\uC5D0\uB294 appId\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. ConnectBase \uCD08\uAE30\uD654 \uC2DC appId\uB97C \uC124\uC815\uD558\uC138\uC694.");return this.http.get(`/v1/apps/${this.appId}/validate`)}async getStats(e){return this.http.get(`/v1/apps/${e}/stats`)}async getRooms(e){return this.http.get(`/v1/apps/${e}/rooms`)}};var ue=class{constructor(e=20){this.buf=[];this.capacity=Math.min(Math.max(1,e),50)}push(e){this.buf.length>=this.capacity&&this.buf.shift(),this.buf.push(e)}snapshot(){return this.buf.slice()}clear(){this.buf=[]}};function De(a){try{return(a.startsWith("http")?new URL(a):new URL(a,"http://x")).pathname||a}catch{let e=a.indexOf("?");return e>=0?a.slice(0,e):a}}var it=new Set(["/v1/public/app-members/signup","/v1/public/app-members/signin","/v1/public/app-members/signout"]);function Re(a){return typeof a=="object"&&a!==null&&"name"in a&&a.name==="AbortError"}function pe(a){let e=a.split("?")[0];return it.has(e)?"include":e.startsWith("/v1/public/")||e.startsWith("/v1/proxy/")?"omit":"include"}var qe="cb_auth_tokens";function nt(a){switch(a){case 502:return"bad_gateway";case 503:return"service_unavailable";case 504:return"gateway_timeout";default:return}}function ot(a){switch(a){case 502:return"\uAC8C\uC774\uD2B8\uC6E8\uC774\uAC00 \uC11C\uBC84\uB85C\uBD80\uD130 \uC62C\uBC14\uB978 \uC751\uB2F5\uC744 \uBC1B\uC9C0 \uBABB\uD588\uC2B5\uB2C8\uB2E4 (502)";case 503:return"\uC11C\uBC84\uAC00 \uC77C\uC2DC\uC801\uC73C\uB85C \uC694\uCCAD\uC744 \uCC98\uB9AC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 (503)";case 504:return"\uAC8C\uC774\uD2B8\uC6E8\uC774\uAC00 \uC751\uB2F5\uC744 \uAE30\uB2E4\uB9AC\uB2E4 \uC5F0\uACB0\uC744 \uB04A\uC5C8\uC2B5\uB2C8\uB2E4 (504). \uC624\uB798 \uAC78\uB9AC\uB294 \uC791\uC5C5\uC774\uBA74 \uC694\uCCAD \uD0C0\uC784\uC544\uC6C3\uC744 \uB298\uB9AC\uAC70\uB098 \uC2A4\uD2B8\uB9AC\uBC0D\uC744 \uC0AC\uC6A9\uD558\uC138\uC694";default:return}}function Se(a){try{let e=a.split(".")[1];if(!e)return null;let t=e.replace(/-/g,"+").replace(/_/g,"/"),s=t+"=".repeat((4-t.length%4)%4),r=JSON.parse(atob(s));return r&&typeof r=="object"?r:null}catch{return null}}function Be(a){let e=Se(a)?.role;return e==="User"||e==="AdminInvite"}var he=class{constructor(e){this.isRefreshing=!1;this.refreshPromise=null;this.refreshFailureCount=0;this.refreshLockedUntil=0;this.recentCalls=new ue;this.bootRestorePromise=null;this.bootRestoreAlwaysAwait=!1;this.directBaseUrl=null;this.directDisabled=!1;this.config={...e},this.storageKey=this.buildStorageKey(),this.warnIfUnsafePersistence(),this.restoreTokens()}get requestTimeoutMs(){return this.config.requestTimeoutMs}setBootRestorePromise(e,t){this.bootRestorePromise=e.catch(()=>!1),this.bootRestoreAlwaysAwait=t?.alwaysAwait===!0}getRecentCalls(){return this.recentCalls.snapshot()}clearRecentCalls(){this.recentCalls.clear()}warnIfUnsafePersistence(){typeof window>"u"||(this.config.persistence==="localStorage"?console.warn(`[connect-base-client] persistence="localStorage" \uB294 XSS \uC2DC refresh token \uC601\uAD6C \uD0C8\uCDE8 \uC704\uD5D8\uC774 \uC788\uC2B5\uB2C8\uB2E4. \uAE30\uBCF8\uAC12('none') \uC744 \uC0AC\uC6A9\uD558\uBA74 \uC11C\uBC84\uAC00 \uBC1C\uAE09\uD55C HttpOnly cookie \uB85C\uB9CC refresh token \uC774 \uBCF4\uAD00\uB418\uC5B4 JS \uAC00 \uC811\uADFC\uD560 \uC218 \uC5C6\uACE0, \uC0C8\uB85C\uACE0\uCE68 \uD6C4\uC5D0\uB3C4 autoRestoreSession \uC73C\uB85C \uC790\uB3D9 \uBCF5\uAD6C\uB429\uB2C8\uB2E4.`):this.config.persistence==="sessionStorage"&&console.warn(`[connect-base-client] persistence="sessionStorage" \uB294 XSS \uC2DC \uD0ED \uC138\uC158 \uD0C8\uCDE8 \uC704\uD5D8\uC774 \uC788\uC2B5\uB2C8\uB2E4. \uAE30\uBCF8\uAC12('none') + HttpOnly cookie \uD750\uB984\uC744 \uAD8C\uC7A5\uD569\uB2C8\uB2E4.`))}updateConfig(e){this.config={...this.config,...e}}setTokens(e,t){this.config.accessToken=e,this.config.refreshToken=t,this.persistTokens(),this.markSessionHint()}clearTokens(){this.config.accessToken=void 0,this.config.refreshToken=void 0,this.removePersistedTokens(),this.clearSessionHint()}buildSessionHintKey(){return`${this.buildStorageKey()}:has_session`}markSessionHint(){if(!(typeof window>"u"))try{localStorage.setItem(this.buildSessionHintKey(),"1")}catch{}}clearSessionHint(){if(!(typeof window>"u"))try{localStorage.removeItem(this.buildSessionHintKey())}catch{}}hasSessionHint(){if(typeof window>"u")return!1;try{return localStorage.getItem(this.buildSessionHintKey())==="1"}catch{return!0}}async bootstrapRefreshCookie(){if(!(typeof window>"u")&&this.persistence==="none"&&this.config.refreshToken)try{await this.refreshAccessToken({silent:!0})}catch{}}get persistence(){return this.config.persistence??"none"}getStorage(){return typeof window>"u"?null:this.persistence==="localStorage"&&typeof localStorage<"u"?localStorage:this.persistence==="sessionStorage"&&typeof sessionStorage<"u"?sessionStorage:null}getPersistenceStorage(){return this.getStorage()}buildStorageKey(){let e=this.config.publicKey??this.config.secretKey;if(!e)return qe;let t=0;for(let s=0;s<e.length;s++)t=(t<<5)-t+e.charCodeAt(s),t=t&t;return`${qe}_${Math.abs(t).toString(36)}`}persistTokens(){if(this.persistence==="none")return;let e=this.getStorage();!e||!this.config.accessToken||!this.config.refreshToken||e.setItem(this.storageKey,JSON.stringify({accessToken:this.config.accessToken,refreshToken:this.config.refreshToken}))}restoreTokens(){if(this.persistence==="none"||this.config.accessToken&&this.config.refreshToken)return;let e=this.getStorage();if(!e)return;let t=e.getItem(this.storageKey);if(t)try{let{accessToken:s,refreshToken:r}=JSON.parse(t);s&&r&&(this.config.accessToken=s,this.config.refreshToken=r)}catch{e.removeItem(this.storageKey)}}removePersistedTokens(){if(this.persistence==="none")return;let e=this.getStorage();e&&e.removeItem(this.storageKey)}hasPublicKey(){return!!this.config.publicKey}getPublicKey(){return this.config.publicKey}hasSecretKey(){return!!this.config.secretKey}getSecretKey(){return this.config.secretKey}getCredential(){return this.config.publicKey??this.config.secretKey}getAccessToken(){return this.config.accessToken}hasJWT(){return!!this.config.accessToken}getBaseUrl(){return this.config.baseUrl}getAppId(){return this.config.appId}async refreshAccessToken(e){let t=e?.silent??!1;if(this.isRefreshing)return this.refreshPromise;if(Date.now()<this.refreshLockedUntil){let r=new T("Token refresh locked due to repeated failures. Please login again.");throw this.emitError(r),this.config.onAuthError?.(r),r}if(this.isRefreshing=!0,!this.config.refreshToken&&typeof window>"u"){this.isRefreshing=!1,this.config.onTokenExpired?.();let r=new T("Refresh token is missing. Please login again.");throw this.emitError(r),this.config.onAuthError?.(r),r}return this.refreshPromise=(async()=>{let{signal:r,cleanup:i}=E({timeout:this.config.requestTimeoutMs??3e4}),n="transient";try{let o={"Content-Type":"application/json"};this.config.refreshToken&&(o.Authorization=`Bearer ${this.config.refreshToken}`);let c=this.getCredential();c&&(o["X-Public-Key"]=c);let l=await fetch(`${this.config.baseUrl}/v1/auth/re-issue`,{method:"POST",headers:o,credentials:"include",signal:r});if(!l.ok){let p=l.status,h;try{let m=await l.clone().json();m&&typeof m.error=="string"?h=m.error:m&&typeof m.code=="string"&&(h=m.code)}catch{}throw p>=500?new Error(`Token refresh failed (${p})`):(p===401||p===403||p===400&&(h==="invalid_grant"||h==="invalid_token")?n="permanent":n="client_bug",new Error(`Token refresh failed (${p}${h?` ${h}`:""})`))}let d=await l.json();if(!d||typeof d.access_token!="string")throw new Error("Token refresh response missing access_token");if(Be(d.access_token))return this.refreshFailureCount=0,this.refreshLockedUntil=0,null;if(this.config.appId){let p=Se(d.access_token)?.app_id;if(typeof p=="string"&&p!==this.config.appId)return this.clearTokens(),this.refreshFailureCount=0,this.refreshLockedUntil=0,null}let u=typeof d.refresh_token=="string"&&d.refresh_token.length>0?d.refresh_token:this.config.refreshToken??"";return u?this.setTokens(d.access_token,u):(this.config.accessToken=d.access_token,this.persistTokens()),this.config.onTokenRefresh?.({accessToken:d.access_token,refreshToken:u}),this.refreshFailureCount=0,this.refreshLockedUntil=0,d.access_token}catch(o){let c=o instanceof Error?o.message:"Token refresh failed";this.refreshFailureCount++;let l=Math.min(500*2**Math.max(0,this.refreshFailureCount-1),3e4);if(this.refreshLockedUntil=Date.now()+l,n==="permanent"){t||(this.clearTokens(),this.config.onTokenExpired?.());let u=new T(`${c}. Please login again.`);throw t||(this.emitError(u),this.config.onAuthError?.(u)),u}if(n==="client_bug"){let u=new T(`${c}. Client request invalid; tokens preserved.`);throw t||(this.emitError(u),this.config.onAuthError?.(u)),u}let d=new T(`${c}. Transient failure; tokens preserved, will retry after backoff.`);throw t||(this.emitError(d),this.config.onTransientRefreshFailure?.(d),this.config.onAuthError?.(d)),d}finally{i(),this.isRefreshing=!1,this.refreshPromise=null}})(),this.refreshPromise}async tryRestoreSessionFromCookie(){if(typeof window>"u")return!1;if(this.config.accessToken&&!this.isTokenExpired(this.config.accessToken))return!0;try{return!!await this.refreshAccessToken()}catch{return!1}}emitError(e){try{this.config.onError?.(e)}catch{}}isTokenExpired(e){let t=Se(e);if(!t||typeof t.exp!="number")return!0;let s=Date.now()/1e3;return t.exp<s+300}async prepareHeaders(e){let t=new Headers;t.set("Content-Type","application/json");let s=this.getCredential();if(s&&t.set("X-Public-Key",s),!e?.skipAuth&&!this.config.accessToken&&this.config.publicKey&&typeof window<"u"&&this.bootRestorePromise&&(this.bootRestoreAlwaysAwait||this.hasSessionHint()))try{await this.bootRestorePromise}catch{}if(!e?.skipAuth&&this.config.accessToken){let r=this.config.accessToken;if(this.isTokenExpired(r)&&this.config.refreshToken){let i=await this.refreshAccessToken();i&&(r=i)}Be(r)||t.set("Authorization",`Bearer ${r}`)}else!e?.skipAuth&&this.config.publicKey&&this.config.secretKey&&!t.has("Authorization")&&t.set("Authorization",`Bearer ${this.config.secretKey}`);return e?.headers&&Object.entries(e.headers).forEach(([r,i])=>{t.set(r,i)}),t}async buildApiError(e){let t={},s=!0;try{t=await e.json()}catch{s=!1}let r=e.status===429?e.headers.get("Retry-After"):null,i;if(r){let m=Number.parseInt(r,10);if(Number.isFinite(m)&&m>=0)i=m;else{let b=Date.parse(r);Number.isFinite(b)&&(i=Math.max(0,Math.round((b-Date.now())/1e3)))}}let n=t.error;if(n&&typeof n=="object"&&"message"in n){let m=n,b={...m.details&&typeof m.details=="object"?m.details:{}};return i!==void 0&&(b.retry_after_seconds=i),new f(e.status,typeof m.message=="string"&&m.message!==""?m.message:"Unknown error",typeof m.code=="string"?m.code:void 0,Object.keys(b).length>0?b:void 0)}let o=typeof t.message=="string"&&t.message!==""?t.message:void 0,c=typeof t.code=="string"&&t.code!==""?t.code:void 0,l=typeof n=="string"&&/^[a-z][a-z0-9_]*$/.test(n),d=o??(typeof n=="string"&&n!==""?n:void 0)??(s?void 0:ot(e.status))??(e.statusText!==""?e.statusText:"Unknown error"),u=c??(l?n:void 0)??nt(e.status),p={};return i!==void 0&&(p.retry_after_seconds=i),typeof t.provider=="string"&&(p.provider=t.provider),typeof t.model=="string"&&(p.model=t.model),new f(e.status,d,u,Object.keys(p).length>0?p:void 0)}async handleResponse(e){if(!e.ok){let t=await this.buildApiError(e);throw this.emitError(t),t}return e.status===204||e.headers.get("content-length")==="0"?{}:e.json()}async doFetch(e,t,s){let r=Date.now(),i=0;try{let n=await this.tryFetchOnce(e,t,s);if(i=n.status,!n.ok&&n.status===401&&!s?.skipAuth&&this.config.publicKey&&typeof window<"u"&&await this.tryRestoreSessionFromCookie()){let c=await this.prepareHeaders(s);t.body instanceof FormData&&c.delete("Content-Type");let l=await this.tryFetchOnce(e,{...t,headers:c},s);return i=l.status,await this.handleResponse(l.response)}return await this.handleResponse(n.response)}finally{this.recentCalls.push({method:(t.method||"GET").toUpperCase(),path:De(e),status:i,duration_ms:Date.now()-r,timestamp:new Date().toISOString()})}}resolveOrigin(e){return this.directBaseUrl&&!this.directDisabled&&pe(e)==="omit"?this.directBaseUrl:this.config.baseUrl}learnDirectOrigin(e){if(this.directDisabled||this.directBaseUrl)return;let t=e.headers?.get("X-CB-Direct-Base");if(t)try{let s=new URL(t),r=new URL(this.config.baseUrl);if(s.protocol!=="https:")return;let i=n=>n.split(".").slice(-2).join(".");if(i(s.hostname)!==i(r.hostname))return;this.directBaseUrl=s.origin}catch{}}async fetchPassthrough(e,t){let s=this.resolveOrigin(e);try{let r=await fetch(`${s}${e}`,t);return this.learnDirectOrigin(r),r}catch(r){if(s!==this.config.baseUrl&&!Re(r))return this.directDisabled=!0,fetch(`${this.config.baseUrl}${e}`,t);throw r}}async tryFetchOnce(e,t,s){let{signal:r,cleanup:i}=E({timeout:s?.timeout??this.config.requestTimeoutMs??3e4,signal:s?.signal}),n=this.resolveOrigin(e);try{let o=await fetch(`${n}${e}`,{...t,credentials:pe(e),signal:r});return this.learnDirectOrigin(o),{response:o,ok:o.ok,status:o.status}}catch(o){if(n!==this.config.baseUrl&&!Re(o)){this.directDisabled=!0;let c=await fetch(`${this.config.baseUrl}${e}`,{...t,credentials:pe(e),signal:r});return{response:c,ok:c.ok,status:c.status}}throw o}finally{i()}}async get(e,t){let s=await this.prepareHeaders(t);return this.doFetch(e,{method:"GET",headers:s},t)}async post(e,t,s){let r=await this.prepareHeaders(s);return t instanceof FormData&&r.delete("Content-Type"),this.doFetch(e,{method:"POST",headers:r,body:t instanceof FormData?t:JSON.stringify(t)},s)}async put(e,t,s){let r=await this.prepareHeaders(s);return t instanceof FormData&&r.delete("Content-Type"),this.doFetch(e,{method:"PUT",headers:r,body:t instanceof FormData?t:JSON.stringify(t)},s)}async patch(e,t,s){let r=await this.prepareHeaders(s);return this.doFetch(e,{method:"PATCH",headers:r,body:JSON.stringify(t)},s)}async delete(e,t){let s=await this.prepareHeaders(t);return this.doFetch(e,{method:"DELETE",headers:s},t)}async fetchRaw(e,t){let s=await this.prepareHeaders(),r=new Headers(s);t?.headers&&new Headers(t.headers).forEach((o,c)=>r.set(c,o));let i=this.resolveOrigin(e);try{let n=await fetch(`${i}${e}`,{...t,credentials:pe(e),headers:r});return this.learnDirectOrigin(n),n}catch(n){throw i!==this.config.baseUrl&&!Re(n)&&(this.directDisabled=!0),n}}};function He(a){if(!a)throw new Error("cb.game: clientId is required to build a game connection URL. Pass it via `cb.game.createClient({ appId, clientId })`.");return a}var Ie=class{constructor(e,t,s,r){this.type="webtransport";this.transport=null;this.writer=null;this.config=e,this.onMessage=t,this.onClose=s,this.onError=r}async connect(){let e=this.buildUrl();this.transport=new WebTransport(e),await this.transport.ready,this.config.useUnreliableDatagrams!==!1&&this.readDatagrams();let t=await this.transport.createBidirectionalStream();this.writer=t.writable.getWriter(),this.readStream(t.readable),this.transport.closed.then(()=>{this.onClose()}).catch(s=>{this.onError(s)})}buildUrl(){let t=(this.config.gameServerUrl||"https://game.connectbase.world").replace(/^ws/,"http").replace(/^http:/,"https:"),s=new URLSearchParams;return s.set("client_id",He(this.config.clientId)),this.config.publicKey&&s.set("public_key",this.config.publicKey),this.config.accessToken&&s.set("token",this.config.accessToken),`${t}/v1/game/webtransport?${s.toString()}`}async readDatagrams(){if(!this.transport)return;let e=this.transport.datagrams.readable.getReader();try{for(;;){let{value:t,done:s}=await e.read();if(s)break;this.onMessage(t)}}catch{}}async readStream(e){let t=e.getReader(),s=new Uint8Array(0);try{for(;;){let{value:r,done:i}=await t.read();if(i)break;let n=new Uint8Array(s.length+r.length);for(n.set(s),n.set(r,s.length),s=n;s.length>=4;){let o=new DataView(s.buffer).getUint32(0,!0);if(s.length<4+o)break;let c=s.slice(4,4+o);s=s.slice(4+o),this.onMessage(c)}}}catch{}}disconnect(){this.transport&&(this.transport.close(),this.transport=null,this.writer=null)}send(e,t=!0){if(!this.transport)throw new v({code:"NOT_CONNECTED",message:"Not connected"});let s=typeof e=="string"?new TextEncoder().encode(e):e;if(t){if(this.writer){let r=new Uint8Array(4);new DataView(r.buffer).setUint32(0,s.length,!0);let i=new Uint8Array(4+s.length);i.set(r),i.set(s,4),this.writer.write(i)}}else{let r=this.config.maxDatagramSize||1200;s.length<=r?this.transport.datagrams.writable.getWriter().write(s):(console.warn("Datagram too large, falling back to reliable stream"),this.send(e,!0))}}isConnected(){return this.transport!==null}},ge=class{constructor(e,t,s,r){this.type="websocket";this.ws=null;this.config=e,this.onMessage=t,this.onClose=s,this.onError=r}connect(){return new Promise((e,t)=>{let s=this.buildUrl();try{this.ws=new WebSocket(s),this.ws.binaryType="arraybuffer"}catch(c){t(c);return}let r=()=>{e()},i=()=>{this.onClose()},n=c=>{let l=new Error("WebSocket error");this.onError(l),t(l)},o=c=>{c.data instanceof ArrayBuffer?this.onMessage(new Uint8Array(c.data)):typeof c.data=="string"&&this.onMessage(new TextEncoder().encode(c.data))};this.ws.addEventListener("open",r,{once:!0}),this.ws.addEventListener("close",i),this.ws.addEventListener("error",n,{once:!0}),this.ws.addEventListener("message",o)})}buildUrl(){let t=(this.config.gameServerUrl||"wss://game.connectbase.world").replace(/^http/,"ws"),s=new URLSearchParams;if(s.set("client_id",He(this.config.clientId)),this.config.publicKey&&s.set("public_key",this.config.publicKey),this.config.accessToken&&s.set("token",this.config.accessToken),!this.config.appId)throw new Error("cb.game: appId is required to build a game connection URL. Pass it to `new ConnectBase({ appId })` or per-client via `cb.game.createClient({ appId, clientId })`.");return`${t}/v1/game/${this.config.appId}/ws?${s.toString()}`}disconnect(){this.ws&&(this.ws.close(1e3,"Client disconnected"),this.ws=null)}send(e,t){if(!this.ws||this.ws.readyState!==WebSocket.OPEN)throw new v({code:"NOT_CONNECTED",message:"Not connected"});typeof e=="string"?this.ws.send(e):this.ws.send(e)}isConnected(){return this.ws!==null&&this.ws.readyState===WebSocket.OPEN}};function ke(){return typeof WebTransport<"u"}var me=class{constructor(e){this.transport=null;this.handlers={};this.reconnectAttempts=0;this.reconnectTimer=null;this.pingInterval=null;this.actionSequence=0;this._roomId=null;this._state=null;this._scriptName=null;this._scriptVersion=null;this._isConnected=!1;this._connectionStatus="disconnected";this._lastError=null;this._latency=0;this._transportType="websocket";this.decoder=new TextDecoder;this.pendingHandlers=new Map;this.messageId=0;this.config={gameServerUrl:this.getDefaultGameServerUrl(),autoReconnect:!0,maxReconnectAttempts:5,reconnectInterval:1e3,connectionTimeout:1e4,transport:"auto",useUnreliableDatagrams:!0,...e}}getDefaultGameServerUrl(){if(typeof window<"u"){let e=window.location.hostname;if(e==="localhost"||e==="127.0.0.1")return"ws://localhost:8087"}return"wss://game.connectbase.world"}get transportType(){return this._transportType}get roomId(){return this._roomId}get state(){return this._state}get isConnected(){return this._isConnected}get scriptName(){return this._scriptName}get scriptVersion(){return this._scriptVersion}get connectionState(){return{status:this._connectionStatus,transport:this._transportType==="auto"?null:this._transportType,roomId:this._roomId,latency:this._latency,reconnectAttempt:this.reconnectAttempts,lastError:this._lastError||void 0}}get latency(){return this._latency}on(e,t){return this.handlers[e]=t,this}async connect(e){if(this.transport?.isConnected())return;this._connectionStatus=this.reconnectAttempts>0?"reconnecting":"connecting";let t=this.config.transport||"auto",s=(t==="webtransport"||t==="auto")&&ke(),r=o=>{this.handleMessage(this.decoder.decode(o))},i=()=>{this._isConnected=!1,this._connectionStatus="disconnected",this.stopPingInterval(),this.handlers.onDisconnect?.(new CloseEvent("close")),this.config.autoReconnect&&(this._connectionStatus="reconnecting",this.scheduleReconnect(e))},n=o=>{this._connectionStatus="error",this._lastError=o,this.handlers.onError?.(new v({code:"CONNECTION_ERROR",message:o.message}))};if(s)try{this.transport=new Ie(this.config,r,i,n),await this.transport.connect(),this._transportType="webtransport"}catch{console.log("WebTransport failed, falling back to WebSocket"),this.transport=new ge(this.config,r,i,n),await this.transport.connect(),this._transportType="websocket"}else this.transport=new ge(this.config,r,i,n),await this.transport.connect(),this._transportType="websocket";this._isConnected=!0,this._connectionStatus="connected",this._lastError=null,this.reconnectAttempts=0,this.startPingInterval(),this.handlers.onConnect?.(),e&&await this.joinRoom(e)}disconnect(){this.stopPingInterval(),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=null),this.transport&&(this.transport.disconnect(),this.transport=null),this._isConnected=!1,this._connectionStatus="disconnected",this._roomId=null,this._state=null}async createRoom(e={}){return(await this.createRoomDetailed(e)).state}async createRoomDetailed(e={}){return new Promise((t,s)=>{let r=i=>{if(i.type==="room_created"){let n=i.data;this._roomId=n.room_id,this._state=n.initial_state,this._scriptName=n.script_name??null,this._scriptVersion=n.script_version??null,t({roomId:n.room_id,state:n.initial_state,scriptName:n.script_name,scriptVersion:n.script_version})}else i.type==="error"&&s(R(i))};this.sendWithHandler("create_room",K(e),r)})}async joinRoom(e,t){return new Promise((s,r)=>{let i=n=>{if(n.type==="room_joined"){let o=n.data;this._roomId=o.room_id,this._state=o.initial_state,this._scriptName=null,this._scriptVersion=null,s(o.initial_state)}else n.type==="error"&&r(R(n))};this.sendWithHandler("join_room",{room_id:e,metadata:t},i)})}async leaveRoom(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>{r.type==="room_left"?(this._roomId=null,this._state=null,this._scriptName=null,this._scriptVersion=null,e()):r.type==="error"&&t(R(r))};this.sendWithHandler("leave_room",{},s)})}sendAction(e,t=!1){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});let s=JSON.stringify({type:"action",data:{type:e.type,data:e.data,client_timestamp:e.clientTimestamp??Date.now(),sequence:this.actionSequence++}}),r=t||this._transportType!=="webtransport";this.transport?.send(s,r)}sendChat(e){if(!this._roomId)throw new v({code:"NOT_IN_ROOM",message:"Not in a room"});this.send("chat",{message:e})}async requestState(){return new Promise((e,t)=>{if(!this._roomId){t(new v({code:"NOT_IN_ROOM",message:"Not in a room"}));return}let s=r=>{if(r.type==="state"){let i=r.data;this._state=i,e(i)}else r.type==="error"&&t(R(r))};this.sendWithHandler("get_state",{},s)})}async ping(){return new Promise((e,t)=>{let s=Date.now(),r=i=>{if(i.type==="pong"){let n=i.data,o=Date.now()-n.clientTimestamp;this._latency=o,this.handlers.onPong?.(n),e(o)}else i.type==="error"&&t(R(i))};this.sendWithHandler("ping",{timestamp:s},r)})}send(e,t,s){if(!this.transport?.isConnected())throw new v({code:"NOT_CONNECTED",message:"Not connected"});let r=JSON.stringify({type:e,data:t,msg_id:s});this.transport.send(r,!0)}sendWithHandler(e,t,s){let r=`msg_${this.messageId++}`;this.pendingHandlers.set(r,s),setTimeout(()=>{this.pendingHandlers.delete(r)},1e4),this.send(e,t,r)}handleMessage(e){try{let t=JSON.parse(e);if(t.msg_id&&this.pendingHandlers.has(t.msg_id)){let s=this.pendingHandlers.get(t.msg_id);this.pendingHandlers.delete(t.msg_id),s(t);return}switch(t.type){case"delta":this.handleDelta(t);break;case"state":this._state=t.data,this.handlers.onStateUpdate?.(this._state);break;case"player_event":this.handlePlayerEvent(t);break;case"chat":this.handlers.onChat?.({roomId:t.room_id||"",clientId:t.client_id||"",userId:t.user_id,message:t.message||"",serverTime:t.server_time||0});break;case"error":this.handlers.onError?.(R(t));break;case"room_stale":this.handlers.onRoomStale?this.handlers.onRoomStale({reason:t.reason||"unknown",roomId:t.room_id||"",scriptId:t.script_id,scriptVersion:t.script_version,serverTime:t.server_time||0}):console.warn("[connect-base game] room_stale received but onRoomStale handler not set:",{reason:t.reason,roomId:t.room_id,scriptVersion:t.script_version});break}}catch{console.error("Failed to parse game message:",e)}}handleDelta(e){let t=e.delta;if(!t)return;let s={fromVersion:t.from_version,toVersion:t.to_version,changes:t.changes.map(r=>({path:r.path,operation:r.operation,value:r.value,oldValue:r.old_value})),tick:t.tick};if(this._state){for(let r of s.changes)this.applyChange(r);this._state.version=s.toVersion}if(this.handlers.onAction){for(let r of s.changes)if(r.path.startsWith("actions.")&&r.operation==="set"&&r.value){let i=r.value;this.handlers.onAction({type:i.type||"",clientId:i.client_id||"",data:i.data,timestamp:i.timestamp||0})}}this.handlers.onDelta?.(s)}applyChange(e){if(!this._state)return;let t=e.path.split("."),s=this._state.state;for(let i=0;i<t.length-1;i++){let n=t[i];n in s||(s[n]={}),s=s[n]}let r=t[t.length-1];e.operation==="delete"?delete s[r]:s[r]=e.value}handlePlayerEvent(e){let t={clientId:e.player?.client_id||"",userId:e.player?.user_id,joinedAt:e.player?.joined_at||0,metadata:e.player?.metadata};e.event==="joined"?this.handlers.onPlayerJoined?.(t):e.event==="left"&&this.handlers.onPlayerLeft?.(t)}scheduleReconnect(e){if(this.reconnectAttempts>=(this.config.maxReconnectAttempts??5)){console.error("Max reconnect attempts reached");return}let t=Math.min((this.config.reconnectInterval??1e3)*2**this.reconnectAttempts,3e4);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>{console.log(`Reconnecting... (attempt ${this.reconnectAttempts})`),this.connect(e||this._roomId||void 0).catch(()=>{})},t)}startPingInterval(){this.pingInterval=setInterval(()=>{this.ping().catch(()=>{})},3e4)}stopPingInterval(){this.pingInterval&&(clearInterval(this.pingInterval),this.pingInterval=null)}};var at="$auth.member_id";var ct="https://api.connectbase.world",lt="https://socket.connectbase.world",dt="https://webrtc.connectbase.world",ut="https://video.connectbase.world",pt="https://game.connectbase.world",fe=class{constructor(e={}){let t=i=>{if(!(typeof process>"u"||!process.env))return process.env[i]},s={baseUrl:e.baseUrl||t("CB_BASE_URL")||ct,publicKey:e.publicKey,secretKey:e.secretKey,appId:e.appId,persistence:e.persistence,autoRestoreSession:e.autoRestoreSession,requestTimeoutMs:e.requestTimeoutMs,onError:e.onError,onTokenRefresh:e.onTokenRefresh,onAuthError:e.onAuthError,onTokenExpired:e.onTokenExpired,onTransientRefreshFailure:e.onTransientRefreshFailure};this.http=new he(s),this.auth=new j(this.http),this.database=new J(this.http),this.storage=new oe(this.http),this.publicKey=new se(this.http),this.functions=new X(this.http),this.realtime=new ne(this.http,e.socketUrl||t("CB_SOCKET_URL")||lt),this.webrtc=new de(this.http,e.webrtcUrl||t("CB_WEBRTC_URL")||dt,e.appId),this.errorTracker=new Q(this.http,e.errorTracker),this.oauth=new ee(this.http),this.payment=new te(this.http),this.subscription=new ae(this.http),this.push=new re(this.http),this.roles=new q(this.http),this.appMembers=new M(this.http),this.video=new le(this.http,e.videoUrl||t("CB_VIDEO_URL")||ut),this.game=new O(this.http,e.gameUrl||t("CB_GAME_URL")||pt,e.appId),this.ads=new A(this.http),this.native=new D,this.knowledge=new Y(this.http),this.ai=new $(this.http),this.queue=new ie(this.http),this.analytics=new z(this.http),this.endpoint=new U(this.http),this.support=new ce(this.http),this.auth._attachAnalytics(this.analytics),(e.autoRestoreSession??!0)&&typeof window<"u"&&(this.isOAuthRedirectCallbackUrl()?this.http.setBootRestorePromise(this.oauth.consumeRedirectCallbackOnBoot(),{alwaysAwait:!0}):this.isOAuthCallbackUrl()||this.http.setBootRestorePromise(this.http.tryRestoreSessionFromCookie()))}isOAuthCallbackUrl(){if(typeof window>"u"||!window.location)return!1;let e=new URLSearchParams(window.location.search);return!!(e.has("access_token")&&e.has("refresh_token")||e.has("code")&&e.has("state")||e.has("error")&&e.has("state"))}isOAuthRedirectCallbackUrl(){if(typeof window>"u"||!window.location||window.opener)return!1;let e=new URLSearchParams(window.location.search);return e.has("access_token")&&e.has("refresh_token")}async restoreSession(){return this.http.tryRestoreSessionFromCookie()}setTokens(e,t){this.http.setTokens(e,t)}clearTokens(){this.http.clearTokens()}updateConfig(e){this.http.updateConfig(e)}},ht=fe;return We(gt);})();
6
6
  var ConnectBase = ConnectBaseModule.default || ConnectBaseModule.ConnectBase;
package/dist/index.js CHANGED
@@ -7305,6 +7305,7 @@ var RealtimeAPI = class {
7305
7305
  * (degraded) AI stream() 이 SSE 로 동작하게 한다. 백그라운드 WS 재연결 머신은 정지한다.
7306
7306
  */
7307
7307
  activateSseFallback(cause) {
7308
+ if (this.sseFallbackActive) return;
7308
7309
  if (this.ws) {
7309
7310
  try {
7310
7311
  this.ws.close();
@@ -7312,14 +7313,20 @@ var RealtimeAPI = class {
7312
7313
  }
7313
7314
  this.ws = null;
7314
7315
  }
7316
+ const causeMsg = cause instanceof Error ? cause.message : String(cause);
7315
7317
  this.sseFallbackActive = true;
7316
7318
  this.activeTransport = "sse";
7317
7319
  this.state = "connected";
7318
7320
  this.retryCount = 0;
7319
7321
  this.log(
7320
- `WS unavailable (${cause instanceof Error ? cause.message : String(cause)}); using SSE fallback transport for AI streaming`
7322
+ `WS unavailable (${causeMsg}); using SSE fallback transport for AI streaming`
7321
7323
  );
7322
7324
  this.notifyStateChange();
7325
+ this.notifyError(
7326
+ new Error(
7327
+ `Realtime WebSocket unavailable, downgraded to SSE fallback transport (cb.realtime.transport === 'sse'). Only realtime.stream() works in this mode \u2014 subscribe/send/setPresence/typing calls will throw. Cause: ${causeMsg}`
7328
+ )
7329
+ );
7323
7330
  }
7324
7331
  /**
7325
7332
  * 연결 해제
@@ -11658,7 +11665,7 @@ var HttpClient = class {
11658
11665
  if (this.persistence !== "none") return;
11659
11666
  if (!this.config.refreshToken) return;
11660
11667
  try {
11661
- await this.refreshAccessToken();
11668
+ await this.refreshAccessToken({ silent: true });
11662
11669
  } catch {
11663
11670
  }
11664
11671
  }
@@ -11791,7 +11798,8 @@ var HttpClient = class {
11791
11798
  getAppId() {
11792
11799
  return this.config.appId;
11793
11800
  }
11794
- async refreshAccessToken() {
11801
+ async refreshAccessToken(options) {
11802
+ const silent = options?.silent ?? false;
11795
11803
  if (this.isRefreshing) {
11796
11804
  return this.refreshPromise;
11797
11805
  }
@@ -11905,27 +11913,35 @@ var HttpClient = class {
11905
11913
  );
11906
11914
  this.refreshLockedUntil = Date.now() + backoffMs;
11907
11915
  if (failureKind === "permanent") {
11908
- this.clearTokens();
11909
- this.config.onTokenExpired?.();
11916
+ if (!silent) {
11917
+ this.clearTokens();
11918
+ this.config.onTokenExpired?.();
11919
+ }
11910
11920
  const error2 = new AuthError(`${baseMsg}. Please login again.`);
11911
- this.emitError(error2);
11912
- this.config.onAuthError?.(error2);
11921
+ if (!silent) {
11922
+ this.emitError(error2);
11923
+ this.config.onAuthError?.(error2);
11924
+ }
11913
11925
  throw error2;
11914
11926
  }
11915
11927
  if (failureKind === "client_bug") {
11916
11928
  const error2 = new AuthError(
11917
11929
  `${baseMsg}. Client request invalid; tokens preserved.`
11918
11930
  );
11919
- this.emitError(error2);
11920
- this.config.onAuthError?.(error2);
11931
+ if (!silent) {
11932
+ this.emitError(error2);
11933
+ this.config.onAuthError?.(error2);
11934
+ }
11921
11935
  throw error2;
11922
11936
  }
11923
11937
  const error = new AuthError(
11924
11938
  `${baseMsg}. Transient failure; tokens preserved, will retry after backoff.`
11925
11939
  );
11926
- this.emitError(error);
11927
- this.config.onTransientRefreshFailure?.(error);
11928
- this.config.onAuthError?.(error);
11940
+ if (!silent) {
11941
+ this.emitError(error);
11942
+ this.config.onTransientRefreshFailure?.(error);
11943
+ this.config.onAuthError?.(error);
11944
+ }
11929
11945
  throw error;
11930
11946
  } finally {
11931
11947
  cleanup();
package/dist/index.mjs CHANGED
@@ -7256,6 +7256,7 @@ var RealtimeAPI = class {
7256
7256
  * (degraded) AI stream() 이 SSE 로 동작하게 한다. 백그라운드 WS 재연결 머신은 정지한다.
7257
7257
  */
7258
7258
  activateSseFallback(cause) {
7259
+ if (this.sseFallbackActive) return;
7259
7260
  if (this.ws) {
7260
7261
  try {
7261
7262
  this.ws.close();
@@ -7263,14 +7264,20 @@ var RealtimeAPI = class {
7263
7264
  }
7264
7265
  this.ws = null;
7265
7266
  }
7267
+ const causeMsg = cause instanceof Error ? cause.message : String(cause);
7266
7268
  this.sseFallbackActive = true;
7267
7269
  this.activeTransport = "sse";
7268
7270
  this.state = "connected";
7269
7271
  this.retryCount = 0;
7270
7272
  this.log(
7271
- `WS unavailable (${cause instanceof Error ? cause.message : String(cause)}); using SSE fallback transport for AI streaming`
7273
+ `WS unavailable (${causeMsg}); using SSE fallback transport for AI streaming`
7272
7274
  );
7273
7275
  this.notifyStateChange();
7276
+ this.notifyError(
7277
+ new Error(
7278
+ `Realtime WebSocket unavailable, downgraded to SSE fallback transport (cb.realtime.transport === 'sse'). Only realtime.stream() works in this mode \u2014 subscribe/send/setPresence/typing calls will throw. Cause: ${causeMsg}`
7279
+ )
7280
+ );
7274
7281
  }
7275
7282
  /**
7276
7283
  * 연결 해제
@@ -11609,7 +11616,7 @@ var HttpClient = class {
11609
11616
  if (this.persistence !== "none") return;
11610
11617
  if (!this.config.refreshToken) return;
11611
11618
  try {
11612
- await this.refreshAccessToken();
11619
+ await this.refreshAccessToken({ silent: true });
11613
11620
  } catch {
11614
11621
  }
11615
11622
  }
@@ -11742,7 +11749,8 @@ var HttpClient = class {
11742
11749
  getAppId() {
11743
11750
  return this.config.appId;
11744
11751
  }
11745
- async refreshAccessToken() {
11752
+ async refreshAccessToken(options) {
11753
+ const silent = options?.silent ?? false;
11746
11754
  if (this.isRefreshing) {
11747
11755
  return this.refreshPromise;
11748
11756
  }
@@ -11856,27 +11864,35 @@ var HttpClient = class {
11856
11864
  );
11857
11865
  this.refreshLockedUntil = Date.now() + backoffMs;
11858
11866
  if (failureKind === "permanent") {
11859
- this.clearTokens();
11860
- this.config.onTokenExpired?.();
11867
+ if (!silent) {
11868
+ this.clearTokens();
11869
+ this.config.onTokenExpired?.();
11870
+ }
11861
11871
  const error2 = new AuthError(`${baseMsg}. Please login again.`);
11862
- this.emitError(error2);
11863
- this.config.onAuthError?.(error2);
11872
+ if (!silent) {
11873
+ this.emitError(error2);
11874
+ this.config.onAuthError?.(error2);
11875
+ }
11864
11876
  throw error2;
11865
11877
  }
11866
11878
  if (failureKind === "client_bug") {
11867
11879
  const error2 = new AuthError(
11868
11880
  `${baseMsg}. Client request invalid; tokens preserved.`
11869
11881
  );
11870
- this.emitError(error2);
11871
- this.config.onAuthError?.(error2);
11882
+ if (!silent) {
11883
+ this.emitError(error2);
11884
+ this.config.onAuthError?.(error2);
11885
+ }
11872
11886
  throw error2;
11873
11887
  }
11874
11888
  const error = new AuthError(
11875
11889
  `${baseMsg}. Transient failure; tokens preserved, will retry after backoff.`
11876
11890
  );
11877
- this.emitError(error);
11878
- this.config.onTransientRefreshFailure?.(error);
11879
- this.config.onAuthError?.(error);
11891
+ if (!silent) {
11892
+ this.emitError(error);
11893
+ this.config.onTransientRefreshFailure?.(error);
11894
+ this.config.onAuthError?.(error);
11895
+ }
11880
11896
  throw error;
11881
11897
  } finally {
11882
11898
  cleanup();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "connectbase-client",
3
- "version": "5.12.0",
3
+ "version": "5.12.1",
4
4
  "description": "Connect Base JavaScript/TypeScript SDK for browser and Node.js",
5
5
  "repository": {
6
6
  "type": "git",