@shipstatic/ship 2.8.2 → 2.9.0-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 +2 -2
- package/dist/browser.d.ts +19 -7
- package/dist/browser.js.map +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -7
- package/dist/index.d.ts +19 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -326,6 +326,12 @@ interface DnsRecord {
|
|
|
326
326
|
interface DnsProvider {
|
|
327
327
|
/** Provider name (e.g., "Cloudflare", "GoDaddy"), null if unknown */
|
|
328
328
|
name: string | null;
|
|
329
|
+
/**
|
|
330
|
+
* The provider's DNS dashboard, where the records get added, null where the
|
|
331
|
+
* provider is unknown or has no known console. Optional on the type by the
|
|
332
|
+
* additive-evolution law: published API versions may predate the field.
|
|
333
|
+
*/
|
|
334
|
+
url?: string | null;
|
|
329
335
|
}
|
|
330
336
|
/**
|
|
331
337
|
* Response for domain DNS provider lookup
|
|
@@ -616,7 +622,14 @@ interface Account {
|
|
|
616
622
|
readonly name: string | null;
|
|
617
623
|
/** User profile picture URL, null if not set */
|
|
618
624
|
readonly picture: string | null;
|
|
619
|
-
/**
|
|
625
|
+
/**
|
|
626
|
+
* The tier the account stands at. A sponsored account is Pro that nobody
|
|
627
|
+
* bills, so it reports `pro` here with {@link billed} false; the grant
|
|
628
|
+
* itself is the operator's fact, seen on the operator's surfaces and never
|
|
629
|
+
* here. A console therefore treats a sponsored account exactly as a Pro one
|
|
630
|
+
* everywhere, and the one difference it can see is the one that is real:
|
|
631
|
+
* there is no Subscription.
|
|
632
|
+
*/
|
|
620
633
|
readonly plan: AccountPlanType;
|
|
621
634
|
/**
|
|
622
635
|
* True while the operator has suspended the account: reads and deletes
|
|
@@ -666,11 +679,10 @@ interface Account {
|
|
|
666
679
|
readonly billed: boolean;
|
|
667
680
|
/**
|
|
668
681
|
* The next plan up the ladder this account could move to, or `null` when
|
|
669
|
-
* there is none: the top billed tier,
|
|
670
|
-
* on the menu answer `null`. One server-side fact so that no surface
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
* must never be sent to Checkout.
|
|
682
|
+
* there is none: the top billed tier, a plan sold by conversation, and any
|
|
683
|
+
* plan not on the menu answer `null`. One server-side fact so that no surface derives "can this account
|
|
684
|
+
* upgrade, and to what" from the menu — a grandfathered row has no menu
|
|
685
|
+
* price to compare, and a conversation plan must never be sent to Checkout.
|
|
674
686
|
*/
|
|
675
687
|
readonly upgrade: AccountPlanType | null;
|
|
676
688
|
/**
|
|
@@ -877,7 +889,7 @@ declare const ErrorType: {
|
|
|
877
889
|
* purpose, and deployed sites keep serving throughout.
|
|
878
890
|
*
|
|
879
891
|
* Distinct from `Api` at 503, which the platform already uses for a
|
|
880
|
-
* dependency that failed
|
|
892
|
+
* dependency that failed. A consumer has to tell
|
|
881
893
|
* "we closed the door" from "something broke": the two get opposite words
|
|
882
894
|
* and opposite retry behaviour.
|
|
883
895
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -326,6 +326,12 @@ interface DnsRecord {
|
|
|
326
326
|
interface DnsProvider {
|
|
327
327
|
/** Provider name (e.g., "Cloudflare", "GoDaddy"), null if unknown */
|
|
328
328
|
name: string | null;
|
|
329
|
+
/**
|
|
330
|
+
* The provider's DNS dashboard, where the records get added, null where the
|
|
331
|
+
* provider is unknown or has no known console. Optional on the type by the
|
|
332
|
+
* additive-evolution law: published API versions may predate the field.
|
|
333
|
+
*/
|
|
334
|
+
url?: string | null;
|
|
329
335
|
}
|
|
330
336
|
/**
|
|
331
337
|
* Response for domain DNS provider lookup
|
|
@@ -616,7 +622,14 @@ interface Account {
|
|
|
616
622
|
readonly name: string | null;
|
|
617
623
|
/** User profile picture URL, null if not set */
|
|
618
624
|
readonly picture: string | null;
|
|
619
|
-
/**
|
|
625
|
+
/**
|
|
626
|
+
* The tier the account stands at. A sponsored account is Pro that nobody
|
|
627
|
+
* bills, so it reports `pro` here with {@link billed} false; the grant
|
|
628
|
+
* itself is the operator's fact, seen on the operator's surfaces and never
|
|
629
|
+
* here. A console therefore treats a sponsored account exactly as a Pro one
|
|
630
|
+
* everywhere, and the one difference it can see is the one that is real:
|
|
631
|
+
* there is no Subscription.
|
|
632
|
+
*/
|
|
620
633
|
readonly plan: AccountPlanType;
|
|
621
634
|
/**
|
|
622
635
|
* True while the operator has suspended the account: reads and deletes
|
|
@@ -666,11 +679,10 @@ interface Account {
|
|
|
666
679
|
readonly billed: boolean;
|
|
667
680
|
/**
|
|
668
681
|
* The next plan up the ladder this account could move to, or `null` when
|
|
669
|
-
* there is none: the top billed tier,
|
|
670
|
-
* on the menu answer `null`. One server-side fact so that no surface
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
* must never be sent to Checkout.
|
|
682
|
+
* there is none: the top billed tier, a plan sold by conversation, and any
|
|
683
|
+
* plan not on the menu answer `null`. One server-side fact so that no surface derives "can this account
|
|
684
|
+
* upgrade, and to what" from the menu — a grandfathered row has no menu
|
|
685
|
+
* price to compare, and a conversation plan must never be sent to Checkout.
|
|
674
686
|
*/
|
|
675
687
|
readonly upgrade: AccountPlanType | null;
|
|
676
688
|
/**
|
|
@@ -877,7 +889,7 @@ declare const ErrorType: {
|
|
|
877
889
|
* purpose, and deployed sites keep serving throughout.
|
|
878
890
|
*
|
|
879
891
|
* Distinct from `Api` at 503, which the platform already uses for a
|
|
880
|
-
* dependency that failed
|
|
892
|
+
* dependency that failed. A consumer has to tell
|
|
881
893
|
* "we closed the door" from "something broke": the two get opposite words
|
|
882
894
|
* and opposite retry behaviour.
|
|
883
895
|
*/
|