@shipstatic/ship 2.6.0-beta.7 → 2.6.0-beta.8
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 +4 -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 +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/THIRD-PARTY-LICENSES.md
CHANGED
|
@@ -5,7 +5,7 @@ Their copyright notices travel with that copy, and are reproduced here in
|
|
|
5
5
|
full. This file is GENERATED from the build's own metafile — edit the
|
|
6
6
|
bundle, not this list.
|
|
7
7
|
|
|
8
|
-
## @shipstatic/types 2.17.0-beta.
|
|
8
|
+
## @shipstatic/types 2.17.0-beta.6
|
|
9
9
|
|
|
10
10
|
License: MIT
|
|
11
11
|
|
package/dist/browser.d.ts
CHANGED
|
@@ -1940,11 +1940,10 @@ interface BillingSyncResponse {
|
|
|
1940
1940
|
* All activity event types logged in the system.
|
|
1941
1941
|
* Uses dot notation consistently: {resource}.{action}
|
|
1942
1942
|
*
|
|
1943
|
-
* Retention:
|
|
1944
|
-
*
|
|
1945
|
-
*
|
|
1946
|
-
*
|
|
1947
|
-
* event added here is swept until granted there.
|
|
1943
|
+
* Retention: activity rows are permanent — the account's own history and
|
|
1944
|
+
* the platform's audit ledgers are one table, kept for the life of the
|
|
1945
|
+
* account (deletion removes them). Only the personal payload is
|
|
1946
|
+
* time-bounded: past 90 days each row sheds its IP.
|
|
1948
1947
|
*/
|
|
1949
1948
|
type ActivityEvent = 'account.create' | 'account.update' | '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';
|
|
1950
1949
|
/**
|