@shipstatic/ship 2.0.0-beta.3 → 2.0.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.d.ts CHANGED
@@ -57,8 +57,6 @@ interface DeploymentListResponse {
57
57
  deployments: Deployment[];
58
58
  /** Cursor for pagination, null if no more pages */
59
59
  cursor: string | null;
60
- /** Total number of deployments */
61
- total: number;
62
60
  }
63
61
  /**
64
62
  * Domain status constants
@@ -118,8 +116,6 @@ interface DomainListResponse {
118
116
  domains: Domain[];
119
117
  /** Cursor for pagination, null if no more pages */
120
118
  cursor: string | null;
121
- /** Total number of domains */
122
- total: number;
123
119
  }
124
120
  /**
125
121
  * DNS record types supported for domain configuration
@@ -201,8 +197,8 @@ interface TokenListItem {
201
197
  interface TokenListResponse {
202
198
  /** Array of tokens (security-redacted for list display) */
203
199
  tokens: TokenListItem[];
204
- /** Total number of tokens */
205
- total: number;
200
+ /** Cursor for pagination, null if no more pages */
201
+ cursor: string | null;
206
202
  }
207
203
  /**
208
204
  * Response for token creation
@@ -232,10 +228,34 @@ declare const AccountPlan: {
232
228
  type AccountPlanType = (typeof AccountPlan)[keyof typeof AccountPlan];
233
229
  /**
234
230
  * Account usage metrics — always available regardless of billing provider.
231
+ *
232
+ * This is where a caller's own totals live. Lists answer pages and carry no
233
+ * `total` (see {@link ListOptions}); a count is an aggregate over a
234
+ * collection, so it belongs to the summary resource that owns the
235
+ * collection. `GET /account` is that resource for one caller, `GET
236
+ * /admin/stats` for the platform.
237
+ *
238
+ * The counted dimensions are the ones the plan caps — deployments and
239
+ * domains (`PlatformLimits`) — plus the billable custom-domain subset, so a
240
+ * surface can render "3 of 10" without a second request.
235
241
  */
236
242
  interface AccountUsage {
237
243
  /** Number of active custom domains (excludes paused) */
238
244
  customDomains: number;
245
+ /**
246
+ * Deployments counted against the plan's deployment cap — every row
247
+ * whatever its status, because that is what the cap counts, so a surface
248
+ * renders "3 of 10" against the denominator the 403 divides by. (`GET
249
+ * /deployments` lists successful ones only; that is a different question
250
+ * asked of a different resource.) Optional by the additive-evolution law:
251
+ * an API predating this field omits it.
252
+ */
253
+ deployments?: number;
254
+ /**
255
+ * Domains counted against the plan's domain cap — every domain, platform
256
+ * and custom alike, unlike `customDomains`. Optional for the same reason.
257
+ */
258
+ domains?: number;
239
259
  }
240
260
  /**
241
261
  * Core account object - used in both API responses and SDK
@@ -421,6 +441,18 @@ declare class ShipError extends Error {
421
441
  static file(message: string, details?: unknown): ShipError;
422
442
  static config(message: string, details?: unknown): ShipError;
423
443
  static api(message: string, status?: number, details?: unknown): ShipError;
444
+ /**
445
+ * The caller is at fault — by HTTP's own definition of a 4xx, or by a type
446
+ * that is client-attributable without ever having a status (`Config`,
447
+ * `File`, raised locally by the SDK).
448
+ *
449
+ * Both arms are load-bearing, because type and status are independent
450
+ * axes. `fromHttpResponse` trusts `body.error` only when it names a
451
+ * server-producible type; a non-OK response without one is status-derived,
452
+ * so a CDN 404 or any intermediary error arrives as `Api` — a server-fault
453
+ * *type* carrying a client *status*. Judging by type alone would report it
454
+ * as a platform failure and bury the server's own message.
455
+ */
424
456
  isClientError(): boolean;
425
457
  isNetworkError(): boolean;
426
458
  isAuthError(): boolean;
@@ -645,6 +677,36 @@ declare const SPA_DEFAULT_CONFIG: {
645
677
  readonly destination: "/index.html";
646
678
  }];
647
679
  };
680
+ /**
681
+ * Assert that a ship.json file is *syntactically* loadable. Syntax only —
682
+ * never schema.
683
+ *
684
+ * ship.json is validated and compiled on the server, deliberately: the schema
685
+ * and the compiler evolve, and a client that judged them would reject configs
686
+ * a newer platform accepts. That reasoning bounds what a client may check to
687
+ * the properties which are true of *every* past and future schema:
688
+ *
689
+ * 1. it parses as JSON — JSON syntax is frozen (RFC 8259), so text that
690
+ * does not parse can never be a valid config;
691
+ * 2. its top level is an object — ship.json is `{ ... }` in every version.
692
+ *
693
+ * Both are monotonic: neither can ever reject something the server would
694
+ * accept. Everything beyond them (field names, types, rule semantics, which
695
+ * keys are permitted) stays server-side, where it can change.
696
+ *
697
+ * The payoff is the common case. Hand-edited JSON fails on a trailing comma,
698
+ * a `//` comment, single quotes, unquoted keys, or smart quotes pasted from
699
+ * documentation — mistakes that otherwise cost a full upload round-trip to
700
+ * discover. A UTF-8 BOM (Windows editors, PowerShell redirects) is stripped
701
+ * before parsing rather than rejected, because the server accepts it too;
702
+ * diverging there would reintroduce exactly the false rejection this
703
+ * function exists to avoid.
704
+ *
705
+ * @throws {ShipError} `ErrorType.Config` — the same type the server's own
706
+ * config rejection carries, so the error contract is identical wherever the
707
+ * failure is detected.
708
+ */
709
+ declare function assertShipJsonSyntax(text: string): void;
648
710
  /**
649
711
  * Validate API key format
650
712
  */
@@ -770,10 +832,20 @@ interface DeploymentUploadOptions {
770
832
  captcha?: string;
771
833
  }
772
834
  /**
773
- * Pagination options for the paginated list endpoints (`GET /deployments`,
774
- * `GET /domains`). The response's `cursor` feeds the next request; a `null`
775
- * cursor on the response means the last page. Omitting both returns the
776
- * server's default first page.
835
+ * Pagination options for every list endpoint. The response's `cursor` feeds
836
+ * the next request; a `null` cursor means the last page. Omitting both
837
+ * returns the server's default first page.
838
+ *
839
+ * A list answers `{ <collection>, cursor }` and nothing else — `cursor`
840
+ * carries the entire has-more signal, so no redundant boolean, and no
841
+ * `total`. **A count is an aggregate over a collection, not a property of a
842
+ * page:** including one makes every read pay for a full scan it did not ask
843
+ * for, which is precisely the cost keyset pagination exists to avoid.
844
+ *
845
+ * Counts therefore live on the summary resource that owns them —
846
+ * `GET /account` (`usage`) for a caller's own totals, `GET /admin/stats` for
847
+ * platform-wide ones. Ask for a count when you want a count; ask for a page
848
+ * when you want a page.
777
849
  */
778
850
  interface ListOptions {
779
851
  /** Maximum number of items to return in one page. */
@@ -834,7 +906,7 @@ interface TokenResource {
834
906
  ttl?: number;
835
907
  labels?: string[];
836
908
  }) => Promise<TokenCreateResponse>;
837
- list: () => Promise<TokenListResponse>;
909
+ list: (options?: ListOptions) => Promise<TokenListResponse>;
838
910
  remove: (token: string) => Promise<void>;
839
911
  }
840
912
  /**
@@ -932,6 +1004,8 @@ interface ActivityMeta {
932
1004
  interface ActivityListResponse {
933
1005
  /** Array of activities */
934
1006
  activities: Activity[];
1007
+ /** Cursor for pagination, null if no more pages */
1008
+ cursor: string | null;
935
1009
  }
936
1010
  /**
937
1011
  * File status constants for validation state tracking
@@ -1393,7 +1467,7 @@ declare class ApiHttp extends SimpleEvents {
1393
1467
  }>;
1394
1468
  validateDomain(name: string): Promise<DomainValidateResponse>;
1395
1469
  createToken(ttl?: number, labels?: string[]): Promise<TokenCreateResponse>;
1396
- listTokens(): Promise<TokenListResponse>;
1470
+ listTokens(options?: ListOptions): Promise<TokenListResponse>;
1397
1471
  removeToken(token: string): Promise<void>;
1398
1472
  getAccount(): Promise<AccountGetResponse>;
1399
1473
  getLimits(): Promise<PlatformLimits>;
@@ -1828,4 +1902,4 @@ declare class Ship extends Ship$1 {
1828
1902
  protected getDeployBodyCreator(): DeployBodyCreator;
1829
1903
  }
1830
1904
 
1831
- export { API_KEY, AUTH_BASE_PATH, type Account, type AccountGetResponse, type AccountOverrides, AccountPlan, type AccountPlanType, type AccountResource, type AccountUsage, type Activity, type ActivityEvent, type ActivityListResponse, type ActivityMeta, type ApiDeployOptions, ApiHttp, type ApiHttpOptions, AuthMethod, type AuthMethodType, BLOCKED_EXTENSIONS, type BillingStatus, CALLER, type CheckoutSession, DEFAULT_API, DEPLOYMENT_CONFIG_FILENAME, DEPLOY_TOKEN, type DeployBody, type DeployBodyContext, type DeployBodyCreator, type DeployFile, type DeployInput, type Deployment, type DeploymentCreateResponse, type DeploymentListResponse, type DeploymentOptions, type DeploymentResource, type DeploymentResourceContext, DeploymentStatus, type DeploymentStatusType, type DeploymentUploadOptions, type DnsProvider, type DnsRecord, type DnsRecordType, type Domain, type DomainDnsResponse, type DomainListResponse, type DomainRecordsResponse, type DomainResource, type DomainSetResult, DomainStatus, type DomainStatusType, type DomainValidateResponse, type ErrorResponse, ErrorType, type ExecutionEnvironment, FileValidationStatus as FILE_VALIDATION_STATUS, type Fetch, type FileValidationResult, FileValidationStatus, type FileValidationStatusType, JUNK_DIRECTORIES, LABEL_CONSTRAINTS, LABEL_PATTERN, type ListOptions, type MD5Result, OAuthScope, type OAuthScopeType, PASSWORD_CONSTRAINTS, type PingResponse, type PlatformLimits, type ResourceContext, type SPACheckRequest, type SPACheckResponse, SPA_DEFAULT_CONFIG, Ship, type ShipClientOptions, ShipError, type ShipEvents, type StaticFile, type TokenCreateResponse, TokenKind, type TokenKindType, type TokenListItem, type TokenListResponse, type TokenProvider, type TokenResource, UNBUILT_PROJECT_MARKERS, UNSAFE_FILENAME_CHARS, type UploadedFile, type UserVisibleActivityEvent, type ValidatableFile, type ValidationIssue, __setTestEnvironment, allValidFilesReady, calculateMD5, classifyToken, createAccountResource, createDeploymentResource, createDomainResource, createTokenResource, Ship as default, deserializeLabels, extractSubdomain, filterJunk, formatFileSize, generateDeploymentUrl, generateDomainUrl, getENV, getValidFiles, hasUnbuiltMarker, hasUnsafeChars, isBlockedExtension, isCustomDomain, isDeployment, isPlatformDomain, isShipError, optimizeDeployPaths, pluralize, processFilesForBrowser, serializeLabels, validateApiKey, validateApiUrl, validateCaller, validateDeployFile, validateDeployPath, validateDeployToken, validateFileName, validateFiles, validatePassword, validateToken };
1905
+ export { API_KEY, AUTH_BASE_PATH, type Account, type AccountGetResponse, type AccountOverrides, AccountPlan, type AccountPlanType, type AccountResource, type AccountUsage, type Activity, type ActivityEvent, type ActivityListResponse, type ActivityMeta, type ApiDeployOptions, ApiHttp, type ApiHttpOptions, AuthMethod, type AuthMethodType, BLOCKED_EXTENSIONS, type BillingStatus, CALLER, type CheckoutSession, DEFAULT_API, DEPLOYMENT_CONFIG_FILENAME, DEPLOY_TOKEN, type DeployBody, type DeployBodyContext, type DeployBodyCreator, type DeployFile, type DeployInput, type Deployment, type DeploymentCreateResponse, type DeploymentListResponse, type DeploymentOptions, type DeploymentResource, type DeploymentResourceContext, DeploymentStatus, type DeploymentStatusType, type DeploymentUploadOptions, type DnsProvider, type DnsRecord, type DnsRecordType, type Domain, type DomainDnsResponse, type DomainListResponse, type DomainRecordsResponse, type DomainResource, type DomainSetResult, DomainStatus, type DomainStatusType, type DomainValidateResponse, type ErrorResponse, ErrorType, type ExecutionEnvironment, FileValidationStatus as FILE_VALIDATION_STATUS, type Fetch, type FileValidationResult, FileValidationStatus, type FileValidationStatusType, JUNK_DIRECTORIES, LABEL_CONSTRAINTS, LABEL_PATTERN, type ListOptions, type MD5Result, OAuthScope, type OAuthScopeType, PASSWORD_CONSTRAINTS, type PingResponse, type PlatformLimits, type ResourceContext, type SPACheckRequest, type SPACheckResponse, SPA_DEFAULT_CONFIG, Ship, type ShipClientOptions, ShipError, type ShipEvents, type StaticFile, type TokenCreateResponse, TokenKind, type TokenKindType, type TokenListItem, type TokenListResponse, type TokenProvider, type TokenResource, UNBUILT_PROJECT_MARKERS, UNSAFE_FILENAME_CHARS, type UploadedFile, type UserVisibleActivityEvent, type ValidatableFile, type ValidationIssue, __setTestEnvironment, allValidFilesReady, assertShipJsonSyntax, calculateMD5, classifyToken, createAccountResource, createDeploymentResource, createDomainResource, createTokenResource, Ship as default, deserializeLabels, extractSubdomain, filterJunk, formatFileSize, generateDeploymentUrl, generateDomainUrl, getENV, getValidFiles, hasUnbuiltMarker, hasUnsafeChars, isBlockedExtension, isCustomDomain, isDeployment, isPlatformDomain, isShipError, optimizeDeployPaths, pluralize, processFilesForBrowser, serializeLabels, validateApiKey, validateApiUrl, validateCaller, validateDeployFile, validateDeployPath, validateDeployToken, validateFileName, validateFiles, validatePassword, validateToken };
package/dist/browser.js CHANGED
@@ -1,2 +1,2 @@
1
- var qe=Object.create;var $=Object.defineProperty;var Ve=Object.getOwnPropertyDescriptor;var je=Object.getOwnPropertyNames;var Ke=Object.getPrototypeOf,Xe=Object.prototype.hasOwnProperty;var Ye=(n,i,e)=>i in n?$(n,i,{enumerable:!0,configurable:!0,writable:!0,value:e}):n[i]=e;var x=(n,i)=>()=>(n&&(i=n(n=0)),i);var de=(n,i)=>()=>(i||n((i={exports:{}}).exports,i),i.exports),We=(n,i)=>{for(var e in i)$(n,e,{get:i[e],enumerable:!0})},Je=(n,i,e,a)=>{if(i&&typeof i=="object"||typeof i=="function")for(let p of je(i))!Xe.call(n,p)&&p!==e&&$(n,p,{get:()=>i[p],enumerable:!(a=Ve(i,p))||a.enumerable});return n};var U=(n,i,e)=>(e=n!=null?qe(Ke(n)):{},Je(i||!n||!n.__esModule?$(e,"default",{value:n,enumerable:!0}):e,n));var B=(n,i,e)=>Ye(n,typeof i!="symbol"?i+"":i,e);function he(n){return n!==null&&typeof n=="object"&&"name"in n&&n.name==="ShipError"&&"status"in n}function H(n){let i=n.lastIndexOf(".");if(i===-1||i===n.length-1)return!1;let e=n.slice(i+1).toLowerCase();return et.has(e)}function me(n){return tt.test(n)}function z(n){return n.replace(/\\/g,"/").split("/").filter(Boolean).some(e=>nt.has(e))}function rt(n){return n.startsWith(ye.PREFIX)?N.API_KEY:n.startsWith(ge.PREFIX)?N.DEPLOY_TOKEN:N.OPAQUE}function Ee(n,i,e){if(!n.startsWith(i.PREFIX))throw f.validation(`${e} must start with "${i.PREFIX}"`);if(n.length!==i.TOTAL_LENGTH)throw f.validation(`${e} must be ${i.TOTAL_LENGTH} characters total (${i.PREFIX} + ${i.HEX_LENGTH} hex chars)`);let a=n.slice(i.PREFIX.length);if(!new RegExp(`^[a-f0-9]{${i.HEX_LENGTH}}$`,"i").test(a))throw f.validation(`${e} must contain ${i.HEX_LENGTH} hexadecimal characters after "${i.PREFIX}" prefix`)}function it(n){Ee(n,ye,"API key")}function st(n){Ee(n,ge,"Deploy token")}function J(n){switch(rt(n)){case N.API_KEY:it(n);return;case N.DEPLOY_TOKEN:st(n);return;case N.OPAQUE:if(!n)throw f.validation("Token must be a non-empty string")}}function De(n){if(!n||n.length>Y.MAX_LENGTH||!Y.PATTERN.test(n))throw f.validation(`Caller must be 1-${Y.MAX_LENGTH} characters: letters, digits, dots, underscores, or hyphens`)}function bt(n){try{let i=new URL(n);if(!["http:","https:"].includes(i.protocol))throw f.validation("API URL must use http:// or https:// protocol");if(i.pathname!=="/"&&i.pathname!=="")throw f.validation("API URL must not contain a path");if(i.search||i.hash)throw f.validation("API URL must not contain query parameters or fragments")}catch(i){throw he(i)?i:f.validation("API URL must be a valid URL")}}function wt(n){return/^[a-z]+-[a-z]+-[a-z0-9]{7}(\.[a-z0-9.-]+)?$/i.test(n)}function Se(n,i){return n.endsWith(`.${i}`)}function Rt(n,i){return!Se(n,i)}function vt(n,i){return Se(n,i)?n.slice(0,-(i.length+1)):null}function xt(n){return`https://${n}`}function It(n){return`https://${n}`}function Pt(n){return!n||n.length===0?null:JSON.stringify(n)}function Ft(n){if(!n)return[];try{let i=JSON.parse(n);return Array.isArray(i)?i:[]}catch{return[]}}function Z(n){if(n==null)return;if(typeof n!="string")throw f.validation("Password must be a string");let i=n.trim();if(i.length<M.MIN_LENGTH||i.length>M.MAX_LENGTH)throw f.validation(`Password must be between ${M.MIN_LENGTH} and ${M.MAX_LENGTH} characters`);return i}var At,Et,Dt,E,Qe,X,Ze,f,et,tt,nt,St,fe,ye,ge,Y,N,Tt,W,Ae,Q,T,F,Te,M,b=x(()=>{"use strict";At={PENDING:"pending",SUCCESS:"success",FAILED:"failed",DELETING:"deleting"},Et={PENDING:"pending",PARTIAL:"partial",SUCCESS:"success",PAUSED:"paused"},Dt={FREE:"free",STANDARD:"standard",SPONSORED:"sponsored",ENTERPRISE:"enterprise",SUSPENDED:"suspended",TERMINATING:"terminating",TERMINATED:"terminated"},E={Validation:"validation_failed",NotFound:"not_found",Forbidden:"forbidden",RateLimit:"rate_limit_exceeded",Authentication:"authentication_failed",Business:"business_logic_error",Api:"internal_server_error",Network:"network_error",Cancelled:"operation_cancelled",File:"file_error",Config:"config_error"},Qe=new Set([E.Network,E.Cancelled,E.File,E.Config]),X={client:new Set([E.Business,E.Config,E.File,E.Forbidden,E.Validation]),network:new Set([E.Network]),auth:new Set([E.Authentication])},Ze=new Set(Object.values(E).filter(n=>!Qe.has(n))),f=class n extends Error{constructor(e,a,p,c){super(a);B(this,"type");B(this,"status");B(this,"details");this.type=e,this.status=p,this.details=c,this.name="ShipError"}toResponse(){let e=this.details,a=this.type===E.Authentication&&e?.internal?void 0:this.details;return{error:this.type,message:this.message,status:this.status,details:a}}static async fromHttpResponse(e,a){let p,c,h;try{if(e.headers.get("content-type")?.includes("application/json")){let g=await e.json();if(g&&typeof g=="object"){let A=g;typeof A.message=="string"?p=A.message:typeof A.error=="string"&&(p=A.error),c=A.details,typeof A.error=="string"&&Ze.has(A.error)&&(h=A.error)}}else{let g=await e.text();g&&(p=g)}}catch{}let m=e.headers.get("retry-after");if(m!==null){let y=m.trim(),g=/^\d+$/.test(y)?Number(y):Math.ceil((Date.parse(y)-Date.now())/1e3);if(Number.isFinite(g)&&g>=0){let A=c&&typeof c=="object"?c:{};A.retryAfter===void 0&&(c={...A,retryAfter:g})}}p=p||`${a||"Request"} failed with status ${e.status}`;let d=h??(e.status===401?E.Authentication:e.status===403?E.Forbidden:e.status===429?E.RateLimit:E.Api);return new n(d,p,e.status,c)}static fromFetchError(e,a){if(he(e))return e;let p=a||"Request";return e instanceof Error?e.name==="AbortError"?n.cancelled(`${p} was cancelled`):e instanceof TypeError&&e.message.includes("fetch")?n.network(`${p} failed: ${e.message}`,{cause:e}):new n(E.Api,`${p} failed: ${e.message}`):new n(E.Api,`${p} failed: Unknown error`)}static validation(e,a){return new n(E.Validation,e,400,a)}static notFound(e,a){let p=a?`${e} ${a} not found`:`${e} not found`;return new n(E.NotFound,p,404)}static forbidden(e,a){return new n(E.Forbidden,e,403,a)}static rateLimit(e="Too many requests",a){return new n(E.RateLimit,e,429,a)}static authentication(e="Authentication required",a){return new n(E.Authentication,e,401,a)}static business(e,a=400,p){return new n(E.Business,e,a,p)}static network(e,a){return new n(E.Network,e,void 0,a)}static cancelled(e,a){return new n(E.Cancelled,e,void 0,a)}static file(e,a){return new n(E.File,e,void 0,a)}static config(e,a){return new n(E.Config,e,void 0,a)}static api(e,a=500,p){return new n(E.Api,e,a,p)}isClientError(){return X.client.has(this.type)}isNetworkError(){return X.network.has(this.type)}isAuthError(){return X.auth.has(this.type)}isType(e){return this.type===e}};et=new Set(["exe","msi","dll","scr","bat","cmd","com","pif","app","deb","rpm","pkg","mpkg","dmg","iso","img","cab","cpl","chm","ps1","vbs","vbe","ws","wsf","wsc","wsh","reg","jar","jnlp","apk","crx","lnk","inf","hta"]);tt=/[\x00-\x1f\x7f#?%\\<>"]/;nt=new Set(["node_modules","package.json"]);St="/auth",fe={SESSION:"session",API_KEY:"apiKey",TOKEN:"token",AGENT:"agent",OAUTH:"oauth",WEBHOOK:"webhook",SYSTEM:"system"},ye={PREFIX:"ship-",HEX_LENGTH:64,TOTAL_LENGTH:69,HINT_LENGTH:4},ge={PREFIX:"deploy-",HEX_LENGTH:64,TOTAL_LENGTH:71},Y={HEADER:"X-Caller",MAX_LENGTH:128,PATTERN:/^[a-zA-Z0-9._-]+$/},N={API_KEY:fe.API_KEY,DEPLOY_TOKEN:fe.TOKEN,OPAQUE:"opaque"};Tt={ACCOUNT_READ:"account:read",DEPLOYMENTS_READ:"deployments:read",DEPLOYMENTS_WRITE:"deployments:write",DOMAINS_READ:"domains:read",DOMAINS_WRITE:"domains:write"},W="ship.json",Ae={rewrites:[{source:"/(.*)",destination:"/index.html"}]};Q="https://api.shipstatic.com",T={PENDING:"pending",PROCESSING_ERROR:"processing_error",EXCLUDED:"excluded",VALIDATION_FAILED:"validation_failed",READY:"ready"};F={MIN_LENGTH:3,MAX_LENGTH:25,MAX_COUNT:10,SEPARATORS:"._-"},Te=/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/;M={MIN_LENGTH:6,MAX_LENGTH:128}});var ve=de((we,Re)=>{"use strict";(function(n){if(typeof we=="object")Re.exports=n();else if(typeof define=="function"&&define.amd)define(n);else{var i;try{i=window}catch{i=self}i.SparkMD5=n()}})(function(n){"use strict";var i=function(u,l){return u+l&4294967295},e=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function a(u,l,r,t,o,s){return l=i(i(l,u),i(t,s)),i(l<<o|l>>>32-o,r)}function p(u,l){var r=u[0],t=u[1],o=u[2],s=u[3];r+=(t&o|~t&s)+l[0]-680876936|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[1]-389564586|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[2]+606105819|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[3]-1044525330|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[4]-176418897|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[5]+1200080426|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[6]-1473231341|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[7]-45705983|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[8]+1770035416|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[9]-1958414417|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[10]-42063|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[11]-1990404162|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[12]+1804603682|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[13]-40341101|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[14]-1502002290|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[15]+1236535329|0,t=(t<<22|t>>>10)+o|0,r+=(t&s|o&~s)+l[1]-165796510|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[6]-1069501632|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[11]+643717713|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[0]-373897302|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[5]-701558691|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[10]+38016083|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[15]-660478335|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[4]-405537848|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[9]+568446438|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[14]-1019803690|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[3]-187363961|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[8]+1163531501|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[13]-1444681467|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[2]-51403784|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[7]+1735328473|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[12]-1926607734|0,t=(t<<20|t>>>12)+o|0,r+=(t^o^s)+l[5]-378558|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[8]-2022574463|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[11]+1839030562|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[14]-35309556|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[1]-1530992060|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[4]+1272893353|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[7]-155497632|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[10]-1094730640|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[13]+681279174|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[0]-358537222|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[3]-722521979|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[6]+76029189|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[9]-640364487|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[12]-421815835|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[15]+530742520|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[2]-995338651|0,t=(t<<23|t>>>9)+o|0,r+=(o^(t|~s))+l[0]-198630844|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[7]+1126891415|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[14]-1416354905|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[5]-57434055|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[12]+1700485571|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[3]-1894986606|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[10]-1051523|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[1]-2054922799|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[8]+1873313359|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[15]-30611744|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[6]-1560198380|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[13]+1309151649|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[4]-145523070|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[11]-1120210379|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[2]+718787259|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[9]-343485551|0,t=(t<<21|t>>>11)+o|0,u[0]=r+u[0]|0,u[1]=t+u[1]|0,u[2]=o+u[2]|0,u[3]=s+u[3]|0}function c(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u.charCodeAt(r)+(u.charCodeAt(r+1)<<8)+(u.charCodeAt(r+2)<<16)+(u.charCodeAt(r+3)<<24);return l}function h(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u[r]+(u[r+1]<<8)+(u[r+2]<<16)+(u[r+3]<<24);return l}function m(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],t,o,s,R,I,P;for(t=64;t<=l;t+=64)p(r,c(u.substring(t-64,t)));for(u=u.substring(t-64),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t<o;t+=1)s[t>>2]|=u.charCodeAt(t)<<(t%4<<3);if(s[t>>2]|=128<<(t%4<<3),t>55)for(p(r,s),t=0;t<16;t+=1)s[t]=0;return R=l*8,R=R.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(R[2],16),P=parseInt(R[1],16)||0,s[14]=I,s[15]=P,p(r,s),r}function d(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],t,o,s,R,I,P;for(t=64;t<=l;t+=64)p(r,h(u.subarray(t-64,t)));for(u=t-64<l?u.subarray(t-64):new Uint8Array(0),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t<o;t+=1)s[t>>2]|=u[t]<<(t%4<<3);if(s[t>>2]|=128<<(t%4<<3),t>55)for(p(r,s),t=0;t<16;t+=1)s[t]=0;return R=l*8,R=R.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(R[2],16),P=parseInt(R[1],16)||0,s[14]=I,s[15]=P,p(r,s),r}function y(u){var l="",r;for(r=0;r<4;r+=1)l+=e[u>>r*8+4&15]+e[u>>r*8&15];return l}function g(u){var l;for(l=0;l<u.length;l+=1)u[l]=y(u[l]);return u.join("")}g(m("hello"))!=="5d41402abc4b2a76b9719d911017c592"&&(i=function(u,l){var r=(u&65535)+(l&65535),t=(u>>16)+(l>>16)+(r>>16);return t<<16|r&65535}),typeof ArrayBuffer<"u"&&!ArrayBuffer.prototype.slice&&(function(){function u(l,r){return l=l|0||0,l<0?Math.max(l+r,0):Math.min(l,r)}ArrayBuffer.prototype.slice=function(l,r){var t=this.byteLength,o=u(l,t),s=t,R,I,P,ce;return r!==n&&(s=u(r,t)),o>s?new ArrayBuffer(0):(R=s-o,I=new ArrayBuffer(R),P=new Uint8Array(I),ce=new Uint8Array(this,o,R),P.set(ce),I)}})();function A(u){return/[\u0080-\uFFFF]/.test(u)&&(u=unescape(encodeURIComponent(u))),u}function w(u,l){var r=u.length,t=new ArrayBuffer(r),o=new Uint8Array(t),s;for(s=0;s<r;s+=1)o[s]=u.charCodeAt(s);return l?o:t}function v(u){return String.fromCharCode.apply(null,new Uint8Array(u))}function O(u,l,r){var t=new Uint8Array(u.byteLength+l.byteLength);return t.set(new Uint8Array(u)),t.set(new Uint8Array(l),u.byteLength),r?t:t.buffer}function L(u){var l=[],r=u.length,t;for(t=0;t<r-1;t+=2)l.push(parseInt(u.substr(t,2),16));return String.fromCharCode.apply(String,l)}function D(){this.reset()}return D.prototype.append=function(u){return this.appendBinary(A(u)),this},D.prototype.appendBinary=function(u){this._buff+=u,this._length+=u.length;var l=this._buff.length,r;for(r=64;r<=l;r+=64)p(this._hash,c(this._buff.substring(r-64,r)));return this._buff=this._buff.substring(r-64),this},D.prototype.end=function(u){var l=this._buff,r=l.length,t,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],s;for(t=0;t<r;t+=1)o[t>>2]|=l.charCodeAt(t)<<(t%4<<3);return this._finish(o,r),s=g(this._hash),u&&(s=L(s)),this.reset(),s},D.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},D.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},D.prototype.setState=function(u){return this._buff=u.buff,this._length=u.length,this._hash=u.hash,this},D.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},D.prototype._finish=function(u,l){var r=l,t,o,s;if(u[r>>2]|=128<<(r%4<<3),r>55)for(p(this._hash,u),r=0;r<16;r+=1)u[r]=0;t=this._length*8,t=t.toString(16).match(/(.*?)(.{0,8})$/),o=parseInt(t[2],16),s=parseInt(t[1],16)||0,u[14]=o,u[15]=s,p(this._hash,u)},D.hash=function(u,l){return D.hashBinary(A(u),l)},D.hashBinary=function(u,l){var r=m(u),t=g(r);return l?L(t):t},D.ArrayBuffer=function(){this.reset()},D.ArrayBuffer.prototype.append=function(u){var l=O(this._buff.buffer,u,!0),r=l.length,t;for(this._length+=u.byteLength,t=64;t<=r;t+=64)p(this._hash,h(l.subarray(t-64,t)));return this._buff=t-64<r?new Uint8Array(l.buffer.slice(t-64)):new Uint8Array(0),this},D.ArrayBuffer.prototype.end=function(u){var l=this._buff,r=l.length,t=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o,s;for(o=0;o<r;o+=1)t[o>>2]|=l[o]<<(o%4<<3);return this._finish(t,r),s=g(this._hash),u&&(s=L(s)),this.reset(),s},D.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},D.ArrayBuffer.prototype.getState=function(){var u=D.prototype.getState.call(this);return u.buff=v(u.buff),u},D.ArrayBuffer.prototype.setState=function(u){return u.buff=w(u.buff,!0),D.prototype.setState.call(this,u)},D.ArrayBuffer.prototype.destroy=D.prototype.destroy,D.ArrayBuffer.prototype._finish=D.prototype._finish,D.ArrayBuffer.hash=function(u,l){var r=d(new Uint8Array(u)),t=g(r);return l?L(t):t},D})});var q=de((zt,xe)=>{"use strict";xe.exports={}});async function at(n){let i=(await Promise.resolve().then(()=>U(ve(),1))).default,e=new i.ArrayBuffer,a=2097152;for(let p=0;p<n.size;p+=a){let c=Math.min(p+a,n.size);e.append(await n.slice(p,c).arrayBuffer())}return{md5:e.end()}}async function lt(n){let{createHash:i}=await Promise.resolve().then(()=>U(q(),1)),e=i("md5");return e.update(n),{md5:e.digest("hex")}}async function pt(n){let{createHash:i}=await Promise.resolve().then(()=>U(q(),1)),{createReadStream:e}=await Promise.resolve().then(()=>U(q(),1));return new Promise((a,p)=>{let c=i("md5"),h=e(n);h.on("error",m=>p(f.business(`Failed to read file for MD5: ${m.message}`))),h.on("data",m=>c.update(m)),h.on("end",()=>a({md5:c.digest("hex")}))})}async function _(n){if(n instanceof Blob)return at(n);if(typeof Buffer<"u"&&Buffer.isBuffer(n))return lt(n);if(typeof n=="string")return pt(n);throw f.business("Invalid input for MD5 calculation")}var V=x(()=>{"use strict";b()});function K(n){return n.replace(/\\/g,"/").replace(/\/+/g,"/").replace(/^\/+/,"")}var Ce=x(()=>{"use strict"});function _e(n,i={}){if(i.flatten===!1)return n.map(a=>({path:K(a),name:ee(a)}));let e=ct(n);return n.map(a=>{let p=K(a);if(e){let c=e.endsWith("/")?e:`${e}/`;p.startsWith(c)&&(p=p.substring(c.length))}return p||(p=ee(a)),{path:p,name:ee(a)}})}function ct(n){if(!n.length)return"";let e=n.map(c=>K(c)).map(c=>c.split("/")),a=[],p=Math.min(...e.map(c=>c.length));for(let c=0;c<p-1;c++){let h=e[0][c];if(e.every(m=>m[c]===h))a.push(h);else break}return a.join("/")}function ee(n){return n.split(/[/\\]/).pop()||n}var te=x(()=>{"use strict";Ce()});function ln(n){ne=n}function dt(){return typeof process<"u"&&process.versions&&process.versions.node?"node":typeof window<"u"||typeof self<"u"?"browser":"unknown"}function $e(){return ne||dt()}var ne,re=x(()=>{"use strict";ne=null});function ie(n,i=1){if(n===0)return"0 Bytes";let e=1024,a=["Bytes","KB","MB","GB"],p=Math.floor(Math.log(n)/Math.log(e));return`${parseFloat((n/e**p).toFixed(i))} ${a[p]}`}function se(n){if(me(n))return{valid:!1,reason:"File name contains unsafe characters"};if(n.startsWith(" ")||n.endsWith(" "))return{valid:!1,reason:"File name cannot start/end with spaces"};if(n.endsWith("."))return{valid:!1,reason:"File name cannot end with dots"};let i=/^(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|$)/i,e=n.split("/").pop()||n;return i.test(e)?{valid:!1,reason:"File name uses a reserved system name"}:n.includes("..")?{valid:!1,reason:"File name contains path traversal pattern"}:{valid:!0}}function cn(n,i){let e=[],a=[],p=[];if(n.length===0){let d={file:"(no files)",message:"At least one file must be provided"};return e.push(d),{files:[],validFiles:[],errors:e,warnings:[],canDeploy:!1}}for(let d of n)if(z(d.name))return e.push({file:d.name,message:"Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder"}),{files:n.map(y=>({...y,status:T.VALIDATION_FAILED,statusMessage:"Unbuilt project detected"})),validFiles:[],errors:e,warnings:[],canDeploy:!1};if(n.length>i.maxFilesCount){let d={file:`(${n.length} files)`,message:`File count (${n.length}) exceeds limit of ${i.maxFilesCount}`};return e.push(d),{files:n.map(y=>({...y,status:T.VALIDATION_FAILED,statusMessage:d.message})),validFiles:[],errors:e,warnings:[],canDeploy:!1}}let c=0;for(let d of n){let y=T.READY,g="Ready for upload",A=d.name?se(d.name):{valid:!1,reason:"File name cannot be empty"};if(d.status===T.PROCESSING_ERROR)y=T.VALIDATION_FAILED,g=d.statusMessage||"File failed during processing",e.push({file:d.name,message:g});else if(d.size===0){y=T.EXCLUDED,g="File is empty (0 bytes) and cannot be deployed due to storage limitations",a.push({file:d.name,message:g}),p.push({...d,status:y,statusMessage:g});continue}else d.size<0?(y=T.VALIDATION_FAILED,g="File size must be positive",e.push({file:d.name,message:g})):!d.name||d.name.trim().length===0?(y=T.VALIDATION_FAILED,g="File name cannot be empty",e.push({file:d.name||"(empty)",message:g})):d.name.includes("\0")?(y=T.VALIDATION_FAILED,g="File name contains invalid characters (null byte)",e.push({file:d.name,message:g})):A.valid?H(d.name)?(y=T.VALIDATION_FAILED,g=`File extension not allowed: "${d.name}"`,e.push({file:d.name,message:g})):d.size>i.maxFileSize?(y=T.VALIDATION_FAILED,g=`File size (${ie(d.size)}) exceeds limit of ${ie(i.maxFileSize)}`,e.push({file:d.name,message:g})):(c+=d.size,c>i.maxTotalSize&&(y=T.VALIDATION_FAILED,g=`Total size would exceed limit of ${ie(i.maxTotalSize)}`,e.push({file:d.name,message:g}))):(y=T.VALIDATION_FAILED,g=A.reason||"Invalid file name",e.push({file:d.name,message:g}));p.push({...d,status:y,statusMessage:g})}e.length>0&&(p=p.map(d=>d.status===T.EXCLUDED?d:{...d,status:T.VALIDATION_FAILED,statusMessage:d.status===T.VALIDATION_FAILED?d.statusMessage:"Deployment failed due to validation errors in bundle"}));let h=e.length===0?p.filter(d=>d.status===T.READY):[],m=e.length===0;return{files:p,validFiles:h,errors:e,warnings:a,canDeploy:m}}function ft(n){return n.filter(i=>i.status===T.READY)}function dn(n){return ft(n).length>0}var oe=x(()=>{"use strict";b()});function Ue(n){return mt.test(n)}var ht,mt,Be=x(()=>{"use strict";ht=["^npm-debug\\.log$","^\\..*\\.swp$","^\\.DS_Store$","^\\.AppleDouble$","^\\.LSOverride$","^Icon\\r$","^\\._.*","^\\.Spotlight-V100(?:$|\\/)","\\.Trashes","^__MACOSX$","~$","^Thumbs\\.db$","^ehthumbs\\.db$","^[Dd]esktop\\.ini$","@eaDir$"],mt=new RegExp(ht.join("|"))});function Me(n,i){if(!n||n.length===0)return[];if(!i?.allowUnbuilt&&n.find(a=>a&&z(a)))throw f.business("Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder");return n.filter(e=>{if(!e)return!1;let a=e.replace(/\\/g,"/").split("/").filter(Boolean);if(a.length===0)return!0;let p=a[a.length-1];if(Ue(p))return!1;for(let h of a)if(h!==".well-known"&&(h.startsWith(".")||h.length>255))return!1;let c=a.slice(0,-1);for(let h of c)if(yt.some(m=>h.toLowerCase()===m.toLowerCase()))return!1;return!0})}var yt,ae=x(()=>{"use strict";b();Be();yt=["__MACOSX",".Trashes",".fseventsd",".Spotlight-V100"]});function He(n,i){if(n.includes("\0")||n.includes("/../")||n.startsWith("../")||n.endsWith("/.."))throw f.business(`Security error: Unsafe file path "${n}" for file: ${i}`)}function ze(n,i){let e=se(n);if(!e.valid)throw f.business(e.reason||"Invalid file name");if(H(n))throw f.business(`File extension not allowed: "${i}"`)}var le=x(()=>{"use strict";b();oe()});var ke={};We(ke,{processFilesForBrowser:()=>Ge});async function Ge(n,i={},e){if($e()!=="browser")throw f.business("processFilesForBrowser can only be called in a browser environment.");let a=n.map(A=>A.webkitRelativePath||A.name),p=i.build||i.prerender,c=_e(a,{flatten:i.pathDetect!==!1}),h=c.map(A=>A.path),m=new Set(Me(h,{allowUnbuilt:p})),d=[];for(let A=0;A<n.length;A++)m.has(h[A])&&d.push({file:n[A],deployPath:c[A].path});if(d.length===0)return[];if(p){let A=[];for(let w=0;w<d.length;w++){let{file:v,deployPath:O}=d[w];if(v.size===0)continue;let{md5:L}=await _(v);A.push({path:O,content:v,size:v.size,md5:L})}return A}if(!e)throw f.config("Platform limits not provided. processFilesForBrowser requires the limits argument for deploy-mode validation \u2014 pass `ship.getLimits()` result.");let y=[],g=0;for(let A=0;A<d.length;A++){let{file:w,deployPath:v}=d[A];if(He(v,w.name),w.size===0)continue;if(ze(v,w.name),w.size>e.maxFileSize)throw f.business(`File ${w.name} is too large. Maximum allowed size is ${e.maxFileSize/(1024*1024)}MB.`);if(g+=w.size,g>e.maxTotalSize)throw f.business(`Total deploy size is too large. Maximum allowed is ${e.maxTotalSize/(1024*1024)}MB.`);let{md5:O}=await _(w);y.push({path:v,content:w,size:w.size,md5:O})}if(y.length>e.maxFilesCount)throw f.business(`Too many files to deploy. Maximum allowed is ${e.maxFilesCount} files.`);return y}var pe=x(()=>{"use strict";b();te();re();ae();V();le()});b();b();b();var G=class{constructor(){this.handlers=new Map}on(i,e){this.handlers.has(i)||this.handlers.set(i,new Set),this.handlers.get(i)?.add(e)}off(i,e){let a=this.handlers.get(i);a&&(a.delete(e),a.size===0&&this.handlers.delete(i))}emit(i,...e){let a=this.handlers.get(i);if(!a)return;let p=Array.from(a);for(let c of p)try{c(...e)}catch(h){a.delete(c),i!=="error"&&setTimeout(()=>{let m=h instanceof Error?h:new Error(String(h));this.emit("error",m,String(i))},0)}}};b();b();function C(n){if(n==null)return;if(n.length===0)return n;if(n.length>F.MAX_COUNT)throw f.validation(`Maximum ${F.MAX_COUNT} labels allowed`);let i=n.map((a,p)=>{if(typeof a!="string")throw f.validation(`Label at index ${p} must be a string`);let c=a.trim().toLowerCase();if(c.length<F.MIN_LENGTH)throw f.validation(`Labels must be at least ${F.MIN_LENGTH} characters long`);if(c.length>F.MAX_LENGTH)throw f.validation(`Labels must be no more than ${F.MAX_LENGTH} characters long`);if(!Te.test(c))throw f.validation(`Labels must start and end with alphanumeric characters, with optional separators (${F.SEPARATORS}) between segments`);return c}),e=[...new Set(i)];if(e.length!==i.length)throw f.validation("Duplicate labels are not allowed");return e}var S={DEPLOYMENTS:"/deployments",DOMAINS:"/domains",TOKENS:"/tokens",ACCOUNT:"/account",LIMITS:"/limits",PING:"/ping",SPA_CHECK:"/spa-check"},ot=3e4;function be(n){let i=new URLSearchParams;n?.limit!==void 0&&i.set("limit",String(n.limit)),n?.cursor!==void 0&&i.set("cursor",n.cursor);let e=i.toString();return e?`?${e}`:""}var k=class extends G{constructor(e){super();this.globalHeaders={};this.apiUrl=e.apiUrl||Q,this.getAuthHeadersCallback=e.getAuthHeaders,this.session=e.session??!1,this.caller=e.caller,this.timeout=e.timeout??ot,this.fetch=e.fetch??globalThis.fetch.bind(globalThis),this.createDeployBody=e.createDeployBody,this.deployEndpoint=e.deployEndpoint||S.DEPLOYMENTS}setGlobalHeaders(e){this.globalHeaders=e}async executeRequest(e,a,p){let c=()=>{};try{let h=await this.mergeHeaders(a.headers),m=this.createTimeoutSignal(a.signal);c=m.cleanup;let d={...a,headers:h,credentials:this.session&&!h.Authorization?"include":void 0,signal:m.signal};this.emit("request",e,d);let y=await this.fetch(e,d);if(c(),!y.ok)throw await f.fromHttpResponse(y,p);return this.emit("response",this.safeClone(y),e),{data:await this.parseResponse(this.safeClone(y)),status:y.status}}catch(h){c();let m=f.fromFetchError(h,p);throw this.emit("error",m,e),m}}async request(e,a,p){let{data:c}=await this.executeRequest(e,a,p);return c}async requestWithStatus(e,a,p){return this.executeRequest(e,a,p)}async mergeHeaders(e={}){return{...this.globalHeaders,...this.caller?{"X-Caller":this.caller}:{},...await this.getAuthHeadersCallback(),...e}}createTimeoutSignal(e){let a=new AbortController,p=setTimeout(()=>a.abort(),this.timeout);if(e){let c=()=>a.abort();e.addEventListener("abort",c),e.aborted&&a.abort()}return{signal:a.signal,cleanup:()=>clearTimeout(p)}}safeClone(e){try{return e.clone()}catch{return e}}async parseResponse(e){if(!(e.headers.get("Content-Length")==="0"||e.status===204))return e.json()}async deploy(e,a={}){if(!e.length)throw f.business("No files to deploy");for(let d of e)if(!d.md5)throw f.file(`MD5 checksum missing for file: ${d.path}`,{filePath:d.path});Z(a.password);let p=C(a.labels),c=a.build||a.prerender||a.spa?{build:a.build,prerender:a.prerender,spa:a.spa}:void 0,{body:h,headers:m}=await this.createDeployBody(e,{labels:p,via:a.via,password:a.password,flags:c,captcha:a.captcha});return this.request(`${this.apiUrl}${this.deployEndpoint}`,{method:"POST",body:h,headers:m,signal:a.signal||null},"Deploy")}async listDeployments(e){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}${be(e)}`,{method:"GET"},"List deployments")}async getDeployment(e){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"GET"},"Get deployment")}async updateDeploymentLabels(e,a){let p=C(a);return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({labels:p})},"Update deployment labels")}async removeDeployment(e){await this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove deployment")}async setDomain(e,a,p){let c=C(p),h={};a&&(h.deployment=a),c!==void 0&&(h.labels=c);let{data:m,status:d}=await this.requestWithStatus(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(h)},"Set domain");return{...m,isCreate:d===201}}async listDomains(e){return this.request(`${this.apiUrl}${S.DOMAINS}${be(e)}`,{method:"GET"},"List domains")}async getDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"GET"},"Get domain")}async removeDomain(e){await this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove domain")}async verifyDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/verify`,{method:"POST"},"Verify domain")}async getDomainDns(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/dns`,{method:"GET"},"Get domain DNS")}async getDomainRecords(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/records`,{method:"GET"},"Get domain records")}async getDomainShare(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/share`,{method:"GET"},"Get domain share")}async validateDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/validate`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({domain:e})},"Validate domain")}async createToken(e,a){let p=C(a),c={};return e!==void 0&&(c.ttl=e),p!==void 0&&(c.labels=p),this.request(`${this.apiUrl}${S.TOKENS}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)},"Create token")}async listTokens(){return this.request(`${this.apiUrl}${S.TOKENS}`,{method:"GET"},"List tokens")}async removeToken(e){await this.request(`${this.apiUrl}${S.TOKENS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove token")}async getAccount(){return this.request(`${this.apiUrl}${S.ACCOUNT}`,{method:"GET"},"Get account")}async getLimits(){return this.request(`${this.apiUrl}${S.LIMITS}`,{method:"GET"},"Get limits")}async ping(){return(await this.request(`${this.apiUrl}${S.PING}`,{method:"GET"},"Ping"))?.success||!1}async checkSPA(e,a={}){let p=e.find(d=>d.path==="index.html"||d.path==="/index.html");if(!p||p.size>100*1024)return!1;let c;if(typeof Buffer<"u"&&Buffer.isBuffer(p.content))c=p.content.toString("utf-8");else if(typeof Blob<"u"&&p.content instanceof Blob)c=await p.content.text();else if(typeof File<"u"&&p.content instanceof File)c=await p.content.text();else return!1;let h={files:e.map(d=>d.path),index:c};return(await this.request(`${this.apiUrl}${S.SPA_CHECK}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(h)},"SPA check")).isSPA}};b();b();V();async function ut(){let n=JSON.stringify(Ae,null,2),i;typeof Buffer<"u"?i=Buffer.from(n,"utf-8"):i=new Blob([n],{type:"application/json"});let{md5:e}=await _(i);return{path:W,content:i,size:n.length,md5:e}}async function Ie(n,i,e){if(e.spaDetect===!1||e.spa||e.build||e.prerender||n.some(a=>a.path===W))return n;try{if(await i.checkSPA(n,e)){let p=await ut();return[...n,p]}}catch{}return n}function Pe(n){let{getApi:i,ensureInit:e,processInput:a}=n;return{upload:async(p,c={})=>{if(await e(),!a)throw f.config("processInput function is not provided.");let h=i(),m=await a(p,c);return m=await Ie(m,h,c),h.deploy(m,c)},list:async p=>(await e(),i().listDeployments(p)),get:async p=>(await e(),i().getDeployment(p)),set:async(p,c)=>(await e(),i().updateDeploymentLabels(p,c.labels)),remove:async p=>{await e(),await i().removeDeployment(p)}}}function Fe(n){let{getApi:i,ensureInit:e}=n;return{set:async(a,p={})=>(await e(),i().setDomain(a,p.deployment,p.labels)),list:async a=>(await e(),i().listDomains(a)),get:async a=>(await e(),i().getDomain(a)),remove:async a=>{await e(),await i().removeDomain(a)},verify:async a=>(await e(),i().verifyDomain(a)),validate:async a=>(await e(),i().validateDomain(a)),dns:async a=>(await e(),i().getDomainDns(a)),records:async a=>(await e(),i().getDomainRecords(a)),share:async a=>(await e(),i().getDomainShare(a))}}function Le(n){let{getApi:i,ensureInit:e}=n;return{get:async()=>(await e(),i().getAccount())}}function Ne(n){let{getApi:i,ensureInit:e}=n;return{create:async(a={})=>(await e(),i().createToken(a.ttl,a.labels)),list:async()=>(await e(),i().listTokens()),remove:async a=>{await e(),await i().removeToken(a)}}}var j=class{constructor(i={}){this.initPromise=null;this.platformLimits=null;this.credential=null;if(i={...i,apiUrl:i.apiUrl||void 0,token:i.token||void 0,caller:i.caller||void 0},this.clientOptions=i,i.caller!==void 0&&De(i.caller),i.token&&i.session)throw f.config("Provide either `token` or `session`, not both.");typeof i.token=="string"?(J(i.token),this.credential=i.token):i.token&&(this.credential=i.token),this.http=new k({...i,getAuthHeaders:()=>this.getAuthHeaders(),createDeployBody:this.getDeployBodyCreator()});let e={getApi:()=>this.http,ensureInit:()=>this.ensureInitialized()};this.deployments=Pe({...e,processInput:(a,p)=>this.processInput(a,p)}),this.domains=Fe(e),this.account=Le(e),this.tokens=Ne(e)}async ensureInitialized(){return this.initPromise||(this.initPromise=this.fetchPlatformLimits()),this.initPromise}async fetchPlatformLimits(){try{this.platformLimits=await this.http.getLimits()}catch(i){throw this.initPromise=null,i}}async ping(){return await this.ensureInitialized(),this.http.ping()}async deploy(i,e){return this.deployments.upload(i,e)}async whoami(){return this.account.get()}async getLimits(){return this.platformLimits?this.platformLimits:(await this.ensureInitialized(),this.platformLimits)}on(i,e){this.http.on(i,e)}off(i,e){this.http.off(i,e)}setHeaders(i){this.http.setGlobalHeaders(i)}clearHeaders(){this.http.setGlobalHeaders({})}setToken(i){if(this.clientOptions.session)throw f.config("Provide either `token` or `session`, not both.");if(typeof i=="string"){if(!i)throw f.business("Invalid token provided. Token must be a non-empty string.");J(i),this.credential=i;return}if(typeof i!="function")throw f.business("Invalid token provided. Token must be a non-empty string or a provider function.");this.credential=i}async getAuthHeaders(){if(this.credential===null)return{};let i=typeof this.credential=="function"?await this.credential():this.credential;if(!i)throw f.authentication("Token provider returned no token.");if(typeof i!="string")throw f.authentication("Token provider returned a non-string value.");return{Authorization:`Bearer ${i}`}}};b();async function Oe(n,i={}){let{labels:e,via:a,password:p,flags:c,captcha:h}=i,m=new FormData,d=[];for(let y of n){if(!(y.content instanceof File||y.content instanceof Blob))throw f.file(`Unsupported file.content type for browser: ${y.path}`,{filePath:y.path});if(!y.md5)throw f.file(`File missing md5 checksum: ${y.path}`,{filePath:y.path});let g=new File([y.content],y.path,{type:"application/octet-stream"});m.append("files[]",g),d.push(y.md5)}return m.append("checksums",JSON.stringify(d)),e&&e.length>0&&m.append("labels",JSON.stringify(e)),a&&m.append("via",a),p&&m.append("password",p),c?.build&&m.append("build","true"),c?.prerender&&m.append("prerender","true"),c?.spa&&m.append("spa","true"),h&&m.append("captcha",h),{body:m,headers:{}}}b();b();te();re();oe();ae();V();le();function Sn(n,i,e,a=!0){let p=n===1?i:e;return a?`${n} ${p}`:p}pe();var ue=class extends j{async deploy(i,e){return super.deploy(i,e)}async processInput(i,e){if(!Array.isArray(i)||!i.every(p=>p instanceof File))throw f.business("Invalid input type for browser environment. Expected File[].");if(i.length===0)throw f.business("No files to deploy.");let{processFilesForBrowser:a}=await Promise.resolve().then(()=>(pe(),ke));return a(i,e,this.platformLimits??void 0)}getDeployBodyCreator(){return Oe}},Vn=ue;export{ye as API_KEY,St as AUTH_BASE_PATH,Dt as AccountPlan,k as ApiHttp,fe as AuthMethod,et as BLOCKED_EXTENSIONS,Y as CALLER,Q as DEFAULT_API,W as DEPLOYMENT_CONFIG_FILENAME,ge as DEPLOY_TOKEN,At as DeploymentStatus,Et as DomainStatus,E as ErrorType,T as FILE_VALIDATION_STATUS,T as FileValidationStatus,yt as JUNK_DIRECTORIES,F as LABEL_CONSTRAINTS,Te as LABEL_PATTERN,Tt as OAuthScope,M as PASSWORD_CONSTRAINTS,Ae as SPA_DEFAULT_CONFIG,ue as Ship,f as ShipError,N as TokenKind,nt as UNBUILT_PROJECT_MARKERS,tt as UNSAFE_FILENAME_CHARS,ln as __setTestEnvironment,dn as allValidFilesReady,_ as calculateMD5,rt as classifyToken,Le as createAccountResource,Pe as createDeploymentResource,Fe as createDomainResource,Ne as createTokenResource,Vn as default,Ft as deserializeLabels,vt as extractSubdomain,Me as filterJunk,ie as formatFileSize,xt as generateDeploymentUrl,It as generateDomainUrl,$e as getENV,ft as getValidFiles,z as hasUnbuiltMarker,me as hasUnsafeChars,H as isBlockedExtension,Rt as isCustomDomain,wt as isDeployment,Se as isPlatformDomain,he as isShipError,_e as optimizeDeployPaths,Sn as pluralize,Ge as processFilesForBrowser,Pt as serializeLabels,it as validateApiKey,bt as validateApiUrl,De as validateCaller,ze as validateDeployFile,He as validateDeployPath,st as validateDeployToken,se as validateFileName,cn as validateFiles,Z as validatePassword,J as validateToken};
1
+ var je=Object.create;var U=Object.defineProperty;var Ke=Object.getOwnPropertyDescriptor;var Xe=Object.getOwnPropertyNames;var Ye=Object.getPrototypeOf,Je=Object.prototype.hasOwnProperty;var We=(t,i,e)=>i in t?U(t,i,{enumerable:!0,configurable:!0,writable:!0,value:e}):t[i]=e;var x=(t,i)=>()=>(t&&(i=t(t=0)),i);var fe=(t,i)=>()=>(i||t((i={exports:{}}).exports,i),i.exports),Qe=(t,i)=>{for(var e in i)U(t,e,{get:i[e],enumerable:!0})},Ze=(t,i,e,a)=>{if(i&&typeof i=="object"||typeof i=="function")for(let p of Xe(i))!Je.call(t,p)&&p!==e&&U(t,p,{get:()=>i[p],enumerable:!(a=Ke(i,p))||a.enumerable});return t};var B=(t,i,e)=>(e=t!=null?je(Ye(t)):{},Ze(i||!t||!t.__esModule?U(e,"default",{value:t,enumerable:!0}):e,t));var M=(t,i,e)=>We(t,typeof i!="symbol"?i+"":i,e);function me(t){return t!==null&&typeof t=="object"&&"name"in t&&t.name==="ShipError"&&"status"in t}function G(t){let i=t.lastIndexOf(".");if(i===-1||i===t.length-1)return!1;let e=t.slice(i+1).toLowerCase();return nt.has(e)}function ye(t){return rt.test(t)}function z(t){return t.replace(/\\/g,"/").split("/").filter(Boolean).some(e=>it.has(e))}function st(t){return t.startsWith(ge.PREFIX)?O.API_KEY:t.startsWith(Ae.PREFIX)?O.DEPLOY_TOKEN:O.OPAQUE}function De(t){let i=t.charCodeAt(0)===65279?t.slice(1):t,e;try{e=JSON.parse(i)}catch(a){throw f.config(`invalid JSON format in config: ${a.message}`,{filePath:P})}if(e===null||typeof e!="object"||Array.isArray(e))throw f.config(`${P} must contain a JSON object`,{filePath:P})}function Se(t,i,e){if(!t.startsWith(i.PREFIX))throw f.validation(`${e} must start with "${i.PREFIX}"`);if(t.length!==i.TOTAL_LENGTH)throw f.validation(`${e} must be ${i.TOTAL_LENGTH} characters total (${i.PREFIX} + ${i.HEX_LENGTH} hex chars)`);let a=t.slice(i.PREFIX.length);if(!new RegExp(`^[a-f0-9]{${i.HEX_LENGTH}}$`,"i").test(a))throw f.validation(`${e} must contain ${i.HEX_LENGTH} hexadecimal characters after "${i.PREFIX}" prefix`)}function ot(t){Se(t,ge,"API key")}function at(t){Se(t,Ae,"Deploy token")}function W(t){switch(st(t)){case O.API_KEY:ot(t);return;case O.DEPLOY_TOKEN:at(t);return;case O.OPAQUE:if(!t)throw f.validation("Token must be a non-empty string")}}function Te(t){if(!t||t.length>J.MAX_LENGTH||!J.PATTERN.test(t))throw f.validation(`Caller must be 1-${J.MAX_LENGTH} characters: letters, digits, dots, underscores, or hyphens`)}function vt(t){try{let i=new URL(t);if(!["http:","https:"].includes(i.protocol))throw f.validation("API URL must use http:// or https:// protocol");if(i.pathname!=="/"&&i.pathname!=="")throw f.validation("API URL must not contain a path");if(i.search||i.hash)throw f.validation("API URL must not contain query parameters or fragments")}catch(i){throw me(i)?i:f.validation("API URL must be a valid URL")}}function xt(t){return/^[a-z]+-[a-z]+-[a-z0-9]{7}(\.[a-z0-9.-]+)?$/i.test(t)}function be(t,i){return t.endsWith(`.${i}`)}function It(t,i){return!be(t,i)}function Pt(t,i){return be(t,i)?t.slice(0,-(i.length+1)):null}function Ft(t){return`https://${t}`}function Lt(t){return`https://${t}`}function Nt(t){return!t||t.length===0?null:JSON.stringify(t)}function Ot(t){if(!t)return[];try{let i=JSON.parse(t);return Array.isArray(i)?i:[]}catch{return[]}}function Z(t){if(t==null)return;if(typeof t!="string")throw f.validation("Password must be a string");let i=t.trim();if(i.length<H.MIN_LENGTH||i.length>H.MAX_LENGTH)throw f.validation(`Password must be between ${H.MIN_LENGTH} and ${H.MAX_LENGTH} characters`);return i}var St,Tt,bt,E,et,Y,tt,f,nt,rt,it,wt,he,ge,Ae,J,O,Rt,P,Ee,Q,T,L,we,H,b=x(()=>{"use strict";St={PENDING:"pending",SUCCESS:"success",FAILED:"failed",DELETING:"deleting"},Tt={PENDING:"pending",PARTIAL:"partial",SUCCESS:"success",PAUSED:"paused"},bt={FREE:"free",STANDARD:"standard",SPONSORED:"sponsored",ENTERPRISE:"enterprise",SUSPENDED:"suspended",TERMINATING:"terminating",TERMINATED:"terminated"},E={Validation:"validation_failed",NotFound:"not_found",Forbidden:"forbidden",RateLimit:"rate_limit_exceeded",Authentication:"authentication_failed",Business:"business_logic_error",Api:"internal_server_error",Network:"network_error",Cancelled:"operation_cancelled",File:"file_error",Config:"config_error"},et=new Set([E.Network,E.Cancelled,E.File,E.Config]),Y={client:new Set([E.Business,E.Config,E.File,E.Forbidden,E.NotFound,E.RateLimit,E.Validation]),network:new Set([E.Network]),auth:new Set([E.Authentication])},tt=new Set(Object.values(E).filter(t=>!et.has(t))),f=class t extends Error{constructor(e,a,p,c){super(a);M(this,"type");M(this,"status");M(this,"details");this.type=e,this.status=p,this.details=c,this.name="ShipError"}toResponse(){let e=this.details,a=this.type===E.Authentication&&e?.internal?void 0:this.details;return{error:this.type,message:this.message,status:this.status,details:a}}static async fromHttpResponse(e,a){let p,c,h;try{if(e.headers.get("content-type")?.includes("application/json")){let g=await e.json();if(g&&typeof g=="object"){let A=g;typeof A.message=="string"?p=A.message:typeof A.error=="string"&&(p=A.error),c=A.details,typeof A.error=="string"&&tt.has(A.error)&&(h=A.error)}}else{let g=await e.text();g&&(p=g)}}catch{}let m=e.headers.get("retry-after");if(m!==null){let y=m.trim(),g=/^\d+$/.test(y)?Number(y):Math.ceil((Date.parse(y)-Date.now())/1e3);if(Number.isFinite(g)&&g>=0){let A=c&&typeof c=="object"?c:{};A.retryAfter===void 0&&(c={...A,retryAfter:g})}}p=p||`${a||"Request"} failed with status ${e.status}`;let d=h??(e.status===401?E.Authentication:e.status===403?E.Forbidden:e.status===429?E.RateLimit:E.Api);return new t(d,p,e.status,c)}static fromFetchError(e,a){if(me(e))return e;let p=a||"Request";return e instanceof Error?e.name==="AbortError"?t.cancelled(`${p} was cancelled`):e instanceof TypeError&&e.message.includes("fetch")?t.network(`${p} failed: ${e.message}`,{cause:e}):new t(E.Api,`${p} failed: ${e.message}`):new t(E.Api,`${p} failed: Unknown error`)}static validation(e,a){return new t(E.Validation,e,400,a)}static notFound(e,a){let p=a?`${e} ${a} not found`:`${e} not found`;return new t(E.NotFound,p,404)}static forbidden(e,a){return new t(E.Forbidden,e,403,a)}static rateLimit(e="Too many requests",a){return new t(E.RateLimit,e,429,a)}static authentication(e="Authentication required",a){return new t(E.Authentication,e,401,a)}static business(e,a=400,p){return new t(E.Business,e,a,p)}static network(e,a){return new t(E.Network,e,void 0,a)}static cancelled(e,a){return new t(E.Cancelled,e,void 0,a)}static file(e,a){return new t(E.File,e,void 0,a)}static config(e,a){return new t(E.Config,e,void 0,a)}static api(e,a=500,p){return new t(E.Api,e,a,p)}isClientError(){return Y.client.has(this.type)?!0:this.status!==void 0&&this.status>=400&&this.status<500}isNetworkError(){return Y.network.has(this.type)}isAuthError(){return Y.auth.has(this.type)}isType(e){return this.type===e}};nt=new Set(["exe","msi","dll","scr","bat","cmd","com","pif","app","deb","rpm","pkg","mpkg","dmg","iso","img","cab","cpl","chm","ps1","vbs","vbe","ws","wsf","wsc","wsh","reg","jar","jnlp","apk","crx","lnk","inf","hta"]);rt=/[\x00-\x1f\x7f#?%\\<>"]/;it=new Set(["node_modules","package.json"]);wt="/auth",he={SESSION:"session",API_KEY:"apiKey",TOKEN:"token",AGENT:"agent",OAUTH:"oauth",WEBHOOK:"webhook",SYSTEM:"system"},ge={PREFIX:"ship-",HEX_LENGTH:64,TOTAL_LENGTH:69,HINT_LENGTH:4},Ae={PREFIX:"deploy-",HEX_LENGTH:64,TOTAL_LENGTH:71},J={HEADER:"X-Caller",MAX_LENGTH:128,PATTERN:/^[a-zA-Z0-9._-]+$/},O={API_KEY:he.API_KEY,DEPLOY_TOKEN:he.TOKEN,OPAQUE:"opaque"};Rt={ACCOUNT_READ:"account:read",DEPLOYMENTS_READ:"deployments:read",DEPLOYMENTS_WRITE:"deployments:write",DOMAINS_READ:"domains:read",DOMAINS_WRITE:"domains:write"},P="ship.json",Ee={rewrites:[{source:"/(.*)",destination:"/index.html"}]};Q="https://api.shipstatic.com",T={PENDING:"pending",PROCESSING_ERROR:"processing_error",EXCLUDED:"excluded",VALIDATION_FAILED:"validation_failed",READY:"ready"};L={MIN_LENGTH:3,MAX_LENGTH:25,MAX_COUNT:10,SEPARATORS:"._-"},we=/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/;H={MIN_LENGTH:6,MAX_LENGTH:128}});var Ie=fe((ve,xe)=>{"use strict";(function(t){if(typeof ve=="object")xe.exports=t();else if(typeof define=="function"&&define.amd)define(t);else{var i;try{i=window}catch{i=self}i.SparkMD5=t()}})(function(t){"use strict";var i=function(u,l){return u+l&4294967295},e=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function a(u,l,r,n,o,s){return l=i(i(l,u),i(n,s)),i(l<<o|l>>>32-o,r)}function p(u,l){var r=u[0],n=u[1],o=u[2],s=u[3];r+=(n&o|~n&s)+l[0]-680876936|0,r=(r<<7|r>>>25)+n|0,s+=(r&n|~r&o)+l[1]-389564586|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&n)+l[2]+606105819|0,o=(o<<17|o>>>15)+s|0,n+=(o&s|~o&r)+l[3]-1044525330|0,n=(n<<22|n>>>10)+o|0,r+=(n&o|~n&s)+l[4]-176418897|0,r=(r<<7|r>>>25)+n|0,s+=(r&n|~r&o)+l[5]+1200080426|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&n)+l[6]-1473231341|0,o=(o<<17|o>>>15)+s|0,n+=(o&s|~o&r)+l[7]-45705983|0,n=(n<<22|n>>>10)+o|0,r+=(n&o|~n&s)+l[8]+1770035416|0,r=(r<<7|r>>>25)+n|0,s+=(r&n|~r&o)+l[9]-1958414417|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&n)+l[10]-42063|0,o=(o<<17|o>>>15)+s|0,n+=(o&s|~o&r)+l[11]-1990404162|0,n=(n<<22|n>>>10)+o|0,r+=(n&o|~n&s)+l[12]+1804603682|0,r=(r<<7|r>>>25)+n|0,s+=(r&n|~r&o)+l[13]-40341101|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&n)+l[14]-1502002290|0,o=(o<<17|o>>>15)+s|0,n+=(o&s|~o&r)+l[15]+1236535329|0,n=(n<<22|n>>>10)+o|0,r+=(n&s|o&~s)+l[1]-165796510|0,r=(r<<5|r>>>27)+n|0,s+=(r&o|n&~o)+l[6]-1069501632|0,s=(s<<9|s>>>23)+r|0,o+=(s&n|r&~n)+l[11]+643717713|0,o=(o<<14|o>>>18)+s|0,n+=(o&r|s&~r)+l[0]-373897302|0,n=(n<<20|n>>>12)+o|0,r+=(n&s|o&~s)+l[5]-701558691|0,r=(r<<5|r>>>27)+n|0,s+=(r&o|n&~o)+l[10]+38016083|0,s=(s<<9|s>>>23)+r|0,o+=(s&n|r&~n)+l[15]-660478335|0,o=(o<<14|o>>>18)+s|0,n+=(o&r|s&~r)+l[4]-405537848|0,n=(n<<20|n>>>12)+o|0,r+=(n&s|o&~s)+l[9]+568446438|0,r=(r<<5|r>>>27)+n|0,s+=(r&o|n&~o)+l[14]-1019803690|0,s=(s<<9|s>>>23)+r|0,o+=(s&n|r&~n)+l[3]-187363961|0,o=(o<<14|o>>>18)+s|0,n+=(o&r|s&~r)+l[8]+1163531501|0,n=(n<<20|n>>>12)+o|0,r+=(n&s|o&~s)+l[13]-1444681467|0,r=(r<<5|r>>>27)+n|0,s+=(r&o|n&~o)+l[2]-51403784|0,s=(s<<9|s>>>23)+r|0,o+=(s&n|r&~n)+l[7]+1735328473|0,o=(o<<14|o>>>18)+s|0,n+=(o&r|s&~r)+l[12]-1926607734|0,n=(n<<20|n>>>12)+o|0,r+=(n^o^s)+l[5]-378558|0,r=(r<<4|r>>>28)+n|0,s+=(r^n^o)+l[8]-2022574463|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^n)+l[11]+1839030562|0,o=(o<<16|o>>>16)+s|0,n+=(o^s^r)+l[14]-35309556|0,n=(n<<23|n>>>9)+o|0,r+=(n^o^s)+l[1]-1530992060|0,r=(r<<4|r>>>28)+n|0,s+=(r^n^o)+l[4]+1272893353|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^n)+l[7]-155497632|0,o=(o<<16|o>>>16)+s|0,n+=(o^s^r)+l[10]-1094730640|0,n=(n<<23|n>>>9)+o|0,r+=(n^o^s)+l[13]+681279174|0,r=(r<<4|r>>>28)+n|0,s+=(r^n^o)+l[0]-358537222|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^n)+l[3]-722521979|0,o=(o<<16|o>>>16)+s|0,n+=(o^s^r)+l[6]+76029189|0,n=(n<<23|n>>>9)+o|0,r+=(n^o^s)+l[9]-640364487|0,r=(r<<4|r>>>28)+n|0,s+=(r^n^o)+l[12]-421815835|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^n)+l[15]+530742520|0,o=(o<<16|o>>>16)+s|0,n+=(o^s^r)+l[2]-995338651|0,n=(n<<23|n>>>9)+o|0,r+=(o^(n|~s))+l[0]-198630844|0,r=(r<<6|r>>>26)+n|0,s+=(n^(r|~o))+l[7]+1126891415|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~n))+l[14]-1416354905|0,o=(o<<15|o>>>17)+s|0,n+=(s^(o|~r))+l[5]-57434055|0,n=(n<<21|n>>>11)+o|0,r+=(o^(n|~s))+l[12]+1700485571|0,r=(r<<6|r>>>26)+n|0,s+=(n^(r|~o))+l[3]-1894986606|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~n))+l[10]-1051523|0,o=(o<<15|o>>>17)+s|0,n+=(s^(o|~r))+l[1]-2054922799|0,n=(n<<21|n>>>11)+o|0,r+=(o^(n|~s))+l[8]+1873313359|0,r=(r<<6|r>>>26)+n|0,s+=(n^(r|~o))+l[15]-30611744|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~n))+l[6]-1560198380|0,o=(o<<15|o>>>17)+s|0,n+=(s^(o|~r))+l[13]+1309151649|0,n=(n<<21|n>>>11)+o|0,r+=(o^(n|~s))+l[4]-145523070|0,r=(r<<6|r>>>26)+n|0,s+=(n^(r|~o))+l[11]-1120210379|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~n))+l[2]+718787259|0,o=(o<<15|o>>>17)+s|0,n+=(s^(o|~r))+l[9]-343485551|0,n=(n<<21|n>>>11)+o|0,u[0]=r+u[0]|0,u[1]=n+u[1]|0,u[2]=o+u[2]|0,u[3]=s+u[3]|0}function c(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u.charCodeAt(r)+(u.charCodeAt(r+1)<<8)+(u.charCodeAt(r+2)<<16)+(u.charCodeAt(r+3)<<24);return l}function h(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u[r]+(u[r+1]<<8)+(u[r+2]<<16)+(u[r+3]<<24);return l}function m(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],n,o,s,R,I,F;for(n=64;n<=l;n+=64)p(r,c(u.substring(n-64,n)));for(u=u.substring(n-64),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],n=0;n<o;n+=1)s[n>>2]|=u.charCodeAt(n)<<(n%4<<3);if(s[n>>2]|=128<<(n%4<<3),n>55)for(p(r,s),n=0;n<16;n+=1)s[n]=0;return R=l*8,R=R.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(R[2],16),F=parseInt(R[1],16)||0,s[14]=I,s[15]=F,p(r,s),r}function d(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],n,o,s,R,I,F;for(n=64;n<=l;n+=64)p(r,h(u.subarray(n-64,n)));for(u=n-64<l?u.subarray(n-64):new Uint8Array(0),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],n=0;n<o;n+=1)s[n>>2]|=u[n]<<(n%4<<3);if(s[n>>2]|=128<<(n%4<<3),n>55)for(p(r,s),n=0;n<16;n+=1)s[n]=0;return R=l*8,R=R.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(R[2],16),F=parseInt(R[1],16)||0,s[14]=I,s[15]=F,p(r,s),r}function y(u){var l="",r;for(r=0;r<4;r+=1)l+=e[u>>r*8+4&15]+e[u>>r*8&15];return l}function g(u){var l;for(l=0;l<u.length;l+=1)u[l]=y(u[l]);return u.join("")}g(m("hello"))!=="5d41402abc4b2a76b9719d911017c592"&&(i=function(u,l){var r=(u&65535)+(l&65535),n=(u>>16)+(l>>16)+(r>>16);return n<<16|r&65535}),typeof ArrayBuffer<"u"&&!ArrayBuffer.prototype.slice&&(function(){function u(l,r){return l=l|0||0,l<0?Math.max(l+r,0):Math.min(l,r)}ArrayBuffer.prototype.slice=function(l,r){var n=this.byteLength,o=u(l,n),s=n,R,I,F,de;return r!==t&&(s=u(r,n)),o>s?new ArrayBuffer(0):(R=s-o,I=new ArrayBuffer(R),F=new Uint8Array(I),de=new Uint8Array(this,o,R),F.set(de),I)}})();function A(u){return/[\u0080-\uFFFF]/.test(u)&&(u=unescape(encodeURIComponent(u))),u}function w(u,l){var r=u.length,n=new ArrayBuffer(r),o=new Uint8Array(n),s;for(s=0;s<r;s+=1)o[s]=u.charCodeAt(s);return l?o:n}function v(u){return String.fromCharCode.apply(null,new Uint8Array(u))}function C(u,l,r){var n=new Uint8Array(u.byteLength+l.byteLength);return n.set(new Uint8Array(u)),n.set(new Uint8Array(l),u.byteLength),r?n:n.buffer}function N(u){var l=[],r=u.length,n;for(n=0;n<r-1;n+=2)l.push(parseInt(u.substr(n,2),16));return String.fromCharCode.apply(String,l)}function D(){this.reset()}return D.prototype.append=function(u){return this.appendBinary(A(u)),this},D.prototype.appendBinary=function(u){this._buff+=u,this._length+=u.length;var l=this._buff.length,r;for(r=64;r<=l;r+=64)p(this._hash,c(this._buff.substring(r-64,r)));return this._buff=this._buff.substring(r-64),this},D.prototype.end=function(u){var l=this._buff,r=l.length,n,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],s;for(n=0;n<r;n+=1)o[n>>2]|=l.charCodeAt(n)<<(n%4<<3);return this._finish(o,r),s=g(this._hash),u&&(s=N(s)),this.reset(),s},D.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},D.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},D.prototype.setState=function(u){return this._buff=u.buff,this._length=u.length,this._hash=u.hash,this},D.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},D.prototype._finish=function(u,l){var r=l,n,o,s;if(u[r>>2]|=128<<(r%4<<3),r>55)for(p(this._hash,u),r=0;r<16;r+=1)u[r]=0;n=this._length*8,n=n.toString(16).match(/(.*?)(.{0,8})$/),o=parseInt(n[2],16),s=parseInt(n[1],16)||0,u[14]=o,u[15]=s,p(this._hash,u)},D.hash=function(u,l){return D.hashBinary(A(u),l)},D.hashBinary=function(u,l){var r=m(u),n=g(r);return l?N(n):n},D.ArrayBuffer=function(){this.reset()},D.ArrayBuffer.prototype.append=function(u){var l=C(this._buff.buffer,u,!0),r=l.length,n;for(this._length+=u.byteLength,n=64;n<=r;n+=64)p(this._hash,h(l.subarray(n-64,n)));return this._buff=n-64<r?new Uint8Array(l.buffer.slice(n-64)):new Uint8Array(0),this},D.ArrayBuffer.prototype.end=function(u){var l=this._buff,r=l.length,n=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o,s;for(o=0;o<r;o+=1)n[o>>2]|=l[o]<<(o%4<<3);return this._finish(n,r),s=g(this._hash),u&&(s=N(s)),this.reset(),s},D.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},D.ArrayBuffer.prototype.getState=function(){var u=D.prototype.getState.call(this);return u.buff=v(u.buff),u},D.ArrayBuffer.prototype.setState=function(u){return u.buff=w(u.buff,!0),D.prototype.setState.call(this,u)},D.ArrayBuffer.prototype.destroy=D.prototype.destroy,D.ArrayBuffer.prototype._finish=D.prototype._finish,D.ArrayBuffer.hash=function(u,l){var r=d(new Uint8Array(u)),n=g(r);return l?N(n):n},D})});var q=fe((Vt,Pe)=>{"use strict";Pe.exports={}});async function ut(t){let i=(await Promise.resolve().then(()=>B(Ie(),1))).default,e=new i.ArrayBuffer,a=2097152;for(let p=0;p<t.size;p+=a){let c=Math.min(p+a,t.size);e.append(await t.slice(p,c).arrayBuffer())}return{md5:e.end()}}async function ct(t){let{createHash:i}=await Promise.resolve().then(()=>B(q(),1)),e=i("md5");return e.update(t),{md5:e.digest("hex")}}async function dt(t){let{createHash:i}=await Promise.resolve().then(()=>B(q(),1)),{createReadStream:e}=await Promise.resolve().then(()=>B(q(),1));return new Promise((a,p)=>{let c=i("md5"),h=e(t);h.on("error",m=>p(f.business(`Failed to read file for MD5: ${m.message}`))),h.on("data",m=>c.update(m)),h.on("end",()=>a({md5:c.digest("hex")}))})}async function $(t){if(t instanceof Blob)return ut(t);if(typeof Buffer<"u"&&Buffer.isBuffer(t))return ct(t);if(typeof t=="string")return dt(t);throw f.business("Invalid input for MD5 calculation")}var j=x(()=>{"use strict";b()});function X(t){return t.replace(/\\/g,"/").replace(/\/+/g,"/").replace(/^\/+/,"")}var $e=x(()=>{"use strict"});function Ue(t,i={}){if(i.flatten===!1)return t.map(a=>({path:X(a),name:te(a)}));let e=ht(t);return t.map(a=>{let p=X(a);if(e){let c=e.endsWith("/")?e:`${e}/`;p.startsWith(c)&&(p=p.substring(c.length))}return p||(p=te(a)),{path:p,name:te(a)}})}function ht(t){if(!t.length)return"";let e=t.map(c=>X(c)).map(c=>c.split("/")),a=[],p=Math.min(...e.map(c=>c.length));for(let c=0;c<p-1;c++){let h=e[0][c];if(e.every(m=>m[c]===h))a.push(h);else break}return a.join("/")}function te(t){return t.split(/[/\\]/).pop()||t}var ne=x(()=>{"use strict";$e()});function cn(t){re=t}function mt(){return typeof process<"u"&&process.versions&&process.versions.node?"node":typeof window<"u"||typeof self<"u"?"browser":"unknown"}function Be(){return re||mt()}var re,ie=x(()=>{"use strict";re=null});function se(t,i=1){if(t===0)return"0 Bytes";let e=1024,a=["Bytes","KB","MB","GB"],p=Math.floor(Math.log(t)/Math.log(e));return`${parseFloat((t/e**p).toFixed(i))} ${a[p]}`}function oe(t){if(ye(t))return{valid:!1,reason:"File name contains unsafe characters"};if(t.startsWith(" ")||t.endsWith(" "))return{valid:!1,reason:"File name cannot start/end with spaces"};if(t.endsWith("."))return{valid:!1,reason:"File name cannot end with dots"};let i=/^(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|$)/i,e=t.split("/").pop()||t;return i.test(e)?{valid:!1,reason:"File name uses a reserved system name"}:t.includes("..")?{valid:!1,reason:"File name contains path traversal pattern"}:{valid:!0}}function hn(t,i){let e=[],a=[],p=[];if(t.length===0){let d={file:"(no files)",message:"At least one file must be provided"};return e.push(d),{files:[],validFiles:[],errors:e,warnings:[],canDeploy:!1}}for(let d of t)if(z(d.name))return e.push({file:d.name,message:"Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder"}),{files:t.map(y=>({...y,status:T.VALIDATION_FAILED,statusMessage:"Unbuilt project detected"})),validFiles:[],errors:e,warnings:[],canDeploy:!1};if(t.length>i.maxFilesCount){let d={file:`(${t.length} files)`,message:`File count (${t.length}) exceeds limit of ${i.maxFilesCount}`};return e.push(d),{files:t.map(y=>({...y,status:T.VALIDATION_FAILED,statusMessage:d.message})),validFiles:[],errors:e,warnings:[],canDeploy:!1}}let c=0;for(let d of t){let y=T.READY,g="Ready for upload",A=d.name?oe(d.name):{valid:!1,reason:"File name cannot be empty"};if(d.status===T.PROCESSING_ERROR)y=T.VALIDATION_FAILED,g=d.statusMessage||"File failed during processing",e.push({file:d.name,message:g});else if(d.size===0){y=T.EXCLUDED,g="File is empty (0 bytes) and cannot be deployed due to storage limitations",a.push({file:d.name,message:g}),p.push({...d,status:y,statusMessage:g});continue}else d.size<0?(y=T.VALIDATION_FAILED,g="File size must be positive",e.push({file:d.name,message:g})):!d.name||d.name.trim().length===0?(y=T.VALIDATION_FAILED,g="File name cannot be empty",e.push({file:d.name||"(empty)",message:g})):d.name.includes("\0")?(y=T.VALIDATION_FAILED,g="File name contains invalid characters (null byte)",e.push({file:d.name,message:g})):A.valid?G(d.name)?(y=T.VALIDATION_FAILED,g=`File extension not allowed: "${d.name}"`,e.push({file:d.name,message:g})):d.size>i.maxFileSize?(y=T.VALIDATION_FAILED,g=`File size (${se(d.size)}) exceeds limit of ${se(i.maxFileSize)}`,e.push({file:d.name,message:g})):(c+=d.size,c>i.maxTotalSize&&(y=T.VALIDATION_FAILED,g=`Total size would exceed limit of ${se(i.maxTotalSize)}`,e.push({file:d.name,message:g}))):(y=T.VALIDATION_FAILED,g=A.reason||"Invalid file name",e.push({file:d.name,message:g}));p.push({...d,status:y,statusMessage:g})}e.length>0&&(p=p.map(d=>d.status===T.EXCLUDED?d:{...d,status:T.VALIDATION_FAILED,statusMessage:d.status===T.VALIDATION_FAILED?d.statusMessage:"Deployment failed due to validation errors in bundle"}));let h=e.length===0?p.filter(d=>d.status===T.READY):[],m=e.length===0;return{files:p,validFiles:h,errors:e,warnings:a,canDeploy:m}}function yt(t){return t.filter(i=>i.status===T.READY)}function mn(t){return yt(t).length>0}var ae=x(()=>{"use strict";b()});function Me(t){return At.test(t)}var gt,At,He=x(()=>{"use strict";gt=["^npm-debug\\.log$","^\\..*\\.swp$","^\\.DS_Store$","^\\.AppleDouble$","^\\.LSOverride$","^Icon\\r$","^\\._.*","^\\.Spotlight-V100(?:$|\\/)","\\.Trashes","^__MACOSX$","~$","^Thumbs\\.db$","^ehthumbs\\.db$","^[Dd]esktop\\.ini$","@eaDir$"],At=new RegExp(gt.join("|"))});function Ge(t,i){if(!t||t.length===0)return[];if(!i?.allowUnbuilt&&t.find(a=>a&&z(a)))throw f.business("Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder");return t.filter(e=>{if(!e)return!1;let a=e.replace(/\\/g,"/").split("/").filter(Boolean);if(a.length===0)return!0;let p=a[a.length-1];if(Me(p))return!1;for(let h of a)if(h!==".well-known"&&(h.startsWith(".")||h.length>255))return!1;let c=a.slice(0,-1);for(let h of c)if(Et.some(m=>h.toLowerCase()===m.toLowerCase()))return!1;return!0})}var Et,le=x(()=>{"use strict";b();He();Et=["__MACOSX",".Trashes",".fseventsd",".Spotlight-V100"]});function ze(t,i){if(t.includes("\0")||t.includes("/../")||t.startsWith("../")||t.endsWith("/.."))throw f.business(`Security error: Unsafe file path "${t}" for file: ${i}`)}function ke(t,i){let e=oe(t);if(!e.valid)throw f.business(e.reason||"Invalid file name");if(G(t))throw f.business(`File extension not allowed: "${i}"`)}var pe=x(()=>{"use strict";b();ae()});var qe={};Qe(qe,{processFilesForBrowser:()=>Ve});async function Ve(t,i={},e){if(Be()!=="browser")throw f.business("processFilesForBrowser can only be called in a browser environment.");let a=t.map(A=>A.webkitRelativePath||A.name),p=i.build||i.prerender,c=Ue(a,{flatten:i.pathDetect!==!1}),h=c.map(A=>A.path),m=new Set(Ge(h,{allowUnbuilt:p})),d=[];for(let A=0;A<t.length;A++)m.has(h[A])&&d.push({file:t[A],deployPath:c[A].path});if(d.length===0)return[];if(p){let A=[];for(let w=0;w<d.length;w++){let{file:v,deployPath:C}=d[w];if(v.size===0)continue;let{md5:N}=await $(v);A.push({path:C,content:v,size:v.size,md5:N})}return A}if(!e)throw f.config("Platform limits not provided. processFilesForBrowser requires the limits argument for deploy-mode validation \u2014 pass `ship.getLimits()` result.");let y=[],g=0;for(let A=0;A<d.length;A++){let{file:w,deployPath:v}=d[A];if(ze(v,w.name),w.size===0)continue;if(ke(v,w.name),w.size>e.maxFileSize)throw f.business(`File ${w.name} is too large. Maximum allowed size is ${e.maxFileSize/(1024*1024)}MB.`);if(g+=w.size,g>e.maxTotalSize)throw f.business(`Total deploy size is too large. Maximum allowed is ${e.maxTotalSize/(1024*1024)}MB.`);let{md5:C}=await $(w);y.push({path:v,content:w,size:w.size,md5:C})}if(y.length>e.maxFilesCount)throw f.business(`Too many files to deploy. Maximum allowed is ${e.maxFilesCount} files.`);return y}var ue=x(()=>{"use strict";b();ne();ie();le();j();pe()});b();b();b();var k=class{constructor(){this.handlers=new Map}on(i,e){this.handlers.has(i)||this.handlers.set(i,new Set),this.handlers.get(i)?.add(e)}off(i,e){let a=this.handlers.get(i);a&&(a.delete(e),a.size===0&&this.handlers.delete(i))}emit(i,...e){let a=this.handlers.get(i);if(!a)return;let p=Array.from(a);for(let c of p)try{c(...e)}catch(h){a.delete(c),i!=="error"&&setTimeout(()=>{let m=h instanceof Error?h:new Error(String(h));this.emit("error",m,String(i))},0)}}};b();b();function _(t){if(t==null)return;if(t.length===0)return t;if(t.length>L.MAX_COUNT)throw f.validation(`Maximum ${L.MAX_COUNT} labels allowed`);let i=t.map((a,p)=>{if(typeof a!="string")throw f.validation(`Label at index ${p} must be a string`);let c=a.trim().toLowerCase();if(c.length<L.MIN_LENGTH)throw f.validation(`Labels must be at least ${L.MIN_LENGTH} characters long`);if(c.length>L.MAX_LENGTH)throw f.validation(`Labels must be no more than ${L.MAX_LENGTH} characters long`);if(!we.test(c))throw f.validation(`Labels must start and end with alphanumeric characters, with optional separators (${L.SEPARATORS}) between segments`);return c}),e=[...new Set(i)];if(e.length!==i.length)throw f.validation("Duplicate labels are not allowed");return e}async function Re(t){let i=t.find(p=>p.path===P||p.path===`/${P}`);if(!i)return;let e=i.content,a=typeof e.text=="function"?await e.text():i.content.toString("utf8");De(a)}var S={DEPLOYMENTS:"/deployments",DOMAINS:"/domains",TOKENS:"/tokens",ACCOUNT:"/account",LIMITS:"/limits",PING:"/ping",SPA_CHECK:"/spa-check"},lt=3e4,pt="sdk";function ee(t){let i=new URLSearchParams;t?.limit!==void 0&&i.set("limit",String(t.limit)),t?.cursor!==void 0&&i.set("cursor",t.cursor);let e=i.toString();return e?`?${e}`:""}var V=class extends k{constructor(e){super();this.globalHeaders={};this.apiUrl=e.apiUrl||Q,this.getAuthHeadersCallback=e.getAuthHeaders,this.session=e.session??!1,this.caller=e.caller,this.timeout=e.timeout??lt,this.fetch=e.fetch??globalThis.fetch.bind(globalThis),this.createDeployBody=e.createDeployBody,this.deployEndpoint=e.deployEndpoint||S.DEPLOYMENTS}setGlobalHeaders(e){this.globalHeaders=e}async executeRequest(e,a,p){let c=()=>{};try{let h=await this.mergeHeaders(a.headers),m=this.createTimeoutSignal(a.signal);c=m.cleanup;let d={...a,headers:h,credentials:this.session&&!h.Authorization?"include":void 0,signal:m.signal};this.emit("request",e,d);let y=await this.fetch(e,d);if(c(),!y.ok)throw await f.fromHttpResponse(y,p);return this.emit("response",this.safeClone(y),e),{data:await this.parseResponse(this.safeClone(y)),status:y.status}}catch(h){c();let m=f.fromFetchError(h,p);throw this.emit("error",m,e),m}}async request(e,a,p){let{data:c}=await this.executeRequest(e,a,p);return c}async requestWithStatus(e,a,p){return this.executeRequest(e,a,p)}async mergeHeaders(e={}){return{...this.globalHeaders,...this.caller?{"X-Caller":this.caller}:{},...await this.getAuthHeadersCallback(),...e}}createTimeoutSignal(e){let a=new AbortController,p=setTimeout(()=>a.abort(),this.timeout);if(e){let c=()=>a.abort();e.addEventListener("abort",c),e.aborted&&a.abort()}return{signal:a.signal,cleanup:()=>clearTimeout(p)}}safeClone(e){try{return e.clone()}catch{return e}}async parseResponse(e){if(!(e.headers.get("Content-Length")==="0"||e.status===204))return e.json()}async deploy(e,a={}){if(!e.length)throw f.business("No files to deploy");for(let d of e)if(!d.md5)throw f.file(`MD5 checksum missing for file: ${d.path}`,{filePath:d.path});Z(a.password);let p=_(a.labels);await Re(e);let c=a.build||a.prerender||a.spa?{build:a.build,prerender:a.prerender,spa:a.spa}:void 0,{body:h,headers:m}=await this.createDeployBody(e,{labels:p,via:a.via??pt,password:a.password,flags:c,captcha:a.captcha});return this.request(`${this.apiUrl}${this.deployEndpoint}`,{method:"POST",body:h,headers:m,signal:a.signal||null},"Deploy")}async listDeployments(e){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}${ee(e)}`,{method:"GET"},"List deployments")}async getDeployment(e){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"GET"},"Get deployment")}async updateDeploymentLabels(e,a){let p=_(a);return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({labels:p})},"Update deployment labels")}async removeDeployment(e){await this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove deployment")}async setDomain(e,a,p){let c=_(p),h={};a&&(h.deployment=a),c!==void 0&&(h.labels=c);let{data:m,status:d}=await this.requestWithStatus(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(h)},"Set domain");return{...m,isCreate:d===201}}async listDomains(e){return this.request(`${this.apiUrl}${S.DOMAINS}${ee(e)}`,{method:"GET"},"List domains")}async getDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"GET"},"Get domain")}async removeDomain(e){await this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove domain")}async verifyDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/verify`,{method:"POST"},"Verify domain")}async getDomainDns(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/dns`,{method:"GET"},"Get domain DNS")}async getDomainRecords(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/records`,{method:"GET"},"Get domain records")}async getDomainShare(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/share`,{method:"GET"},"Get domain share")}async validateDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/validate`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({domain:e})},"Validate domain")}async createToken(e,a){let p=_(a),c={};return e!==void 0&&(c.ttl=e),p!==void 0&&(c.labels=p),this.request(`${this.apiUrl}${S.TOKENS}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)},"Create token")}async listTokens(e){return this.request(`${this.apiUrl}${S.TOKENS}${ee(e)}`,{method:"GET"},"List tokens")}async removeToken(e){await this.request(`${this.apiUrl}${S.TOKENS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove token")}async getAccount(){return this.request(`${this.apiUrl}${S.ACCOUNT}`,{method:"GET"},"Get account")}async getLimits(){return this.request(`${this.apiUrl}${S.LIMITS}`,{method:"GET"},"Get limits")}async ping(){return(await this.request(`${this.apiUrl}${S.PING}`,{method:"GET"},"Ping"))?.success||!1}async checkSPA(e,a={}){let p=e.find(d=>d.path==="index.html"||d.path==="/index.html");if(!p||p.size>100*1024)return!1;let c;if(typeof Buffer<"u"&&Buffer.isBuffer(p.content))c=p.content.toString("utf-8");else if(typeof Blob<"u"&&p.content instanceof Blob)c=await p.content.text();else if(typeof File<"u"&&p.content instanceof File)c=await p.content.text();else return!1;let h={files:e.map(d=>d.path),index:c};return(await this.request(`${this.apiUrl}${S.SPA_CHECK}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(h)},"SPA check")).isSPA}};b();b();j();async function ft(){let t=JSON.stringify(Ee,null,2),i;typeof Buffer<"u"?i=Buffer.from(t,"utf-8"):i=new Blob([t],{type:"application/json"});let{md5:e}=await $(i);return{path:P,content:i,size:t.length,md5:e}}async function Fe(t,i,e){if(e.spaDetect===!1||e.spa||e.build||e.prerender||t.some(a=>a.path===P))return t;try{if(await i.checkSPA(t,e)){let p=await ft();return[...t,p]}}catch{}return t}function Le(t){let{getApi:i,ensureInit:e,processInput:a}=t;return{upload:async(p,c={})=>{if(await e(),!a)throw f.config("processInput function is not provided.");let h=i(),m=await a(p,c);return m=await Fe(m,h,c),h.deploy(m,c)},list:async p=>(await e(),i().listDeployments(p)),get:async p=>(await e(),i().getDeployment(p)),set:async(p,c)=>(await e(),i().updateDeploymentLabels(p,c.labels)),remove:async p=>{await e(),await i().removeDeployment(p)}}}function Ne(t){let{getApi:i,ensureInit:e}=t;return{set:async(a,p={})=>(await e(),i().setDomain(a,p.deployment,p.labels)),list:async a=>(await e(),i().listDomains(a)),get:async a=>(await e(),i().getDomain(a)),remove:async a=>{await e(),await i().removeDomain(a)},verify:async a=>(await e(),i().verifyDomain(a)),validate:async a=>(await e(),i().validateDomain(a)),dns:async a=>(await e(),i().getDomainDns(a)),records:async a=>(await e(),i().getDomainRecords(a)),share:async a=>(await e(),i().getDomainShare(a))}}function Oe(t){let{getApi:i,ensureInit:e}=t;return{get:async()=>(await e(),i().getAccount())}}function Ce(t){let{getApi:i,ensureInit:e}=t;return{create:async(a={})=>(await e(),i().createToken(a.ttl,a.labels)),list:async a=>(await e(),i().listTokens(a)),remove:async a=>{await e(),await i().removeToken(a)}}}var K=class{constructor(i={}){this.initPromise=null;this.platformLimits=null;this.credential=null;if(i={...i,apiUrl:i.apiUrl||void 0,token:i.token||void 0,caller:i.caller||void 0},this.clientOptions=i,i.caller!==void 0&&Te(i.caller),i.token&&i.session)throw f.config("Provide either `token` or `session`, not both.");typeof i.token=="string"?(W(i.token),this.credential=i.token):i.token&&(this.credential=i.token),this.http=new V({...i,getAuthHeaders:()=>this.getAuthHeaders(),createDeployBody:this.getDeployBodyCreator()});let e={getApi:()=>this.http,ensureInit:()=>this.ensureInitialized()};this.deployments=Le({...e,processInput:(a,p)=>this.processInput(a,p)}),this.domains=Ne(e),this.account=Oe(e),this.tokens=Ce(e)}async ensureInitialized(){return this.initPromise||(this.initPromise=this.fetchPlatformLimits()),this.initPromise}async fetchPlatformLimits(){try{this.platformLimits=await this.http.getLimits()}catch(i){throw this.initPromise=null,i}}async ping(){return await this.ensureInitialized(),this.http.ping()}async deploy(i,e){return this.deployments.upload(i,e)}async whoami(){return this.account.get()}async getLimits(){return this.platformLimits?this.platformLimits:(await this.ensureInitialized(),this.platformLimits)}on(i,e){this.http.on(i,e)}off(i,e){this.http.off(i,e)}setHeaders(i){this.http.setGlobalHeaders(i)}clearHeaders(){this.http.setGlobalHeaders({})}setToken(i){if(this.clientOptions.session)throw f.config("Provide either `token` or `session`, not both.");if(typeof i=="string"){if(!i)throw f.business("Invalid token provided. Token must be a non-empty string.");W(i),this.credential=i;return}if(typeof i!="function")throw f.business("Invalid token provided. Token must be a non-empty string or a provider function.");this.credential=i}async getAuthHeaders(){if(this.credential===null)return{};let i=typeof this.credential=="function"?await this.credential():this.credential;if(!i)throw f.authentication("Token provider returned no token.");if(typeof i!="string")throw f.authentication("Token provider returned a non-string value.");return{Authorization:`Bearer ${i}`}}};b();async function _e(t,i={}){let{labels:e,via:a,password:p,flags:c,captcha:h}=i,m=new FormData,d=[];for(let y of t){if(!(y.content instanceof File||y.content instanceof Blob))throw f.file(`Unsupported file.content type for browser: ${y.path}`,{filePath:y.path});if(!y.md5)throw f.file(`File missing md5 checksum: ${y.path}`,{filePath:y.path});let g=new File([y.content],y.path,{type:"application/octet-stream"});m.append("files[]",g),d.push(y.md5)}return m.append("checksums",JSON.stringify(d)),e&&e.length>0&&m.append("labels",JSON.stringify(e)),a&&m.append("via",a),p&&m.append("password",p),c?.build&&m.append("build","true"),c?.prerender&&m.append("prerender","true"),c?.spa&&m.append("spa","true"),h&&m.append("captcha",h),{body:m,headers:{}}}b();b();ne();ie();ae();le();j();pe();function wn(t,i,e,a=!0){let p=t===1?i:e;return a?`${t} ${p}`:p}ue();var ce=class extends K{async deploy(i,e){return super.deploy(i,e)}async processInput(i,e){if(!Array.isArray(i)||!i.every(p=>p instanceof File))throw f.business("Invalid input type for browser environment. Expected File[].");if(i.length===0)throw f.business("No files to deploy.");let{processFilesForBrowser:a}=await Promise.resolve().then(()=>(ue(),qe));return a(i,e,this.platformLimits??void 0)}getDeployBodyCreator(){return _e}},Xn=ce;export{ge as API_KEY,wt as AUTH_BASE_PATH,bt as AccountPlan,V as ApiHttp,he as AuthMethod,nt as BLOCKED_EXTENSIONS,J as CALLER,Q as DEFAULT_API,P as DEPLOYMENT_CONFIG_FILENAME,Ae as DEPLOY_TOKEN,St as DeploymentStatus,Tt as DomainStatus,E as ErrorType,T as FILE_VALIDATION_STATUS,T as FileValidationStatus,Et as JUNK_DIRECTORIES,L as LABEL_CONSTRAINTS,we as LABEL_PATTERN,Rt as OAuthScope,H as PASSWORD_CONSTRAINTS,Ee as SPA_DEFAULT_CONFIG,ce as Ship,f as ShipError,O as TokenKind,it as UNBUILT_PROJECT_MARKERS,rt as UNSAFE_FILENAME_CHARS,cn as __setTestEnvironment,mn as allValidFilesReady,De as assertShipJsonSyntax,$ as calculateMD5,st as classifyToken,Oe as createAccountResource,Le as createDeploymentResource,Ne as createDomainResource,Ce as createTokenResource,Xn as default,Ot as deserializeLabels,Pt as extractSubdomain,Ge as filterJunk,se as formatFileSize,Ft as generateDeploymentUrl,Lt as generateDomainUrl,Be as getENV,yt as getValidFiles,z as hasUnbuiltMarker,ye as hasUnsafeChars,G as isBlockedExtension,It as isCustomDomain,xt as isDeployment,be as isPlatformDomain,me as isShipError,Ue as optimizeDeployPaths,wn as pluralize,Ve as processFilesForBrowser,Nt as serializeLabels,ot as validateApiKey,vt as validateApiUrl,Te as validateCaller,ke as validateDeployFile,ze as validateDeployPath,at as validateDeployToken,oe as validateFileName,hn as validateFiles,Z as validatePassword,W as validateToken};
2
2
  //# sourceMappingURL=browser.js.map