@shipstatic/types 2.17.0-beta.4 → 2.17.0-beta.5
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 +6 -0
- package/package.json +1 -1
- package/src/index.ts +6 -0
package/dist/index.d.ts
CHANGED
|
@@ -1939,6 +1939,12 @@ export interface BillingSyncResponse {
|
|
|
1939
1939
|
/**
|
|
1940
1940
|
* All activity event types logged in the system.
|
|
1941
1941
|
* Uses dot notation consistently: {resource}.{action}
|
|
1942
|
+
*
|
|
1943
|
+
* Retention: events are swept 90 days after creation unless they record
|
|
1944
|
+
* money, platform enforcement/access, or ownership transfer — those three
|
|
1945
|
+
* ledgers are permanent (and shed their IP at the same 90-day line).
|
|
1946
|
+
* Permanence is granted only in the retention sweep's own list, so a new
|
|
1947
|
+
* event added here is swept until granted there.
|
|
1942
1948
|
*/
|
|
1943
1949
|
export 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';
|
|
1944
1950
|
/**
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -2805,6 +2805,12 @@ export interface BillingSyncResponse {
|
|
|
2805
2805
|
/**
|
|
2806
2806
|
* All activity event types logged in the system.
|
|
2807
2807
|
* Uses dot notation consistently: {resource}.{action}
|
|
2808
|
+
*
|
|
2809
|
+
* Retention: events are swept 90 days after creation unless they record
|
|
2810
|
+
* money, platform enforcement/access, or ownership transfer — those three
|
|
2811
|
+
* ledgers are permanent (and shed their IP at the same 90-day line).
|
|
2812
|
+
* Permanence is granted only in the retention sweep's own list, so a new
|
|
2813
|
+
* event added here is swept until granted there.
|
|
2808
2814
|
*/
|
|
2809
2815
|
export type ActivityEvent =
|
|
2810
2816
|
// Account events
|