@shipstatic/ship 2.6.0 → 2.6.1
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 +6 -5
- 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 +6 -5
- package/dist/index.d.ts +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1966,12 +1966,13 @@ interface BillingSyncResponse {
|
|
|
1966
1966
|
* All activity event types logged in the system.
|
|
1967
1967
|
* Uses dot notation consistently: {resource}.{action}
|
|
1968
1968
|
*
|
|
1969
|
-
* Retention: activity rows
|
|
1970
|
-
*
|
|
1971
|
-
* account
|
|
1972
|
-
*
|
|
1969
|
+
* Retention: activity rows age out. An account keeps a recent window and,
|
|
1970
|
+
* beneath it, never fewer than its most recent handful — so a dormant
|
|
1971
|
+
* account's history is never empty — and a row that outlives the window
|
|
1972
|
+
* keeps no IP address. Activity from deploys made without an account ages
|
|
1973
|
+
* out sooner, and deleting an account removes its rows outright, at any age.
|
|
1973
1974
|
*/
|
|
1974
|
-
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' | 'admin.account.plan.update' | 'admin.account.suspended.update' | 'admin.account.ref.update' | 'admin.account.labels.update' | 'admin.deployment.delete' | 'admin.domain.delete' | 'admin.impersonate';
|
|
1975
|
+
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';
|
|
1975
1976
|
/**
|
|
1976
1977
|
* Activity events visible to users in the dashboard
|
|
1977
1978
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1966,12 +1966,13 @@ interface BillingSyncResponse {
|
|
|
1966
1966
|
* All activity event types logged in the system.
|
|
1967
1967
|
* Uses dot notation consistently: {resource}.{action}
|
|
1968
1968
|
*
|
|
1969
|
-
* Retention: activity rows
|
|
1970
|
-
*
|
|
1971
|
-
* account
|
|
1972
|
-
*
|
|
1969
|
+
* Retention: activity rows age out. An account keeps a recent window and,
|
|
1970
|
+
* beneath it, never fewer than its most recent handful — so a dormant
|
|
1971
|
+
* account's history is never empty — and a row that outlives the window
|
|
1972
|
+
* keeps no IP address. Activity from deploys made without an account ages
|
|
1973
|
+
* out sooner, and deleting an account removes its rows outright, at any age.
|
|
1973
1974
|
*/
|
|
1974
|
-
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' | 'admin.account.plan.update' | 'admin.account.suspended.update' | 'admin.account.ref.update' | 'admin.account.labels.update' | 'admin.deployment.delete' | 'admin.domain.delete' | 'admin.impersonate';
|
|
1975
|
+
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';
|
|
1975
1976
|
/**
|
|
1976
1977
|
* Activity events visible to users in the dashboard
|
|
1977
1978
|
*/
|