@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.
- package/THIRD-PARTY-LICENSES.md +1 -1
- package/dist/browser.d.ts +23 -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 +23 -7
- package/dist/index.d.ts +23 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/THIRD-PARTY-LICENSES.md
CHANGED
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
|
-
* **
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
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
|
|
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 */
|