@shipstatic/ship 2.9.1 → 2.9.2-beta.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/THIRD-PARTY-LICENSES.md +1 -1
- package/dist/browser.d.ts +105 -2
- package/dist/browser.js +1 -1
- package/dist/browser.js.map +1 -1
- package/dist/cli.cjs +55 -55
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +105 -2
- package/dist/index.d.ts +105 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/THIRD-PARTY-LICENSES.md
CHANGED
package/dist/browser.d.ts
CHANGED
|
@@ -848,9 +848,58 @@ declare const DEPLOY_FIELDS: {
|
|
|
848
848
|
readonly PRERENDER: "prerender";
|
|
849
849
|
/** @internal Server-processing flag — first-party `/upload` only. */
|
|
850
850
|
readonly SPA: "spa";
|
|
851
|
+
/**
|
|
852
|
+
* @internal The build settings, first-party `/upload` only and meaningful
|
|
853
|
+
* only with `BUILD`: the command to run instead of the manifest's build
|
|
854
|
+
* script, and the folder the site lands in. See {@link BUILD_SETTINGS}.
|
|
855
|
+
*/
|
|
856
|
+
readonly BUILD_COMMAND: "buildCommand";
|
|
857
|
+
/** @internal See {@link DEPLOY_FIELDS.BUILD_COMMAND}. */
|
|
858
|
+
readonly OUTPUT_DIR: "outputDir";
|
|
851
859
|
/** @internal reCAPTCHA proof — `web/www`'s public uploader only. */
|
|
852
860
|
readonly CAPTCHA: "captcha";
|
|
853
861
|
};
|
|
862
|
+
/**
|
|
863
|
+
* The JSON deploy body's file grammar: the OTHER body `POST /upload` accepts,
|
|
864
|
+
* beside the multipart one {@link DEPLOY_FIELDS} names. A JSON caller sends
|
|
865
|
+
* `{ files: [{ path, content, encoding? }] }`, and this is the whole of what
|
|
866
|
+
* one entry may say: three field names, two encodings, one default.
|
|
867
|
+
*
|
|
868
|
+
* Declared once because the grammar has three independent holders that the
|
|
869
|
+
* wire forces to restate it: the API's zod schema (the original), the hosted
|
|
870
|
+
* MCP's tool input, and the n8n community node, which cannot import this
|
|
871
|
+
* under n8n Cloud's zero-dependency rule and fences its copy against this
|
|
872
|
+
* object instead. Each had its own literal table until 2.24.0; the last two
|
|
873
|
+
* types convoys walked without minting the owner, which is exactly the drift
|
|
874
|
+
* the No-Fourth-Category Law's deferral clause names.
|
|
875
|
+
*
|
|
876
|
+
* `content` is the file's bytes as text: raw for `utf-8` (the default, and
|
|
877
|
+
* the right choice for HTML, CSS, JS, JSON and SVG), base64 for binary.
|
|
878
|
+
*/
|
|
879
|
+
declare const DEPLOY_FILE_GRAMMAR: {
|
|
880
|
+
/** Relative path within the site, no leading slash. */
|
|
881
|
+
readonly PATH: "path";
|
|
882
|
+
/** The file's bytes, as text in the entry's encoding. */
|
|
883
|
+
readonly CONTENT: "content";
|
|
884
|
+
/** Optional; one of {@link DEPLOY_FILE_GRAMMAR.ENCODINGS}. */
|
|
885
|
+
readonly ENCODING: "encoding";
|
|
886
|
+
/** What an entry that names no encoding means. */
|
|
887
|
+
readonly DEFAULT_ENCODING: "utf-8";
|
|
888
|
+
/** The closed set. `utf-8` is raw text; `base64` is for binary only. */
|
|
889
|
+
readonly ENCODINGS: readonly ["utf-8", "base64"];
|
|
890
|
+
};
|
|
891
|
+
/** One of the two encodings a JSON deploy entry may name. */
|
|
892
|
+
type DeployFileEncoding = (typeof DEPLOY_FILE_GRAMMAR.ENCODINGS)[number];
|
|
893
|
+
/**
|
|
894
|
+
* One file entry of a JSON deploy, in the grammar above. The wire shape the
|
|
895
|
+
* API parses and the hosted MCP's tool input decodes; `encoding` absent means
|
|
896
|
+
* {@link DEPLOY_FILE_GRAMMAR.DEFAULT_ENCODING}.
|
|
897
|
+
*/
|
|
898
|
+
interface DeployFileSpec {
|
|
899
|
+
path: string;
|
|
900
|
+
content: string;
|
|
901
|
+
encoding?: DeployFileEncoding;
|
|
902
|
+
}
|
|
854
903
|
/**
|
|
855
904
|
* All possible error types in the ShipStatic platform.
|
|
856
905
|
*
|
|
@@ -1806,6 +1855,20 @@ interface DeploymentUploadOptions {
|
|
|
1806
1855
|
prerender?: boolean;
|
|
1807
1856
|
/** @internal Trigger server-side SPA detection. Only available via /upload endpoint. */
|
|
1808
1857
|
spa?: boolean;
|
|
1858
|
+
/**
|
|
1859
|
+
* @internal The command the build runs instead of the manifest's own
|
|
1860
|
+
* `build` script (`npm run build:site`, `hugo`, …). Only with `build`, only
|
|
1861
|
+
* via /upload; format in {@link BUILD_SETTINGS}, checked by
|
|
1862
|
+
* {@link validateBuildCommand}.
|
|
1863
|
+
*/
|
|
1864
|
+
buildCommand?: string;
|
|
1865
|
+
/**
|
|
1866
|
+
* @internal The folder the built site lands in (`public`, `dist/site`),
|
|
1867
|
+
* relative to the project root, for projects whose output the builder does
|
|
1868
|
+
* not find on its own. Only with `build`, only via /upload; format in
|
|
1869
|
+
* {@link BUILD_SETTINGS}, checked by {@link validateOutputDir}.
|
|
1870
|
+
*/
|
|
1871
|
+
outputDir?: string;
|
|
1809
1872
|
/** @internal reCAPTCHA proof for the anonymous human deploy channel. Only available via /upload endpoint. */
|
|
1810
1873
|
captcha?: string;
|
|
1811
1874
|
/**
|
|
@@ -2297,6 +2360,41 @@ declare function serializeLabels(labels: string[] | undefined): string | null;
|
|
|
2297
2360
|
* @example deserializeLabels('') → []
|
|
2298
2361
|
*/
|
|
2299
2362
|
declare function deserializeLabels(labelsJson: string | null): string[];
|
|
2363
|
+
/**
|
|
2364
|
+
* The format of the two per-deploy build settings a caller may name when the
|
|
2365
|
+
* builder's own detection is not enough: the command to run and the folder
|
|
2366
|
+
* the site lands in. Format rules only, the format/policy split this file
|
|
2367
|
+
* keeps everywhere: WHAT a value may look like lives here so both the console
|
|
2368
|
+
* (fast feedback) and the API (the boundary) refuse the same strings; whether
|
|
2369
|
+
* the command builds anything is the build's verdict, not a rule.
|
|
2370
|
+
*
|
|
2371
|
+
* Both are read only by first-party `/upload`, only with `build`, and both
|
|
2372
|
+
* run inside the throwaway container that already runs the project's own
|
|
2373
|
+
* arbitrary code, which is why the command's format is a shape rule (one
|
|
2374
|
+
* line, bounded) and not a safety rule. The folder's rule is what keeps it a
|
|
2375
|
+
* folder OF the project: relative, no parent segments, no leading slash.
|
|
2376
|
+
*/
|
|
2377
|
+
declare const BUILD_SETTINGS: {
|
|
2378
|
+
/** A build command is one line, non-empty, and bounded. */
|
|
2379
|
+
readonly COMMAND_MAX_LENGTH: 200;
|
|
2380
|
+
/** An output folder is a bounded relative path. */
|
|
2381
|
+
readonly OUTPUT_DIR_MAX_LENGTH: 100;
|
|
2382
|
+
/** Path segments and separators only: `dist`, `dist/site`, `.output/public`. */
|
|
2383
|
+
readonly OUTPUT_DIR_PATTERN: RegExp;
|
|
2384
|
+
};
|
|
2385
|
+
/**
|
|
2386
|
+
* Validate an optional build command and return it normalized (trimmed).
|
|
2387
|
+
* Absent → `undefined`. Present → one line, 1 to
|
|
2388
|
+
* {@link BUILD_SETTINGS.COMMAND_MAX_LENGTH} characters, no control characters.
|
|
2389
|
+
*/
|
|
2390
|
+
declare function validateBuildCommand(value: unknown): string | undefined;
|
|
2391
|
+
/**
|
|
2392
|
+
* Validate an optional output folder and return it normalized (trimmed, no
|
|
2393
|
+
* trailing slash). Absent → `undefined`. Present → a relative path of plain
|
|
2394
|
+
* segments, no `..`, no leading slash, at most
|
|
2395
|
+
* {@link BUILD_SETTINGS.OUTPUT_DIR_MAX_LENGTH} characters.
|
|
2396
|
+
*/
|
|
2397
|
+
declare function validateOutputDir(value: unknown): string | undefined;
|
|
2300
2398
|
/**
|
|
2301
2399
|
* Length constraints for the optional deployment password
|
|
2302
2400
|
* (`DeploymentUploadOptions.password`). Single source of truth shared across
|
|
@@ -2383,11 +2481,16 @@ interface DeployBodyContext {
|
|
|
2383
2481
|
* `TTL_CONSTRAINTS`. The API stamps the expiry against its own clock.
|
|
2384
2482
|
*/
|
|
2385
2483
|
ttl?: number;
|
|
2386
|
-
/**
|
|
2484
|
+
/**
|
|
2485
|
+
* @internal Server-side processing flags, and the two build settings that
|
|
2486
|
+
* qualify `build` (the command to run, the folder the site lands in).
|
|
2487
|
+
*/
|
|
2387
2488
|
flags?: {
|
|
2388
2489
|
build?: boolean;
|
|
2389
2490
|
prerender?: boolean;
|
|
2390
2491
|
spa?: boolean;
|
|
2492
|
+
buildCommand?: string;
|
|
2493
|
+
outputDir?: string;
|
|
2391
2494
|
};
|
|
2392
2495
|
/** @internal reCAPTCHA proof for the anonymous human deploy channel (/upload). */
|
|
2393
2496
|
captcha?: string;
|
|
@@ -3243,4 +3346,4 @@ declare class Ship extends Ship$1 {
|
|
|
3243
3346
|
protected processInput(input: DeployInput, options: DeploymentOptions): Promise<StaticFile[]>;
|
|
3244
3347
|
}
|
|
3245
3348
|
|
|
3246
|
-
export { API_KEY, API_PATHS, AUTH_BASE_PATH, type Account, type AccountDeleteResponse, type AccountGetResponse, type AccountKeyResponse, AccountPlan, type AccountPlanType, type AccountResource, type Activity, type ActivityEvent, type ActivityListResponse, type ActivityMeta, type ApiDeployOptions, ApiHttp, type ApiHttpOptions, AuthMethod, type AuthMethodType, type BillingInterval, type BillingPortalSession, type BillingSyncResponse, type BuildFailureDetails, CALLER, type Caps, DEFAULT_API, DEPLOYMENT_CONFIG_FILENAME, DEPLOY_FIELDS, DEPLOY_TOKEN, type DeployBodyContext, type DeployFile, type DeployInput, type DeployTransport, type Deployment, type DeploymentCreateResponse, type DeploymentDeleteResponse, type DeploymentListResponse, type DeploymentOptions, type DeploymentResource, type DeploymentResourceContext, type DeploymentSetOptions, DeploymentStatus, type DeploymentStatusType, type DeploymentUploadOptions, DeploymentVia, type DeploymentViaType, type DnsLookup, type DnsProvider, type DnsRecord, type DnsRecordType, type Domain, type DomainDeleteResponse, type DomainDnsResponse, type DomainListResponse, type DomainRecordsResponse, type DomainResource, type DomainSetOptions, type DomainSetResult, type DomainShareResponse, DomainStatus, type DomainStatusType, type DomainValidateResponse, type DomainVerifyResponse, type ErrorResponse, ErrorType, type ExecutionEnvironment, FileValidationStatus as FILE_VALIDATION_STATUS, type Fetch, type FileValidationResult, FileValidationStatus, type FileValidationStatusType, IDEMPOTENCY_KEY_CONSTRAINTS, JUNK_DIRECTORIES, LABEL_CONSTRAINTS, LABEL_PATTERN, type LabelsResponse, type ListOptions, type ListResponse, type MD5Result, MY_API_KEY_URL, OAUTH_TOKEN, OAuthScope, type OAuthScopeType, PASSWORD_CONSTRAINTS, PUBLIC_DEPLOYMENT_TTL_SECONDS, type PingResponse, type Plan, type PlanChangeRequest, type PlanChangeResponse, type PlansResponse, type PlatformLimits, type RequestResult, type ResourceContext, SHIP_ENV, SHIP_VIA_ENV, SIGN_IN_RETURN_PARAM, type SPACheckDebug, type SPACheckRequest, type SPACheckResponse, SPA_CHECK_CONSTRAINTS, SPA_DEFAULT_CONFIG, type ScheduledChange, type SetupInstructionsResponse, Ship, type ShipClientOptions, ShipError, type ShipEvents, type ShipRequestInit, type StaticFile, TTL_CONSTRAINTS, type Token, type TokenCreateOptions, type TokenCreateResponse, type TokenDeleteResponse, TokenKind, type TokenKindType, type TokenListResponse, type TokenProvider, type TokenResource, type Transport, UNBUILT_PROJECT_MARKERS, UNSAFE_FILENAME_CHARS, type UploadedFile, type UserVisibleActivityEvent, type ValidatableFile, type ValidationIssue, WEB_FILE_ACCEPT, __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, normalizeVia, optimizeDeployPaths, pluralize, processFilesForBrowser, readBearerValue, serializeLabels, validateApiKey, validateApiUrl, validateCaller, validateDeployFile, validateDeployPath, validateDeployToken, validateFileName, validateFiles, validateIdempotencyKey, validateOAuthToken, validatePassword, validateToken, validateTtl };
|
|
3349
|
+
export { API_KEY, API_PATHS, AUTH_BASE_PATH, type Account, type AccountDeleteResponse, type AccountGetResponse, type AccountKeyResponse, AccountPlan, type AccountPlanType, type AccountResource, type Activity, type ActivityEvent, type ActivityListResponse, type ActivityMeta, type ApiDeployOptions, ApiHttp, type ApiHttpOptions, AuthMethod, type AuthMethodType, BUILD_SETTINGS, type BillingInterval, type BillingPortalSession, type BillingSyncResponse, type BuildFailureDetails, CALLER, type Caps, DEFAULT_API, DEPLOYMENT_CONFIG_FILENAME, DEPLOY_FIELDS, DEPLOY_FILE_GRAMMAR, DEPLOY_TOKEN, type DeployBodyContext, type DeployFile, type DeployFileEncoding, type DeployFileSpec, type DeployInput, type DeployTransport, type Deployment, type DeploymentCreateResponse, type DeploymentDeleteResponse, type DeploymentListResponse, type DeploymentOptions, type DeploymentResource, type DeploymentResourceContext, type DeploymentSetOptions, DeploymentStatus, type DeploymentStatusType, type DeploymentUploadOptions, DeploymentVia, type DeploymentViaType, type DnsLookup, type DnsProvider, type DnsRecord, type DnsRecordType, type Domain, type DomainDeleteResponse, type DomainDnsResponse, type DomainListResponse, type DomainRecordsResponse, type DomainResource, type DomainSetOptions, type DomainSetResult, type DomainShareResponse, DomainStatus, type DomainStatusType, type DomainValidateResponse, type DomainVerifyResponse, type ErrorResponse, ErrorType, type ExecutionEnvironment, FileValidationStatus as FILE_VALIDATION_STATUS, type Fetch, type FileValidationResult, FileValidationStatus, type FileValidationStatusType, IDEMPOTENCY_KEY_CONSTRAINTS, JUNK_DIRECTORIES, LABEL_CONSTRAINTS, LABEL_PATTERN, type LabelsResponse, type ListOptions, type ListResponse, type MD5Result, MY_API_KEY_URL, OAUTH_TOKEN, OAuthScope, type OAuthScopeType, PASSWORD_CONSTRAINTS, PUBLIC_DEPLOYMENT_TTL_SECONDS, type PingResponse, type Plan, type PlanChangeRequest, type PlanChangeResponse, type PlansResponse, type PlatformLimits, type RequestResult, type ResourceContext, SHIP_ENV, SHIP_VIA_ENV, SIGN_IN_RETURN_PARAM, type SPACheckDebug, type SPACheckRequest, type SPACheckResponse, SPA_CHECK_CONSTRAINTS, SPA_DEFAULT_CONFIG, type ScheduledChange, type SetupInstructionsResponse, Ship, type ShipClientOptions, ShipError, type ShipEvents, type ShipRequestInit, type StaticFile, TTL_CONSTRAINTS, type Token, type TokenCreateOptions, type TokenCreateResponse, type TokenDeleteResponse, TokenKind, type TokenKindType, type TokenListResponse, type TokenProvider, type TokenResource, type Transport, UNBUILT_PROJECT_MARKERS, UNSAFE_FILENAME_CHARS, type UploadedFile, type UserVisibleActivityEvent, type ValidatableFile, type ValidationIssue, WEB_FILE_ACCEPT, __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, normalizeVia, optimizeDeployPaths, pluralize, processFilesForBrowser, readBearerValue, serializeLabels, validateApiKey, validateApiUrl, validateBuildCommand, validateCaller, validateDeployFile, validateDeployPath, validateDeployToken, validateFileName, validateFiles, validateIdempotencyKey, validateOAuthToken, validateOutputDir, validatePassword, validateToken, validateTtl };
|
package/dist/browser.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var st=Object.create;var $=Object.defineProperty;var at=Object.getOwnPropertyDescriptor;var lt=Object.getOwnPropertyNames;var pt=Object.getPrototypeOf,ut=Object.prototype.hasOwnProperty;var ct=(e,n,t)=>n in e?$(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t;var I=(e,n)=>()=>(e&&(n=e(e=0)),n);var Re=(e,n)=>()=>(n||e((n={exports:{}}).exports,n),n.exports),ft=(e,n)=>{for(var t in n)$(e,t,{get:n[t],enumerable:!0})},dt=(e,n,t,a)=>{if(n&&typeof n=="object"||typeof n=="function")for(let l of lt(n))!ut.call(e,l)&&l!==t&&$(e,l,{get:()=>n[l],enumerable:!(a=at(n,l))||a.enumerable});return e};var H=(e,n,t)=>(t=e!=null?st(pt(e)):{},dt(n||!e||!e.__esModule?$(t,"default",{value:e,enumerable:!0}):t,e));var B=(e,n,t)=>ct(e,typeof n!="symbol"?n+"":n,t);function Qt(e){if(!e||typeof e!="string")return;let n=e.trim().toLowerCase();return Object.values(mt).includes(n)?n:void 0}function De(e){if(e==null)return;if(typeof e!="string")throw m.validation("Idempotency key must be a string.");let n=e.trim();if(!n)throw m.validation("Idempotency key must not be empty.");if(n.length>v.MAX_LENGTH)throw m.validation(`Idempotency key must be at most ${v.MAX_LENGTH} characters.`);return n}function Et(e){let n=e.code;return n==="ERR_INVALID_URL"?!1:typeof n=="string"?!0:e instanceof TypeError?!/\burl\b/i.test(e.message):!1}function be(e){return e!==null&&typeof e=="object"&&"name"in e&&e.name==="ShipError"&&"status"in e}function At(e){let n=e.replace(/\\/g,"/").split("/").pop()??"",t=n.lastIndexOf(".");return t<=0||t===n.length-1?null:n.slice(t+1).toLowerCase()}function Ie(e,n){let t=At(e);return t===null?!1:Array.isArray(n)?n.includes(t):n.has(t)}function Le(e){return St.test(e)}function z(e){return e.replace(/\\/g,"/").split("/").filter(Boolean).some(t=>Rt.has(t))}function Dt(e){return e.startsWith(_e.PREFIX)?x.API_KEY:e.startsWith(we.PREFIX)?x.DEPLOY_TOKEN:e.startsWith(Pe.PREFIX)?x.OAUTH:x.OPAQUE}function rn(e){return e.slice(0,re.length).toLowerCase()!==re?null:e.slice(re.length)||null}function xe(e){let n=e.charCodeAt(0)===65279?e.slice(1):e,t;try{t=JSON.parse(n)}catch(a){throw m.config(`invalid JSON format in config: ${a.message}`,{filePath:P})}if(t===null||typeof t!="object"||Array.isArray(t))throw m.config(`${P} must contain a JSON object`,{filePath:P})}function ie(e,n,t){if(!e.startsWith(n.PREFIX))throw m.validation(`${t} must start with "${n.PREFIX}"`);if(e.length!==n.TOTAL_LENGTH)throw m.validation(`${t} must be ${n.TOTAL_LENGTH} characters total (${n.PREFIX} + ${n.HEX_LENGTH} hex chars)`);let a=e.slice(n.PREFIX.length);if(!new RegExp(`^[a-f0-9]{${n.HEX_LENGTH}}$`,"i").test(a))throw m.validation(`${t} must contain ${n.HEX_LENGTH} hexadecimal characters after "${n.PREFIX}" prefix`)}function bt(e){ie(e,_e,"API key")}function It(e){ie(e,we,"Deploy token")}function Lt(e){ie(e,Pe,"OAuth access token")}function oe(e){switch(Dt(e)){case x.API_KEY:bt(e);return;case x.DEPLOY_TOKEN:It(e);return;case x.OAUTH:Lt(e);return;case x.OPAQUE:if(!e)throw m.validation("Token must be a non-empty string")}}function Oe(e){if(!e||e.length>C.MAX_LENGTH||!C.PATTERN.test(e))throw m.validation(`Caller must be 1-${C.MAX_LENGTH} characters: letters, digits, dots, underscores, or hyphens`)}function sn(e){try{let n=new URL(e);if(!["http:","https:"].includes(n.protocol))throw m.validation("API URL must use http:// or https:// protocol");if(n.pathname!=="/"&&n.pathname!=="")throw m.validation("API URL must not contain a path");if(n.search||n.hash)throw m.validation("API URL must not contain query parameters or fragments")}catch(n){throw be(n)?n:m.validation("API URL must be a valid URL")}}function an(e){return/^[a-z]+-[a-z]+-[a-z0-9]{7}(\.[a-z0-9.-]+)?$/i.test(e)}function se(e){if(e!=null){if(typeof e!="number"||!Number.isFinite(e))throw m.validation("TTL must be a number of seconds");if(!Number.isInteger(e))throw m.validation("TTL must be a whole number of seconds");if(e<G.MIN_SECONDS||e>G.MAX_SECONDS)throw m.validation(`TTL must be between ${G.MIN_SECONDS} and ${G.MAX_SECONDS} seconds`);return e}}function Fe(e,n){return e.endsWith(`.${n}`)}function fn(e,n){return!Fe(e,n)}function dn(e,n){return Fe(e,n)?e.slice(0,-(n.length+1)):null}function mn(e){return`https://${e}`}function hn(e){return`https://${e}`}function yn(e){return!e||e.length===0?null:JSON.stringify(e)}function gn(e){if(!e)return[];try{let n=JSON.parse(e);return Array.isArray(n)?n:[]}catch{return[]}}function le(e){if(e==null)return;if(typeof e!="string")throw m.validation("Password must be a string");let n=e.trim();if(n.length<k.MIN_LENGTH||n.length>k.MAX_LENGTH)throw m.validation(`Password must be between ${k.MIN_LENGTH} and ${k.MAX_LENGTH} characters`);return n}var Wt,mt,Jt,v,Zt,T,L,y,ht,te,yt,gt,m,Tt,en,St,Rt,tn,nn,ne,_e,we,Pe,C,x,re,on,P,Ne,K,G,ae,ln,pn,un,cn,D,O,ve,k,R=I(()=>{"use strict";Wt={PENDING:"pending",SUCCESS:"success",FAILED:"failed",DELETING:"deleting"},mt={WEB:"web",SDK:"sdk",CLI:"cli",MCP:"mcp",GIT:"git",N8N:"n8n",GPT:"gpt",VSC:"vsc",CLD:"cld",CRS:"crs",GMN:"gmn",API:"api"},Jt={PENDING:"pending",PARTIAL:"partial",SUCCESS:"success",PAUSED:"paused"},v={HEADER:"Idempotency-Key",MAX_LENGTH:256,WINDOW_SECONDS:1440*60};Zt={FREE:"free",PRO:"pro",TEAM:"team",SCALE:"scale",SPONSORED:"sponsored"},T={DEPLOYMENTS:"/deployments",DEPLOYMENT:e=>`/deployments/${e}`,DEPLOYMENT_CONFIG:e=>`/deployments/${e}/config`,DOMAINS:"/domains",DOMAIN:e=>`/domains/${e}`,DOMAIN_VERIFY:e=>`/domains/${e}/verify`,DOMAIN_DNS:e=>`/domains/${e}/dns`,DOMAIN_RECORDS:e=>`/domains/${e}/records`,DOMAIN_SHARE:e=>`/domains/${e}/share`,DOMAIN_PROPAGATION:e=>`/domains/${e}/propagation`,DOMAINS_VALIDATE:"/domains/validate",TOKENS:"/tokens",TOKEN:e=>`/tokens/${e}`,ACCOUNT:"/account",ACCOUNT_KEY:"/account/key",ACCOUNT_CLAIM:"/account/claim",ACTIVITIES:"/activities",LABELS:"/labels",LIMITS:"/limits",PLANS:"/plans",PING:"/ping",SETUP:"/setup",SPA_CHECK:"/spa-check",UPLOAD:"/upload"},L={FILES:"files[]",CHECKSUMS:"checksums",LABELS:"labels",VIA:"via",PASSWORD:"password",TTL:"ttl",BUILD:"build",PRERENDER:"prerender",SPA:"spa",CAPTCHA:"captcha"},y={Validation:"validation_failed",NotFound:"not_found",Forbidden:"forbidden",RateLimit:"rate_limit_exceeded",Authentication:"authentication_failed",Business:"business_logic_error",Api:"internal_server_error",Maintenance:"maintenance",Build:"build_failed",Network:"network_error",Timeout:"timeout_error",Cancelled:"operation_cancelled",File:"file_error",Config:"config_error"},ht=new Set([y.Network,y.Timeout,y.Cancelled,y.File,y.Config]),te={client:new Set([y.Build,y.Business,y.Cancelled,y.Config,y.File,y.Forbidden,y.NotFound,y.RateLimit,y.Validation]),network:new Set([y.Network,y.Timeout]),auth:new Set([y.Authentication])},yt=new Set(Object.values(y).filter(e=>!ht.has(e))),gt=200;m=class e extends Error{constructor(t,a,l,c){super(a);B(this,"type");B(this,"status");B(this,"details");this.type=t,this.status=l,this.details=c,this.name="ShipError"}toResponse(){let t=this.details,a=this.type===y.Authentication&&t?.internal?void 0:this.details;return{error:this.type,message:this.message,status:this.status,details:a}}static async fromHttpResponse(t,a){let l,c,h;try{if(t.headers.get("content-type")?.includes("application/json")){let f=await t.json();if(f&&typeof f=="object"){let A=f;typeof A.message=="string"?l=A.message:typeof A.error=="string"&&(l=A.error),c=A.details,typeof A.error=="string"&&yt.has(A.error)&&(h=A.error)}}else{let f=(await t.text()).trim();f&&!f.startsWith("<")&&f.length<=gt&&(l=f)}}catch{}let g=t.headers.get("retry-after");if(g!==null){let E=g.trim(),f=/^\d+$/.test(E)?Number(E):Math.ceil((Date.parse(E)-Date.now())/1e3);if(Number.isFinite(f)&&f>=0){let A=c&&typeof c=="object"?c:{};A.retryAfter===void 0&&(c={...A,retryAfter:f})}}l=l||`${a||"Request"} failed with status ${t.status}`;let d=h??(t.status===401?y.Authentication:t.status===403?y.Forbidden:t.status===429?y.RateLimit:y.Api);return new e(d,l,t.status,c)}static fromFetchError(t,a){if(be(t))return t;let l=a||"Request",c=t?.name;return c==="AbortError"?e.cancelled(`${l} was cancelled`):c==="TimeoutError"?e.timeout(`${l} timed out`,{cause:t}):t instanceof Error?Et(t)?e.network(`${l} failed: ${t.message}`,{cause:t}):new e(y.Api,`${l} failed: ${t.message}`):new e(y.Api,`${l} failed: Unknown error`)}static validation(t,a){return new e(y.Validation,t,400,a)}static notFound(t,a){let l=a?`${t} ${a} not found`:`${t} not found`;return new e(y.NotFound,l,404)}static forbidden(t,a){return new e(y.Forbidden,t,403,a)}static rateLimit(t="Too many requests",a){return new e(y.RateLimit,t,429,a)}static authentication(t="Authentication required",a){return new e(y.Authentication,t,401,a)}static business(t,a=400,l){return new e(y.Business,t,a,l)}static network(t,a){return new e(y.Network,t,void 0,a)}static timeout(t,a){return new e(y.Timeout,t,void 0,a)}static cancelled(t,a){return new e(y.Cancelled,t,void 0,a)}static file(t,a){return new e(y.File,t,void 0,a)}static config(t,a){return new e(y.Config,t,void 0,a)}static api(t,a=500,l){return new e(y.Api,t,a,l)}static maintenance(t,a){return new e(y.Maintenance,t,503,a)}static build(t,a){return new e(y.Build,t,422,a)}isClientError(){return te.client.has(this.type)?!0:this.status!==void 0&&this.status>=400&&this.status<500}isNetworkError(){return te.network.has(this.type)}isAuthError(){return te.auth.has(this.type)}isType(t){return this.type===t}};Tt=["html","htm","xhtml","xml","txt","md","markdown","pdf","csv","json","jsonc","webmanifest","map","toml","yaml","yml","rss","atom","css","scss","sass","less","js","mjs","cjs","jsx","ts","tsx","wasm","vue","svelte","png","jpg","jpeg","gif","webp","avif","svg","ico","bmp","tif","tiff","heic","heif","woff","woff2","ttf","otf","eot","mp3","wav","ogg","oga","opus","m4a","aac","flac","weba","mp4","webm","ogv","mov","m4v","avi","glb","gltf","usdz","vtt","srt","zip"],en=Tt.map(e=>`.${e}`).join(","),St=/[\x00-\x1f\x7f#?%\\<>"]/;Rt=new Set(["node_modules","package.json"]);tn="/auth",nn="signing-in",ne={SESSION:"session",API_KEY:"apiKey",TOKEN:"token",AGENT:"agent",OAUTH:"oauth",SYSTEM:"system"},_e={PREFIX:"ship-",HEX_LENGTH:32,TOTAL_LENGTH:37,HINT_LENGTH:4},we={PREFIX:"deploy-",HEX_LENGTH:32,TOTAL_LENGTH:39},Pe={PREFIX:"oauth-",HEX_LENGTH:32,TOTAL_LENGTH:38},C={HEADER:"X-Caller",MAX_LENGTH:128,PATTERN:/^[a-zA-Z0-9._-]+$/},x={API_KEY:ne.API_KEY,DEPLOY_TOKEN:ne.TOKEN,OAUTH:ne.OAUTH,OPAQUE:"opaque"};re="bearer ";on={ACCOUNT_READ:"account:read",DEPLOYMENTS_READ:"deployments:read",DEPLOYMENTS_WRITE:"deployments:write",DOMAINS_READ:"domains:read",DOMAINS_WRITE:"domains:write"},P="ship.json",Ne={rewrites:[{source:"/(.*)",destination:"/index.html"}]},K={INDEX_FILE:"index.html",MAX_INDEX_BYTES:100*1024};G={MIN_SECONDS:1,MAX_SECONDS:365*24*60*60};ae="https://api.shipstatic.com",ln={TOKEN:"SHIP_TOKEN",API_URL:"SHIP_API_URL"},pn="SHIP_VIA",un="https://my.shipstatic.com/api-key",cn=4320*60,D={PENDING:"pending",PROCESSING_ERROR:"processing_error",EXCLUDED:"excluded",VALIDATION_FAILED:"validation_failed",READY:"ready"};O={MIN_LENGTH:3,MAX_LENGTH:25,MAX_COUNT:10,SEPARATORS:"._-"},ve=/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/;k={MIN_LENGTH:6,MAX_LENGTH:128}});var He=Re((Ue,$e)=>{"use strict";(function(e){if(typeof Ue=="object")$e.exports=e();else if(typeof define=="function"&&define.amd)define(e);else{var n;try{n=window}catch{n=self}n.SparkMD5=e()}})(function(e){"use strict";var n=function(u,p){return u+p&4294967295},t=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function a(u,p,i,r,s,o){return p=n(n(p,u),n(r,o)),n(p<<s|p>>>32-s,i)}function l(u,p){var i=u[0],r=u[1],s=u[2],o=u[3];i+=(r&s|~r&o)+p[0]-680876936|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+p[1]-389564586|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+p[2]+606105819|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+p[3]-1044525330|0,r=(r<<22|r>>>10)+s|0,i+=(r&s|~r&o)+p[4]-176418897|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+p[5]+1200080426|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+p[6]-1473231341|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+p[7]-45705983|0,r=(r<<22|r>>>10)+s|0,i+=(r&s|~r&o)+p[8]+1770035416|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+p[9]-1958414417|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+p[10]-42063|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+p[11]-1990404162|0,r=(r<<22|r>>>10)+s|0,i+=(r&s|~r&o)+p[12]+1804603682|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+p[13]-40341101|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+p[14]-1502002290|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+p[15]+1236535329|0,r=(r<<22|r>>>10)+s|0,i+=(r&o|s&~o)+p[1]-165796510|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+p[6]-1069501632|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+p[11]+643717713|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+p[0]-373897302|0,r=(r<<20|r>>>12)+s|0,i+=(r&o|s&~o)+p[5]-701558691|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+p[10]+38016083|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+p[15]-660478335|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+p[4]-405537848|0,r=(r<<20|r>>>12)+s|0,i+=(r&o|s&~o)+p[9]+568446438|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+p[14]-1019803690|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+p[3]-187363961|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+p[8]+1163531501|0,r=(r<<20|r>>>12)+s|0,i+=(r&o|s&~o)+p[13]-1444681467|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+p[2]-51403784|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+p[7]+1735328473|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+p[12]-1926607734|0,r=(r<<20|r>>>12)+s|0,i+=(r^s^o)+p[5]-378558|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+p[8]-2022574463|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+p[11]+1839030562|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+p[14]-35309556|0,r=(r<<23|r>>>9)+s|0,i+=(r^s^o)+p[1]-1530992060|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+p[4]+1272893353|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+p[7]-155497632|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+p[10]-1094730640|0,r=(r<<23|r>>>9)+s|0,i+=(r^s^o)+p[13]+681279174|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+p[0]-358537222|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+p[3]-722521979|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+p[6]+76029189|0,r=(r<<23|r>>>9)+s|0,i+=(r^s^o)+p[9]-640364487|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+p[12]-421815835|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+p[15]+530742520|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+p[2]-995338651|0,r=(r<<23|r>>>9)+s|0,i+=(s^(r|~o))+p[0]-198630844|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+p[7]+1126891415|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+p[14]-1416354905|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+p[5]-57434055|0,r=(r<<21|r>>>11)+s|0,i+=(s^(r|~o))+p[12]+1700485571|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+p[3]-1894986606|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+p[10]-1051523|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+p[1]-2054922799|0,r=(r<<21|r>>>11)+s|0,i+=(s^(r|~o))+p[8]+1873313359|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+p[15]-30611744|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+p[6]-1560198380|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+p[13]+1309151649|0,r=(r<<21|r>>>11)+s|0,i+=(s^(r|~o))+p[4]-145523070|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+p[11]-1120210379|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+p[2]+718787259|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+p[9]-343485551|0,r=(r<<21|r>>>11)+s|0,u[0]=i+u[0]|0,u[1]=r+u[1]|0,u[2]=s+u[2]|0,u[3]=o+u[3]|0}function c(u){var p=[],i;for(i=0;i<64;i+=4)p[i>>2]=u.charCodeAt(i)+(u.charCodeAt(i+1)<<8)+(u.charCodeAt(i+2)<<16)+(u.charCodeAt(i+3)<<24);return p}function h(u){var p=[],i;for(i=0;i<64;i+=4)p[i>>2]=u[i]+(u[i+1]<<8)+(u[i+2]<<16)+(u[i+3]<<24);return p}function g(u){var p=u.length,i=[1732584193,-271733879,-1732584194,271733878],r,s,o,b,w,N;for(r=64;r<=p;r+=64)l(i,c(u.substring(r-64,r)));for(u=u.substring(r-64),s=u.length,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],r=0;r<s;r+=1)o[r>>2]|=u.charCodeAt(r)<<(r%4<<3);if(o[r>>2]|=128<<(r%4<<3),r>55)for(l(i,o),r=0;r<16;r+=1)o[r]=0;return b=p*8,b=b.toString(16).match(/(.*?)(.{0,8})$/),w=parseInt(b[2],16),N=parseInt(b[1],16)||0,o[14]=w,o[15]=N,l(i,o),i}function d(u){var p=u.length,i=[1732584193,-271733879,-1732584194,271733878],r,s,o,b,w,N;for(r=64;r<=p;r+=64)l(i,h(u.subarray(r-64,r)));for(u=r-64<p?u.subarray(r-64):new Uint8Array(0),s=u.length,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],r=0;r<s;r+=1)o[r>>2]|=u[r]<<(r%4<<3);if(o[r>>2]|=128<<(r%4<<3),r>55)for(l(i,o),r=0;r<16;r+=1)o[r]=0;return b=p*8,b=b.toString(16).match(/(.*?)(.{0,8})$/),w=parseInt(b[2],16),N=parseInt(b[1],16)||0,o[14]=w,o[15]=N,l(i,o),i}function E(u){var p="",i;for(i=0;i<4;i+=1)p+=t[u>>i*8+4&15]+t[u>>i*8&15];return p}function f(u){var p;for(p=0;p<u.length;p+=1)u[p]=E(u[p]);return u.join("")}f(g("hello"))!=="5d41402abc4b2a76b9719d911017c592"&&(n=function(u,p){var i=(u&65535)+(p&65535),r=(u>>16)+(p>>16)+(i>>16);return r<<16|i&65535}),typeof ArrayBuffer<"u"&&!ArrayBuffer.prototype.slice&&(function(){function u(p,i){return p=p|0||0,p<0?Math.max(p+i,0):Math.min(p,i)}ArrayBuffer.prototype.slice=function(p,i){var r=this.byteLength,s=u(p,r),o=r,b,w,N,Se;return i!==e&&(o=u(i,r)),s>o?new ArrayBuffer(0):(b=o-s,w=new ArrayBuffer(b),N=new Uint8Array(w),Se=new Uint8Array(this,s,b),N.set(Se),w)}})();function A(u){return/[\u0080-\uFFFF]/.test(u)&&(u=unescape(encodeURIComponent(u))),u}function _(u,p){var i=u.length,r=new ArrayBuffer(i),s=new Uint8Array(r),o;for(o=0;o<i;o+=1)s[o]=u.charCodeAt(o);return p?s:r}function F(u){return String.fromCharCode.apply(null,new Uint8Array(u))}function ot(u,p,i){var r=new Uint8Array(u.byteLength+p.byteLength);return r.set(new Uint8Array(u)),r.set(new Uint8Array(p),u.byteLength),i?r:r.buffer}function U(u){var p=[],i=u.length,r;for(r=0;r<i-1;r+=2)p.push(parseInt(u.substr(r,2),16));return String.fromCharCode.apply(String,p)}function S(){this.reset()}return S.prototype.append=function(u){return this.appendBinary(A(u)),this},S.prototype.appendBinary=function(u){this._buff+=u,this._length+=u.length;var p=this._buff.length,i;for(i=64;i<=p;i+=64)l(this._hash,c(this._buff.substring(i-64,i)));return this._buff=this._buff.substring(i-64),this},S.prototype.end=function(u){var p=this._buff,i=p.length,r,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o;for(r=0;r<i;r+=1)s[r>>2]|=p.charCodeAt(r)<<(r%4<<3);return this._finish(s,i),o=f(this._hash),u&&(o=U(o)),this.reset(),o},S.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},S.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},S.prototype.setState=function(u){return this._buff=u.buff,this._length=u.length,this._hash=u.hash,this},S.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},S.prototype._finish=function(u,p){var i=p,r,s,o;if(u[i>>2]|=128<<(i%4<<3),i>55)for(l(this._hash,u),i=0;i<16;i+=1)u[i]=0;r=this._length*8,r=r.toString(16).match(/(.*?)(.{0,8})$/),s=parseInt(r[2],16),o=parseInt(r[1],16)||0,u[14]=s,u[15]=o,l(this._hash,u)},S.hash=function(u,p){return S.hashBinary(A(u),p)},S.hashBinary=function(u,p){var i=g(u),r=f(i);return p?U(r):r},S.ArrayBuffer=function(){this.reset()},S.ArrayBuffer.prototype.append=function(u){var p=ot(this._buff.buffer,u,!0),i=p.length,r;for(this._length+=u.byteLength,r=64;r<=i;r+=64)l(this._hash,h(p.subarray(r-64,r)));return this._buff=r-64<i?new Uint8Array(p.buffer.slice(r-64)):new Uint8Array(0),this},S.ArrayBuffer.prototype.end=function(u){var p=this._buff,i=p.length,r=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],s,o;for(s=0;s<i;s+=1)r[s>>2]|=p[s]<<(s%4<<3);return this._finish(r,i),o=f(this._hash),u&&(o=U(o)),this.reset(),o},S.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},S.ArrayBuffer.prototype.getState=function(){var u=S.prototype.getState.call(this);return u.buff=F(u.buff),u},S.ArrayBuffer.prototype.setState=function(u){return u.buff=_(u.buff,!0),S.prototype.setState.call(this,u)},S.ArrayBuffer.prototype.destroy=S.prototype.destroy,S.ArrayBuffer.prototype._finish=S.prototype._finish,S.ArrayBuffer.hash=function(u,p){var i=d(new Uint8Array(u)),r=f(i);return p?U(r):r},S})});var Y=Re((Ln,Be)=>{"use strict";Be.exports={}});async function Ct(e){let n=(await Promise.resolve().then(()=>H(He(),1))).default,t=new n.ArrayBuffer,a=2097152;for(let l=0;l<e.size;l+=a){let c=Math.min(l+a,e.size);t.append(await e.slice(l,c).arrayBuffer())}return{md5:t.end()}}async function Mt(e){let{createHash:n}=await Promise.resolve().then(()=>H(Y(),1)),t=n("md5");return t.update(e),{md5:t.digest("hex")}}async function Ut(e){let{createHash:n}=await Promise.resolve().then(()=>H(Y(),1)),{createReadStream:t}=await Promise.resolve().then(()=>H(Y(),1));return new Promise((a,l)=>{let c=n("md5"),h=t(e);h.on("error",g=>l(m.file(`Failed to read file for MD5: ${g.message}`,{filePath:e}))),h.on("data",g=>c.update(g)),h.on("end",()=>a({md5:c.digest("hex")}))})}async function X(e){if(e instanceof Blob)return Ct(e);if(typeof Buffer<"u"&&Buffer.isBuffer(e))return Mt(e);if(typeof e=="string")return Ut(e);throw m.business("Invalid input for MD5 calculation")}var j=I(()=>{"use strict";R()});function Q(e){return e.replace(/\\/g,"/").replace(/\/+/g,"/").replace(/^\/+/,"")}var Ye=I(()=>{"use strict"});function Xe(e,n={}){if(n.flatten===!1)return e.map(a=>({path:Q(a),name:ue(a)}));let t=Gt(e);return e.map(a=>{let l=Q(a);if(t){let c=t.endsWith("/")?t:`${t}/`;l.startsWith(c)&&(l=l.substring(c.length))}return l||(l=ue(a)),{path:l,name:ue(a)}})}function Gt(e){if(!e.length)return"";let t=e.map(c=>Q(c)).map(c=>c.split("/")),a=[],l=Math.min(...t.map(c=>c.length));for(let c=0;c<l-1;c++){let h=t[0][c];if(t.every(g=>g[c]===h))a.push(h);else break}return a.join("/")}function ue(e){return e.split(/[/\\]/).pop()||e}var ce=I(()=>{"use strict";Ye()});function jn(e){fe=e}function kt(){return typeof process<"u"&&process.versions&&process.versions.node?"node":typeof window<"u"||typeof self<"u"?"browser":"unknown"}function je(){return fe||kt()}var fe,de=I(()=>{"use strict";fe=null});function ee(e,n){return zt.find(t=>t.broken(e,n))}var zt,he=I(()=>{"use strict";R();ye();zt=[{name:"name",broken:({path:e})=>!me(e).valid,sentence:({path:e})=>me(e).reason??"Invalid file name"},{name:"extension",broken:({path:e},n)=>Ie(e,n.blockedExtensions??[]),sentence:({path:e})=>`File extension not allowed: "${e}"`},{name:"fileSize",broken:({size:e},n)=>e>n.maxFileSize,sentence:({path:e},n)=>`File "${e}" too large. Maximum ${Z(n.maxFileSize)} allowed`},{name:"totalSize",broken:({totalSize:e},n)=>e>n.maxTotalSize,sentence:({totalSize:e},n)=>`Total upload size too large. ${Z(e)} exceeds maximum of ${Z(n.maxTotalSize)}`}]});function Z(e,n=1){if(e===0)return"0 Bytes";let t=1024,a=["Bytes","KB","MB","GB"],l=Math.floor(Math.log(e)/Math.log(t));return`${parseFloat((e/t**l).toFixed(n))} ${a[l]}`}function me(e){if(Le(e))return{valid:!1,reason:"File name contains unsafe characters"};if(e.startsWith(" ")||e.endsWith(" "))return{valid:!1,reason:"File name cannot start/end with spaces"};if(e.endsWith("."))return{valid:!1,reason:"File name cannot end with dots"};let n=/^(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|$)/i,t=e.split("/").pop()||e;return n.test(t)?{valid:!1,reason:"File name uses a reserved system name"}:e.includes("..")?{valid:!1,reason:"File name contains path traversal pattern"}:{valid:!0}}function nr(e,n){let t=[],a=[],l=[];if(e.length===0){let d={file:"(no files)",message:"At least one file must be provided"};return t.push(d),{files:[],validFiles:[],errors:t,warnings:[],canDeploy:!1}}for(let d of e)if(z(d.name))return t.push({file:d.name,message:"Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder"}),{files:e.map(E=>({...E,status:D.VALIDATION_FAILED,statusMessage:"Unbuilt project detected"})),validFiles:[],errors:t,warnings:[],canDeploy:!1};if(e.length>n.maxFilesCount){let d={file:`(${e.length} files)`,message:`File count (${e.length}) exceeds limit of ${n.maxFilesCount}`};return t.push(d),{files:e.map(E=>({...E,status:D.VALIDATION_FAILED,statusMessage:d.message})),validFiles:[],errors:t,warnings:[],canDeploy:!1}}let c=0;for(let d of e){let E=D.READY,f="Ready for upload";if(d.status===D.PROCESSING_ERROR)E=D.VALIDATION_FAILED,f=d.statusMessage||"File failed during processing",t.push({file:d.name,message:f});else if(d.size===0){E=D.EXCLUDED,f="File is empty (0 bytes) and cannot be deployed due to storage limitations",a.push({file:d.name,message:f}),l.push({...d,status:E,statusMessage:f});continue}else if(d.size<0)E=D.VALIDATION_FAILED,f="File size must be positive",t.push({file:d.name,message:f});else if(!d.name||d.name.trim().length===0)E=D.VALIDATION_FAILED,f="File name cannot be empty",t.push({file:d.name||"(empty)",message:f});else if(d.name.includes("\0"))E=D.VALIDATION_FAILED,f="File name contains invalid characters (null byte)",t.push({file:d.name,message:f});else{let A={path:d.name,size:d.size,totalSize:c+d.size},_=ee(A,n);_?(E=D.VALIDATION_FAILED,f=_.sentence(A,n),t.push({file:_.name==="totalSize"?`(${e.length} files)`:d.name,message:f})):c=A.totalSize}l.push({...d,status:E,statusMessage:f})}t.length>0&&(l=l.map(d=>d.status===D.EXCLUDED?d:{...d,status:D.VALIDATION_FAILED,statusMessage:d.status===D.VALIDATION_FAILED?d.statusMessage:"Deployment failed due to validation errors in bundle"}));let h=t.length===0?l.filter(d=>d.status===D.READY):[],g=t.length===0;return{files:l,validFiles:h,errors:t,warnings:a,canDeploy:g}}function Kt(e){return e.filter(n=>n.status===D.READY)}function rr(e){return Kt(e).length>0}var ye=I(()=>{"use strict";R();he()});function We(e){return qt.test(e)}var Vt,qt,Je=I(()=>{"use strict";Vt=["^npm-debug\\.log$","^\\..*\\.swp$","^\\.DS_Store$","^\\.AppleDouble$","^\\.LSOverride$","^Icon\\r$","^\\._.*","^\\.Spotlight-V100(?:$|\\/)","\\.Trashes","^__MACOSX$","~$","^Thumbs\\.db$","^ehthumbs\\.db$","^[Dd]esktop\\.ini$","@eaDir$"],qt=new RegExp(Vt.join("|"))});function Qe(e,n){if(!e||e.length===0)return[];if(!n?.allowUnbuilt&&e.find(a=>a&&z(a)))throw m.business("Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder");return e.filter(t=>{if(!t)return!1;let a=t.replace(/\\/g,"/").split("/").filter(Boolean);if(a.length===0)return!0;let l=a[a.length-1];if(We(l))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(g=>h.toLowerCase()===g.toLowerCase()))return!1;return!0})}var Yt,ge=I(()=>{"use strict";R();Je();Yt=["__MACOSX",".Trashes",".fseventsd",".Spotlight-V100"]});function Ze(e,n){if(e.includes("\0")||e.includes("/../")||e.startsWith("../")||e.endsWith("/.."))throw m.business(`Security error: Unsafe file path "${e}" for file: ${n}`)}function et(e,n){let t=ee(e,n);if(t)throw m.business(t.sentence(e,n))}var Ee=I(()=>{"use strict";R();he()});async function tt(e,n={},t){let a=!!(n.build||n.prerender),l=Xe(e.map(f=>f.path),{flatten:n.pathDetect!==!1}).map(f=>f.path),c=new Set(Qe(l,{allowUnbuilt:a})),h=e.map((f,A)=>({source:f,deployPath:l[A]})).filter(({deployPath:f})=>c.has(f));if(h.length===0)return[];let g=a?null:Xt(t),d=[],E=0;for(let{source:f,deployPath:A}of h){if(g&&Ze(A,f.origin),f.size===0)continue;g&&(E+=f.size,et({path:A,size:f.size,totalSize:E},g));let _=await f.read(),{md5:F}=await X(_);d.push({path:A,content:_,size:f.size,md5:F})}if(g&&d.length>g.maxFilesCount)throw m.business(`Too many files to deploy. Maximum allowed is ${g.maxFilesCount} files.`);return d}function Xt(e){if(!e)throw m.config("Platform limits not provided. Deploy-mode validation requires the limits argument \u2014 pass `ship.getLimits()` result.");return e}var nt=I(()=>{"use strict";R();ce();ge();j();Ee()});var it={};ft(it,{processFilesForBrowser:()=>rt});async function rt(e,n={},t){if(je()!=="browser")throw m.business("processFilesForBrowser can only be called in a browser environment.");return tt(e.map(a=>({path:a.webkitRelativePath||a.name,origin:a.name,size:a.size,read:async()=>a})),n,t)}var Ae=I(()=>{"use strict";R();nt();de()});R();R();R();var V=class{constructor(){this.handlers=new Map}on(n,t){this.handlers.has(n)||this.handlers.set(n,new Set),this.handlers.get(n)?.add(t)}off(n,t){let a=this.handlers.get(n);a&&(a.delete(t),a.size===0&&this.handlers.delete(n))}emit(n,...t){let a=this.handlers.get(n);if(!a)return;let l=Array.from(a);for(let c of l)try{c(...t)}catch(h){a.delete(c),n!=="error"&&setTimeout(()=>{let g=h instanceof Error?h:new Error(String(h));this.emit("error",g,String(n))},0)}}};var _t=3e4,wt=2,Pt=300,Nt=2e3,xt=new Set([500,502,503,504]);function Ot(e,n){return new Promise((t,a)=>{if(n?.aborted){a(n.reason);return}let l=()=>{clearTimeout(h),n?.removeEventListener("abort",c)},c=()=>{l(),a(n?.reason)},h=setTimeout(()=>{l(),t()},e);n?.addEventListener("abort",c)})}var Ce=3e5,Ft=3e5,vt=Ce+Ft,q=class extends V{constructor(t){super();this.globalHeaders={};this.apiUrl=t.apiUrl||ae,this.getAuthHeadersCallback=t.getAuthHeaders,this.session=t.session??!1,this.caller=t.caller,this.timeout=t.timeout??_t,this.maxRetries=Math.max(0,t.maxRetries??wt),this.fetch=t.fetch??globalThis.fetch.bind(globalThis),this.deploy={endpoint:t.deployEndpoint||T.DEPLOYMENTS,timeout:t.timeout??Ce,buildTimeout:t.timeout??vt}}setGlobalHeaders(t){this.globalHeaders=t}async executeRequest(t,a,l,c=this.timeout){for(let h=0;;h++)try{return await this.attemptOnce(t,a,l,c)}catch(g){let d=m.fromFetchError(g,l);if(h>=this.maxRetries||!this.isRetryable(d,a))throw this.emit("error",d,t),d;this.emit("retry",d,t,h+1);let E=Math.min(Nt,Pt*2**h);try{await Ot(Math.random()*E,a.signal)}catch(f){let A=m.fromFetchError(f,l);throw this.emit("error",A,t),A}}}isRetryable(t,a){if(a.signal?.aborted||t.isType(y.Maintenance)||t.isType(y.Cancelled)||!(t.isNetworkError()||t.status!==void 0&&xt.has(t.status)))return!1;let c=(a.method??"GET").toUpperCase();return c==="GET"||c==="HEAD"?!0:c==="PUT"||c==="DELETE"?!1:this.hasIdempotencyKey(a.headers)}hasIdempotencyKey(t){if(!t)return!1;let a=v.HEADER.toLowerCase();return Object.keys(t).some(l=>l.toLowerCase()===a)}async attemptOnce(t,a,l,c=this.timeout){let h=()=>{};try{let g=await this.mergeHeaders(a.headers),d=this.createTimeoutSignal(a.signal,c);h=d.cleanup;let E={...a,headers:g,credentials:this.session&&!g.Authorization?"include":void 0,signal:d.signal};this.emit("request",t,E);let f=await this.fetch(t,E);if(h(),!f.ok)throw await m.fromHttpResponse(f,l);return this.emit("response",this.safeClone(f),t),{data:await this.parseResponse(this.safeClone(f)),status:f.status}}catch(g){throw h(),m.fromFetchError(g,l)}}async request(t,a,l,c){let{data:h}=await this.executeRequest(`${this.apiUrl}${t}`,a,l,c);return h}async requestWithStatus(t,a,l){return this.executeRequest(`${this.apiUrl}${t}`,a,l)}async mergeHeaders(t={}){return{...this.globalHeaders,...this.caller?{[C.HEADER]:this.caller}:{},...await this.getAuthHeadersCallback(),...t}}createTimeoutSignal(t,a=this.timeout){let l=new AbortController,c=setTimeout(()=>l.abort(new DOMException(`Timed out after ${a}ms`,"TimeoutError")),a),h=t?()=>l.abort(t.reason):void 0;return t&&h&&(t.addEventListener("abort",h),t.aborted&&l.abort(t.reason)),{signal:l.signal,cleanup:()=>{clearTimeout(c),t&&h&&t.removeEventListener("abort",h)}}}safeClone(t){try{return t.clone()}catch{return t}}async parseResponse(t){if(!(t.headers.get("Content-Length")==="0"||t.status===204))return t.json()}};R();R();async function Me(e,n={}){let{labels:t,via:a,password:l,ttl:c,flags:h,captcha:g}=n,d=new FormData,E=[];for(let f of e){if(typeof f.content=="string"||f.content===null||f.content===void 0)throw m.file(`Unsupported file.content type: ${f.path}`,{filePath:f.path});if(!f.md5)throw m.file(`File missing md5 checksum: ${f.path}`,{filePath:f.path});d.append(L.FILES,new File([f.content],f.path,{type:"application/octet-stream"})),E.push(f.md5)}return d.append(L.CHECKSUMS,JSON.stringify(E)),t&&t.length>0&&d.append(L.LABELS,JSON.stringify(t)),a&&d.append(L.VIA,a),l&&d.append(L.PASSWORD,l),c!==void 0&&d.append(L.TTL,String(c)),h?.build&&d.append(L.BUILD,"true"),h?.prerender&&d.append(L.PRERENDER,"true"),h?.spa&&d.append(L.SPA,"true"),g&&d.append(L.CAPTCHA,g),d}R();j();async function $t(){let e=JSON.stringify(Ne,null,2),n;typeof Buffer<"u"?n=Buffer.from(e,"utf-8"):n=new Blob([e],{type:"application/json"});let{md5:t}=await X(n);return{path:P,content:n,size:e.length,md5:t}}async function Ht(e,n){let t=e.find(h=>h.path===K.INDEX_FILE||h.path===`/${K.INDEX_FILE}`);if(!t||t.size>K.MAX_INDEX_BYTES)return!1;let a;if(typeof Buffer<"u"&&Buffer.isBuffer(t.content))a=t.content.toString("utf-8");else if(typeof Blob<"u"&&t.content instanceof Blob)a=await t.content.text();else if(typeof File<"u"&&t.content instanceof File)a=await t.content.text();else return!1;let l={files:e.map(h=>h.path),index:a};return(await n.request(T.SPA_CHECK,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(l)},"SPA check")).isSPA}async function Ge(e,n,t){if(t.spaDetect===!1||t.spa||t.build||t.prerender||e.some(a=>a.path===P))return e;try{if(await Ht(e,n)){let l=await $t();return[...e,l]}}catch{}return e}R();R();function M(e){if(e==null)return;if(e.length===0)return e;if(e.length>O.MAX_COUNT)throw m.validation(`Maximum ${O.MAX_COUNT} labels allowed`);let n=e.map((a,l)=>{if(typeof a!="string")throw m.validation(`Label at index ${l} must be a string`);let c=a.trim().toLowerCase();if(c.length<O.MIN_LENGTH)throw m.validation(`Labels must be at least ${O.MIN_LENGTH} characters long`);if(c.length>O.MAX_LENGTH)throw m.validation(`Labels must be no more than ${O.MAX_LENGTH} characters long`);if(!ve.test(c))throw m.validation(`Labels must start and end with alphanumeric characters, with optional separators (${O.SEPARATORS}) between segments`);return c}),t=[...new Set(n)];if(t.length!==n.length)throw m.validation("Duplicate labels are not allowed");return t}async function ke(e){let n=e.find(l=>l.path===P||l.path===`/${P}`);if(!n)return;let t=n.content,a=typeof t.text=="function"?await t.text():n.content.toString("utf8");xe(a)}var W={"Content-Type":"application/json"},Bt="sdk";function pe(e){let n=new URLSearchParams;e?.limit!==void 0&&n.set("limit",String(e.limit)),e?.cursor!==void 0&&n.set("cursor",e.cursor);let t=n.toString();return t?`?${t}`:""}function ze(e){let{getApi:n,processInput:t}=e;return{upload:async(a,l={})=>{if(!t)throw m.config("processInput function is not provided.");let c=n(),h=await t(a,l),g=await Ge(h,c,l);if(!g.length)throw m.business("No files to deploy");for(let F of g)if(!F.md5)throw m.file(`MD5 checksum missing for file: ${F.path}`,{filePath:F.path});le(l.password);let d=se(l.ttl),E=De(l.idempotencyKey),f=M(l.labels);await ke(g);let A=l.build||l.prerender||l.spa?{build:l.build,prerender:l.prerender,spa:l.spa}:void 0,_=await Me(g,{labels:f,via:l.via??Bt,password:l.password,ttl:d,flags:A,captcha:l.captcha});return c.request(c.deploy.endpoint,{method:"POST",body:_,...E?{headers:{[v.HEADER]:E}}:{},signal:l.signal||null},"Deploy",l.build||l.prerender?c.deploy.buildTimeout:c.deploy.timeout)},list:async a=>n().request(`${T.DEPLOYMENTS}${pe(a)}`,{method:"GET"},"List deployments"),get:async a=>n().request(T.DEPLOYMENT(encodeURIComponent(a)),{method:"GET"},"Get deployment"),set:async(a,l)=>n().request(T.DEPLOYMENT(encodeURIComponent(a)),{method:"PATCH",headers:W,body:JSON.stringify({labels:M(l.labels)})},"Update deployment labels"),delete:async a=>n().request(T.DEPLOYMENT(encodeURIComponent(a)),{method:"DELETE"},"Delete deployment")}}function Ke(e){let{getApi:n}=e;return{set:async(t,a={})=>{let l=M(a.labels),c={};a.deployment&&(c.deployment=a.deployment),l!==void 0&&(c.labels=l);let{data:h,status:g}=await n().requestWithStatus(T.DOMAIN(encodeURIComponent(t)),{method:"PUT",headers:W,body:JSON.stringify(c)},"Set domain");return{...h,isCreate:g===201}},list:async t=>n().request(`${T.DOMAINS}${pe(t)}`,{method:"GET"},"List domains"),get:async t=>n().request(T.DOMAIN(encodeURIComponent(t)),{method:"GET"},"Get domain"),delete:async t=>n().request(T.DOMAIN(encodeURIComponent(t)),{method:"DELETE"},"Delete domain"),verify:async t=>n().request(T.DOMAIN_VERIFY(encodeURIComponent(t)),{method:"POST"},"Verify domain"),validate:async t=>n().request(T.DOMAINS_VALIDATE,{method:"POST",headers:W,body:JSON.stringify({domain:t})},"Validate domain"),dns:async t=>n().request(T.DOMAIN_DNS(encodeURIComponent(t)),{method:"GET"},"Get domain DNS"),records:async t=>n().request(T.DOMAIN_RECORDS(encodeURIComponent(t)),{method:"GET"},"Get domain records"),share:async t=>n().request(T.DOMAIN_SHARE(encodeURIComponent(t)),{method:"GET"},"Get domain share")}}function Ve(e){let{getApi:n}=e;return{get:async()=>n().request(T.ACCOUNT,{method:"GET"},"Get account")}}function qe(e){let{getApi:n}=e;return{create:async(t={})=>{let a=se(t.ttl),l=M(t.labels),c={};return a!==void 0&&(c.ttl=a),l!==void 0&&(c.labels=l),n().request(T.TOKENS,{method:"POST",headers:W,body:JSON.stringify(c)},"Create token")},list:async t=>n().request(`${T.TOKENS}${pe(t)}`,{method:"GET"},"List tokens"),get:async t=>n().request(T.TOKEN(encodeURIComponent(t)),{method:"GET"},"Get token"),delete:async t=>n().request(T.TOKEN(encodeURIComponent(t)),{method:"DELETE"},"Delete token")}}var J=class{constructor(n={}){this.initPromise=null;this.platformLimits=null;this.credential=null;if(n={...n,apiUrl:n.apiUrl||void 0,token:n.token||void 0,caller:n.caller||void 0},this.clientOptions=n,n.caller!==void 0&&Oe(n.caller),n.token&&n.session)throw m.config("Provide either `token` or `session`, not both.");typeof n.token=="string"?(oe(n.token),this.credential=n.token):n.token&&(this.credential=n.token),this.http=new q({...n,getAuthHeaders:()=>this.getAuthHeaders()});let t={getApi:()=>this.http};this.deployments=ze({...t,processInput:async(a,l)=>(await this.ensureInitialized(),this.processInput(a,l))}),this.domains=Ke(t),this.account=Ve(t),this.tokens=qe(t)}async ensureInitialized(){return this.initPromise||(this.initPromise=this.fetchPlatformLimits()),this.initPromise}async fetchPlatformLimits(){try{this.platformLimits=await this.http.request(T.LIMITS,{method:"GET"},"Get limits")}catch(n){throw this.initPromise=null,n}}async ping(){return this.http.request(T.PING,{method:"GET"},"Ping")}async deploy(n,t){return this.deployments.upload(n,t)}async whoami(){return this.account.get()}async getLimits(){return this.platformLimits?this.platformLimits:(await this.ensureInitialized(),this.platformLimits)}on(n,t){this.http.on(n,t)}off(n,t){this.http.off(n,t)}setHeaders(n){this.http.setGlobalHeaders(n)}clearHeaders(){this.http.setGlobalHeaders({})}setToken(n){if(this.clientOptions.session)throw m.config("Provide either `token` or `session`, not both.");if(typeof n=="string"){if(!n)throw m.business("Invalid token provided. Token must be a non-empty string.");oe(n),this.credential=n;return}if(typeof n!="function")throw m.business("Invalid token provided. Token must be a non-empty string or a provider function.");this.credential=n}async getAuthHeaders(){if(this.credential===null)return{};let n=typeof this.credential=="function"?await this.credential():this.credential;if(!n)throw m.authentication("Token provider returned no token.");if(typeof n!="string")throw m.authentication("Token provider returned a non-string value.");return{Authorization:`Bearer ${n}`}}};R();R();ce();de();ye();ge();j();Ee();function fr(e,n,t,a=!0){let l=e===1?n:t;return a?`${e} ${l}`:l}Ae();var Te=class extends J{async deploy(n,t){return super.deploy(n,t)}async processInput(n,t){if(!Array.isArray(n)||!n.every(l=>l instanceof File))throw m.business("Invalid input type for browser environment. Expected File[].");if(n.length===0)throw m.business("No files to deploy.");let{processFilesForBrowser:a}=await Promise.resolve().then(()=>(Ae(),it));return a(n,t,this.platformLimits??void 0)}},$r=Te;export{_e as API_KEY,T as API_PATHS,tn as AUTH_BASE_PATH,Zt as AccountPlan,q as ApiHttp,ne as AuthMethod,C as CALLER,ae as DEFAULT_API,P as DEPLOYMENT_CONFIG_FILENAME,L as DEPLOY_FIELDS,we as DEPLOY_TOKEN,Wt as DeploymentStatus,mt as DeploymentVia,Jt as DomainStatus,y as ErrorType,D as FILE_VALIDATION_STATUS,D as FileValidationStatus,v as IDEMPOTENCY_KEY_CONSTRAINTS,Yt as JUNK_DIRECTORIES,O as LABEL_CONSTRAINTS,ve as LABEL_PATTERN,un as MY_API_KEY_URL,Pe as OAUTH_TOKEN,on as OAuthScope,k as PASSWORD_CONSTRAINTS,cn as PUBLIC_DEPLOYMENT_TTL_SECONDS,ln as SHIP_ENV,pn as SHIP_VIA_ENV,nn as SIGN_IN_RETURN_PARAM,K as SPA_CHECK_CONSTRAINTS,Ne as SPA_DEFAULT_CONFIG,Te as Ship,m as ShipError,G as TTL_CONSTRAINTS,x as TokenKind,Rt as UNBUILT_PROJECT_MARKERS,St as UNSAFE_FILENAME_CHARS,en as WEB_FILE_ACCEPT,jn as __setTestEnvironment,rr as allValidFilesReady,xe as assertShipJsonSyntax,X as calculateMD5,Dt as classifyToken,Ve as createAccountResource,ze as createDeploymentResource,Ke as createDomainResource,qe as createTokenResource,$r as default,gn as deserializeLabels,dn as extractSubdomain,Qe as filterJunk,Z as formatFileSize,mn as generateDeploymentUrl,hn as generateDomainUrl,je as getENV,Kt as getValidFiles,z as hasUnbuiltMarker,Le as hasUnsafeChars,Ie as isBlockedExtension,fn as isCustomDomain,an as isDeployment,Fe as isPlatformDomain,be as isShipError,Qt as normalizeVia,Xe as optimizeDeployPaths,fr as pluralize,rt as processFilesForBrowser,rn as readBearerValue,yn as serializeLabels,bt as validateApiKey,sn as validateApiUrl,Oe as validateCaller,et as validateDeployFile,Ze as validateDeployPath,It as validateDeployToken,me as validateFileName,nr as validateFiles,De as validateIdempotencyKey,Lt as validateOAuthToken,le as validatePassword,oe as validateToken,se as validateTtl};
|
|
1
|
+
var ut=Object.create;var H=Object.defineProperty;var pt=Object.getOwnPropertyDescriptor;var ct=Object.getOwnPropertyNames;var ft=Object.getPrototypeOf,dt=Object.prototype.hasOwnProperty;var mt=(e,n,t)=>n in e?H(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t;var _=(e,n)=>()=>(e&&(n=e(e=0)),n);var be=(e,n)=>()=>(n||e((n={exports:{}}).exports,n),n.exports),ht=(e,n)=>{for(var t in n)H(e,t,{get:n[t],enumerable:!0})},yt=(e,n,t,a)=>{if(n&&typeof n=="object"||typeof n=="function")for(let l of ct(n))!dt.call(e,l)&&l!==t&&H(e,l,{get:()=>n[l],enumerable:!(a=pt(n,l))||a.enumerable});return e};var $=(e,n,t)=>(t=e!=null?ut(ft(e)):{},yt(n||!e||!e.__esModule?H(t,"default",{value:e,enumerable:!0}):t,e));var G=(e,n,t)=>mt(e,typeof n!="symbol"?n+"":n,t);function tn(e){if(!e||typeof e!="string")return;let n=e.trim().toLowerCase();return Object.values(gt).includes(n)?n:void 0}function Ie(e){if(e==null)return;if(typeof e!="string")throw d.validation("Idempotency key must be a string.");let n=e.trim();if(!n)throw d.validation("Idempotency key must not be empty.");if(n.length>v.MAX_LENGTH)throw d.validation(`Idempotency key must be at most ${v.MAX_LENGTH} characters.`);return n}function St(e){let n=e.code;return n==="ERR_INVALID_URL"?!1:typeof n=="string"?!0:e instanceof TypeError?!/\burl\b/i.test(e.message):!1}function _e(e){return e!==null&&typeof e=="object"&&"name"in e&&e.name==="ShipError"&&"status"in e}function Dt(e){let n=e.replace(/\\/g,"/").split("/").pop()??"",t=n.lastIndexOf(".");return t<=0||t===n.length-1?null:n.slice(t+1).toLowerCase()}function Le(e,n){let t=Dt(e);return t===null?!1:Array.isArray(n)?n.includes(t):n.has(t)}function Ne(e){return bt.test(e)}function K(e){return e.replace(/\\/g,"/").split("/").filter(Boolean).some(t=>It.has(t))}function _t(e){return e.startsWith(Pe.PREFIX)?x.API_KEY:e.startsWith(we.PREFIX)?x.DEPLOY_TOKEN:e.startsWith(Oe.PREFIX)?x.OAUTH:x.OPAQUE}function ln(e){return e.slice(0,oe.length).toLowerCase()!==oe?null:e.slice(oe.length)||null}function Ce(e){let n=e.charCodeAt(0)===65279?e.slice(1):e,t;try{t=JSON.parse(n)}catch(a){throw d.config(`invalid JSON format in config: ${a.message}`,{filePath:P})}if(t===null||typeof t!="object"||Array.isArray(t))throw d.config(`${P} must contain a JSON object`,{filePath:P})}function se(e,n,t){if(!e.startsWith(n.PREFIX))throw d.validation(`${t} must start with "${n.PREFIX}"`);if(e.length!==n.TOTAL_LENGTH)throw d.validation(`${t} must be ${n.TOTAL_LENGTH} characters total (${n.PREFIX} + ${n.HEX_LENGTH} hex chars)`);let a=e.slice(n.PREFIX.length);if(!new RegExp(`^[a-f0-9]{${n.HEX_LENGTH}}$`,"i").test(a))throw d.validation(`${t} must contain ${n.HEX_LENGTH} hexadecimal characters after "${n.PREFIX}" prefix`)}function Lt(e){se(e,Pe,"API key")}function Nt(e){se(e,we,"Deploy token")}function Pt(e){se(e,Oe,"OAuth access token")}function ae(e){switch(_t(e)){case x.API_KEY:Lt(e);return;case x.DEPLOY_TOKEN:Nt(e);return;case x.OAUTH:Pt(e);return;case x.OPAQUE:if(!e)throw d.validation("Token must be a non-empty string")}}function ve(e){if(!e||e.length>M.MAX_LENGTH||!M.PATTERN.test(e))throw d.validation(`Caller must be 1-${M.MAX_LENGTH} characters: letters, digits, dots, underscores, or hyphens`)}function pn(e){try{let n=new URL(e);if(!["http:","https:"].includes(n.protocol))throw d.validation("API URL must use http:// or https:// protocol");if(n.pathname!=="/"&&n.pathname!=="")throw d.validation("API URL must not contain a path");if(n.search||n.hash)throw d.validation("API URL must not contain query parameters or fragments")}catch(n){throw _e(n)?n:d.validation("API URL must be a valid URL")}}function cn(e){return/^[a-z]+-[a-z]+-[a-z0-9]{7}(\.[a-z0-9.-]+)?$/i.test(e)}function le(e){if(e!=null){if(typeof e!="number"||!Number.isFinite(e))throw d.validation("TTL must be a number of seconds");if(!Number.isInteger(e))throw d.validation("TTL must be a whole number of seconds");if(e<z.MIN_SECONDS||e>z.MAX_SECONDS)throw d.validation(`TTL must be between ${z.MIN_SECONDS} and ${z.MAX_SECONDS} seconds`);return e}}function Fe(e,n){return e.endsWith(`.${n}`)}function yn(e,n){return!Fe(e,n)}function gn(e,n){return Fe(e,n)?e.slice(0,-(n.length+1)):null}function En(e){return`https://${e}`}function An(e){return`https://${e}`}function Tn(e){return!e||e.length===0?null:JSON.stringify(e)}function Sn(e){if(!e)return[];try{let n=JSON.parse(e);return Array.isArray(n)?n:[]}catch{return[]}}function Ue(e){if(e==null||e==="")return;if(typeof e!="string")throw d.validation("Build command must be a string");let n=e.trim();if(n.length===0||n.length>U.COMMAND_MAX_LENGTH)throw d.validation(`Build command must be between 1 and ${U.COMMAND_MAX_LENGTH} characters`);if(/[\x00-\x1f\x7f]/.test(n))throw d.validation("Build command must be a single line");return n}function Be(e){if(e==null||e==="")return;if(typeof e!="string")throw d.validation("Output folder must be a string");let n=e.trim().replace(/\/+$/,"");if(n.length===0||n.length>U.OUTPUT_DIR_MAX_LENGTH)throw d.validation(`Output folder must be between 1 and ${U.OUTPUT_DIR_MAX_LENGTH} characters`);if(!U.OUTPUT_DIR_PATTERN.test(n)||n.split("/").some(t=>t===".."||t==="."))throw d.validation("Output folder must be a relative path inside the project, like dist or dist/site");return n}function pe(e){if(e==null)return;if(typeof e!="string")throw d.validation("Password must be a string");let n=e.trim();if(n.length<k.MIN_LENGTH||n.length>k.MAX_LENGTH)throw d.validation(`Password must be between ${k.MIN_LENGTH} and ${k.MAX_LENGTH} characters`);return n}var Zt,gt,en,v,nn,T,I,rn,y,Et,re,At,Tt,d,Rt,on,bt,It,sn,an,ie,Pe,we,Oe,M,x,oe,un,P,xe,V,z,ue,fn,dn,mn,hn,R,C,Me,U,k,D=_(()=>{"use strict";Zt={PENDING:"pending",SUCCESS:"success",FAILED:"failed",DELETING:"deleting"},gt={WEB:"web",SDK:"sdk",CLI:"cli",MCP:"mcp",GIT:"git",N8N:"n8n",GPT:"gpt",VSC:"vsc",CLD:"cld",CRS:"crs",GMN:"gmn",API:"api"},en={PENDING:"pending",PARTIAL:"partial",SUCCESS:"success",PAUSED:"paused"},v={HEADER:"Idempotency-Key",MAX_LENGTH:256,WINDOW_SECONDS:1440*60};nn={FREE:"free",PRO:"pro",TEAM:"team",SCALE:"scale",SPONSORED:"sponsored"},T={DEPLOYMENTS:"/deployments",DEPLOYMENT:e=>`/deployments/${e}`,DEPLOYMENT_CONFIG:e=>`/deployments/${e}/config`,DOMAINS:"/domains",DOMAIN:e=>`/domains/${e}`,DOMAIN_VERIFY:e=>`/domains/${e}/verify`,DOMAIN_DNS:e=>`/domains/${e}/dns`,DOMAIN_RECORDS:e=>`/domains/${e}/records`,DOMAIN_SHARE:e=>`/domains/${e}/share`,DOMAIN_PROPAGATION:e=>`/domains/${e}/propagation`,DOMAINS_VALIDATE:"/domains/validate",TOKENS:"/tokens",TOKEN:e=>`/tokens/${e}`,ACCOUNT:"/account",ACCOUNT_KEY:"/account/key",ACCOUNT_CLAIM:"/account/claim",ACTIVITIES:"/activities",LABELS:"/labels",LIMITS:"/limits",PLANS:"/plans",PING:"/ping",SETUP:"/setup",SPA_CHECK:"/spa-check",UPLOAD:"/upload"},I={FILES:"files[]",CHECKSUMS:"checksums",LABELS:"labels",VIA:"via",PASSWORD:"password",TTL:"ttl",BUILD:"build",PRERENDER:"prerender",SPA:"spa",BUILD_COMMAND:"buildCommand",OUTPUT_DIR:"outputDir",CAPTCHA:"captcha"},rn={PATH:"path",CONTENT:"content",ENCODING:"encoding",DEFAULT_ENCODING:"utf-8",ENCODINGS:["utf-8","base64"]},y={Validation:"validation_failed",NotFound:"not_found",Forbidden:"forbidden",RateLimit:"rate_limit_exceeded",Authentication:"authentication_failed",Business:"business_logic_error",Api:"internal_server_error",Maintenance:"maintenance",Build:"build_failed",Network:"network_error",Timeout:"timeout_error",Cancelled:"operation_cancelled",File:"file_error",Config:"config_error"},Et=new Set([y.Network,y.Timeout,y.Cancelled,y.File,y.Config]),re={client:new Set([y.Build,y.Business,y.Cancelled,y.Config,y.File,y.Forbidden,y.NotFound,y.RateLimit,y.Validation]),network:new Set([y.Network,y.Timeout]),auth:new Set([y.Authentication])},At=new Set(Object.values(y).filter(e=>!Et.has(e))),Tt=200;d=class e extends Error{constructor(t,a,l,c){super(a);G(this,"type");G(this,"status");G(this,"details");this.type=t,this.status=l,this.details=c,this.name="ShipError"}toResponse(){let t=this.details,a=this.type===y.Authentication&&t?.internal?void 0:this.details;return{error:this.type,message:this.message,status:this.status,details:a}}static async fromHttpResponse(t,a){let l,c,h;try{if(t.headers.get("content-type")?.includes("application/json")){let f=await t.json();if(f&&typeof f=="object"){let A=f;typeof A.message=="string"?l=A.message:typeof A.error=="string"&&(l=A.error),c=A.details,typeof A.error=="string"&&At.has(A.error)&&(h=A.error)}}else{let f=(await t.text()).trim();f&&!f.startsWith("<")&&f.length<=Tt&&(l=f)}}catch{}let g=t.headers.get("retry-after");if(g!==null){let E=g.trim(),f=/^\d+$/.test(E)?Number(E):Math.ceil((Date.parse(E)-Date.now())/1e3);if(Number.isFinite(f)&&f>=0){let A=c&&typeof c=="object"?c:{};A.retryAfter===void 0&&(c={...A,retryAfter:f})}}l=l||`${a||"Request"} failed with status ${t.status}`;let m=h??(t.status===401?y.Authentication:t.status===403?y.Forbidden:t.status===429?y.RateLimit:y.Api);return new e(m,l,t.status,c)}static fromFetchError(t,a){if(_e(t))return t;let l=a||"Request",c=t?.name;return c==="AbortError"?e.cancelled(`${l} was cancelled`):c==="TimeoutError"?e.timeout(`${l} timed out`,{cause:t}):t instanceof Error?St(t)?e.network(`${l} failed: ${t.message}`,{cause:t}):new e(y.Api,`${l} failed: ${t.message}`):new e(y.Api,`${l} failed: Unknown error`)}static validation(t,a){return new e(y.Validation,t,400,a)}static notFound(t,a){let l=a?`${t} ${a} not found`:`${t} not found`;return new e(y.NotFound,l,404)}static forbidden(t,a){return new e(y.Forbidden,t,403,a)}static rateLimit(t="Too many requests",a){return new e(y.RateLimit,t,429,a)}static authentication(t="Authentication required",a){return new e(y.Authentication,t,401,a)}static business(t,a=400,l){return new e(y.Business,t,a,l)}static network(t,a){return new e(y.Network,t,void 0,a)}static timeout(t,a){return new e(y.Timeout,t,void 0,a)}static cancelled(t,a){return new e(y.Cancelled,t,void 0,a)}static file(t,a){return new e(y.File,t,void 0,a)}static config(t,a){return new e(y.Config,t,void 0,a)}static api(t,a=500,l){return new e(y.Api,t,a,l)}static maintenance(t,a){return new e(y.Maintenance,t,503,a)}static build(t,a){return new e(y.Build,t,422,a)}isClientError(){return re.client.has(this.type)?!0:this.status!==void 0&&this.status>=400&&this.status<500}isNetworkError(){return re.network.has(this.type)}isAuthError(){return re.auth.has(this.type)}isType(t){return this.type===t}};Rt=["html","htm","xhtml","xml","txt","md","markdown","pdf","csv","json","jsonc","webmanifest","map","toml","yaml","yml","rss","atom","css","scss","sass","less","js","mjs","cjs","jsx","ts","tsx","wasm","vue","svelte","png","jpg","jpeg","gif","webp","avif","svg","ico","bmp","tif","tiff","heic","heif","woff","woff2","ttf","otf","eot","mp3","wav","ogg","oga","opus","m4a","aac","flac","weba","mp4","webm","ogv","mov","m4v","avi","glb","gltf","usdz","vtt","srt","zip"],on=Rt.map(e=>`.${e}`).join(","),bt=/[\x00-\x1f\x7f#?%\\<>"]/;It=new Set(["node_modules","package.json"]);sn="/auth",an="signing-in",ie={SESSION:"session",API_KEY:"apiKey",TOKEN:"token",AGENT:"agent",OAUTH:"oauth",SYSTEM:"system"},Pe={PREFIX:"ship-",HEX_LENGTH:32,TOTAL_LENGTH:37,HINT_LENGTH:4},we={PREFIX:"deploy-",HEX_LENGTH:32,TOTAL_LENGTH:39},Oe={PREFIX:"oauth-",HEX_LENGTH:32,TOTAL_LENGTH:38},M={HEADER:"X-Caller",MAX_LENGTH:128,PATTERN:/^[a-zA-Z0-9._-]+$/},x={API_KEY:ie.API_KEY,DEPLOY_TOKEN:ie.TOKEN,OAUTH:ie.OAUTH,OPAQUE:"opaque"};oe="bearer ";un={ACCOUNT_READ:"account:read",DEPLOYMENTS_READ:"deployments:read",DEPLOYMENTS_WRITE:"deployments:write",DOMAINS_READ:"domains:read",DOMAINS_WRITE:"domains:write"},P="ship.json",xe={rewrites:[{source:"/(.*)",destination:"/index.html"}]},V={INDEX_FILE:"index.html",MAX_INDEX_BYTES:100*1024};z={MIN_SECONDS:1,MAX_SECONDS:365*24*60*60};ue="https://api.shipstatic.com",fn={TOKEN:"SHIP_TOKEN",API_URL:"SHIP_API_URL"},dn="SHIP_VIA",mn="https://my.shipstatic.com/api-key",hn=4320*60,R={PENDING:"pending",PROCESSING_ERROR:"processing_error",EXCLUDED:"excluded",VALIDATION_FAILED:"validation_failed",READY:"ready"};C={MIN_LENGTH:3,MAX_LENGTH:25,MAX_COUNT:10,SEPARATORS:"._-"},Me=/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/;U={COMMAND_MAX_LENGTH:200,OUTPUT_DIR_MAX_LENGTH:100,OUTPUT_DIR_PATTERN:/^[A-Za-z0-9._-]+(\/[A-Za-z0-9._-]+)*$/};k={MIN_LENGTH:6,MAX_LENGTH:128}});var ke=be((Ge,ze)=>{"use strict";(function(e){if(typeof Ge=="object")ze.exports=e();else if(typeof define=="function"&&define.amd)define(e);else{var n;try{n=window}catch{n=self}n.SparkMD5=e()}})(function(e){"use strict";var n=function(p,u){return p+u&4294967295},t=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function a(p,u,i,r,s,o){return u=n(n(u,p),n(r,o)),n(u<<s|u>>>32-s,i)}function l(p,u){var i=p[0],r=p[1],s=p[2],o=p[3];i+=(r&s|~r&o)+u[0]-680876936|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+u[1]-389564586|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+u[2]+606105819|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+u[3]-1044525330|0,r=(r<<22|r>>>10)+s|0,i+=(r&s|~r&o)+u[4]-176418897|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+u[5]+1200080426|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+u[6]-1473231341|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+u[7]-45705983|0,r=(r<<22|r>>>10)+s|0,i+=(r&s|~r&o)+u[8]+1770035416|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+u[9]-1958414417|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+u[10]-42063|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+u[11]-1990404162|0,r=(r<<22|r>>>10)+s|0,i+=(r&s|~r&o)+u[12]+1804603682|0,i=(i<<7|i>>>25)+r|0,o+=(i&r|~i&s)+u[13]-40341101|0,o=(o<<12|o>>>20)+i|0,s+=(o&i|~o&r)+u[14]-1502002290|0,s=(s<<17|s>>>15)+o|0,r+=(s&o|~s&i)+u[15]+1236535329|0,r=(r<<22|r>>>10)+s|0,i+=(r&o|s&~o)+u[1]-165796510|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+u[6]-1069501632|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+u[11]+643717713|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+u[0]-373897302|0,r=(r<<20|r>>>12)+s|0,i+=(r&o|s&~o)+u[5]-701558691|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+u[10]+38016083|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+u[15]-660478335|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+u[4]-405537848|0,r=(r<<20|r>>>12)+s|0,i+=(r&o|s&~o)+u[9]+568446438|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+u[14]-1019803690|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+u[3]-187363961|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+u[8]+1163531501|0,r=(r<<20|r>>>12)+s|0,i+=(r&o|s&~o)+u[13]-1444681467|0,i=(i<<5|i>>>27)+r|0,o+=(i&s|r&~s)+u[2]-51403784|0,o=(o<<9|o>>>23)+i|0,s+=(o&r|i&~r)+u[7]+1735328473|0,s=(s<<14|s>>>18)+o|0,r+=(s&i|o&~i)+u[12]-1926607734|0,r=(r<<20|r>>>12)+s|0,i+=(r^s^o)+u[5]-378558|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+u[8]-2022574463|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+u[11]+1839030562|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+u[14]-35309556|0,r=(r<<23|r>>>9)+s|0,i+=(r^s^o)+u[1]-1530992060|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+u[4]+1272893353|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+u[7]-155497632|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+u[10]-1094730640|0,r=(r<<23|r>>>9)+s|0,i+=(r^s^o)+u[13]+681279174|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+u[0]-358537222|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+u[3]-722521979|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+u[6]+76029189|0,r=(r<<23|r>>>9)+s|0,i+=(r^s^o)+u[9]-640364487|0,i=(i<<4|i>>>28)+r|0,o+=(i^r^s)+u[12]-421815835|0,o=(o<<11|o>>>21)+i|0,s+=(o^i^r)+u[15]+530742520|0,s=(s<<16|s>>>16)+o|0,r+=(s^o^i)+u[2]-995338651|0,r=(r<<23|r>>>9)+s|0,i+=(s^(r|~o))+u[0]-198630844|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+u[7]+1126891415|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+u[14]-1416354905|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+u[5]-57434055|0,r=(r<<21|r>>>11)+s|0,i+=(s^(r|~o))+u[12]+1700485571|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+u[3]-1894986606|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+u[10]-1051523|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+u[1]-2054922799|0,r=(r<<21|r>>>11)+s|0,i+=(s^(r|~o))+u[8]+1873313359|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+u[15]-30611744|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+u[6]-1560198380|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+u[13]+1309151649|0,r=(r<<21|r>>>11)+s|0,i+=(s^(r|~o))+u[4]-145523070|0,i=(i<<6|i>>>26)+r|0,o+=(r^(i|~s))+u[11]-1120210379|0,o=(o<<10|o>>>22)+i|0,s+=(i^(o|~r))+u[2]+718787259|0,s=(s<<15|s>>>17)+o|0,r+=(o^(s|~i))+u[9]-343485551|0,r=(r<<21|r>>>11)+s|0,p[0]=i+p[0]|0,p[1]=r+p[1]|0,p[2]=s+p[2]|0,p[3]=o+p[3]|0}function c(p){var u=[],i;for(i=0;i<64;i+=4)u[i>>2]=p.charCodeAt(i)+(p.charCodeAt(i+1)<<8)+(p.charCodeAt(i+2)<<16)+(p.charCodeAt(i+3)<<24);return u}function h(p){var u=[],i;for(i=0;i<64;i+=4)u[i>>2]=p[i]+(p[i+1]<<8)+(p[i+2]<<16)+(p[i+3]<<24);return u}function g(p){var u=p.length,i=[1732584193,-271733879,-1732584194,271733878],r,s,o,b,N,O;for(r=64;r<=u;r+=64)l(i,c(p.substring(r-64,r)));for(p=p.substring(r-64),s=p.length,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],r=0;r<s;r+=1)o[r>>2]|=p.charCodeAt(r)<<(r%4<<3);if(o[r>>2]|=128<<(r%4<<3),r>55)for(l(i,o),r=0;r<16;r+=1)o[r]=0;return b=u*8,b=b.toString(16).match(/(.*?)(.{0,8})$/),N=parseInt(b[2],16),O=parseInt(b[1],16)||0,o[14]=N,o[15]=O,l(i,o),i}function m(p){var u=p.length,i=[1732584193,-271733879,-1732584194,271733878],r,s,o,b,N,O;for(r=64;r<=u;r+=64)l(i,h(p.subarray(r-64,r)));for(p=r-64<u?p.subarray(r-64):new Uint8Array(0),s=p.length,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],r=0;r<s;r+=1)o[r>>2]|=p[r]<<(r%4<<3);if(o[r>>2]|=128<<(r%4<<3),r>55)for(l(i,o),r=0;r<16;r+=1)o[r]=0;return b=u*8,b=b.toString(16).match(/(.*?)(.{0,8})$/),N=parseInt(b[2],16),O=parseInt(b[1],16)||0,o[14]=N,o[15]=O,l(i,o),i}function E(p){var u="",i;for(i=0;i<4;i+=1)u+=t[p>>i*8+4&15]+t[p>>i*8&15];return u}function f(p){var u;for(u=0;u<p.length;u+=1)p[u]=E(p[u]);return p.join("")}f(g("hello"))!=="5d41402abc4b2a76b9719d911017c592"&&(n=function(p,u){var i=(p&65535)+(u&65535),r=(p>>16)+(u>>16)+(i>>16);return r<<16|i&65535}),typeof ArrayBuffer<"u"&&!ArrayBuffer.prototype.slice&&(function(){function p(u,i){return u=u|0||0,u<0?Math.max(u+i,0):Math.min(u,i)}ArrayBuffer.prototype.slice=function(u,i){var r=this.byteLength,s=p(u,r),o=r,b,N,O,Re;return i!==e&&(o=p(i,r)),s>o?new ArrayBuffer(0):(b=o-s,N=new ArrayBuffer(b),O=new Uint8Array(N),Re=new Uint8Array(this,s,b),O.set(Re),N)}})();function A(p){return/[\u0080-\uFFFF]/.test(p)&&(p=unescape(encodeURIComponent(p))),p}function L(p,u){var i=p.length,r=new ArrayBuffer(i),s=new Uint8Array(r),o;for(o=0;o<i;o+=1)s[o]=p.charCodeAt(o);return u?s:r}function F(p){return String.fromCharCode.apply(null,new Uint8Array(p))}function ne(p,u,i){var r=new Uint8Array(p.byteLength+u.byteLength);return r.set(new Uint8Array(p)),r.set(new Uint8Array(u),p.byteLength),i?r:r.buffer}function w(p){var u=[],i=p.length,r;for(r=0;r<i-1;r+=2)u.push(parseInt(p.substr(r,2),16));return String.fromCharCode.apply(String,u)}function S(){this.reset()}return S.prototype.append=function(p){return this.appendBinary(A(p)),this},S.prototype.appendBinary=function(p){this._buff+=p,this._length+=p.length;var u=this._buff.length,i;for(i=64;i<=u;i+=64)l(this._hash,c(this._buff.substring(i-64,i)));return this._buff=this._buff.substring(i-64),this},S.prototype.end=function(p){var u=this._buff,i=u.length,r,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o;for(r=0;r<i;r+=1)s[r>>2]|=u.charCodeAt(r)<<(r%4<<3);return this._finish(s,i),o=f(this._hash),p&&(o=w(o)),this.reset(),o},S.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},S.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},S.prototype.setState=function(p){return this._buff=p.buff,this._length=p.length,this._hash=p.hash,this},S.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},S.prototype._finish=function(p,u){var i=u,r,s,o;if(p[i>>2]|=128<<(i%4<<3),i>55)for(l(this._hash,p),i=0;i<16;i+=1)p[i]=0;r=this._length*8,r=r.toString(16).match(/(.*?)(.{0,8})$/),s=parseInt(r[2],16),o=parseInt(r[1],16)||0,p[14]=s,p[15]=o,l(this._hash,p)},S.hash=function(p,u){return S.hashBinary(A(p),u)},S.hashBinary=function(p,u){var i=g(p),r=f(i);return u?w(r):r},S.ArrayBuffer=function(){this.reset()},S.ArrayBuffer.prototype.append=function(p){var u=ne(this._buff.buffer,p,!0),i=u.length,r;for(this._length+=p.byteLength,r=64;r<=i;r+=64)l(this._hash,h(u.subarray(r-64,r)));return this._buff=r-64<i?new Uint8Array(u.buffer.slice(r-64)):new Uint8Array(0),this},S.ArrayBuffer.prototype.end=function(p){var u=this._buff,i=u.length,r=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],s,o;for(s=0;s<i;s+=1)r[s>>2]|=u[s]<<(s%4<<3);return this._finish(r,i),o=f(this._hash),p&&(o=w(o)),this.reset(),o},S.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},S.ArrayBuffer.prototype.getState=function(){var p=S.prototype.getState.call(this);return p.buff=F(p.buff),p},S.ArrayBuffer.prototype.setState=function(p){return p.buff=L(p.buff,!0),S.prototype.setState.call(this,p)},S.ArrayBuffer.prototype.destroy=S.prototype.destroy,S.ArrayBuffer.prototype._finish=S.prototype._finish,S.ArrayBuffer.hash=function(p,u){var i=m(new Uint8Array(p)),r=f(i);return u?w(r):r},S})});var Y=be((wn,Ke)=>{"use strict";Ke.exports={}});async function Bt(e){let n=(await Promise.resolve().then(()=>$(ke(),1))).default,t=new n.ArrayBuffer,a=2097152;for(let l=0;l<e.size;l+=a){let c=Math.min(l+a,e.size);t.append(await e.slice(l,c).arrayBuffer())}return{md5:t.end()}}async function Ht(e){let{createHash:n}=await Promise.resolve().then(()=>$(Y(),1)),t=n("md5");return t.update(e),{md5:t.digest("hex")}}async function $t(e){let{createHash:n}=await Promise.resolve().then(()=>$(Y(),1)),{createReadStream:t}=await Promise.resolve().then(()=>$(Y(),1));return new Promise((a,l)=>{let c=n("md5"),h=t(e);h.on("error",g=>l(d.file(`Failed to read file for MD5: ${g.message}`,{filePath:e}))),h.on("data",g=>c.update(g)),h.on("end",()=>a({md5:c.digest("hex")}))})}async function j(e){if(e instanceof Blob)return Bt(e);if(typeof Buffer<"u"&&Buffer.isBuffer(e))return Ht(e);if(typeof e=="string")return $t(e);throw d.business("Invalid input for MD5 calculation")}var W=_(()=>{"use strict";D()});function Z(e){return e.replace(/\\/g,"/").replace(/\/+/g,"/").replace(/^\/+/,"")}var Je=_(()=>{"use strict"});function Qe(e,n={}){if(n.flatten===!1)return e.map(a=>({path:Z(a),name:fe(a)}));let t=Kt(e);return e.map(a=>{let l=Z(a);if(t){let c=t.endsWith("/")?t:`${t}/`;l.startsWith(c)&&(l=l.substring(c.length))}return l||(l=fe(a)),{path:l,name:fe(a)}})}function Kt(e){if(!e.length)return"";let t=e.map(c=>Z(c)).map(c=>c.split("/")),a=[],l=Math.min(...t.map(c=>c.length));for(let c=0;c<l-1;c++){let h=t[0][c];if(t.every(g=>g[c]===h))a.push(h);else break}return a.join("/")}function fe(e){return e.split(/[/\\]/).pop()||e}var de=_(()=>{"use strict";Je()});function Zn(e){me=e}function Vt(){return typeof process<"u"&&process.versions&&process.versions.node?"node":typeof window<"u"||typeof self<"u"?"browser":"unknown"}function Ze(){return me||Vt()}var me,he=_(()=>{"use strict";me=null});function te(e,n){return Xt.find(t=>t.broken(e,n))}var Xt,ge=_(()=>{"use strict";D();Ee();Xt=[{name:"name",broken:({path:e})=>!ye(e).valid,sentence:({path:e})=>ye(e).reason??"Invalid file name"},{name:"extension",broken:({path:e},n)=>Le(e,n.blockedExtensions??[]),sentence:({path:e})=>`File extension not allowed: "${e}"`},{name:"fileSize",broken:({size:e},n)=>e>n.maxFileSize,sentence:({path:e},n)=>`File "${e}" too large. Maximum ${ee(n.maxFileSize)} allowed`},{name:"totalSize",broken:({totalSize:e},n)=>e>n.maxTotalSize,sentence:({totalSize:e},n)=>`Total upload size too large. ${ee(e)} exceeds maximum of ${ee(n.maxTotalSize)}`}]});function ee(e,n=1){if(e===0)return"0 Bytes";let t=1024,a=["Bytes","KB","MB","GB"],l=Math.floor(Math.log(e)/Math.log(t));return`${parseFloat((e/t**l).toFixed(n))} ${a[l]}`}function ye(e){if(Ne(e))return{valid:!1,reason:"File name contains unsafe characters"};if(e.startsWith(" ")||e.endsWith(" "))return{valid:!1,reason:"File name cannot start/end with spaces"};if(e.endsWith("."))return{valid:!1,reason:"File name cannot end with dots"};let n=/^(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|$)/i,t=e.split("/").pop()||e;return n.test(t)?{valid:!1,reason:"File name uses a reserved system name"}:e.includes("..")?{valid:!1,reason:"File name contains path traversal pattern"}:{valid:!0}}function sr(e,n){let t=[],a=[],l=[];if(e.length===0){let m={file:"(no files)",message:"At least one file must be provided"};return t.push(m),{files:[],validFiles:[],errors:t,warnings:[],canDeploy:!1}}for(let m of e)if(K(m.name))return t.push({file:m.name,message:"Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder"}),{files:e.map(E=>({...E,status:R.VALIDATION_FAILED,statusMessage:"Unbuilt project detected"})),validFiles:[],errors:t,warnings:[],canDeploy:!1};if(e.length>n.maxFilesCount){let m={file:`(${e.length} files)`,message:`File count (${e.length}) exceeds limit of ${n.maxFilesCount}`};return t.push(m),{files:e.map(E=>({...E,status:R.VALIDATION_FAILED,statusMessage:m.message})),validFiles:[],errors:t,warnings:[],canDeploy:!1}}let c=0;for(let m of e){let E=R.READY,f="Ready for upload";if(m.status===R.PROCESSING_ERROR)E=R.VALIDATION_FAILED,f=m.statusMessage||"File failed during processing",t.push({file:m.name,message:f});else if(m.size===0){E=R.EXCLUDED,f="File is empty (0 bytes) and cannot be deployed due to storage limitations",a.push({file:m.name,message:f}),l.push({...m,status:E,statusMessage:f});continue}else if(m.size<0)E=R.VALIDATION_FAILED,f="File size must be positive",t.push({file:m.name,message:f});else if(!m.name||m.name.trim().length===0)E=R.VALIDATION_FAILED,f="File name cannot be empty",t.push({file:m.name||"(empty)",message:f});else if(m.name.includes("\0"))E=R.VALIDATION_FAILED,f="File name contains invalid characters (null byte)",t.push({file:m.name,message:f});else{let A={path:m.name,size:m.size,totalSize:c+m.size},L=te(A,n);L?(E=R.VALIDATION_FAILED,f=L.sentence(A,n),t.push({file:L.name==="totalSize"?`(${e.length} files)`:m.name,message:f})):c=A.totalSize}l.push({...m,status:E,statusMessage:f})}t.length>0&&(l=l.map(m=>m.status===R.EXCLUDED?m:{...m,status:R.VALIDATION_FAILED,statusMessage:m.status===R.VALIDATION_FAILED?m.statusMessage:"Deployment failed due to validation errors in bundle"}));let h=t.length===0?l.filter(m=>m.status===R.READY):[],g=t.length===0;return{files:l,validFiles:h,errors:t,warnings:a,canDeploy:g}}function qt(e){return e.filter(n=>n.status===R.READY)}function ar(e){return qt(e).length>0}var Ee=_(()=>{"use strict";D();ge()});function et(e){return jt.test(e)}var Yt,jt,tt=_(()=>{"use strict";Yt=["^npm-debug\\.log$","^\\..*\\.swp$","^\\.DS_Store$","^\\.AppleDouble$","^\\.LSOverride$","^Icon\\r$","^\\._.*","^\\.Spotlight-V100(?:$|\\/)","\\.Trashes","^__MACOSX$","~$","^Thumbs\\.db$","^ehthumbs\\.db$","^[Dd]esktop\\.ini$","@eaDir$"],jt=new RegExp(Yt.join("|"))});function nt(e,n){if(!e||e.length===0)return[];if(!n?.allowUnbuilt&&e.find(a=>a&&K(a)))throw d.business("Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder");return e.filter(t=>{if(!t)return!1;let a=t.replace(/\\/g,"/").split("/").filter(Boolean);if(a.length===0)return!0;let l=a[a.length-1];if(et(l))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(Wt.some(g=>h.toLowerCase()===g.toLowerCase()))return!1;return!0})}var Wt,Ae=_(()=>{"use strict";D();tt();Wt=["__MACOSX",".Trashes",".fseventsd",".Spotlight-V100"]});function rt(e,n){if(e.includes("\0")||e.includes("/../")||e.startsWith("../")||e.endsWith("/.."))throw d.business(`Security error: Unsafe file path "${e}" for file: ${n}`)}function it(e,n){let t=te(e,n);if(t)throw d.business(t.sentence(e,n))}var Te=_(()=>{"use strict";D();ge()});async function ot(e,n={},t){let a=!!(n.build||n.prerender),l=Qe(e.map(f=>f.path),{flatten:n.pathDetect!==!1}).map(f=>f.path),c=new Set(nt(l,{allowUnbuilt:a})),h=e.map((f,A)=>({source:f,deployPath:l[A]})).filter(({deployPath:f})=>c.has(f));if(h.length===0)return[];let g=a?null:Jt(t),m=[],E=0;for(let{source:f,deployPath:A}of h){if(g&&rt(A,f.origin),f.size===0)continue;g&&(E+=f.size,it({path:A,size:f.size,totalSize:E},g));let L=await f.read(),{md5:F}=await j(L);m.push({path:A,content:L,size:f.size,md5:F})}if(g&&m.length>g.maxFilesCount)throw d.business(`Too many files to deploy. Maximum allowed is ${g.maxFilesCount} files.`);return m}function Jt(e){if(!e)throw d.config("Platform limits not provided. Deploy-mode validation requires the limits argument \u2014 pass `ship.getLimits()` result.");return e}var st=_(()=>{"use strict";D();de();Ae();W();Te()});var lt={};ht(lt,{processFilesForBrowser:()=>at});async function at(e,n={},t){if(Ze()!=="browser")throw d.business("processFilesForBrowser can only be called in a browser environment.");return ot(e.map(a=>({path:a.webkitRelativePath||a.name,origin:a.name,size:a.size,read:async()=>a})),n,t)}var Se=_(()=>{"use strict";D();st();he()});D();D();D();var X=class{constructor(){this.handlers=new Map}on(n,t){this.handlers.has(n)||this.handlers.set(n,new Set),this.handlers.get(n)?.add(t)}off(n,t){let a=this.handlers.get(n);a&&(a.delete(t),a.size===0&&this.handlers.delete(n))}emit(n,...t){let a=this.handlers.get(n);if(!a)return;let l=Array.from(a);for(let c of l)try{c(...t)}catch(h){a.delete(c),n!=="error"&&setTimeout(()=>{let g=h instanceof Error?h:new Error(String(h));this.emit("error",g,String(n))},0)}}};var wt=3e4,Ot=2,xt=300,Ct=2e3,vt=new Set([500,502,503,504]);function Ft(e,n){return new Promise((t,a)=>{if(n?.aborted){a(n.reason);return}let l=()=>{clearTimeout(h),n?.removeEventListener("abort",c)},c=()=>{l(),a(n?.reason)},h=setTimeout(()=>{l(),t()},e);n?.addEventListener("abort",c)})}var He=3e5,Mt=3e5,Ut=He+Mt,q=class extends X{constructor(t){super();this.globalHeaders={};this.apiUrl=t.apiUrl||ue,this.getAuthHeadersCallback=t.getAuthHeaders,this.session=t.session??!1,this.caller=t.caller,this.timeout=t.timeout??wt,this.maxRetries=Math.max(0,t.maxRetries??Ot),this.fetch=t.fetch??globalThis.fetch.bind(globalThis),this.deploy={endpoint:t.deployEndpoint||T.DEPLOYMENTS,timeout:t.timeout??He,buildTimeout:t.timeout??Ut}}setGlobalHeaders(t){this.globalHeaders=t}async executeRequest(t,a,l,c=this.timeout){for(let h=0;;h++)try{return await this.attemptOnce(t,a,l,c)}catch(g){let m=d.fromFetchError(g,l);if(h>=this.maxRetries||!this.isRetryable(m,a))throw this.emit("error",m,t),m;this.emit("retry",m,t,h+1);let E=Math.min(Ct,xt*2**h);try{await Ft(Math.random()*E,a.signal)}catch(f){let A=d.fromFetchError(f,l);throw this.emit("error",A,t),A}}}isRetryable(t,a){if(a.signal?.aborted||t.isType(y.Maintenance)||t.isType(y.Cancelled)||!(t.isNetworkError()||t.status!==void 0&&vt.has(t.status)))return!1;let c=(a.method??"GET").toUpperCase();return c==="GET"||c==="HEAD"?!0:c==="PUT"||c==="DELETE"?!1:this.hasIdempotencyKey(a.headers)}hasIdempotencyKey(t){if(!t)return!1;let a=v.HEADER.toLowerCase();return Object.keys(t).some(l=>l.toLowerCase()===a)}async attemptOnce(t,a,l,c=this.timeout){let h=()=>{};try{let g=await this.mergeHeaders(a.headers),m=this.createTimeoutSignal(a.signal,c);h=m.cleanup;let E={...a,headers:g,credentials:this.session&&!g.Authorization?"include":void 0,signal:m.signal};this.emit("request",t,E);let f=await this.fetch(t,E);if(h(),!f.ok)throw await d.fromHttpResponse(f,l);return this.emit("response",this.safeClone(f),t),{data:await this.parseResponse(this.safeClone(f)),status:f.status}}catch(g){throw h(),d.fromFetchError(g,l)}}async request(t,a,l,c){let{data:h}=await this.executeRequest(`${this.apiUrl}${t}`,a,l,c);return h}async requestWithStatus(t,a,l){return this.executeRequest(`${this.apiUrl}${t}`,a,l)}async mergeHeaders(t={}){return{...this.globalHeaders,...this.caller?{[M.HEADER]:this.caller}:{},...await this.getAuthHeadersCallback(),...t}}createTimeoutSignal(t,a=this.timeout){let l=new AbortController,c=setTimeout(()=>l.abort(new DOMException(`Timed out after ${a}ms`,"TimeoutError")),a),h=t?()=>l.abort(t.reason):void 0;return t&&h&&(t.addEventListener("abort",h),t.aborted&&l.abort(t.reason)),{signal:l.signal,cleanup:()=>{clearTimeout(c),t&&h&&t.removeEventListener("abort",h)}}}safeClone(t){try{return t.clone()}catch{return t}}async parseResponse(t){if(!(t.headers.get("Content-Length")==="0"||t.status===204))return t.json()}};D();D();async function $e(e,n={}){let{labels:t,via:a,password:l,ttl:c,flags:h,captcha:g}=n,m=new FormData,E=[];for(let f of e){if(typeof f.content=="string"||f.content===null||f.content===void 0)throw d.file(`Unsupported file.content type: ${f.path}`,{filePath:f.path});if(!f.md5)throw d.file(`File missing md5 checksum: ${f.path}`,{filePath:f.path});m.append(I.FILES,new File([f.content],f.path,{type:"application/octet-stream"})),E.push(f.md5)}return m.append(I.CHECKSUMS,JSON.stringify(E)),t&&t.length>0&&m.append(I.LABELS,JSON.stringify(t)),a&&m.append(I.VIA,a),l&&m.append(I.PASSWORD,l),c!==void 0&&m.append(I.TTL,String(c)),h?.build&&m.append(I.BUILD,"true"),h?.prerender&&m.append(I.PRERENDER,"true"),h?.spa&&m.append(I.SPA,"true"),h?.buildCommand&&m.append(I.BUILD_COMMAND,h.buildCommand),h?.outputDir&&m.append(I.OUTPUT_DIR,h.outputDir),g&&m.append(I.CAPTCHA,g),m}D();W();async function Gt(){let e=JSON.stringify(xe,null,2),n;typeof Buffer<"u"?n=Buffer.from(e,"utf-8"):n=new Blob([e],{type:"application/json"});let{md5:t}=await j(n);return{path:P,content:n,size:e.length,md5:t}}async function zt(e,n){let t=e.find(h=>h.path===V.INDEX_FILE||h.path===`/${V.INDEX_FILE}`);if(!t||t.size>V.MAX_INDEX_BYTES)return!1;let a;if(typeof Buffer<"u"&&Buffer.isBuffer(t.content))a=t.content.toString("utf-8");else if(typeof Blob<"u"&&t.content instanceof Blob)a=await t.content.text();else if(typeof File<"u"&&t.content instanceof File)a=await t.content.text();else return!1;let l={files:e.map(h=>h.path),index:a};return(await n.request(T.SPA_CHECK,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(l)},"SPA check")).isSPA}async function Ve(e,n,t){if(t.spaDetect===!1||t.spa||t.build||t.prerender||e.some(a=>a.path===P))return e;try{if(await zt(e,n)){let l=await Gt();return[...e,l]}}catch{}return e}D();D();function B(e){if(e==null)return;if(e.length===0)return e;if(e.length>C.MAX_COUNT)throw d.validation(`Maximum ${C.MAX_COUNT} labels allowed`);let n=e.map((a,l)=>{if(typeof a!="string")throw d.validation(`Label at index ${l} must be a string`);let c=a.trim().toLowerCase();if(c.length<C.MIN_LENGTH)throw d.validation(`Labels must be at least ${C.MIN_LENGTH} characters long`);if(c.length>C.MAX_LENGTH)throw d.validation(`Labels must be no more than ${C.MAX_LENGTH} characters long`);if(!Me.test(c))throw d.validation(`Labels must start and end with alphanumeric characters, with optional separators (${C.SEPARATORS}) between segments`);return c}),t=[...new Set(n)];if(t.length!==n.length)throw d.validation("Duplicate labels are not allowed");return t}async function Xe(e){let n=e.find(l=>l.path===P||l.path===`/${P}`);if(!n)return;let t=n.content,a=typeof t.text=="function"?await t.text():n.content.toString("utf8");Ce(a)}var J={"Content-Type":"application/json"},kt="sdk";function ce(e){let n=new URLSearchParams;e?.limit!==void 0&&n.set("limit",String(e.limit)),e?.cursor!==void 0&&n.set("cursor",e.cursor);let t=n.toString();return t?`?${t}`:""}function qe(e){let{getApi:n,processInput:t}=e;return{upload:async(a,l={})=>{if(!t)throw d.config("processInput function is not provided.");let c=n(),h=await t(a,l),g=await Ve(h,c,l);if(!g.length)throw d.business("No files to deploy");for(let w of g)if(!w.md5)throw d.file(`MD5 checksum missing for file: ${w.path}`,{filePath:w.path});pe(l.password);let m=le(l.ttl),E=Ie(l.idempotencyKey),f=B(l.labels);await Xe(g);let A=Ue(l.buildCommand),L=Be(l.outputDir),F=l.build||l.prerender||l.spa?{build:l.build,prerender:l.prerender,spa:l.spa,buildCommand:A,outputDir:L}:void 0,ne=await $e(g,{labels:f,via:l.via??kt,password:l.password,ttl:m,flags:F,captcha:l.captcha});return c.request(c.deploy.endpoint,{method:"POST",body:ne,...E?{headers:{[v.HEADER]:E}}:{},signal:l.signal||null},"Deploy",l.build||l.prerender?c.deploy.buildTimeout:c.deploy.timeout)},list:async a=>n().request(`${T.DEPLOYMENTS}${ce(a)}`,{method:"GET"},"List deployments"),get:async a=>n().request(T.DEPLOYMENT(encodeURIComponent(a)),{method:"GET"},"Get deployment"),set:async(a,l)=>n().request(T.DEPLOYMENT(encodeURIComponent(a)),{method:"PATCH",headers:J,body:JSON.stringify({labels:B(l.labels)})},"Update deployment labels"),delete:async a=>n().request(T.DEPLOYMENT(encodeURIComponent(a)),{method:"DELETE"},"Delete deployment")}}function Ye(e){let{getApi:n}=e;return{set:async(t,a={})=>{let l=B(a.labels),c={};a.deployment&&(c.deployment=a.deployment),l!==void 0&&(c.labels=l);let{data:h,status:g}=await n().requestWithStatus(T.DOMAIN(encodeURIComponent(t)),{method:"PUT",headers:J,body:JSON.stringify(c)},"Set domain");return{...h,isCreate:g===201}},list:async t=>n().request(`${T.DOMAINS}${ce(t)}`,{method:"GET"},"List domains"),get:async t=>n().request(T.DOMAIN(encodeURIComponent(t)),{method:"GET"},"Get domain"),delete:async t=>n().request(T.DOMAIN(encodeURIComponent(t)),{method:"DELETE"},"Delete domain"),verify:async t=>n().request(T.DOMAIN_VERIFY(encodeURIComponent(t)),{method:"POST"},"Verify domain"),validate:async t=>n().request(T.DOMAINS_VALIDATE,{method:"POST",headers:J,body:JSON.stringify({domain:t})},"Validate domain"),dns:async t=>n().request(T.DOMAIN_DNS(encodeURIComponent(t)),{method:"GET"},"Get domain DNS"),records:async t=>n().request(T.DOMAIN_RECORDS(encodeURIComponent(t)),{method:"GET"},"Get domain records"),share:async t=>n().request(T.DOMAIN_SHARE(encodeURIComponent(t)),{method:"GET"},"Get domain share")}}function je(e){let{getApi:n}=e;return{get:async()=>n().request(T.ACCOUNT,{method:"GET"},"Get account")}}function We(e){let{getApi:n}=e;return{create:async(t={})=>{let a=le(t.ttl),l=B(t.labels),c={};return a!==void 0&&(c.ttl=a),l!==void 0&&(c.labels=l),n().request(T.TOKENS,{method:"POST",headers:J,body:JSON.stringify(c)},"Create token")},list:async t=>n().request(`${T.TOKENS}${ce(t)}`,{method:"GET"},"List tokens"),get:async t=>n().request(T.TOKEN(encodeURIComponent(t)),{method:"GET"},"Get token"),delete:async t=>n().request(T.TOKEN(encodeURIComponent(t)),{method:"DELETE"},"Delete token")}}var Q=class{constructor(n={}){this.initPromise=null;this.platformLimits=null;this.credential=null;if(n={...n,apiUrl:n.apiUrl||void 0,token:n.token||void 0,caller:n.caller||void 0},this.clientOptions=n,n.caller!==void 0&&ve(n.caller),n.token&&n.session)throw d.config("Provide either `token` or `session`, not both.");typeof n.token=="string"?(ae(n.token),this.credential=n.token):n.token&&(this.credential=n.token),this.http=new q({...n,getAuthHeaders:()=>this.getAuthHeaders()});let t={getApi:()=>this.http};this.deployments=qe({...t,processInput:async(a,l)=>(await this.ensureInitialized(),this.processInput(a,l))}),this.domains=Ye(t),this.account=je(t),this.tokens=We(t)}async ensureInitialized(){return this.initPromise||(this.initPromise=this.fetchPlatformLimits()),this.initPromise}async fetchPlatformLimits(){try{this.platformLimits=await this.http.request(T.LIMITS,{method:"GET"},"Get limits")}catch(n){throw this.initPromise=null,n}}async ping(){return this.http.request(T.PING,{method:"GET"},"Ping")}async deploy(n,t){return this.deployments.upload(n,t)}async whoami(){return this.account.get()}async getLimits(){return this.platformLimits?this.platformLimits:(await this.ensureInitialized(),this.platformLimits)}on(n,t){this.http.on(n,t)}off(n,t){this.http.off(n,t)}setHeaders(n){this.http.setGlobalHeaders(n)}clearHeaders(){this.http.setGlobalHeaders({})}setToken(n){if(this.clientOptions.session)throw d.config("Provide either `token` or `session`, not both.");if(typeof n=="string"){if(!n)throw d.business("Invalid token provided. Token must be a non-empty string.");ae(n),this.credential=n;return}if(typeof n!="function")throw d.business("Invalid token provided. Token must be a non-empty string or a provider function.");this.credential=n}async getAuthHeaders(){if(this.credential===null)return{};let n=typeof this.credential=="function"?await this.credential():this.credential;if(!n)throw d.authentication("Token provider returned no token.");if(typeof n!="string")throw d.authentication("Token provider returned a non-string value.");return{Authorization:`Bearer ${n}`}}};D();D();de();he();Ee();Ae();W();Te();function yr(e,n,t,a=!0){let l=e===1?n:t;return a?`${e} ${l}`:l}Se();var De=class extends Q{async deploy(n,t){return super.deploy(n,t)}async processInput(n,t){if(!Array.isArray(n)||!n.every(l=>l instanceof File))throw d.business("Invalid input type for browser environment. Expected File[].");if(n.length===0)throw d.business("No files to deploy.");let{processFilesForBrowser:a}=await Promise.resolve().then(()=>(Se(),lt));return a(n,t,this.platformLimits??void 0)}},zr=De;export{Pe as API_KEY,T as API_PATHS,sn as AUTH_BASE_PATH,nn as AccountPlan,q as ApiHttp,ie as AuthMethod,U as BUILD_SETTINGS,M as CALLER,ue as DEFAULT_API,P as DEPLOYMENT_CONFIG_FILENAME,I as DEPLOY_FIELDS,rn as DEPLOY_FILE_GRAMMAR,we as DEPLOY_TOKEN,Zt as DeploymentStatus,gt as DeploymentVia,en as DomainStatus,y as ErrorType,R as FILE_VALIDATION_STATUS,R as FileValidationStatus,v as IDEMPOTENCY_KEY_CONSTRAINTS,Wt as JUNK_DIRECTORIES,C as LABEL_CONSTRAINTS,Me as LABEL_PATTERN,mn as MY_API_KEY_URL,Oe as OAUTH_TOKEN,un as OAuthScope,k as PASSWORD_CONSTRAINTS,hn as PUBLIC_DEPLOYMENT_TTL_SECONDS,fn as SHIP_ENV,dn as SHIP_VIA_ENV,an as SIGN_IN_RETURN_PARAM,V as SPA_CHECK_CONSTRAINTS,xe as SPA_DEFAULT_CONFIG,De as Ship,d as ShipError,z as TTL_CONSTRAINTS,x as TokenKind,It as UNBUILT_PROJECT_MARKERS,bt as UNSAFE_FILENAME_CHARS,on as WEB_FILE_ACCEPT,Zn as __setTestEnvironment,ar as allValidFilesReady,Ce as assertShipJsonSyntax,j as calculateMD5,_t as classifyToken,je as createAccountResource,qe as createDeploymentResource,Ye as createDomainResource,We as createTokenResource,zr as default,Sn as deserializeLabels,gn as extractSubdomain,nt as filterJunk,ee as formatFileSize,En as generateDeploymentUrl,An as generateDomainUrl,Ze as getENV,qt as getValidFiles,K as hasUnbuiltMarker,Ne as hasUnsafeChars,Le as isBlockedExtension,yn as isCustomDomain,cn as isDeployment,Fe as isPlatformDomain,_e as isShipError,tn as normalizeVia,Qe as optimizeDeployPaths,yr as pluralize,at as processFilesForBrowser,ln as readBearerValue,Tn as serializeLabels,Lt as validateApiKey,pn as validateApiUrl,Ue as validateBuildCommand,ve as validateCaller,it as validateDeployFile,rt as validateDeployPath,Nt as validateDeployToken,ye as validateFileName,sr as validateFiles,Ie as validateIdempotencyKey,Pt as validateOAuthToken,Be as validateOutputDir,pe as validatePassword,ae as validateToken,le as validateTtl};
|
|
2
2
|
//# sourceMappingURL=browser.js.map
|