@shipstatic/ship 2.3.2 → 2.3.3

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,7 +5,7 @@ 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.9.0
8
+ ## @shipstatic/types 2.10.0
9
9
 
10
10
  License: MIT
11
11
 
package/dist/browser.d.ts CHANGED
@@ -73,12 +73,14 @@ declare const DeploymentVia: {
73
73
  * A deploy that reached the REST API naming no origin at all — the
74
74
  * platform-wide fallback, one altitude below `mcp`'s family fallback.
75
75
  *
76
- * **Declared ahead of its emitter, deliberately.** Nothing sends it yet and
77
- * the server still records an unattributed deploy as `null`. Vocabulary must
78
- * exist before a consumer can adopt it, and adding a member costs a full
79
- * constellation convoy — so the word ships first and the API adopts it as a
80
- * default whenever that decision is taken, with no convoy standing between
81
- * the decision and the deploy.
76
+ * **The API stamps it, since 2026-08-15.** A deploy that names no origin —
77
+ * or names one this vocabulary does not know — is stored as `api`, so a
78
+ * stored `null` now means only that the row predates attribution.
79
+ *
80
+ * It was declared one wave ahead of that decision, deliberately: vocabulary
81
+ * must exist before a consumer can adopt it, and adding a member costs a
82
+ * full constellation convoy, so the word shipped first and the server
83
+ * adopted it with no convoy standing between the decision and the deploy.
82
84
  */
83
85
  readonly API: "api";
84
86
  };
@@ -104,7 +106,10 @@ interface Deployment {
104
106
  /** Labels for categorization and filtering (lowercase, alphanumeric with separators). Always present, empty array when none. */
105
107
  labels: string[];
106
108
  /**
107
- * The client/tool that created this deployment, null if unknown.
109
+ * The client/tool that created this deployment. Every deployment created
110
+ * today names one — {@link DeploymentVia.API} when the caller named nothing
111
+ * the vocabulary knows — so `null` is historical: the row predates
112
+ * attribution.
108
113
  *
109
114
  * Deliberately wider than {@link DeploymentViaType}: this is stored data,
110
115
  * and rows predate the vocabulary being closed. Narrowing the ENTITY would
@@ -1793,6 +1798,17 @@ interface ActivityMeta {
1793
1798
  hasConfig?: boolean;
1794
1799
  /** Whether deployment has a password set */
1795
1800
  hasPassword?: boolean;
1801
+ /**
1802
+ * The client/tool that created the deployment.
1803
+ *
1804
+ * Narrower than {@link Deployment.via}, deliberately: the entity is
1805
+ * `string | null` because stored rows predate the vocabulary, while an
1806
+ * activity is only ever written by code that names one. It is here rather
1807
+ * than read off the deployment because the deployment row is deleted at
1808
+ * expiry or on request and the activity is not — this is where a deploy's
1809
+ * origin stays answerable afterwards.
1810
+ */
1811
+ via?: DeploymentViaType;
1796
1812
  /** Whether this was an update (vs create) */
1797
1813
  isUpdate?: boolean;
1798
1814
  /** Whether domain was already verified */