@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.
@@ -5,14 +5,14 @@ Their copyright notices travel with that copy, and are reproduced here in
5
5
  full. This file is GENERATED from the build's own metafile — edit the
6
6
  bundle, not this list.
7
7
 
8
- ## @shipstatic/types 2.21.0
8
+ ## @shipstatic/types 2.22.0-beta.2
9
9
 
10
10
  License: MIT
11
11
 
12
12
  ```
13
13
  MIT License
14
14
 
15
- Copyright (c) 2025 shipstatic
15
+ Copyright (c) 2025 ShipStatic
16
16
 
17
17
  Permission is hereby granted, free of charge, to any person obtaining a copy
18
18
  of this software and associated documentation files (the "Software"), to deal
package/dist/browser.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
- /** The account's tier. */
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, every granted plan, and any plan not
670
- * on the menu answer `null`. One server-side fact so that no surface
671
- * derives "can this account upgrade, and to what" from the menu — a
672
- * grandfathered row has no menu price to compare, and a granted account
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 (moderation unavailable). A consumer has to tell
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
  */