@shipstatic/types 2.21.0-beta.1 → 2.21.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/index.d.ts CHANGED
@@ -26,12 +26,20 @@ export type DeploymentStatusType = (typeof DeploymentStatus)[keyof typeof Deploy
26
26
  * member here and every future one:
27
27
  *
28
28
  * - **Where the platform ships CODE, the code declares it.** `web`, `sdk`,
29
- * `cli`, `git`, `n8n`, `vsc`, `gmn` and `drp` are surfaces this platform
30
- * authors, so each names itself in its own source and nothing external is
31
- * needed to tell them apart. A first-party WRAPPER counts as code even when
32
- * it is a manifest: the GitHub Action and the Gemini extension each compose
33
- * an invocation of a platform executable and relabel it through
29
+ * `cli`, `git`, `n8n`, `vsc` and `gmn` are surfaces this platform authors,
30
+ * so each names itself in its own source and nothing external is needed to
31
+ * tell them apart. A first-party WRAPPER counts as code even when it is a
32
+ * manifest: the GitHub Action and the Gemini extension each compose an
33
+ * invocation of a platform executable and relabel it through
34
34
  * {@link SHIP_VIA_ENV}.
35
+ *
36
+ * **And only a surface that DEPLOYS gets a member — `@shipstatic/drop` is the
37
+ * recorded refusal.** The widget collects and validates files and hands raw
38
+ * `File[]` to its embedder, whose own SDK call is the deploy; drop makes no
39
+ * upload call anywhere, so a `drp` member would be a word nothing can emit.
40
+ * Those deploys read `sdk`, which is the truth: the embedder is a program
41
+ * embedding the SDK directly. Mint the member the day drop grows an upload
42
+ * arm, not before.
35
43
  * - **Where the platform ships only a URL, the URL declares it.** A
36
44
  * marketplace listing runs somebody else's client against a bare endpoint —
37
45
  * every one of them the same server speaking the same protocol, and
@@ -74,8 +82,6 @@ export declare const DeploymentVia: {
74
82
  readonly CRS: "crs";
75
83
  /** The Gemini CLI extension. */
76
84
  readonly GMN: "gmn";
77
- /** The `@shipstatic/drop` browser widget. */
78
- readonly DRP: "drp";
79
85
  /**
80
86
  * A deploy that reached the REST API naming no origin at all — the
81
87
  * platform-wide fallback, one altitude below `mcp`'s family fallback.
package/dist/index.js CHANGED
@@ -28,12 +28,20 @@ export const DeploymentStatus = {
28
28
  * member here and every future one:
29
29
  *
30
30
  * - **Where the platform ships CODE, the code declares it.** `web`, `sdk`,
31
- * `cli`, `git`, `n8n`, `vsc`, `gmn` and `drp` are surfaces this platform
32
- * authors, so each names itself in its own source and nothing external is
33
- * needed to tell them apart. A first-party WRAPPER counts as code even when
34
- * it is a manifest: the GitHub Action and the Gemini extension each compose
35
- * an invocation of a platform executable and relabel it through
31
+ * `cli`, `git`, `n8n`, `vsc` and `gmn` are surfaces this platform authors,
32
+ * so each names itself in its own source and nothing external is needed to
33
+ * tell them apart. A first-party WRAPPER counts as code even when it is a
34
+ * manifest: the GitHub Action and the Gemini extension each compose an
35
+ * invocation of a platform executable and relabel it through
36
36
  * {@link SHIP_VIA_ENV}.
37
+ *
38
+ * **And only a surface that DEPLOYS gets a member — `@shipstatic/drop` is the
39
+ * recorded refusal.** The widget collects and validates files and hands raw
40
+ * `File[]` to its embedder, whose own SDK call is the deploy; drop makes no
41
+ * upload call anywhere, so a `drp` member would be a word nothing can emit.
42
+ * Those deploys read `sdk`, which is the truth: the embedder is a program
43
+ * embedding the SDK directly. Mint the member the day drop grows an upload
44
+ * arm, not before.
37
45
  * - **Where the platform ships only a URL, the URL declares it.** A
38
46
  * marketplace listing runs somebody else's client against a bare endpoint —
39
47
  * every one of them the same server speaking the same protocol, and
@@ -76,8 +84,6 @@ export const DeploymentVia = {
76
84
  CRS: 'crs',
77
85
  /** The Gemini CLI extension. */
78
86
  GMN: 'gmn',
79
- /** The `@shipstatic/drop` browser widget. */
80
- DRP: 'drp',
81
87
  /**
82
88
  * A deploy that reached the REST API naming no origin at all — the
83
89
  * platform-wide fallback, one altitude below `mcp`'s family fallback.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "2.21.0-beta.1",
3
+ "version": "2.21.0-beta.2",
4
4
  "description": "Shared types for ShipStatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -33,12 +33,20 @@ export type DeploymentStatusType = (typeof DeploymentStatus)[keyof typeof Deploy
33
33
  * member here and every future one:
34
34
  *
35
35
  * - **Where the platform ships CODE, the code declares it.** `web`, `sdk`,
36
- * `cli`, `git`, `n8n`, `vsc`, `gmn` and `drp` are surfaces this platform
37
- * authors, so each names itself in its own source and nothing external is
38
- * needed to tell them apart. A first-party WRAPPER counts as code even when
39
- * it is a manifest: the GitHub Action and the Gemini extension each compose
40
- * an invocation of a platform executable and relabel it through
36
+ * `cli`, `git`, `n8n`, `vsc` and `gmn` are surfaces this platform authors,
37
+ * so each names itself in its own source and nothing external is needed to
38
+ * tell them apart. A first-party WRAPPER counts as code even when it is a
39
+ * manifest: the GitHub Action and the Gemini extension each compose an
40
+ * invocation of a platform executable and relabel it through
41
41
  * {@link SHIP_VIA_ENV}.
42
+ *
43
+ * **And only a surface that DEPLOYS gets a member — `@shipstatic/drop` is the
44
+ * recorded refusal.** The widget collects and validates files and hands raw
45
+ * `File[]` to its embedder, whose own SDK call is the deploy; drop makes no
46
+ * upload call anywhere, so a `drp` member would be a word nothing can emit.
47
+ * Those deploys read `sdk`, which is the truth: the embedder is a program
48
+ * embedding the SDK directly. Mint the member the day drop grows an upload
49
+ * arm, not before.
42
50
  * - **Where the platform ships only a URL, the URL declares it.** A
43
51
  * marketplace listing runs somebody else's client against a bare endpoint —
44
52
  * every one of them the same server speaking the same protocol, and
@@ -81,8 +89,6 @@ export const DeploymentVia = {
81
89
  CRS: 'crs',
82
90
  /** The Gemini CLI extension. */
83
91
  GMN: 'gmn',
84
- /** The `@shipstatic/drop` browser widget. */
85
- DRP: 'drp',
86
92
  /**
87
93
  * A deploy that reached the REST API naming no origin at all — the
88
94
  * platform-wide fallback, one altitude below `mcp`'s family fallback.