@shipstatic/types 2.10.0 → 2.12.0-beta.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/dist/index.d.ts CHANGED
@@ -1122,6 +1122,20 @@ export interface PingResponse {
1122
1122
  * already share the credential prefixes below.
1123
1123
  */
1124
1124
  export declare const AUTH_BASE_PATH = "/auth";
1125
+ /**
1126
+ * The query marker a completed sign-in LANDS with.
1127
+ *
1128
+ * The API's magic-link verify leg stamps `?signing-in=1` onto its success
1129
+ * redirect, and the console boots into its wait screen on seeing it — two
1130
+ * repos, one spelling, which is why it lives here. Success is marked and the
1131
+ * error leg deliberately is NOT: the console gives the marker precedence, so
1132
+ * a marked error would render a wait that resolves to bare doors with the
1133
+ * error's sentence lost. If the spellings ever diverged the failure would be
1134
+ * invisible to every suite — email landings would flash the doors for one
1135
+ * round trip instead of waiting — which is exactly the silent-drift class
1136
+ * this constitution exists to delete.
1137
+ */
1138
+ export declare const SIGN_IN_RETURN_PARAM = "signing-in";
1125
1139
  /**
1126
1140
  * How a request (or recorded activity) was authorized.
1127
1141
  *
@@ -1759,7 +1773,7 @@ export interface CheckoutSession {
1759
1773
  * All activity event types logged in the system.
1760
1774
  * Uses dot notation consistently: {resource}.{action}
1761
1775
  */
1762
- export type ActivityEvent = 'account.create' | 'account.update' | 'account.delete' | 'account.key.generate' | 'account.plan.paid' | 'account.plan.transition' | 'account.suspended' | 'deployment.create' | 'deployment.update' | 'deployment.delete' | 'deployment.claim' | 'deployment.flagged' | 'domain.create' | 'domain.update' | 'domain.delete' | 'domain.verify' | 'token.create' | 'token.consume' | 'token.delete' | 'admin.account.plan.update' | 'admin.account.ref.update' | 'admin.account.billing.update' | 'admin.account.labels.update' | 'admin.deployment.delete' | 'admin.domain.delete' | 'admin.billing.sync' | 'admin.billing.terminated' | 'admin.impersonate' | 'billing.active' | 'billing.canceled' | 'billing.paused' | 'billing.expired' | 'billing.paid' | 'billing.trialing' | 'billing.scheduled_cancel' | 'billing.unpaid' | 'billing.update' | 'billing.past_due' | 'refund.created' | 'dispute.created' | 'billing.sync' | 'billing.stale' | 'billing.race';
1776
+ export type ActivityEvent = 'account.create' | 'account.update' | 'account.delete' | 'account.key.generate' | 'account.plan.paid' | 'account.plan.transition' | 'account.suspended' | '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.ref.update' | 'admin.account.billing.update' | 'admin.account.labels.update' | 'admin.deployment.delete' | 'admin.domain.delete' | 'admin.billing.sync' | 'admin.billing.terminated' | 'admin.impersonate' | 'billing.active' | 'billing.canceled' | 'billing.paused' | 'billing.expired' | 'billing.paid' | 'billing.trialing' | 'billing.scheduled_cancel' | 'billing.unpaid' | 'billing.update' | 'billing.past_due' | 'refund.created' | 'dispute.created' | 'billing.sync' | 'billing.stale' | 'billing.race';
1763
1777
  /**
1764
1778
  * Activity events visible to users in the dashboard
1765
1779
  */
package/dist/index.js CHANGED
@@ -1110,6 +1110,20 @@ export function hasUnbuiltMarker(filePath) {
1110
1110
  * already share the credential prefixes below.
1111
1111
  */
1112
1112
  export const AUTH_BASE_PATH = '/auth';
1113
+ /**
1114
+ * The query marker a completed sign-in LANDS with.
1115
+ *
1116
+ * The API's magic-link verify leg stamps `?signing-in=1` onto its success
1117
+ * redirect, and the console boots into its wait screen on seeing it — two
1118
+ * repos, one spelling, which is why it lives here. Success is marked and the
1119
+ * error leg deliberately is NOT: the console gives the marker precedence, so
1120
+ * a marked error would render a wait that resolves to bare doors with the
1121
+ * error's sentence lost. If the spellings ever diverged the failure would be
1122
+ * invisible to every suite — email landings would flash the doors for one
1123
+ * round trip instead of waiting — which is exactly the silent-drift class
1124
+ * this constitution exists to delete.
1125
+ */
1126
+ export const SIGN_IN_RETURN_PARAM = 'signing-in';
1113
1127
  /**
1114
1128
  * How a request (or recorded activity) was authorized.
1115
1129
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "2.10.0",
3
+ "version": "2.12.0-beta.1",
4
4
  "description": "Shared types for ShipStatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -1797,6 +1797,21 @@ export interface PingResponse {
1797
1797
  */
1798
1798
  export const AUTH_BASE_PATH = '/auth';
1799
1799
 
1800
+ /**
1801
+ * The query marker a completed sign-in LANDS with.
1802
+ *
1803
+ * The API's magic-link verify leg stamps `?signing-in=1` onto its success
1804
+ * redirect, and the console boots into its wait screen on seeing it — two
1805
+ * repos, one spelling, which is why it lives here. Success is marked and the
1806
+ * error leg deliberately is NOT: the console gives the marker precedence, so
1807
+ * a marked error would render a wait that resolves to bare doors with the
1808
+ * error's sentence lost. If the spellings ever diverged the failure would be
1809
+ * invisible to every suite — email landings would flash the doors for one
1810
+ * round trip instead of waiting — which is exactly the silent-drift class
1811
+ * this constitution exists to delete.
1812
+ */
1813
+ export const SIGN_IN_RETURN_PARAM = 'signing-in';
1814
+
1800
1815
  /**
1801
1816
  * How a request (or recorded activity) was authorized.
1802
1817
  *
@@ -2644,6 +2659,7 @@ export type ActivityEvent =
2644
2659
  | 'deployment.delete'
2645
2660
  | 'deployment.claim'
2646
2661
  | 'deployment.flagged' // Internal: HTML content matched a detection rule (not user-visible)
2662
+ | 'deployment.open' // Internal: an operator opened hosted content for moderation (not user-visible)
2647
2663
  // Domain events
2648
2664
  | 'domain.create'
2649
2665
  | 'domain.update'