@shipstatic/types 2.18.0 → 2.19.0
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 +5 -4
- package/dist/index.js +4 -3
- package/package.json +1 -1
- package/src/index.ts +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -1221,9 +1221,10 @@ export declare const SIGN_IN_RETURN_PARAM = "signing-in";
|
|
|
1221
1221
|
* How a request (or recorded activity) was authorized.
|
|
1222
1222
|
*
|
|
1223
1223
|
* Client populations: `SESSION` (first-party cookie), `API_KEY` (`ship-`
|
|
1224
|
-
* key), `TOKEN` (`deploy-` deploy token), `AGENT` (anonymous
|
|
1225
|
-
*
|
|
1226
|
-
*
|
|
1224
|
+
* key), `TOKEN` (`deploy-` deploy token), `AGENT` (anonymous, no credential:
|
|
1225
|
+
* public deploys are granted the public-account identity per request, and a
|
|
1226
|
+
* captcha-verified share-link setup open audits as this population),
|
|
1227
|
+
* `OAUTH` (delegated access token). The one server population:
|
|
1227
1228
|
* `SYSTEM` (scheduled/background jobs). Webhook receipt is deliberately not
|
|
1228
1229
|
* a population: a signed delivery is verified, never authorized — it acts
|
|
1229
1230
|
* as no one and audits as no one.
|
|
@@ -1972,7 +1973,7 @@ export interface BillingSyncResponse {
|
|
|
1972
1973
|
* keeps no IP address. Activity from deploys made without an account ages
|
|
1973
1974
|
* out sooner, and deleting an account removes its rows outright, at any age.
|
|
1974
1975
|
*/
|
|
1975
|
-
export type ActivityEvent = 'account.create' | 'account.delete' | 'account.key.generate' | 'account.plan.transition' | 'deployment.create' | 'deployment.update' | 'deployment.delete' | 'deployment.claim' | 'deployment.flagged' | 'deployment.open' | 'domain.create' | 'domain.update' | 'domain.delete' | 'domain.verify' | 'token.create' | 'token.consume' | 'token.delete' | 'checkout.open' | 'admin.account.plan.update' | 'admin.account.suspended.update' | 'admin.account.ref.update' | 'admin.account.labels.update' | 'admin.deployment.delete' | 'admin.domain.delete' | 'admin.impersonate';
|
|
1976
|
+
export type ActivityEvent = 'account.create' | 'account.delete' | 'account.key.generate' | 'account.plan.transition' | 'deployment.create' | 'deployment.update' | 'deployment.delete' | 'deployment.claim' | 'deployment.flagged' | 'deployment.open' | 'domain.create' | 'domain.update' | 'domain.delete' | 'domain.verify' | 'domain.setup.open' | 'token.create' | 'token.consume' | 'token.delete' | 'checkout.open' | 'admin.account.plan.update' | 'admin.account.suspended.update' | 'admin.account.ref.update' | 'admin.account.labels.update' | 'admin.deployment.delete' | 'admin.domain.delete' | 'admin.impersonate';
|
|
1976
1977
|
/**
|
|
1977
1978
|
* Activity events visible to users in the dashboard
|
|
1978
1979
|
*/
|
package/dist/index.js
CHANGED
|
@@ -1148,9 +1148,10 @@ export const SIGN_IN_RETURN_PARAM = 'signing-in';
|
|
|
1148
1148
|
* How a request (or recorded activity) was authorized.
|
|
1149
1149
|
*
|
|
1150
1150
|
* Client populations: `SESSION` (first-party cookie), `API_KEY` (`ship-`
|
|
1151
|
-
* key), `TOKEN` (`deploy-` deploy token), `AGENT` (anonymous
|
|
1152
|
-
*
|
|
1153
|
-
*
|
|
1151
|
+
* key), `TOKEN` (`deploy-` deploy token), `AGENT` (anonymous, no credential:
|
|
1152
|
+
* public deploys are granted the public-account identity per request, and a
|
|
1153
|
+
* captcha-verified share-link setup open audits as this population),
|
|
1154
|
+
* `OAUTH` (delegated access token). The one server population:
|
|
1154
1155
|
* `SYSTEM` (scheduled/background jobs). Webhook receipt is deliberately not
|
|
1155
1156
|
* a population: a signed delivery is verified, never authorized — it acts
|
|
1156
1157
|
* as no one and audits as no one.
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1896,9 +1896,10 @@ export const SIGN_IN_RETURN_PARAM = 'signing-in';
|
|
|
1896
1896
|
* How a request (or recorded activity) was authorized.
|
|
1897
1897
|
*
|
|
1898
1898
|
* Client populations: `SESSION` (first-party cookie), `API_KEY` (`ship-`
|
|
1899
|
-
* key), `TOKEN` (`deploy-` deploy token), `AGENT` (anonymous
|
|
1900
|
-
*
|
|
1901
|
-
*
|
|
1899
|
+
* key), `TOKEN` (`deploy-` deploy token), `AGENT` (anonymous, no credential:
|
|
1900
|
+
* public deploys are granted the public-account identity per request, and a
|
|
1901
|
+
* captcha-verified share-link setup open audits as this population),
|
|
1902
|
+
* `OAUTH` (delegated access token). The one server population:
|
|
1902
1903
|
* `SYSTEM` (scheduled/background jobs). Webhook receipt is deliberately not
|
|
1903
1904
|
* a population: a signed delivery is verified, never authorized — it acts
|
|
1904
1905
|
* as no one and audits as no one.
|
|
@@ -2856,6 +2857,7 @@ export type ActivityEvent =
|
|
|
2856
2857
|
| 'domain.update'
|
|
2857
2858
|
| 'domain.delete'
|
|
2858
2859
|
| 'domain.verify'
|
|
2860
|
+
| 'domain.setup.open' // Internal: DNS setup instructions were opened, by the owner or through the share link (not user-visible)
|
|
2859
2861
|
// Token events
|
|
2860
2862
|
| 'token.create'
|
|
2861
2863
|
| 'token.consume'
|