@shipstatic/ship 2.0.0-beta.0 → 2.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.d.ts +101 -94
- package/dist/browser.js +1 -1
- package/dist/browser.js.map +1 -1
- package/dist/cli.cjs +25 -25
- 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 +106 -94
- package/dist/index.d.ts +106 -94
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/dist/browser.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare const DeploymentStatus: {
|
|
|
11
11
|
readonly FAILED: "failed";
|
|
12
12
|
readonly DELETING: "deleting";
|
|
13
13
|
};
|
|
14
|
-
type DeploymentStatusType = typeof DeploymentStatus[keyof typeof DeploymentStatus];
|
|
14
|
+
type DeploymentStatusType = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
15
15
|
/**
|
|
16
16
|
* Core deployment object - used in both API responses and SDK
|
|
17
17
|
*/
|
|
@@ -74,7 +74,7 @@ declare const DomainStatus: {
|
|
|
74
74
|
readonly SUCCESS: "success";
|
|
75
75
|
readonly PAUSED: "paused";
|
|
76
76
|
};
|
|
77
|
-
type DomainStatusType = typeof DomainStatus[keyof typeof DomainStatus];
|
|
77
|
+
type DomainStatusType = (typeof DomainStatus)[keyof typeof DomainStatus];
|
|
78
78
|
/**
|
|
79
79
|
* Core domain object - used in both API responses and SDK
|
|
80
80
|
*/
|
|
@@ -229,7 +229,7 @@ declare const AccountPlan: {
|
|
|
229
229
|
readonly TERMINATING: "terminating";
|
|
230
230
|
readonly TERMINATED: "terminated";
|
|
231
231
|
};
|
|
232
|
-
type AccountPlanType = typeof AccountPlan[keyof typeof AccountPlan];
|
|
232
|
+
type AccountPlanType = (typeof AccountPlan)[keyof typeof AccountPlan];
|
|
233
233
|
/**
|
|
234
234
|
* Account usage metrics — always available regardless of billing provider.
|
|
235
235
|
*/
|
|
@@ -324,7 +324,7 @@ declare const ErrorType: {
|
|
|
324
324
|
/** Configuration error. Client-side only — set by SDK during config parsing/validation; never produced server-side. */
|
|
325
325
|
readonly Config: "config_error";
|
|
326
326
|
};
|
|
327
|
-
type ErrorType = typeof ErrorType[keyof typeof ErrorType];
|
|
327
|
+
type ErrorType = (typeof ErrorType)[keyof typeof ErrorType];
|
|
328
328
|
/**
|
|
329
329
|
* Standard error response format used everywhere
|
|
330
330
|
*/
|
|
@@ -536,7 +536,7 @@ declare const AuthMethod: {
|
|
|
536
536
|
readonly WEBHOOK: "webhook";
|
|
537
537
|
readonly SYSTEM: "system";
|
|
538
538
|
};
|
|
539
|
-
type AuthMethodType = typeof AuthMethod[keyof typeof AuthMethod];
|
|
539
|
+
type AuthMethodType = (typeof AuthMethod)[keyof typeof AuthMethod];
|
|
540
540
|
/**
|
|
541
541
|
* Shape constants for API keys (`ship-{64 hex chars}`).
|
|
542
542
|
* Single source of truth used by validation utilities and auth middleware.
|
|
@@ -595,7 +595,7 @@ declare const TokenKind: {
|
|
|
595
595
|
readonly DEPLOY_TOKEN: "token";
|
|
596
596
|
readonly OPAQUE: "opaque";
|
|
597
597
|
};
|
|
598
|
-
type TokenKindType = typeof TokenKind[keyof typeof TokenKind];
|
|
598
|
+
type TokenKindType = (typeof TokenKind)[keyof typeof TokenKind];
|
|
599
599
|
/**
|
|
600
600
|
* Classify a client token by shape. The single dispatch used by both sides
|
|
601
601
|
* of the wire: API auth middleware (which population is this credential?)
|
|
@@ -621,7 +621,7 @@ declare const OAuthScope: {
|
|
|
621
621
|
readonly DOMAINS_READ: "domains:read";
|
|
622
622
|
readonly DOMAINS_WRITE: "domains:write";
|
|
623
623
|
};
|
|
624
|
-
type OAuthScopeType = typeof OAuthScope[keyof typeof OAuthScope];
|
|
624
|
+
type OAuthScopeType = (typeof OAuthScope)[keyof typeof OAuthScope];
|
|
625
625
|
declare const DEPLOYMENT_CONFIG_FILENAME = "ship.json";
|
|
626
626
|
/** Default ship.json config for SPA routing. Single source of truth — used by both API and SDK. */
|
|
627
627
|
declare const SPA_DEFAULT_CONFIG: {
|
|
@@ -924,7 +924,7 @@ declare const FileValidationStatus: {
|
|
|
924
924
|
/** File passed validation and is ready for deployment */
|
|
925
925
|
readonly READY: "ready";
|
|
926
926
|
};
|
|
927
|
-
type FileValidationStatusType = typeof FileValidationStatus[keyof typeof FileValidationStatus];
|
|
927
|
+
type FileValidationStatusType = (typeof FileValidationStatus)[keyof typeof FileValidationStatus];
|
|
928
928
|
/**
|
|
929
929
|
* A validation issue with a display-ready message
|
|
930
930
|
*
|
|
@@ -1376,7 +1376,7 @@ declare class ApiHttp extends SimpleEvents {
|
|
|
1376
1376
|
getAccount(): Promise<AccountGetResponse>;
|
|
1377
1377
|
getLimits(): Promise<PlatformLimits>;
|
|
1378
1378
|
ping(): Promise<boolean>;
|
|
1379
|
-
checkSPA(files: StaticFile[],
|
|
1379
|
+
checkSPA(files: StaticFile[], _options?: ApiDeployOptions): Promise<boolean>;
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
@@ -1518,91 +1518,6 @@ declare abstract class Ship$1 {
|
|
|
1518
1518
|
*/
|
|
1519
1519
|
declare function mergeDeployOptions(options: DeploymentOptions, clientDefaults: ShipClientOptions): DeploymentOptions;
|
|
1520
1520
|
|
|
1521
|
-
interface MD5Result {
|
|
1522
|
-
md5: string;
|
|
1523
|
-
}
|
|
1524
|
-
declare function calculateMD5(input: Blob | Buffer | string): Promise<MD5Result>;
|
|
1525
|
-
|
|
1526
|
-
/**
|
|
1527
|
-
* Utility functions for string manipulation.
|
|
1528
|
-
*/
|
|
1529
|
-
/**
|
|
1530
|
-
* Simple utility to pluralize a word based on a count.
|
|
1531
|
-
* @param count The number to determine pluralization.
|
|
1532
|
-
* @param singular The singular form of the word.
|
|
1533
|
-
* @param plural The plural form of the word.
|
|
1534
|
-
* @param includeCount Whether to include the count in the returned string. Defaults to true.
|
|
1535
|
-
* @returns A string with the count and the correctly pluralized word.
|
|
1536
|
-
*/
|
|
1537
|
-
declare function pluralize(count: number, singular: string, plural: string, includeCount?: boolean): string;
|
|
1538
|
-
|
|
1539
|
-
/**
|
|
1540
|
-
* List of directory names considered as junk
|
|
1541
|
-
*
|
|
1542
|
-
* Files within these directories (at any level in the path hierarchy) will be excluded.
|
|
1543
|
-
* The comparison is case-insensitive for cross-platform compatibility.
|
|
1544
|
-
*
|
|
1545
|
-
* @internal
|
|
1546
|
-
*/
|
|
1547
|
-
declare const JUNK_DIRECTORIES: readonly ["__MACOSX", ".Trashes", ".fseventsd", ".Spotlight-V100"];
|
|
1548
|
-
/**
|
|
1549
|
-
* Filters an array of file paths, removing those considered junk
|
|
1550
|
-
*
|
|
1551
|
-
* Throws if any path contains an unbuilt project marker (e.g. `node_modules`, `package.json`).
|
|
1552
|
-
* This check runs first because the dot-file filter below would strip paths like
|
|
1553
|
-
* `node_modules/.pnpm/...`, destroying the evidence.
|
|
1554
|
-
*
|
|
1555
|
-
* A path is filtered out if any of these conditions are met:
|
|
1556
|
-
* 1. The basename is identified as junk by the 'junk' package (e.g., .DS_Store, Thumbs.db)
|
|
1557
|
-
* 2. Any path segment starts with a dot (e.g., .env, .git, .htaccess)
|
|
1558
|
-
* Exception: `.well-known` is allowed (RFC 8615 — ACME, security.txt, app links)
|
|
1559
|
-
* 3. Any path segment exceeds 255 characters (filesystem limit)
|
|
1560
|
-
* 4. Any directory segment in the path matches an entry in JUNK_DIRECTORIES (case-insensitive)
|
|
1561
|
-
*
|
|
1562
|
-
* All path separators are normalized to forward slashes for consistent cross-platform behavior.
|
|
1563
|
-
*
|
|
1564
|
-
* Dot files are filtered for security — they typically contain sensitive configuration
|
|
1565
|
-
* (.env, .git) or are not meant to be served publicly. This matches server-side filtering.
|
|
1566
|
-
*
|
|
1567
|
-
* @param filePaths - An array of file path strings to filter
|
|
1568
|
-
* @param options - Optional settings
|
|
1569
|
-
* @param options.allowUnbuilt - When true, skip the unbuilt project marker check (for server-processed uploads)
|
|
1570
|
-
* @returns A new array containing only non-junk file paths
|
|
1571
|
-
* @throws {ShipError} If any path contains an unbuilt project marker (unless allowUnbuilt is true)
|
|
1572
|
-
*
|
|
1573
|
-
* @example
|
|
1574
|
-
* ```typescript
|
|
1575
|
-
* import { filterJunk } from '@shipstatic/ship';
|
|
1576
|
-
*
|
|
1577
|
-
* // Filter an array of file paths
|
|
1578
|
-
* const paths = ['index.html', '.DS_Store', '.gitattributes', '__MACOSX/file.txt', 'app.js'];
|
|
1579
|
-
* const clean = filterJunk(paths);
|
|
1580
|
-
* // Result: ['index.html', 'app.js']
|
|
1581
|
-
* ```
|
|
1582
|
-
*
|
|
1583
|
-
* @example
|
|
1584
|
-
* ```typescript
|
|
1585
|
-
* // Use with browser File objects
|
|
1586
|
-
* import { filterJunk } from '@shipstatic/ship';
|
|
1587
|
-
*
|
|
1588
|
-
* const files: File[] = [...]; // From input or drag-drop
|
|
1589
|
-
*
|
|
1590
|
-
* // Extract paths from File objects
|
|
1591
|
-
* const filePaths = files.map(f => f.webkitRelativePath || f.name);
|
|
1592
|
-
*
|
|
1593
|
-
* // Filter out junk paths
|
|
1594
|
-
* const validPaths = new Set(filterJunk(filePaths));
|
|
1595
|
-
*
|
|
1596
|
-
* // Filter the original File array
|
|
1597
|
-
* const validFiles = files.filter(f =>
|
|
1598
|
-
* validPaths.has(f.webkitRelativePath || f.name)
|
|
1599
|
-
* );
|
|
1600
|
-
* ```
|
|
1601
|
-
*/
|
|
1602
|
-
declare function filterJunk(filePaths: string[], options?: {
|
|
1603
|
-
allowUnbuilt?: boolean;
|
|
1604
|
-
}): string[];
|
|
1605
|
-
|
|
1606
1521
|
/**
|
|
1607
1522
|
* @file Deploy path optimization - the core logic that makes Ship deployments clean and intuitive.
|
|
1608
1523
|
* Automatically strips common parent directories to create clean deployment URLs.
|
|
@@ -1727,6 +1642,85 @@ declare function getValidFiles<T extends ValidatableFile>(files: T[]): T[];
|
|
|
1727
1642
|
*/
|
|
1728
1643
|
declare function allValidFilesReady<T extends ValidatableFile>(files: T[]): boolean;
|
|
1729
1644
|
|
|
1645
|
+
/**
|
|
1646
|
+
* @file Utility for filtering out junk files and directories from file paths
|
|
1647
|
+
*
|
|
1648
|
+
* This module provides functionality to filter out common system junk files and directories
|
|
1649
|
+
* from a list of file paths. It uses the 'junk' package to identify junk filenames and
|
|
1650
|
+
* a custom list to filter out common junk directories.
|
|
1651
|
+
*/
|
|
1652
|
+
/**
|
|
1653
|
+
* List of directory names considered as junk
|
|
1654
|
+
*
|
|
1655
|
+
* Files within these directories (at any level in the path hierarchy) will be excluded.
|
|
1656
|
+
* The comparison is case-insensitive for cross-platform compatibility.
|
|
1657
|
+
*
|
|
1658
|
+
* @internal
|
|
1659
|
+
*/
|
|
1660
|
+
declare const JUNK_DIRECTORIES: readonly ["__MACOSX", ".Trashes", ".fseventsd", ".Spotlight-V100"];
|
|
1661
|
+
/**
|
|
1662
|
+
* Filters an array of file paths, removing those considered junk
|
|
1663
|
+
*
|
|
1664
|
+
* Throws if any path contains an unbuilt project marker (e.g. `node_modules`, `package.json`).
|
|
1665
|
+
* This check runs first because the dot-file filter below would strip paths like
|
|
1666
|
+
* `node_modules/.pnpm/...`, destroying the evidence.
|
|
1667
|
+
*
|
|
1668
|
+
* A path is filtered out if any of these conditions are met:
|
|
1669
|
+
* 1. The basename is identified as junk by the 'junk' package (e.g., .DS_Store, Thumbs.db)
|
|
1670
|
+
* 2. Any path segment starts with a dot (e.g., .env, .git, .htaccess)
|
|
1671
|
+
* Exception: `.well-known` is allowed (RFC 8615 — ACME, security.txt, app links)
|
|
1672
|
+
* 3. Any path segment exceeds 255 characters (filesystem limit)
|
|
1673
|
+
* 4. Any directory segment in the path matches an entry in JUNK_DIRECTORIES (case-insensitive)
|
|
1674
|
+
*
|
|
1675
|
+
* All path separators are normalized to forward slashes for consistent cross-platform behavior.
|
|
1676
|
+
*
|
|
1677
|
+
* Dot files are filtered for security — they typically contain sensitive configuration
|
|
1678
|
+
* (.env, .git) or are not meant to be served publicly. This matches server-side filtering.
|
|
1679
|
+
*
|
|
1680
|
+
* @param filePaths - An array of file path strings to filter
|
|
1681
|
+
* @param options - Optional settings
|
|
1682
|
+
* @param options.allowUnbuilt - When true, skip the unbuilt project marker check (for server-processed uploads)
|
|
1683
|
+
* @returns A new array containing only non-junk file paths
|
|
1684
|
+
* @throws {ShipError} If any path contains an unbuilt project marker (unless allowUnbuilt is true)
|
|
1685
|
+
*
|
|
1686
|
+
* @example
|
|
1687
|
+
* ```typescript
|
|
1688
|
+
* import { filterJunk } from '@shipstatic/ship';
|
|
1689
|
+
*
|
|
1690
|
+
* // Filter an array of file paths
|
|
1691
|
+
* const paths = ['index.html', '.DS_Store', '.gitattributes', '__MACOSX/file.txt', 'app.js'];
|
|
1692
|
+
* const clean = filterJunk(paths);
|
|
1693
|
+
* // Result: ['index.html', 'app.js']
|
|
1694
|
+
* ```
|
|
1695
|
+
*
|
|
1696
|
+
* @example
|
|
1697
|
+
* ```typescript
|
|
1698
|
+
* // Use with browser File objects
|
|
1699
|
+
* import { filterJunk } from '@shipstatic/ship';
|
|
1700
|
+
*
|
|
1701
|
+
* const files: File[] = [...]; // From input or drag-drop
|
|
1702
|
+
*
|
|
1703
|
+
* // Extract paths from File objects
|
|
1704
|
+
* const filePaths = files.map(f => f.webkitRelativePath || f.name);
|
|
1705
|
+
*
|
|
1706
|
+
* // Filter out junk paths
|
|
1707
|
+
* const validPaths = new Set(filterJunk(filePaths));
|
|
1708
|
+
*
|
|
1709
|
+
* // Filter the original File array
|
|
1710
|
+
* const validFiles = files.filter(f =>
|
|
1711
|
+
* validPaths.has(f.webkitRelativePath || f.name)
|
|
1712
|
+
* );
|
|
1713
|
+
* ```
|
|
1714
|
+
*/
|
|
1715
|
+
declare function filterJunk(filePaths: string[], options?: {
|
|
1716
|
+
allowUnbuilt?: boolean;
|
|
1717
|
+
}): string[];
|
|
1718
|
+
|
|
1719
|
+
interface MD5Result {
|
|
1720
|
+
md5: string;
|
|
1721
|
+
}
|
|
1722
|
+
declare function calculateMD5(input: Blob | Buffer | string): Promise<MD5Result>;
|
|
1723
|
+
|
|
1730
1724
|
/**
|
|
1731
1725
|
* Validate a deploy path for security concerns.
|
|
1732
1726
|
* Rejects paths containing path traversal patterns or null bytes.
|
|
@@ -1755,6 +1749,19 @@ declare function validateDeployPath(deployPath: string, sourceIdentifier: string
|
|
|
1755
1749
|
*/
|
|
1756
1750
|
declare function validateDeployFile(deployPath: string, sourceIdentifier: string): void;
|
|
1757
1751
|
|
|
1752
|
+
/**
|
|
1753
|
+
* Utility functions for string manipulation.
|
|
1754
|
+
*/
|
|
1755
|
+
/**
|
|
1756
|
+
* Simple utility to pluralize a word based on a count.
|
|
1757
|
+
* @param count The number to determine pluralization.
|
|
1758
|
+
* @param singular The singular form of the word.
|
|
1759
|
+
* @param plural The plural form of the word.
|
|
1760
|
+
* @param includeCount Whether to include the count in the returned string. Defaults to true.
|
|
1761
|
+
* @returns A string with the count and the correctly pluralized word.
|
|
1762
|
+
*/
|
|
1763
|
+
declare function pluralize(count: number, singular: string, plural: string, includeCount?: boolean): string;
|
|
1764
|
+
|
|
1758
1765
|
/**
|
|
1759
1766
|
* @file Browser-specific file utilities for the Ship SDK.
|
|
1760
1767
|
* Provides helpers for processing browser files into deploy-ready objects.
|
package/dist/browser.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var qe=Object.create;var $=Object.defineProperty;var Ve=Object.getOwnPropertyDescriptor;var je=Object.getOwnPropertyNames;var Ke=Object.getPrototypeOf,Xe=Object.prototype.hasOwnProperty;var Ye=(n,i,e)=>i in n?$(n,i,{enumerable:!0,configurable:!0,writable:!0,value:e}):n[i]=e;var x=(n,i)=>()=>(n&&(i=n(n=0)),i);var ce=(n,i)=>()=>(i||n((i={exports:{}}).exports,i),i.exports),We=(n,i)=>{for(var e in i)$(n,e,{get:i[e],enumerable:!0})},Je=(n,i,e,a)=>{if(i&&typeof i=="object"||typeof i=="function")for(let p of je(i))!Xe.call(n,p)&&p!==e&&$(n,p,{get:()=>i[p],enumerable:!(a=Ve(i,p))||a.enumerable});return n};var U=(n,i,e)=>(e=n!=null?qe(Ke(n)):{},Je(i||!n||!n.__esModule?$(e,"default",{value:n,enumerable:!0}):e,n));var B=(n,i,e)=>Ye(n,typeof i!="symbol"?i+"":i,e);function fe(n){return n!==null&&typeof n=="object"&&"name"in n&&n.name==="ShipError"&&"status"in n}function H(n){let i=n.lastIndexOf(".");if(i===-1||i===n.length-1)return!1;let e=n.slice(i+1).toLowerCase();return et.has(e)}function he(n){return tt.test(n)}function z(n){return n.replace(/\\/g,"/").split("/").filter(Boolean).some(e=>nt.has(e))}function rt(n){return n.startsWith(me.PREFIX)?N.API_KEY:n.startsWith(ye.PREFIX)?N.DEPLOY_TOKEN:N.OPAQUE}function Ee(n,i,e){if(!n.startsWith(i.PREFIX))throw f.validation(`${e} must start with "${i.PREFIX}"`);if(n.length!==i.TOTAL_LENGTH)throw f.validation(`${e} must be ${i.TOTAL_LENGTH} characters total (${i.PREFIX} + ${i.HEX_LENGTH} hex chars)`);let a=n.slice(i.PREFIX.length);if(!new RegExp(`^[a-f0-9]{${i.HEX_LENGTH}}$`,"i").test(a))throw f.validation(`${e} must contain ${i.HEX_LENGTH} hexadecimal characters after "${i.PREFIX}" prefix`)}function it(n){Ee(n,me,"API key")}function st(n){Ee(n,ye,"Deploy token")}function J(n){switch(rt(n)){case N.API_KEY:return it(n);case N.DEPLOY_TOKEN:return st(n);case N.OPAQUE:if(!n)throw f.validation("Token must be a non-empty string")}}function Ae(n){if(!n||n.length>Y.MAX_LENGTH||!Y.PATTERN.test(n))throw f.validation(`Caller must be 1-${Y.MAX_LENGTH} characters: letters, digits, dots, underscores, or hyphens`)}function Tt(n){try{let i=new URL(n);if(!["http:","https:"].includes(i.protocol))throw f.validation("API URL must use http:// or https:// protocol");if(i.pathname!=="/"&&i.pathname!=="")throw f.validation("API URL must not contain a path");if(i.search||i.hash)throw f.validation("API URL must not contain query parameters or fragments")}catch(i){throw fe(i)?i:f.validation("API URL must be a valid URL")}}function wt(n){return/^[a-z]+-[a-z]+-[a-z0-9]{7}(\.[a-z0-9.-]+)?$/i.test(n)}function Se(n,i){return n.endsWith(`.${i}`)}function bt(n,i){return!Se(n,i)}function vt(n,i){return Se(n,i)?n.slice(0,-(i.length+1)):null}function Rt(n){return`https://${n}`}function xt(n){return`https://${n}`}function It(n){return!n||n.length===0?null:JSON.stringify(n)}function Pt(n){if(!n)return[];try{let i=JSON.parse(n);return Array.isArray(i)?i:[]}catch{return[]}}function Q(n){if(n==null)return;if(typeof n!="string")throw f.validation("Password must be a string");let i=n.trim();if(i.length<M.MIN_LENGTH||i.length>M.MAX_LENGTH)throw f.validation(`Password must be between ${M.MIN_LENGTH} and ${M.MAX_LENGTH} characters`);return i}var Et,At,Dt,E,Qe,X,Ze,f,et,tt,nt,de,me,ye,Y,N,St,W,ge,De,T,F,Te,M,v=x(()=>{"use strict";Et={PENDING:"pending",SUCCESS:"success",FAILED:"failed",DELETING:"deleting"},At={PENDING:"pending",PARTIAL:"partial",SUCCESS:"success",PAUSED:"paused"},Dt={FREE:"free",STANDARD:"standard",SPONSORED:"sponsored",ENTERPRISE:"enterprise",SUSPENDED:"suspended",TERMINATING:"terminating",TERMINATED:"terminated"},E={Validation:"validation_failed",NotFound:"not_found",Forbidden:"forbidden",RateLimit:"rate_limit_exceeded",Authentication:"authentication_failed",Business:"business_logic_error",Api:"internal_server_error",Network:"network_error",Cancelled:"operation_cancelled",File:"file_error",Config:"config_error"},Qe=new Set([E.Network,E.Cancelled,E.File,E.Config]),X={client:new Set([E.Business,E.Config,E.File,E.Forbidden,E.Validation]),network:new Set([E.Network]),auth:new Set([E.Authentication])},Ze=new Set(Object.values(E).filter(n=>!Qe.has(n))),f=class n extends Error{constructor(e,a,p,c){super(a);B(this,"type");B(this,"status");B(this,"details");this.type=e,this.status=p,this.details=c,this.name="ShipError"}toResponse(){let e=this.details,a=this.type===E.Authentication&&e?.internal?void 0:this.details;return{error:this.type,message:this.message,status:this.status,details:a}}static async fromHttpResponse(e,a){let p,c,m;try{if(e.headers.get("content-type")?.includes("application/json")){let h=await e.json();if(h&&typeof h=="object"){let g=h;typeof g.message=="string"?p=g.message:typeof g.error=="string"&&(p=g.error),c=g.details,typeof g.error=="string"&&Ze.has(g.error)&&(m=g.error)}}else{let h=await e.text();h&&(p=h)}}catch{}p=p||`${a||"Request"} failed with status ${e.status}`;let y=m??(e.status===401?E.Authentication:e.status===403?E.Forbidden:e.status===429?E.RateLimit:E.Api);return new n(y,p,e.status,c)}static fromFetchError(e,a){if(fe(e))return e;let p=a||"Request";return e instanceof Error?e.name==="AbortError"?n.cancelled(`${p} was cancelled`):e instanceof TypeError&&e.message.includes("fetch")?n.network(`${p} failed: ${e.message}`,{cause:e}):new n(E.Api,`${p} failed: ${e.message}`):new n(E.Api,`${p} failed: Unknown error`)}static validation(e,a){return new n(E.Validation,e,400,a)}static notFound(e,a){let p=a?`${e} ${a} not found`:`${e} not found`;return new n(E.NotFound,p,404)}static forbidden(e,a){return new n(E.Forbidden,e,403,a)}static rateLimit(e="Too many requests",a){return new n(E.RateLimit,e,429,a)}static authentication(e="Authentication required",a){return new n(E.Authentication,e,401,a)}static business(e,a=400,p){return new n(E.Business,e,a,p)}static network(e,a){return new n(E.Network,e,void 0,a)}static cancelled(e,a){return new n(E.Cancelled,e,void 0,a)}static file(e,a){return new n(E.File,e,void 0,a)}static config(e,a){return new n(E.Config,e,void 0,a)}static api(e,a=500,p){return new n(E.Api,e,a,p)}isClientError(){return X.client.has(this.type)}isNetworkError(){return X.network.has(this.type)}isAuthError(){return X.auth.has(this.type)}isType(e){return this.type===e}};et=new Set(["exe","msi","dll","scr","bat","cmd","com","pif","app","deb","rpm","pkg","mpkg","dmg","iso","img","cab","cpl","chm","ps1","vbs","vbe","ws","wsf","wsc","wsh","reg","jar","jnlp","apk","crx","lnk","inf","hta"]);tt=/[\x00-\x1f\x7f#?%\\<>"]/;nt=new Set(["node_modules","package.json"]);de={SESSION:"session",API_KEY:"apiKey",TOKEN:"token",AGENT:"agent",OAUTH:"oauth",WEBHOOK:"webhook",SYSTEM:"system"},me={PREFIX:"ship-",HEX_LENGTH:64,TOTAL_LENGTH:69,HINT_LENGTH:4},ye={PREFIX:"deploy-",HEX_LENGTH:64,TOTAL_LENGTH:71},Y={HEADER:"X-Caller",MAX_LENGTH:128,PATTERN:/^[a-zA-Z0-9._-]+$/},N={API_KEY:de.API_KEY,DEPLOY_TOKEN:de.TOKEN,OPAQUE:"opaque"};St={ACCOUNT_READ:"account:read",DEPLOYMENTS_READ:"deployments:read",DEPLOYMENTS_WRITE:"deployments:write",DOMAINS_READ:"domains:read",DOMAINS_WRITE:"domains:write"},W="ship.json",ge={rewrites:[{source:"/(.*)",destination:"/index.html"}]};De="https://api.shipstatic.com",T={PENDING:"pending",PROCESSING_ERROR:"processing_error",EXCLUDED:"excluded",VALIDATION_FAILED:"validation_failed",READY:"ready"};F={MIN_LENGTH:3,MAX_LENGTH:25,MAX_COUNT:10,SEPARATORS:"._-"},Te=/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/;M={MIN_LENGTH:6,MAX_LENGTH:128}});var Re=ce((be,ve)=>{"use strict";(function(n){if(typeof be=="object")ve.exports=n();else if(typeof define=="function"&&define.amd)define(n);else{var i;try{i=window}catch{i=self}i.SparkMD5=n()}})(function(n){"use strict";var i=function(u,l){return u+l&4294967295},e=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function a(u,l,r,t,o,s){return l=i(i(l,u),i(t,s)),i(l<<o|l>>>32-o,r)}function p(u,l){var r=u[0],t=u[1],o=u[2],s=u[3];r+=(t&o|~t&s)+l[0]-680876936|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[1]-389564586|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[2]+606105819|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[3]-1044525330|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[4]-176418897|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[5]+1200080426|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[6]-1473231341|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[7]-45705983|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[8]+1770035416|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[9]-1958414417|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[10]-42063|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[11]-1990404162|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[12]+1804603682|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[13]-40341101|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[14]-1502002290|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[15]+1236535329|0,t=(t<<22|t>>>10)+o|0,r+=(t&s|o&~s)+l[1]-165796510|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[6]-1069501632|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[11]+643717713|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[0]-373897302|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[5]-701558691|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[10]+38016083|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[15]-660478335|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[4]-405537848|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[9]+568446438|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[14]-1019803690|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[3]-187363961|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[8]+1163531501|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[13]-1444681467|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[2]-51403784|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[7]+1735328473|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[12]-1926607734|0,t=(t<<20|t>>>12)+o|0,r+=(t^o^s)+l[5]-378558|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[8]-2022574463|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[11]+1839030562|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[14]-35309556|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[1]-1530992060|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[4]+1272893353|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[7]-155497632|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[10]-1094730640|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[13]+681279174|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[0]-358537222|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[3]-722521979|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[6]+76029189|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[9]-640364487|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[12]-421815835|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[15]+530742520|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[2]-995338651|0,t=(t<<23|t>>>9)+o|0,r+=(o^(t|~s))+l[0]-198630844|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[7]+1126891415|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[14]-1416354905|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[5]-57434055|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[12]+1700485571|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[3]-1894986606|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[10]-1051523|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[1]-2054922799|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[8]+1873313359|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[15]-30611744|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[6]-1560198380|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[13]+1309151649|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[4]-145523070|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[11]-1120210379|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[2]+718787259|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[9]-343485551|0,t=(t<<21|t>>>11)+o|0,u[0]=r+u[0]|0,u[1]=t+u[1]|0,u[2]=o+u[2]|0,u[3]=s+u[3]|0}function c(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u.charCodeAt(r)+(u.charCodeAt(r+1)<<8)+(u.charCodeAt(r+2)<<16)+(u.charCodeAt(r+3)<<24);return l}function m(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u[r]+(u[r+1]<<8)+(u[r+2]<<16)+(u[r+3]<<24);return l}function y(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],t,o,s,b,I,P;for(t=64;t<=l;t+=64)p(r,c(u.substring(t-64,t)));for(u=u.substring(t-64),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t<o;t+=1)s[t>>2]|=u.charCodeAt(t)<<(t%4<<3);if(s[t>>2]|=128<<(t%4<<3),t>55)for(p(r,s),t=0;t<16;t+=1)s[t]=0;return b=l*8,b=b.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(b[2],16),P=parseInt(b[1],16)||0,s[14]=I,s[15]=P,p(r,s),r}function d(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],t,o,s,b,I,P;for(t=64;t<=l;t+=64)p(r,m(u.subarray(t-64,t)));for(u=t-64<l?u.subarray(t-64):new Uint8Array(0),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t<o;t+=1)s[t>>2]|=u[t]<<(t%4<<3);if(s[t>>2]|=128<<(t%4<<3),t>55)for(p(r,s),t=0;t<16;t+=1)s[t]=0;return b=l*8,b=b.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(b[2],16),P=parseInt(b[1],16)||0,s[14]=I,s[15]=P,p(r,s),r}function h(u){var l="",r;for(r=0;r<4;r+=1)l+=e[u>>r*8+4&15]+e[u>>r*8&15];return l}function g(u){var l;for(l=0;l<u.length;l+=1)u[l]=h(u[l]);return u.join("")}g(y("hello"))!=="5d41402abc4b2a76b9719d911017c592"&&(i=function(u,l){var r=(u&65535)+(l&65535),t=(u>>16)+(l>>16)+(r>>16);return t<<16|r&65535}),typeof ArrayBuffer<"u"&&!ArrayBuffer.prototype.slice&&(function(){function u(l,r){return l=l|0||0,l<0?Math.max(l+r,0):Math.min(l,r)}ArrayBuffer.prototype.slice=function(l,r){var t=this.byteLength,o=u(l,t),s=t,b,I,P,ue;return r!==n&&(s=u(r,t)),o>s?new ArrayBuffer(0):(b=s-o,I=new ArrayBuffer(b),P=new Uint8Array(I),ue=new Uint8Array(this,o,b),P.set(ue),I)}})();function D(u){return/[\u0080-\uFFFF]/.test(u)&&(u=unescape(encodeURIComponent(u))),u}function w(u,l){var r=u.length,t=new ArrayBuffer(r),o=new Uint8Array(t),s;for(s=0;s<r;s+=1)o[s]=u.charCodeAt(s);return l?o:t}function R(u){return String.fromCharCode.apply(null,new Uint8Array(u))}function O(u,l,r){var t=new Uint8Array(u.byteLength+l.byteLength);return t.set(new Uint8Array(u)),t.set(new Uint8Array(l),u.byteLength),r?t:t.buffer}function L(u){var l=[],r=u.length,t;for(t=0;t<r-1;t+=2)l.push(parseInt(u.substr(t,2),16));return String.fromCharCode.apply(String,l)}function A(){this.reset()}return A.prototype.append=function(u){return this.appendBinary(D(u)),this},A.prototype.appendBinary=function(u){this._buff+=u,this._length+=u.length;var l=this._buff.length,r;for(r=64;r<=l;r+=64)p(this._hash,c(this._buff.substring(r-64,r)));return this._buff=this._buff.substring(r-64),this},A.prototype.end=function(u){var l=this._buff,r=l.length,t,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],s;for(t=0;t<r;t+=1)o[t>>2]|=l.charCodeAt(t)<<(t%4<<3);return this._finish(o,r),s=g(this._hash),u&&(s=L(s)),this.reset(),s},A.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},A.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},A.prototype.setState=function(u){return this._buff=u.buff,this._length=u.length,this._hash=u.hash,this},A.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},A.prototype._finish=function(u,l){var r=l,t,o,s;if(u[r>>2]|=128<<(r%4<<3),r>55)for(p(this._hash,u),r=0;r<16;r+=1)u[r]=0;t=this._length*8,t=t.toString(16).match(/(.*?)(.{0,8})$/),o=parseInt(t[2],16),s=parseInt(t[1],16)||0,u[14]=o,u[15]=s,p(this._hash,u)},A.hash=function(u,l){return A.hashBinary(D(u),l)},A.hashBinary=function(u,l){var r=y(u),t=g(r);return l?L(t):t},A.ArrayBuffer=function(){this.reset()},A.ArrayBuffer.prototype.append=function(u){var l=O(this._buff.buffer,u,!0),r=l.length,t;for(this._length+=u.byteLength,t=64;t<=r;t+=64)p(this._hash,m(l.subarray(t-64,t)));return this._buff=t-64<r?new Uint8Array(l.buffer.slice(t-64)):new Uint8Array(0),this},A.ArrayBuffer.prototype.end=function(u){var l=this._buff,r=l.length,t=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o,s;for(o=0;o<r;o+=1)t[o>>2]|=l[o]<<(o%4<<3);return this._finish(t,r),s=g(this._hash),u&&(s=L(s)),this.reset(),s},A.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},A.ArrayBuffer.prototype.getState=function(){var u=A.prototype.getState.call(this);return u.buff=R(u.buff),u},A.ArrayBuffer.prototype.setState=function(u){return u.buff=w(u.buff,!0),A.prototype.setState.call(this,u)},A.ArrayBuffer.prototype.destroy=A.prototype.destroy,A.ArrayBuffer.prototype._finish=A.prototype._finish,A.ArrayBuffer.hash=function(u,l){var r=d(new Uint8Array(u)),t=g(r);return l?L(t):t},A})});var q=ce((zt,xe)=>{"use strict";xe.exports={}});async function at(n){let i=(await Promise.resolve().then(()=>U(Re(),1))).default,e=new i.ArrayBuffer,a=2097152;for(let p=0;p<n.size;p+=a){let c=Math.min(p+a,n.size);e.append(await n.slice(p,c).arrayBuffer())}return{md5:e.end()}}async function lt(n){let{createHash:i}=await Promise.resolve().then(()=>U(q(),1)),e=i("md5");return e.update(n),{md5:e.digest("hex")}}async function pt(n){let{createHash:i}=await Promise.resolve().then(()=>U(q(),1)),{createReadStream:e}=await Promise.resolve().then(()=>U(q(),1));return new Promise((a,p)=>{let c=i("md5"),m=e(n);m.on("error",y=>p(f.business(`Failed to read file for MD5: ${y.message}`))),m.on("data",y=>c.update(y)),m.on("end",()=>a({md5:c.digest("hex")}))})}async function _(n){if(n instanceof Blob)return at(n);if(typeof Buffer<"u"&&Buffer.isBuffer(n))return lt(n);if(typeof n=="string")return pt(n);throw f.business("Invalid input for MD5 calculation")}var V=x(()=>{"use strict";v()});function Ce(n){return dt.test(n)}var ct,dt,_e=x(()=>{"use strict";ct=["^npm-debug\\.log$","^\\..*\\.swp$","^\\.DS_Store$","^\\.AppleDouble$","^\\.LSOverride$","^Icon\\r$","^\\._.*","^\\.Spotlight-V100(?:$|\\/)","\\.Trashes","^__MACOSX$","~$","^Thumbs\\.db$","^ehthumbs\\.db$","^[Dd]esktop\\.ini$","@eaDir$"],dt=new RegExp(ct.join("|"))});function $e(n,i){if(!n||n.length===0)return[];if(!i?.allowUnbuilt&&n.find(a=>a&&z(a)))throw f.business("Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder");return n.filter(e=>{if(!e)return!1;let a=e.replace(/\\/g,"/").split("/").filter(Boolean);if(a.length===0)return!0;let p=a[a.length-1];if(Ce(p))return!1;for(let m of a)if(m!==".well-known"&&(m.startsWith(".")||m.length>255))return!1;let c=a.slice(0,-1);for(let m of c)if(ft.some(y=>m.toLowerCase()===y.toLowerCase()))return!1;return!0})}var ft,Z=x(()=>{"use strict";_e();v();ft=["__MACOSX",".Trashes",".fseventsd",".Spotlight-V100"]});function K(n){return n.replace(/\\/g,"/").replace(/\/+/g,"/").replace(/^\/+/,"")}var Ue=x(()=>{"use strict"});function Be(n,i={}){if(i.flatten===!1)return n.map(a=>({path:K(a),name:ee(a)}));let e=ht(n);return n.map(a=>{let p=K(a);if(e){let c=e.endsWith("/")?e:`${e}/`;p.startsWith(c)&&(p=p.substring(c.length))}return p||(p=ee(a)),{path:p,name:ee(a)}})}function ht(n){if(!n.length)return"";let e=n.map(c=>K(c)).map(c=>c.split("/")),a=[],p=Math.min(...e.map(c=>c.length));for(let c=0;c<p-1;c++){let m=e[0][c];if(e.every(y=>y[c]===m))a.push(m);else break}return a.join("/")}function ee(n){return n.split(/[/\\]/).pop()||n}var te=x(()=>{"use strict";Ue()});function fn(n){ne=n}function mt(){return typeof process<"u"&&process.versions&&process.versions.node?"node":typeof window<"u"||typeof self<"u"?"browser":"unknown"}function Me(){return ne||mt()}var ne,re=x(()=>{"use strict";ne=null});function ie(n,i=1){if(n===0)return"0 Bytes";let e=1024,a=["Bytes","KB","MB","GB"],p=Math.floor(Math.log(n)/Math.log(e));return parseFloat((n/Math.pow(e,p)).toFixed(i))+" "+a[p]}function se(n){if(he(n))return{valid:!1,reason:"File name contains unsafe characters"};if(n.startsWith(" ")||n.endsWith(" "))return{valid:!1,reason:"File name cannot start/end with spaces"};if(n.endsWith("."))return{valid:!1,reason:"File name cannot end with dots"};let i=/^(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|$)/i,e=n.split("/").pop()||n;return i.test(e)?{valid:!1,reason:"File name uses a reserved system name"}:n.includes("..")?{valid:!1,reason:"File name contains path traversal pattern"}:{valid:!0}}function yn(n,i){let e=[],a=[],p=[];if(n.length===0){let d={file:"(no files)",message:"At least one file must be provided"};return e.push(d),{files:[],validFiles:[],errors:e,warnings:[],canDeploy:!1}}for(let d of n)if(z(d.name))return e.push({file:d.name,message:"Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder"}),{files:n.map(h=>({...h,status:T.VALIDATION_FAILED,statusMessage:"Unbuilt project detected"})),validFiles:[],errors:e,warnings:[],canDeploy:!1};if(n.length>i.maxFilesCount){let d={file:`(${n.length} files)`,message:`File count (${n.length}) exceeds limit of ${i.maxFilesCount}`};return e.push(d),{files:n.map(h=>({...h,status:T.VALIDATION_FAILED,statusMessage:d.message})),validFiles:[],errors:e,warnings:[],canDeploy:!1}}let c=0;for(let d of n){let h=T.READY,g="Ready for upload",D=d.name?se(d.name):{valid:!1,reason:"File name cannot be empty"};if(d.status===T.PROCESSING_ERROR)h=T.VALIDATION_FAILED,g=d.statusMessage||"File failed during processing",e.push({file:d.name,message:g});else if(d.size===0){h=T.EXCLUDED,g="File is empty (0 bytes) and cannot be deployed due to storage limitations",a.push({file:d.name,message:g}),p.push({...d,status:h,statusMessage:g});continue}else d.size<0?(h=T.VALIDATION_FAILED,g="File size must be positive",e.push({file:d.name,message:g})):!d.name||d.name.trim().length===0?(h=T.VALIDATION_FAILED,g="File name cannot be empty",e.push({file:d.name||"(empty)",message:g})):d.name.includes("\0")?(h=T.VALIDATION_FAILED,g="File name contains invalid characters (null byte)",e.push({file:d.name,message:g})):D.valid?H(d.name)?(h=T.VALIDATION_FAILED,g=`File extension not allowed: "${d.name}"`,e.push({file:d.name,message:g})):d.size>i.maxFileSize?(h=T.VALIDATION_FAILED,g=`File size (${ie(d.size)}) exceeds limit of ${ie(i.maxFileSize)}`,e.push({file:d.name,message:g})):(c+=d.size,c>i.maxTotalSize&&(h=T.VALIDATION_FAILED,g=`Total size would exceed limit of ${ie(i.maxTotalSize)}`,e.push({file:d.name,message:g}))):(h=T.VALIDATION_FAILED,g=D.reason||"Invalid file name",e.push({file:d.name,message:g}));p.push({...d,status:h,statusMessage:g})}e.length>0&&(p=p.map(d=>d.status===T.EXCLUDED?d:{...d,status:T.VALIDATION_FAILED,statusMessage:d.status===T.VALIDATION_FAILED?d.statusMessage:"Deployment failed due to validation errors in bundle"}));let m=e.length===0?p.filter(d=>d.status===T.READY):[],y=e.length===0;return{files:p,validFiles:m,errors:e,warnings:a,canDeploy:y}}function yt(n){return n.filter(i=>i.status===T.READY)}function gn(n){return yt(n).length>0}var oe=x(()=>{"use strict";v()});function He(n,i){if(n.includes("\0")||n.includes("/../")||n.startsWith("../")||n.endsWith("/.."))throw f.business(`Security error: Unsafe file path "${n}" for file: ${i}`)}function ze(n,i){let e=se(n);if(!e.valid)throw f.business(e.reason||"Invalid file name");if(H(n))throw f.business(`File extension not allowed: "${i}"`)}var ae=x(()=>{"use strict";v();oe()});var ke={};We(ke,{processFilesForBrowser:()=>Ge});async function Ge(n,i={},e){if(Me()!=="browser")throw f.business("processFilesForBrowser can only be called in a browser environment.");let a=n.map(D=>D.webkitRelativePath||D.name),p=i.build||i.prerender,c=Be(a,{flatten:i.pathDetect!==!1}),m=c.map(D=>D.path),y=new Set($e(m,{allowUnbuilt:p})),d=[];for(let D=0;D<n.length;D++)y.has(m[D])&&d.push({file:n[D],deployPath:c[D].path});if(d.length===0)return[];if(p){let D=[];for(let w=0;w<d.length;w++){let{file:R,deployPath:O}=d[w];if(R.size===0)continue;let{md5:L}=await _(R);D.push({path:O,content:R,size:R.size,md5:L})}return D}if(!e)throw f.config("Platform limits not provided. processFilesForBrowser requires the limits argument for deploy-mode validation \u2014 pass `ship.getLimits()` result.");let h=[],g=0;for(let D=0;D<d.length;D++){let{file:w,deployPath:R}=d[D];if(He(R,w.name),w.size===0)continue;if(ze(R,w.name),w.size>e.maxFileSize)throw f.business(`File ${w.name} is too large. Maximum allowed size is ${e.maxFileSize/(1024*1024)}MB.`);if(g+=w.size,g>e.maxTotalSize)throw f.business(`Total deploy size is too large. Maximum allowed is ${e.maxTotalSize/(1024*1024)}MB.`);let{md5:O}=await _(w);h.push({path:R,content:w,size:w.size,md5:O})}if(h.length>e.maxFilesCount)throw f.business(`Too many files to deploy. Maximum allowed is ${e.maxFilesCount} files.`);return h}var le=x(()=>{"use strict";V();v();re();Z();te();ae()});v();v();var G=class{constructor(){this.handlers=new Map}on(i,e){this.handlers.has(i)||this.handlers.set(i,new Set),this.handlers.get(i).add(e)}off(i,e){let a=this.handlers.get(i);a&&(a.delete(e),a.size===0&&this.handlers.delete(i))}emit(i,...e){let a=this.handlers.get(i);if(!a)return;let p=Array.from(a);for(let c of p)try{c(...e)}catch(m){a.delete(c),i!=="error"&&setTimeout(()=>{let y=m instanceof Error?m:new Error(String(m));this.emit("error",y,String(i))},0)}}};v();v();function C(n){if(n==null)return;if(n.length===0)return n;if(n.length>F.MAX_COUNT)throw f.validation(`Maximum ${F.MAX_COUNT} labels allowed`);let i=n.map((a,p)=>{if(typeof a!="string")throw f.validation(`Label at index ${p} must be a string`);let c=a.trim().toLowerCase();if(c.length<F.MIN_LENGTH)throw f.validation(`Labels must be at least ${F.MIN_LENGTH} characters long`);if(c.length>F.MAX_LENGTH)throw f.validation(`Labels must be no more than ${F.MAX_LENGTH} characters long`);if(!Te.test(c))throw f.validation(`Labels must start and end with alphanumeric characters, with optional separators (${F.SEPARATORS}) between segments`);return c}),e=[...new Set(i)];if(e.length!==i.length)throw f.validation("Duplicate labels are not allowed");return e}var S={DEPLOYMENTS:"/deployments",DOMAINS:"/domains",TOKENS:"/tokens",ACCOUNT:"/account",LIMITS:"/limits",PING:"/ping",SPA_CHECK:"/spa-check"},ot=3e4,k=class extends G{constructor(e){super();this.globalHeaders={};this.apiUrl=e.apiUrl||De,this.getAuthHeadersCallback=e.getAuthHeaders,this.session=e.session??!1,this.caller=e.caller,this.timeout=e.timeout??ot,this.fetch=e.fetch??globalThis.fetch.bind(globalThis),this.createDeployBody=e.createDeployBody,this.deployEndpoint=e.deployEndpoint||S.DEPLOYMENTS}setGlobalHeaders(e){this.globalHeaders=e}async executeRequest(e,a,p){let c=()=>{};try{let m=await this.mergeHeaders(a.headers),y=this.createTimeoutSignal(a.signal);c=y.cleanup;let d={...a,headers:m,credentials:this.session&&!m.Authorization?"include":void 0,signal:y.signal};this.emit("request",e,d);let h=await this.fetch(e,d);if(c(),!h.ok)throw await f.fromHttpResponse(h,p);return this.emit("response",this.safeClone(h),e),{data:await this.parseResponse(this.safeClone(h)),status:h.status}}catch(m){c();let y=f.fromFetchError(m,p);throw this.emit("error",y,e),y}}async request(e,a,p){let{data:c}=await this.executeRequest(e,a,p);return c}async requestWithStatus(e,a,p){return this.executeRequest(e,a,p)}async mergeHeaders(e={}){return{...this.globalHeaders,...this.caller?{"X-Caller":this.caller}:{},...await this.getAuthHeadersCallback(),...e}}createTimeoutSignal(e){let a=new AbortController,p=setTimeout(()=>a.abort(),this.timeout);if(e){let c=()=>a.abort();e.addEventListener("abort",c),e.aborted&&a.abort()}return{signal:a.signal,cleanup:()=>clearTimeout(p)}}safeClone(e){try{return e.clone()}catch{return e}}async parseResponse(e){if(!(e.headers.get("Content-Length")==="0"||e.status===204))return e.json()}async deploy(e,a={}){if(!e.length)throw f.business("No files to deploy");for(let d of e)if(!d.md5)throw f.file(`MD5 checksum missing for file: ${d.path}`,{filePath:d.path});Q(a.password);let p=C(a.labels),c=a.build||a.prerender||a.spa?{build:a.build,prerender:a.prerender,spa:a.spa}:void 0,{body:m,headers:y}=await this.createDeployBody(e,{labels:p,via:a.via,password:a.password,flags:c,captcha:a.captcha});return this.request(`${this.apiUrl}${this.deployEndpoint}`,{method:"POST",body:m,headers:y,signal:a.signal||null},"Deploy")}async listDeployments(){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}`,{method:"GET"},"List deployments")}async getDeployment(e){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"GET"},"Get deployment")}async updateDeploymentLabels(e,a){let p=C(a);return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({labels:p})},"Update deployment labels")}async removeDeployment(e){await this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove deployment")}async setDomain(e,a,p){let c=C(p),m={};a&&(m.deployment=a),c!==void 0&&(m.labels=c);let{data:y,status:d}=await this.requestWithStatus(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(m)},"Set domain");return{...y,isCreate:d===201}}async listDomains(){return this.request(`${this.apiUrl}${S.DOMAINS}`,{method:"GET"},"List domains")}async getDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"GET"},"Get domain")}async removeDomain(e){await this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove domain")}async verifyDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/verify`,{method:"POST"},"Verify domain")}async getDomainDns(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/dns`,{method:"GET"},"Get domain DNS")}async getDomainRecords(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/records`,{method:"GET"},"Get domain records")}async getDomainShare(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/share`,{method:"GET"},"Get domain share")}async validateDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/validate`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({domain:e})},"Validate domain")}async createToken(e,a){let p=C(a),c={};return e!==void 0&&(c.ttl=e),p!==void 0&&(c.labels=p),this.request(`${this.apiUrl}${S.TOKENS}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)},"Create token")}async listTokens(){return this.request(`${this.apiUrl}${S.TOKENS}`,{method:"GET"},"List tokens")}async removeToken(e){await this.request(`${this.apiUrl}${S.TOKENS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove token")}async getAccount(){return this.request(`${this.apiUrl}${S.ACCOUNT}`,{method:"GET"},"Get account")}async getLimits(){return this.request(`${this.apiUrl}${S.LIMITS}`,{method:"GET"},"Get limits")}async ping(){return(await this.request(`${this.apiUrl}${S.PING}`,{method:"GET"},"Ping"))?.success||!1}async checkSPA(e,a={}){let p=e.find(d=>d.path==="index.html"||d.path==="/index.html");if(!p||p.size>100*1024)return!1;let c;if(typeof Buffer<"u"&&Buffer.isBuffer(p.content))c=p.content.toString("utf-8");else if(typeof Blob<"u"&&p.content instanceof Blob)c=await p.content.text();else if(typeof File<"u"&&p.content instanceof File)c=await p.content.text();else return!1;let m={files:e.map(d=>d.path),index:c};return(await this.request(`${this.apiUrl}${S.SPA_CHECK}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(m)},"SPA check")).isSPA}};v();function we(n,i){let e={...n};return e.timeout===void 0&&i.timeout!==void 0&&(e.timeout=i.timeout),e.maxConcurrency===void 0&&i.maxConcurrency!==void 0&&(e.maxConcurrency=i.maxConcurrency),e.onProgress===void 0&&i.onProgress!==void 0&&(e.onProgress=i.onProgress),e}v();V();async function ut(){let n=JSON.stringify(ge,null,2),i;typeof Buffer<"u"?i=Buffer.from(n,"utf-8"):i=new Blob([n],{type:"application/json"});let{md5:e}=await _(i);return{path:W,content:i,size:n.length,md5:e}}async function Ie(n,i,e){if(e.spaDetect===!1||e.spa||e.build||e.prerender||n.some(a=>a.path===W))return n;try{if(await i.checkSPA(n,e)){let p=await ut();return[...n,p]}}catch{}return n}function Pe(n){let{getApi:i,ensureInit:e,processInput:a,clientDefaults:p}=n;return{upload:async(c,m={})=>{await e();let y=p?we(m,p):m;if(!a)throw f.config("processInput function is not provided.");let d=i(),h=await a(c,y);return h=await Ie(h,d,y),d.deploy(h,y)},list:async()=>(await e(),i().listDeployments()),get:async c=>(await e(),i().getDeployment(c)),set:async(c,m)=>(await e(),i().updateDeploymentLabels(c,m.labels)),remove:async c=>{await e(),await i().removeDeployment(c)}}}function Fe(n){let{getApi:i,ensureInit:e}=n;return{set:async(a,p={})=>(await e(),i().setDomain(a,p.deployment,p.labels)),list:async()=>(await e(),i().listDomains()),get:async a=>(await e(),i().getDomain(a)),remove:async a=>{await e(),await i().removeDomain(a)},verify:async a=>(await e(),i().verifyDomain(a)),validate:async a=>(await e(),i().validateDomain(a)),dns:async a=>(await e(),i().getDomainDns(a)),records:async a=>(await e(),i().getDomainRecords(a)),share:async a=>(await e(),i().getDomainShare(a))}}function Le(n){let{getApi:i,ensureInit:e}=n;return{get:async()=>(await e(),i().getAccount())}}function Ne(n){let{getApi:i,ensureInit:e}=n;return{create:async(a={})=>(await e(),i().createToken(a.ttl,a.labels)),list:async()=>(await e(),i().listTokens()),remove:async a=>{await e(),await i().removeToken(a)}}}var j=class{constructor(i={}){this.initPromise=null;this.platformLimits=null;this.credential=null;if(i={...i,apiUrl:i.apiUrl||void 0,token:i.token||void 0,caller:i.caller||void 0},this.clientOptions=i,i.caller!==void 0&&Ae(i.caller),i.token&&i.session)throw f.config("Provide either `token` or `session`, not both.");typeof i.token=="string"?(J(i.token),this.credential=i.token):i.token&&(this.credential=i.token),this.http=new k({...i,getAuthHeaders:()=>this.getAuthHeaders(),createDeployBody:this.getDeployBodyCreator()});let e={getApi:()=>this.http,ensureInit:()=>this.ensureInitialized()};this.deployments=Pe({...e,processInput:(a,p)=>this.processInput(a,p),clientDefaults:this.clientOptions}),this.domains=Fe(e),this.account=Le(e),this.tokens=Ne(e)}async ensureInitialized(){return this.initPromise||(this.initPromise=this.fetchPlatformLimits()),this.initPromise}async fetchPlatformLimits(){try{this.platformLimits=await this.http.getLimits()}catch(i){throw this.initPromise=null,i}}async ping(){return await this.ensureInitialized(),this.http.ping()}async deploy(i,e){return this.deployments.upload(i,e)}async whoami(){return this.account.get()}async getLimits(){return this.platformLimits?this.platformLimits:(await this.ensureInitialized(),this.platformLimits)}on(i,e){this.http.on(i,e)}off(i,e){this.http.off(i,e)}setHeaders(i){this.http.setGlobalHeaders(i)}clearHeaders(){this.http.setGlobalHeaders({})}setToken(i){if(this.clientOptions.session)throw f.config("Provide either `token` or `session`, not both.");if(typeof i=="string"){if(!i)throw f.business("Invalid token provided. Token must be a non-empty string.");J(i),this.credential=i;return}if(typeof i!="function")throw f.business("Invalid token provided. Token must be a non-empty string or a provider function.");this.credential=i}async getAuthHeaders(){if(this.credential===null)return{};let i=typeof this.credential=="function"?await this.credential():this.credential;if(!i)throw f.authentication("Token provider returned no token.");if(typeof i!="string")throw f.authentication("Token provider returned a non-string value.");return{Authorization:`Bearer ${i}`}}};v();v();async function Oe(n,i={}){let{labels:e,via:a,password:p,flags:c,captcha:m}=i,y=new FormData,d=[];for(let h of n){if(!(h.content instanceof File||h.content instanceof Blob))throw f.file(`Unsupported file.content type for browser: ${h.path}`,{filePath:h.path});if(!h.md5)throw f.file(`File missing md5 checksum: ${h.path}`,{filePath:h.path});let g=new File([h.content],h.path,{type:"application/octet-stream"});y.append("files[]",g),d.push(h.md5)}return y.append("checksums",JSON.stringify(d)),e&&e.length>0&&y.append("labels",JSON.stringify(e)),a&&y.append("via",a),p&&y.append("password",p),c?.build&&y.append("build","true"),c?.prerender&&y.append("prerender","true"),c?.spa&&y.append("spa","true"),m&&y.append("captcha",m),{body:y,headers:{}}}V();function rn(n,i,e,a=!0){let p=n===1?i:e;return a?`${n} ${p}`:p}Z();te();re();oe();ae();v();le();var pe=class extends j{async deploy(i,e){return super.deploy(i,e)}async processInput(i,e){if(!Array.isArray(i)||!i.every(p=>p instanceof File))throw f.business("Invalid input type for browser environment. Expected File[].");if(i.length===0)throw f.business("No files to deploy.");let{processFilesForBrowser:a}=await Promise.resolve().then(()=>(le(),ke));return a(i,e,this.platformLimits??void 0)}getDeployBodyCreator(){return Oe}},Vn=pe;export{me as API_KEY,Dt as AccountPlan,k as ApiHttp,de as AuthMethod,et as BLOCKED_EXTENSIONS,Y as CALLER,De as DEFAULT_API,W as DEPLOYMENT_CONFIG_FILENAME,ye as DEPLOY_TOKEN,Et as DeploymentStatus,At as DomainStatus,E as ErrorType,T as FILE_VALIDATION_STATUS,T as FileValidationStatus,ft as JUNK_DIRECTORIES,F as LABEL_CONSTRAINTS,Te as LABEL_PATTERN,St as OAuthScope,M as PASSWORD_CONSTRAINTS,ge as SPA_DEFAULT_CONFIG,pe as Ship,f as ShipError,N as TokenKind,nt as UNBUILT_PROJECT_MARKERS,tt as UNSAFE_FILENAME_CHARS,fn as __setTestEnvironment,gn as allValidFilesReady,_ as calculateMD5,rt as classifyToken,Le as createAccountResource,Pe as createDeploymentResource,Fe as createDomainResource,Ne as createTokenResource,Vn as default,Pt as deserializeLabels,vt as extractSubdomain,$e as filterJunk,ie as formatFileSize,Rt as generateDeploymentUrl,xt as generateDomainUrl,Me as getENV,yt as getValidFiles,z as hasUnbuiltMarker,he as hasUnsafeChars,H as isBlockedExtension,bt as isCustomDomain,wt as isDeployment,Se as isPlatformDomain,fe as isShipError,we as mergeDeployOptions,Be as optimizeDeployPaths,rn as pluralize,Ge as processFilesForBrowser,It as serializeLabels,it as validateApiKey,Tt as validateApiUrl,Ae as validateCaller,ze as validateDeployFile,He as validateDeployPath,st as validateDeployToken,se as validateFileName,yn as validateFiles,Q as validatePassword,J as validateToken};
|
|
1
|
+
var qe=Object.create;var $=Object.defineProperty;var Ve=Object.getOwnPropertyDescriptor;var je=Object.getOwnPropertyNames;var Ke=Object.getPrototypeOf,Xe=Object.prototype.hasOwnProperty;var Ye=(n,i,e)=>i in n?$(n,i,{enumerable:!0,configurable:!0,writable:!0,value:e}):n[i]=e;var x=(n,i)=>()=>(n&&(i=n(n=0)),i);var de=(n,i)=>()=>(i||n((i={exports:{}}).exports,i),i.exports),We=(n,i)=>{for(var e in i)$(n,e,{get:i[e],enumerable:!0})},Je=(n,i,e,a)=>{if(i&&typeof i=="object"||typeof i=="function")for(let p of je(i))!Xe.call(n,p)&&p!==e&&$(n,p,{get:()=>i[p],enumerable:!(a=Ve(i,p))||a.enumerable});return n};var U=(n,i,e)=>(e=n!=null?qe(Ke(n)):{},Je(i||!n||!n.__esModule?$(e,"default",{value:n,enumerable:!0}):e,n));var B=(n,i,e)=>Ye(n,typeof i!="symbol"?i+"":i,e);function he(n){return n!==null&&typeof n=="object"&&"name"in n&&n.name==="ShipError"&&"status"in n}function H(n){let i=n.lastIndexOf(".");if(i===-1||i===n.length-1)return!1;let e=n.slice(i+1).toLowerCase();return et.has(e)}function me(n){return tt.test(n)}function z(n){return n.replace(/\\/g,"/").split("/").filter(Boolean).some(e=>nt.has(e))}function rt(n){return n.startsWith(ye.PREFIX)?N.API_KEY:n.startsWith(ge.PREFIX)?N.DEPLOY_TOKEN:N.OPAQUE}function Ae(n,i,e){if(!n.startsWith(i.PREFIX))throw f.validation(`${e} must start with "${i.PREFIX}"`);if(n.length!==i.TOTAL_LENGTH)throw f.validation(`${e} must be ${i.TOTAL_LENGTH} characters total (${i.PREFIX} + ${i.HEX_LENGTH} hex chars)`);let a=n.slice(i.PREFIX.length);if(!new RegExp(`^[a-f0-9]{${i.HEX_LENGTH}}$`,"i").test(a))throw f.validation(`${e} must contain ${i.HEX_LENGTH} hexadecimal characters after "${i.PREFIX}" prefix`)}function it(n){Ae(n,ye,"API key")}function st(n){Ae(n,ge,"Deploy token")}function J(n){switch(rt(n)){case N.API_KEY:it(n);return;case N.DEPLOY_TOKEN:st(n);return;case N.OPAQUE:if(!n)throw f.validation("Token must be a non-empty string")}}function De(n){if(!n||n.length>Y.MAX_LENGTH||!Y.PATTERN.test(n))throw f.validation(`Caller must be 1-${Y.MAX_LENGTH} characters: letters, digits, dots, underscores, or hyphens`)}function Tt(n){try{let i=new URL(n);if(!["http:","https:"].includes(i.protocol))throw f.validation("API URL must use http:// or https:// protocol");if(i.pathname!=="/"&&i.pathname!=="")throw f.validation("API URL must not contain a path");if(i.search||i.hash)throw f.validation("API URL must not contain query parameters or fragments")}catch(i){throw he(i)?i:f.validation("API URL must be a valid URL")}}function bt(n){return/^[a-z]+-[a-z]+-[a-z0-9]{7}(\.[a-z0-9.-]+)?$/i.test(n)}function Se(n,i){return n.endsWith(`.${i}`)}function wt(n,i){return!Se(n,i)}function vt(n,i){return Se(n,i)?n.slice(0,-(i.length+1)):null}function Rt(n){return`https://${n}`}function xt(n){return`https://${n}`}function It(n){return!n||n.length===0?null:JSON.stringify(n)}function Pt(n){if(!n)return[];try{let i=JSON.parse(n);return Array.isArray(i)?i:[]}catch{return[]}}function Z(n){if(n==null)return;if(typeof n!="string")throw f.validation("Password must be a string");let i=n.trim();if(i.length<M.MIN_LENGTH||i.length>M.MAX_LENGTH)throw f.validation(`Password must be between ${M.MIN_LENGTH} and ${M.MAX_LENGTH} characters`);return i}var Et,At,Dt,E,Qe,X,Ze,f,et,tt,nt,fe,ye,ge,Y,N,St,W,Ee,Q,T,F,Te,M,b=x(()=>{"use strict";Et={PENDING:"pending",SUCCESS:"success",FAILED:"failed",DELETING:"deleting"},At={PENDING:"pending",PARTIAL:"partial",SUCCESS:"success",PAUSED:"paused"},Dt={FREE:"free",STANDARD:"standard",SPONSORED:"sponsored",ENTERPRISE:"enterprise",SUSPENDED:"suspended",TERMINATING:"terminating",TERMINATED:"terminated"},E={Validation:"validation_failed",NotFound:"not_found",Forbidden:"forbidden",RateLimit:"rate_limit_exceeded",Authentication:"authentication_failed",Business:"business_logic_error",Api:"internal_server_error",Network:"network_error",Cancelled:"operation_cancelled",File:"file_error",Config:"config_error"},Qe=new Set([E.Network,E.Cancelled,E.File,E.Config]),X={client:new Set([E.Business,E.Config,E.File,E.Forbidden,E.Validation]),network:new Set([E.Network]),auth:new Set([E.Authentication])},Ze=new Set(Object.values(E).filter(n=>!Qe.has(n))),f=class n extends Error{constructor(e,a,p,c){super(a);B(this,"type");B(this,"status");B(this,"details");this.type=e,this.status=p,this.details=c,this.name="ShipError"}toResponse(){let e=this.details,a=this.type===E.Authentication&&e?.internal?void 0:this.details;return{error:this.type,message:this.message,status:this.status,details:a}}static async fromHttpResponse(e,a){let p,c,m;try{if(e.headers.get("content-type")?.includes("application/json")){let h=await e.json();if(h&&typeof h=="object"){let g=h;typeof g.message=="string"?p=g.message:typeof g.error=="string"&&(p=g.error),c=g.details,typeof g.error=="string"&&Ze.has(g.error)&&(m=g.error)}}else{let h=await e.text();h&&(p=h)}}catch{}p=p||`${a||"Request"} failed with status ${e.status}`;let y=m??(e.status===401?E.Authentication:e.status===403?E.Forbidden:e.status===429?E.RateLimit:E.Api);return new n(y,p,e.status,c)}static fromFetchError(e,a){if(he(e))return e;let p=a||"Request";return e instanceof Error?e.name==="AbortError"?n.cancelled(`${p} was cancelled`):e instanceof TypeError&&e.message.includes("fetch")?n.network(`${p} failed: ${e.message}`,{cause:e}):new n(E.Api,`${p} failed: ${e.message}`):new n(E.Api,`${p} failed: Unknown error`)}static validation(e,a){return new n(E.Validation,e,400,a)}static notFound(e,a){let p=a?`${e} ${a} not found`:`${e} not found`;return new n(E.NotFound,p,404)}static forbidden(e,a){return new n(E.Forbidden,e,403,a)}static rateLimit(e="Too many requests",a){return new n(E.RateLimit,e,429,a)}static authentication(e="Authentication required",a){return new n(E.Authentication,e,401,a)}static business(e,a=400,p){return new n(E.Business,e,a,p)}static network(e,a){return new n(E.Network,e,void 0,a)}static cancelled(e,a){return new n(E.Cancelled,e,void 0,a)}static file(e,a){return new n(E.File,e,void 0,a)}static config(e,a){return new n(E.Config,e,void 0,a)}static api(e,a=500,p){return new n(E.Api,e,a,p)}isClientError(){return X.client.has(this.type)}isNetworkError(){return X.network.has(this.type)}isAuthError(){return X.auth.has(this.type)}isType(e){return this.type===e}};et=new Set(["exe","msi","dll","scr","bat","cmd","com","pif","app","deb","rpm","pkg","mpkg","dmg","iso","img","cab","cpl","chm","ps1","vbs","vbe","ws","wsf","wsc","wsh","reg","jar","jnlp","apk","crx","lnk","inf","hta"]);tt=/[\x00-\x1f\x7f#?%\\<>"]/;nt=new Set(["node_modules","package.json"]);fe={SESSION:"session",API_KEY:"apiKey",TOKEN:"token",AGENT:"agent",OAUTH:"oauth",WEBHOOK:"webhook",SYSTEM:"system"},ye={PREFIX:"ship-",HEX_LENGTH:64,TOTAL_LENGTH:69,HINT_LENGTH:4},ge={PREFIX:"deploy-",HEX_LENGTH:64,TOTAL_LENGTH:71},Y={HEADER:"X-Caller",MAX_LENGTH:128,PATTERN:/^[a-zA-Z0-9._-]+$/},N={API_KEY:fe.API_KEY,DEPLOY_TOKEN:fe.TOKEN,OPAQUE:"opaque"};St={ACCOUNT_READ:"account:read",DEPLOYMENTS_READ:"deployments:read",DEPLOYMENTS_WRITE:"deployments:write",DOMAINS_READ:"domains:read",DOMAINS_WRITE:"domains:write"},W="ship.json",Ee={rewrites:[{source:"/(.*)",destination:"/index.html"}]};Q="https://api.shipstatic.com",T={PENDING:"pending",PROCESSING_ERROR:"processing_error",EXCLUDED:"excluded",VALIDATION_FAILED:"validation_failed",READY:"ready"};F={MIN_LENGTH:3,MAX_LENGTH:25,MAX_COUNT:10,SEPARATORS:"._-"},Te=/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/;M={MIN_LENGTH:6,MAX_LENGTH:128}});var Re=de((we,ve)=>{"use strict";(function(n){if(typeof we=="object")ve.exports=n();else if(typeof define=="function"&&define.amd)define(n);else{var i;try{i=window}catch{i=self}i.SparkMD5=n()}})(function(n){"use strict";var i=function(u,l){return u+l&4294967295},e=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function a(u,l,r,t,o,s){return l=i(i(l,u),i(t,s)),i(l<<o|l>>>32-o,r)}function p(u,l){var r=u[0],t=u[1],o=u[2],s=u[3];r+=(t&o|~t&s)+l[0]-680876936|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[1]-389564586|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[2]+606105819|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[3]-1044525330|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[4]-176418897|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[5]+1200080426|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[6]-1473231341|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[7]-45705983|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[8]+1770035416|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[9]-1958414417|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[10]-42063|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[11]-1990404162|0,t=(t<<22|t>>>10)+o|0,r+=(t&o|~t&s)+l[12]+1804603682|0,r=(r<<7|r>>>25)+t|0,s+=(r&t|~r&o)+l[13]-40341101|0,s=(s<<12|s>>>20)+r|0,o+=(s&r|~s&t)+l[14]-1502002290|0,o=(o<<17|o>>>15)+s|0,t+=(o&s|~o&r)+l[15]+1236535329|0,t=(t<<22|t>>>10)+o|0,r+=(t&s|o&~s)+l[1]-165796510|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[6]-1069501632|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[11]+643717713|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[0]-373897302|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[5]-701558691|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[10]+38016083|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[15]-660478335|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[4]-405537848|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[9]+568446438|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[14]-1019803690|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[3]-187363961|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[8]+1163531501|0,t=(t<<20|t>>>12)+o|0,r+=(t&s|o&~s)+l[13]-1444681467|0,r=(r<<5|r>>>27)+t|0,s+=(r&o|t&~o)+l[2]-51403784|0,s=(s<<9|s>>>23)+r|0,o+=(s&t|r&~t)+l[7]+1735328473|0,o=(o<<14|o>>>18)+s|0,t+=(o&r|s&~r)+l[12]-1926607734|0,t=(t<<20|t>>>12)+o|0,r+=(t^o^s)+l[5]-378558|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[8]-2022574463|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[11]+1839030562|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[14]-35309556|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[1]-1530992060|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[4]+1272893353|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[7]-155497632|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[10]-1094730640|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[13]+681279174|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[0]-358537222|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[3]-722521979|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[6]+76029189|0,t=(t<<23|t>>>9)+o|0,r+=(t^o^s)+l[9]-640364487|0,r=(r<<4|r>>>28)+t|0,s+=(r^t^o)+l[12]-421815835|0,s=(s<<11|s>>>21)+r|0,o+=(s^r^t)+l[15]+530742520|0,o=(o<<16|o>>>16)+s|0,t+=(o^s^r)+l[2]-995338651|0,t=(t<<23|t>>>9)+o|0,r+=(o^(t|~s))+l[0]-198630844|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[7]+1126891415|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[14]-1416354905|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[5]-57434055|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[12]+1700485571|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[3]-1894986606|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[10]-1051523|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[1]-2054922799|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[8]+1873313359|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[15]-30611744|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[6]-1560198380|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[13]+1309151649|0,t=(t<<21|t>>>11)+o|0,r+=(o^(t|~s))+l[4]-145523070|0,r=(r<<6|r>>>26)+t|0,s+=(t^(r|~o))+l[11]-1120210379|0,s=(s<<10|s>>>22)+r|0,o+=(r^(s|~t))+l[2]+718787259|0,o=(o<<15|o>>>17)+s|0,t+=(s^(o|~r))+l[9]-343485551|0,t=(t<<21|t>>>11)+o|0,u[0]=r+u[0]|0,u[1]=t+u[1]|0,u[2]=o+u[2]|0,u[3]=s+u[3]|0}function c(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u.charCodeAt(r)+(u.charCodeAt(r+1)<<8)+(u.charCodeAt(r+2)<<16)+(u.charCodeAt(r+3)<<24);return l}function m(u){var l=[],r;for(r=0;r<64;r+=4)l[r>>2]=u[r]+(u[r+1]<<8)+(u[r+2]<<16)+(u[r+3]<<24);return l}function y(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],t,o,s,v,I,P;for(t=64;t<=l;t+=64)p(r,c(u.substring(t-64,t)));for(u=u.substring(t-64),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t<o;t+=1)s[t>>2]|=u.charCodeAt(t)<<(t%4<<3);if(s[t>>2]|=128<<(t%4<<3),t>55)for(p(r,s),t=0;t<16;t+=1)s[t]=0;return v=l*8,v=v.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(v[2],16),P=parseInt(v[1],16)||0,s[14]=I,s[15]=P,p(r,s),r}function d(u){var l=u.length,r=[1732584193,-271733879,-1732584194,271733878],t,o,s,v,I,P;for(t=64;t<=l;t+=64)p(r,m(u.subarray(t-64,t)));for(u=t-64<l?u.subarray(t-64):new Uint8Array(0),o=u.length,s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],t=0;t<o;t+=1)s[t>>2]|=u[t]<<(t%4<<3);if(s[t>>2]|=128<<(t%4<<3),t>55)for(p(r,s),t=0;t<16;t+=1)s[t]=0;return v=l*8,v=v.toString(16).match(/(.*?)(.{0,8})$/),I=parseInt(v[2],16),P=parseInt(v[1],16)||0,s[14]=I,s[15]=P,p(r,s),r}function h(u){var l="",r;for(r=0;r<4;r+=1)l+=e[u>>r*8+4&15]+e[u>>r*8&15];return l}function g(u){var l;for(l=0;l<u.length;l+=1)u[l]=h(u[l]);return u.join("")}g(y("hello"))!=="5d41402abc4b2a76b9719d911017c592"&&(i=function(u,l){var r=(u&65535)+(l&65535),t=(u>>16)+(l>>16)+(r>>16);return t<<16|r&65535}),typeof ArrayBuffer<"u"&&!ArrayBuffer.prototype.slice&&(function(){function u(l,r){return l=l|0||0,l<0?Math.max(l+r,0):Math.min(l,r)}ArrayBuffer.prototype.slice=function(l,r){var t=this.byteLength,o=u(l,t),s=t,v,I,P,ce;return r!==n&&(s=u(r,t)),o>s?new ArrayBuffer(0):(v=s-o,I=new ArrayBuffer(v),P=new Uint8Array(I),ce=new Uint8Array(this,o,v),P.set(ce),I)}})();function D(u){return/[\u0080-\uFFFF]/.test(u)&&(u=unescape(encodeURIComponent(u))),u}function w(u,l){var r=u.length,t=new ArrayBuffer(r),o=new Uint8Array(t),s;for(s=0;s<r;s+=1)o[s]=u.charCodeAt(s);return l?o:t}function R(u){return String.fromCharCode.apply(null,new Uint8Array(u))}function O(u,l,r){var t=new Uint8Array(u.byteLength+l.byteLength);return t.set(new Uint8Array(u)),t.set(new Uint8Array(l),u.byteLength),r?t:t.buffer}function L(u){var l=[],r=u.length,t;for(t=0;t<r-1;t+=2)l.push(parseInt(u.substr(t,2),16));return String.fromCharCode.apply(String,l)}function A(){this.reset()}return A.prototype.append=function(u){return this.appendBinary(D(u)),this},A.prototype.appendBinary=function(u){this._buff+=u,this._length+=u.length;var l=this._buff.length,r;for(r=64;r<=l;r+=64)p(this._hash,c(this._buff.substring(r-64,r)));return this._buff=this._buff.substring(r-64),this},A.prototype.end=function(u){var l=this._buff,r=l.length,t,o=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],s;for(t=0;t<r;t+=1)o[t>>2]|=l.charCodeAt(t)<<(t%4<<3);return this._finish(o,r),s=g(this._hash),u&&(s=L(s)),this.reset(),s},A.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},A.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},A.prototype.setState=function(u){return this._buff=u.buff,this._length=u.length,this._hash=u.hash,this},A.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},A.prototype._finish=function(u,l){var r=l,t,o,s;if(u[r>>2]|=128<<(r%4<<3),r>55)for(p(this._hash,u),r=0;r<16;r+=1)u[r]=0;t=this._length*8,t=t.toString(16).match(/(.*?)(.{0,8})$/),o=parseInt(t[2],16),s=parseInt(t[1],16)||0,u[14]=o,u[15]=s,p(this._hash,u)},A.hash=function(u,l){return A.hashBinary(D(u),l)},A.hashBinary=function(u,l){var r=y(u),t=g(r);return l?L(t):t},A.ArrayBuffer=function(){this.reset()},A.ArrayBuffer.prototype.append=function(u){var l=O(this._buff.buffer,u,!0),r=l.length,t;for(this._length+=u.byteLength,t=64;t<=r;t+=64)p(this._hash,m(l.subarray(t-64,t)));return this._buff=t-64<r?new Uint8Array(l.buffer.slice(t-64)):new Uint8Array(0),this},A.ArrayBuffer.prototype.end=function(u){var l=this._buff,r=l.length,t=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o,s;for(o=0;o<r;o+=1)t[o>>2]|=l[o]<<(o%4<<3);return this._finish(t,r),s=g(this._hash),u&&(s=L(s)),this.reset(),s},A.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},A.ArrayBuffer.prototype.getState=function(){var u=A.prototype.getState.call(this);return u.buff=R(u.buff),u},A.ArrayBuffer.prototype.setState=function(u){return u.buff=w(u.buff,!0),A.prototype.setState.call(this,u)},A.ArrayBuffer.prototype.destroy=A.prototype.destroy,A.ArrayBuffer.prototype._finish=A.prototype._finish,A.ArrayBuffer.hash=function(u,l){var r=d(new Uint8Array(u)),t=g(r);return l?L(t):t},A})});var q=de((zt,xe)=>{"use strict";xe.exports={}});async function at(n){let i=(await Promise.resolve().then(()=>U(Re(),1))).default,e=new i.ArrayBuffer,a=2097152;for(let p=0;p<n.size;p+=a){let c=Math.min(p+a,n.size);e.append(await n.slice(p,c).arrayBuffer())}return{md5:e.end()}}async function lt(n){let{createHash:i}=await Promise.resolve().then(()=>U(q(),1)),e=i("md5");return e.update(n),{md5:e.digest("hex")}}async function pt(n){let{createHash:i}=await Promise.resolve().then(()=>U(q(),1)),{createReadStream:e}=await Promise.resolve().then(()=>U(q(),1));return new Promise((a,p)=>{let c=i("md5"),m=e(n);m.on("error",y=>p(f.business(`Failed to read file for MD5: ${y.message}`))),m.on("data",y=>c.update(y)),m.on("end",()=>a({md5:c.digest("hex")}))})}async function _(n){if(n instanceof Blob)return at(n);if(typeof Buffer<"u"&&Buffer.isBuffer(n))return lt(n);if(typeof n=="string")return pt(n);throw f.business("Invalid input for MD5 calculation")}var V=x(()=>{"use strict";b()});function K(n){return n.replace(/\\/g,"/").replace(/\/+/g,"/").replace(/^\/+/,"")}var Ce=x(()=>{"use strict"});function _e(n,i={}){if(i.flatten===!1)return n.map(a=>({path:K(a),name:ee(a)}));let e=ct(n);return n.map(a=>{let p=K(a);if(e){let c=e.endsWith("/")?e:`${e}/`;p.startsWith(c)&&(p=p.substring(c.length))}return p||(p=ee(a)),{path:p,name:ee(a)}})}function ct(n){if(!n.length)return"";let e=n.map(c=>K(c)).map(c=>c.split("/")),a=[],p=Math.min(...e.map(c=>c.length));for(let c=0;c<p-1;c++){let m=e[0][c];if(e.every(y=>y[c]===m))a.push(m);else break}return a.join("/")}function ee(n){return n.split(/[/\\]/).pop()||n}var te=x(()=>{"use strict";Ce()});function pn(n){ne=n}function dt(){return typeof process<"u"&&process.versions&&process.versions.node?"node":typeof window<"u"||typeof self<"u"?"browser":"unknown"}function $e(){return ne||dt()}var ne,re=x(()=>{"use strict";ne=null});function ie(n,i=1){if(n===0)return"0 Bytes";let e=1024,a=["Bytes","KB","MB","GB"],p=Math.floor(Math.log(n)/Math.log(e));return`${parseFloat((n/e**p).toFixed(i))} ${a[p]}`}function se(n){if(me(n))return{valid:!1,reason:"File name contains unsafe characters"};if(n.startsWith(" ")||n.endsWith(" "))return{valid:!1,reason:"File name cannot start/end with spaces"};if(n.endsWith("."))return{valid:!1,reason:"File name cannot end with dots"};let i=/^(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|$)/i,e=n.split("/").pop()||n;return i.test(e)?{valid:!1,reason:"File name uses a reserved system name"}:n.includes("..")?{valid:!1,reason:"File name contains path traversal pattern"}:{valid:!0}}function dn(n,i){let e=[],a=[],p=[];if(n.length===0){let d={file:"(no files)",message:"At least one file must be provided"};return e.push(d),{files:[],validFiles:[],errors:e,warnings:[],canDeploy:!1}}for(let d of n)if(z(d.name))return e.push({file:d.name,message:"Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder"}),{files:n.map(h=>({...h,status:T.VALIDATION_FAILED,statusMessage:"Unbuilt project detected"})),validFiles:[],errors:e,warnings:[],canDeploy:!1};if(n.length>i.maxFilesCount){let d={file:`(${n.length} files)`,message:`File count (${n.length}) exceeds limit of ${i.maxFilesCount}`};return e.push(d),{files:n.map(h=>({...h,status:T.VALIDATION_FAILED,statusMessage:d.message})),validFiles:[],errors:e,warnings:[],canDeploy:!1}}let c=0;for(let d of n){let h=T.READY,g="Ready for upload",D=d.name?se(d.name):{valid:!1,reason:"File name cannot be empty"};if(d.status===T.PROCESSING_ERROR)h=T.VALIDATION_FAILED,g=d.statusMessage||"File failed during processing",e.push({file:d.name,message:g});else if(d.size===0){h=T.EXCLUDED,g="File is empty (0 bytes) and cannot be deployed due to storage limitations",a.push({file:d.name,message:g}),p.push({...d,status:h,statusMessage:g});continue}else d.size<0?(h=T.VALIDATION_FAILED,g="File size must be positive",e.push({file:d.name,message:g})):!d.name||d.name.trim().length===0?(h=T.VALIDATION_FAILED,g="File name cannot be empty",e.push({file:d.name||"(empty)",message:g})):d.name.includes("\0")?(h=T.VALIDATION_FAILED,g="File name contains invalid characters (null byte)",e.push({file:d.name,message:g})):D.valid?H(d.name)?(h=T.VALIDATION_FAILED,g=`File extension not allowed: "${d.name}"`,e.push({file:d.name,message:g})):d.size>i.maxFileSize?(h=T.VALIDATION_FAILED,g=`File size (${ie(d.size)}) exceeds limit of ${ie(i.maxFileSize)}`,e.push({file:d.name,message:g})):(c+=d.size,c>i.maxTotalSize&&(h=T.VALIDATION_FAILED,g=`Total size would exceed limit of ${ie(i.maxTotalSize)}`,e.push({file:d.name,message:g}))):(h=T.VALIDATION_FAILED,g=D.reason||"Invalid file name",e.push({file:d.name,message:g}));p.push({...d,status:h,statusMessage:g})}e.length>0&&(p=p.map(d=>d.status===T.EXCLUDED?d:{...d,status:T.VALIDATION_FAILED,statusMessage:d.status===T.VALIDATION_FAILED?d.statusMessage:"Deployment failed due to validation errors in bundle"}));let m=e.length===0?p.filter(d=>d.status===T.READY):[],y=e.length===0;return{files:p,validFiles:m,errors:e,warnings:a,canDeploy:y}}function ft(n){return n.filter(i=>i.status===T.READY)}function fn(n){return ft(n).length>0}var oe=x(()=>{"use strict";b()});function Ue(n){return mt.test(n)}var ht,mt,Be=x(()=>{"use strict";ht=["^npm-debug\\.log$","^\\..*\\.swp$","^\\.DS_Store$","^\\.AppleDouble$","^\\.LSOverride$","^Icon\\r$","^\\._.*","^\\.Spotlight-V100(?:$|\\/)","\\.Trashes","^__MACOSX$","~$","^Thumbs\\.db$","^ehthumbs\\.db$","^[Dd]esktop\\.ini$","@eaDir$"],mt=new RegExp(ht.join("|"))});function Me(n,i){if(!n||n.length===0)return[];if(!i?.allowUnbuilt&&n.find(a=>a&&z(a)))throw f.business("Unbuilt project detected \u2014 deploy your build output (dist/, build/, out/), not the project folder");return n.filter(e=>{if(!e)return!1;let a=e.replace(/\\/g,"/").split("/").filter(Boolean);if(a.length===0)return!0;let p=a[a.length-1];if(Ue(p))return!1;for(let m of a)if(m!==".well-known"&&(m.startsWith(".")||m.length>255))return!1;let c=a.slice(0,-1);for(let m of c)if(yt.some(y=>m.toLowerCase()===y.toLowerCase()))return!1;return!0})}var yt,ae=x(()=>{"use strict";b();Be();yt=["__MACOSX",".Trashes",".fseventsd",".Spotlight-V100"]});function He(n,i){if(n.includes("\0")||n.includes("/../")||n.startsWith("../")||n.endsWith("/.."))throw f.business(`Security error: Unsafe file path "${n}" for file: ${i}`)}function ze(n,i){let e=se(n);if(!e.valid)throw f.business(e.reason||"Invalid file name");if(H(n))throw f.business(`File extension not allowed: "${i}"`)}var le=x(()=>{"use strict";b();oe()});var ke={};We(ke,{processFilesForBrowser:()=>Ge});async function Ge(n,i={},e){if($e()!=="browser")throw f.business("processFilesForBrowser can only be called in a browser environment.");let a=n.map(D=>D.webkitRelativePath||D.name),p=i.build||i.prerender,c=_e(a,{flatten:i.pathDetect!==!1}),m=c.map(D=>D.path),y=new Set(Me(m,{allowUnbuilt:p})),d=[];for(let D=0;D<n.length;D++)y.has(m[D])&&d.push({file:n[D],deployPath:c[D].path});if(d.length===0)return[];if(p){let D=[];for(let w=0;w<d.length;w++){let{file:R,deployPath:O}=d[w];if(R.size===0)continue;let{md5:L}=await _(R);D.push({path:O,content:R,size:R.size,md5:L})}return D}if(!e)throw f.config("Platform limits not provided. processFilesForBrowser requires the limits argument for deploy-mode validation \u2014 pass `ship.getLimits()` result.");let h=[],g=0;for(let D=0;D<d.length;D++){let{file:w,deployPath:R}=d[D];if(He(R,w.name),w.size===0)continue;if(ze(R,w.name),w.size>e.maxFileSize)throw f.business(`File ${w.name} is too large. Maximum allowed size is ${e.maxFileSize/(1024*1024)}MB.`);if(g+=w.size,g>e.maxTotalSize)throw f.business(`Total deploy size is too large. Maximum allowed is ${e.maxTotalSize/(1024*1024)}MB.`);let{md5:O}=await _(w);h.push({path:R,content:w,size:w.size,md5:O})}if(h.length>e.maxFilesCount)throw f.business(`Too many files to deploy. Maximum allowed is ${e.maxFilesCount} files.`);return h}var pe=x(()=>{"use strict";b();te();re();ae();V();le()});b();b();b();var G=class{constructor(){this.handlers=new Map}on(i,e){this.handlers.has(i)||this.handlers.set(i,new Set),this.handlers.get(i)?.add(e)}off(i,e){let a=this.handlers.get(i);a&&(a.delete(e),a.size===0&&this.handlers.delete(i))}emit(i,...e){let a=this.handlers.get(i);if(!a)return;let p=Array.from(a);for(let c of p)try{c(...e)}catch(m){a.delete(c),i!=="error"&&setTimeout(()=>{let y=m instanceof Error?m:new Error(String(m));this.emit("error",y,String(i))},0)}}};b();b();function C(n){if(n==null)return;if(n.length===0)return n;if(n.length>F.MAX_COUNT)throw f.validation(`Maximum ${F.MAX_COUNT} labels allowed`);let i=n.map((a,p)=>{if(typeof a!="string")throw f.validation(`Label at index ${p} must be a string`);let c=a.trim().toLowerCase();if(c.length<F.MIN_LENGTH)throw f.validation(`Labels must be at least ${F.MIN_LENGTH} characters long`);if(c.length>F.MAX_LENGTH)throw f.validation(`Labels must be no more than ${F.MAX_LENGTH} characters long`);if(!Te.test(c))throw f.validation(`Labels must start and end with alphanumeric characters, with optional separators (${F.SEPARATORS}) between segments`);return c}),e=[...new Set(i)];if(e.length!==i.length)throw f.validation("Duplicate labels are not allowed");return e}var S={DEPLOYMENTS:"/deployments",DOMAINS:"/domains",TOKENS:"/tokens",ACCOUNT:"/account",LIMITS:"/limits",PING:"/ping",SPA_CHECK:"/spa-check"},ot=3e4,k=class extends G{constructor(e){super();this.globalHeaders={};this.apiUrl=e.apiUrl||Q,this.getAuthHeadersCallback=e.getAuthHeaders,this.session=e.session??!1,this.caller=e.caller,this.timeout=e.timeout??ot,this.fetch=e.fetch??globalThis.fetch.bind(globalThis),this.createDeployBody=e.createDeployBody,this.deployEndpoint=e.deployEndpoint||S.DEPLOYMENTS}setGlobalHeaders(e){this.globalHeaders=e}async executeRequest(e,a,p){let c=()=>{};try{let m=await this.mergeHeaders(a.headers),y=this.createTimeoutSignal(a.signal);c=y.cleanup;let d={...a,headers:m,credentials:this.session&&!m.Authorization?"include":void 0,signal:y.signal};this.emit("request",e,d);let h=await this.fetch(e,d);if(c(),!h.ok)throw await f.fromHttpResponse(h,p);return this.emit("response",this.safeClone(h),e),{data:await this.parseResponse(this.safeClone(h)),status:h.status}}catch(m){c();let y=f.fromFetchError(m,p);throw this.emit("error",y,e),y}}async request(e,a,p){let{data:c}=await this.executeRequest(e,a,p);return c}async requestWithStatus(e,a,p){return this.executeRequest(e,a,p)}async mergeHeaders(e={}){return{...this.globalHeaders,...this.caller?{"X-Caller":this.caller}:{},...await this.getAuthHeadersCallback(),...e}}createTimeoutSignal(e){let a=new AbortController,p=setTimeout(()=>a.abort(),this.timeout);if(e){let c=()=>a.abort();e.addEventListener("abort",c),e.aborted&&a.abort()}return{signal:a.signal,cleanup:()=>clearTimeout(p)}}safeClone(e){try{return e.clone()}catch{return e}}async parseResponse(e){if(!(e.headers.get("Content-Length")==="0"||e.status===204))return e.json()}async deploy(e,a={}){if(!e.length)throw f.business("No files to deploy");for(let d of e)if(!d.md5)throw f.file(`MD5 checksum missing for file: ${d.path}`,{filePath:d.path});Z(a.password);let p=C(a.labels),c=a.build||a.prerender||a.spa?{build:a.build,prerender:a.prerender,spa:a.spa}:void 0,{body:m,headers:y}=await this.createDeployBody(e,{labels:p,via:a.via,password:a.password,flags:c,captcha:a.captcha});return this.request(`${this.apiUrl}${this.deployEndpoint}`,{method:"POST",body:m,headers:y,signal:a.signal||null},"Deploy")}async listDeployments(){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}`,{method:"GET"},"List deployments")}async getDeployment(e){return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"GET"},"Get deployment")}async updateDeploymentLabels(e,a){let p=C(a);return this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({labels:p})},"Update deployment labels")}async removeDeployment(e){await this.request(`${this.apiUrl}${S.DEPLOYMENTS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove deployment")}async setDomain(e,a,p){let c=C(p),m={};a&&(m.deployment=a),c!==void 0&&(m.labels=c);let{data:y,status:d}=await this.requestWithStatus(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(m)},"Set domain");return{...y,isCreate:d===201}}async listDomains(){return this.request(`${this.apiUrl}${S.DOMAINS}`,{method:"GET"},"List domains")}async getDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"GET"},"Get domain")}async removeDomain(e){await this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove domain")}async verifyDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/verify`,{method:"POST"},"Verify domain")}async getDomainDns(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/dns`,{method:"GET"},"Get domain DNS")}async getDomainRecords(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/records`,{method:"GET"},"Get domain records")}async getDomainShare(e){return this.request(`${this.apiUrl}${S.DOMAINS}/${encodeURIComponent(e)}/share`,{method:"GET"},"Get domain share")}async validateDomain(e){return this.request(`${this.apiUrl}${S.DOMAINS}/validate`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({domain:e})},"Validate domain")}async createToken(e,a){let p=C(a),c={};return e!==void 0&&(c.ttl=e),p!==void 0&&(c.labels=p),this.request(`${this.apiUrl}${S.TOKENS}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)},"Create token")}async listTokens(){return this.request(`${this.apiUrl}${S.TOKENS}`,{method:"GET"},"List tokens")}async removeToken(e){await this.request(`${this.apiUrl}${S.TOKENS}/${encodeURIComponent(e)}`,{method:"DELETE"},"Remove token")}async getAccount(){return this.request(`${this.apiUrl}${S.ACCOUNT}`,{method:"GET"},"Get account")}async getLimits(){return this.request(`${this.apiUrl}${S.LIMITS}`,{method:"GET"},"Get limits")}async ping(){return(await this.request(`${this.apiUrl}${S.PING}`,{method:"GET"},"Ping"))?.success||!1}async checkSPA(e,a={}){let p=e.find(d=>d.path==="index.html"||d.path==="/index.html");if(!p||p.size>100*1024)return!1;let c;if(typeof Buffer<"u"&&Buffer.isBuffer(p.content))c=p.content.toString("utf-8");else if(typeof Blob<"u"&&p.content instanceof Blob)c=await p.content.text();else if(typeof File<"u"&&p.content instanceof File)c=await p.content.text();else return!1;let m={files:e.map(d=>d.path),index:c};return(await this.request(`${this.apiUrl}${S.SPA_CHECK}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(m)},"SPA check")).isSPA}};b();function be(n,i){let e={...n};return e.timeout===void 0&&i.timeout!==void 0&&(e.timeout=i.timeout),e.maxConcurrency===void 0&&i.maxConcurrency!==void 0&&(e.maxConcurrency=i.maxConcurrency),e.onProgress===void 0&&i.onProgress!==void 0&&(e.onProgress=i.onProgress),e}b();V();async function ut(){let n=JSON.stringify(Ee,null,2),i;typeof Buffer<"u"?i=Buffer.from(n,"utf-8"):i=new Blob([n],{type:"application/json"});let{md5:e}=await _(i);return{path:W,content:i,size:n.length,md5:e}}async function Ie(n,i,e){if(e.spaDetect===!1||e.spa||e.build||e.prerender||n.some(a=>a.path===W))return n;try{if(await i.checkSPA(n,e)){let p=await ut();return[...n,p]}}catch{}return n}function Pe(n){let{getApi:i,ensureInit:e,processInput:a,clientDefaults:p}=n;return{upload:async(c,m={})=>{await e();let y=p?be(m,p):m;if(!a)throw f.config("processInput function is not provided.");let d=i(),h=await a(c,y);return h=await Ie(h,d,y),d.deploy(h,y)},list:async()=>(await e(),i().listDeployments()),get:async c=>(await e(),i().getDeployment(c)),set:async(c,m)=>(await e(),i().updateDeploymentLabels(c,m.labels)),remove:async c=>{await e(),await i().removeDeployment(c)}}}function Fe(n){let{getApi:i,ensureInit:e}=n;return{set:async(a,p={})=>(await e(),i().setDomain(a,p.deployment,p.labels)),list:async()=>(await e(),i().listDomains()),get:async a=>(await e(),i().getDomain(a)),remove:async a=>{await e(),await i().removeDomain(a)},verify:async a=>(await e(),i().verifyDomain(a)),validate:async a=>(await e(),i().validateDomain(a)),dns:async a=>(await e(),i().getDomainDns(a)),records:async a=>(await e(),i().getDomainRecords(a)),share:async a=>(await e(),i().getDomainShare(a))}}function Le(n){let{getApi:i,ensureInit:e}=n;return{get:async()=>(await e(),i().getAccount())}}function Ne(n){let{getApi:i,ensureInit:e}=n;return{create:async(a={})=>(await e(),i().createToken(a.ttl,a.labels)),list:async()=>(await e(),i().listTokens()),remove:async a=>{await e(),await i().removeToken(a)}}}var j=class{constructor(i={}){this.initPromise=null;this.platformLimits=null;this.credential=null;if(i={...i,apiUrl:i.apiUrl||void 0,token:i.token||void 0,caller:i.caller||void 0},this.clientOptions=i,i.caller!==void 0&&De(i.caller),i.token&&i.session)throw f.config("Provide either `token` or `session`, not both.");typeof i.token=="string"?(J(i.token),this.credential=i.token):i.token&&(this.credential=i.token),this.http=new k({...i,getAuthHeaders:()=>this.getAuthHeaders(),createDeployBody:this.getDeployBodyCreator()});let e={getApi:()=>this.http,ensureInit:()=>this.ensureInitialized()};this.deployments=Pe({...e,processInput:(a,p)=>this.processInput(a,p),clientDefaults:this.clientOptions}),this.domains=Fe(e),this.account=Le(e),this.tokens=Ne(e)}async ensureInitialized(){return this.initPromise||(this.initPromise=this.fetchPlatformLimits()),this.initPromise}async fetchPlatformLimits(){try{this.platformLimits=await this.http.getLimits()}catch(i){throw this.initPromise=null,i}}async ping(){return await this.ensureInitialized(),this.http.ping()}async deploy(i,e){return this.deployments.upload(i,e)}async whoami(){return this.account.get()}async getLimits(){return this.platformLimits?this.platformLimits:(await this.ensureInitialized(),this.platformLimits)}on(i,e){this.http.on(i,e)}off(i,e){this.http.off(i,e)}setHeaders(i){this.http.setGlobalHeaders(i)}clearHeaders(){this.http.setGlobalHeaders({})}setToken(i){if(this.clientOptions.session)throw f.config("Provide either `token` or `session`, not both.");if(typeof i=="string"){if(!i)throw f.business("Invalid token provided. Token must be a non-empty string.");J(i),this.credential=i;return}if(typeof i!="function")throw f.business("Invalid token provided. Token must be a non-empty string or a provider function.");this.credential=i}async getAuthHeaders(){if(this.credential===null)return{};let i=typeof this.credential=="function"?await this.credential():this.credential;if(!i)throw f.authentication("Token provider returned no token.");if(typeof i!="string")throw f.authentication("Token provider returned a non-string value.");return{Authorization:`Bearer ${i}`}}};b();async function Oe(n,i={}){let{labels:e,via:a,password:p,flags:c,captcha:m}=i,y=new FormData,d=[];for(let h of n){if(!(h.content instanceof File||h.content instanceof Blob))throw f.file(`Unsupported file.content type for browser: ${h.path}`,{filePath:h.path});if(!h.md5)throw f.file(`File missing md5 checksum: ${h.path}`,{filePath:h.path});let g=new File([h.content],h.path,{type:"application/octet-stream"});y.append("files[]",g),d.push(h.md5)}return y.append("checksums",JSON.stringify(d)),e&&e.length>0&&y.append("labels",JSON.stringify(e)),a&&y.append("via",a),p&&y.append("password",p),c?.build&&y.append("build","true"),c?.prerender&&y.append("prerender","true"),c?.spa&&y.append("spa","true"),m&&y.append("captcha",m),{body:y,headers:{}}}b();b();te();re();oe();ae();V();le();function Tn(n,i,e,a=!0){let p=n===1?i:e;return a?`${n} ${p}`:p}pe();var ue=class extends j{async deploy(i,e){return super.deploy(i,e)}async processInput(i,e){if(!Array.isArray(i)||!i.every(p=>p instanceof File))throw f.business("Invalid input type for browser environment. Expected File[].");if(i.length===0)throw f.business("No files to deploy.");let{processFilesForBrowser:a}=await Promise.resolve().then(()=>(pe(),ke));return a(i,e,this.platformLimits??void 0)}getDeployBodyCreator(){return Oe}},Kn=ue;export{ye as API_KEY,Dt as AccountPlan,k as ApiHttp,fe as AuthMethod,et as BLOCKED_EXTENSIONS,Y as CALLER,Q as DEFAULT_API,W as DEPLOYMENT_CONFIG_FILENAME,ge as DEPLOY_TOKEN,Et as DeploymentStatus,At as DomainStatus,E as ErrorType,T as FILE_VALIDATION_STATUS,T as FileValidationStatus,yt as JUNK_DIRECTORIES,F as LABEL_CONSTRAINTS,Te as LABEL_PATTERN,St as OAuthScope,M as PASSWORD_CONSTRAINTS,Ee as SPA_DEFAULT_CONFIG,ue as Ship,f as ShipError,N as TokenKind,nt as UNBUILT_PROJECT_MARKERS,tt as UNSAFE_FILENAME_CHARS,pn as __setTestEnvironment,fn as allValidFilesReady,_ as calculateMD5,rt as classifyToken,Le as createAccountResource,Pe as createDeploymentResource,Fe as createDomainResource,Ne as createTokenResource,Kn as default,Pt as deserializeLabels,vt as extractSubdomain,Me as filterJunk,ie as formatFileSize,Rt as generateDeploymentUrl,xt as generateDomainUrl,$e as getENV,ft as getValidFiles,z as hasUnbuiltMarker,me as hasUnsafeChars,H as isBlockedExtension,wt as isCustomDomain,bt as isDeployment,Se as isPlatformDomain,he as isShipError,be as mergeDeployOptions,_e as optimizeDeployPaths,Tn as pluralize,Ge as processFilesForBrowser,It as serializeLabels,it as validateApiKey,Tt as validateApiUrl,De as validateCaller,ze as validateDeployFile,He as validateDeployPath,st as validateDeployToken,se as validateFileName,dn as validateFiles,Z as validatePassword,J as validateToken};
|
|
2
2
|
//# sourceMappingURL=browser.js.map
|