@pagelines/sdk 1.0.778 → 1.0.779

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.
@@ -67,6 +67,13 @@ export type AgentChatControllerSettings = {
67
67
  * surfaces omit it — a visitor can't wake someone else's assistant.
68
68
  */
69
69
  manageUrl?: string;
70
+ /**
71
+ * Where billing actions live on this surface (start trial, fix payment).
72
+ * The wire's fallback billing actionUrl is the iOS deep link
73
+ * (`pagelines://billing`); web surfaces pass their billing route here so a
74
+ * blocker reply can link somewhere real.
75
+ */
76
+ billingUrl?: string;
70
77
  /**
71
78
  * Voice-mode seam — voice exists only where the surface provides it.
72
79
  *
@@ -223,6 +230,10 @@ export declare class AgentChatController extends SettingsObject<AgentChatControl
223
230
  * turned-off assistant needs waking, so that copy names the recovery and
224
231
  * links it when the surface knows where managing happens (State
225
232
  * explanations never dead-end).
233
+ *
234
+ * A blocker (billing, boot failure) outranks all of it: the issue already
235
+ * carries the curated reason + CTA, and "give it a moment" is a lie when
236
+ * nothing will recover on its own.
226
237
  */
227
238
  private addOfflineSystemReply;
228
239
  sendComposerMessage(): Promise<void>;