@shipstatic/ship 0.9.5 → 0.9.6
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/README.md +41 -17
- package/SKILL.md +19 -2
- package/dist/browser.d.ts +8 -3
- package/dist/cli.cjs.map +1 -1
- package/dist/index.d.cts +8 -3
- package/dist/index.d.ts +8 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -119,9 +119,14 @@ interface ShipClientOptions {
|
|
|
119
119
|
* Used by orchestrators (e.g. n8n nodes processing many tenants from one
|
|
120
120
|
* worker) so the API's rate-limit bucket keys per caller rather than per
|
|
121
121
|
* shared IP. **Programmatic-only by design** — there is no `--caller`
|
|
122
|
-
* CLI flag because
|
|
123
|
-
*
|
|
124
|
-
*
|
|
122
|
+
* CLI flag because every CLI invocation belongs to one human; a per-tenant
|
|
123
|
+
* rate-limit bucket would defeat the purpose.
|
|
124
|
+
*
|
|
125
|
+
* Distinct from `via` (the client identifier — `'cli'`, `'sdk'`, `'web'`,
|
|
126
|
+
* `'git'`, etc.). `via` is for analytics/origin tracking and is
|
|
127
|
+
* env-overridable via `SHIP_VIA` for integrations that wrap the CLI
|
|
128
|
+
* (GitHub Action, MCP). `caller` is for rate-limit isolation and stays
|
|
129
|
+
* programmatic-only.
|
|
125
130
|
*/
|
|
126
131
|
caller?: string | undefined;
|
|
127
132
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -119,9 +119,14 @@ interface ShipClientOptions {
|
|
|
119
119
|
* Used by orchestrators (e.g. n8n nodes processing many tenants from one
|
|
120
120
|
* worker) so the API's rate-limit bucket keys per caller rather than per
|
|
121
121
|
* shared IP. **Programmatic-only by design** — there is no `--caller`
|
|
122
|
-
* CLI flag because
|
|
123
|
-
*
|
|
124
|
-
*
|
|
122
|
+
* CLI flag because every CLI invocation belongs to one human; a per-tenant
|
|
123
|
+
* rate-limit bucket would defeat the purpose.
|
|
124
|
+
*
|
|
125
|
+
* Distinct from `via` (the client identifier — `'cli'`, `'sdk'`, `'web'`,
|
|
126
|
+
* `'git'`, etc.). `via` is for analytics/origin tracking and is
|
|
127
|
+
* env-overridable via `SHIP_VIA` for integrations that wrap the CLI
|
|
128
|
+
* (GitHub Action, MCP). `caller` is for rate-limit isolation and stays
|
|
129
|
+
* programmatic-only.
|
|
125
130
|
*/
|
|
126
131
|
caller?: string | undefined;
|
|
127
132
|
/**
|