@pluno/product-agent-web 0.1.213 → 0.1.214
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 +1 -0
- package/dist/product-agent-runtime.cjs +1 -1
- package/dist/product-agent-runtime.js +153 -152
- package/dist/product-agent-sdk.js +82 -78
- package/dist/product-agent-widget.js +16 -13
- package/dist/runtimeClient.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
function h(
|
|
1
|
+
function h(s) {
|
|
2
2
|
return {
|
|
3
|
-
key:
|
|
3
|
+
key: s,
|
|
4
4
|
status: "not_requested",
|
|
5
5
|
data: null,
|
|
6
6
|
error: null,
|
|
@@ -9,8 +9,8 @@ function h(i) {
|
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
11
|
class b {
|
|
12
|
-
constructor(e, t,
|
|
13
|
-
this.loader = t, this.merge =
|
|
12
|
+
constructor(e, t, i = (n, r) => r) {
|
|
13
|
+
this.loader = t, this.merge = i, this.state = h(e);
|
|
14
14
|
}
|
|
15
15
|
loader;
|
|
16
16
|
merge;
|
|
@@ -52,16 +52,16 @@ class b {
|
|
|
52
52
|
for (; this.trailingLoad; ) {
|
|
53
53
|
const e = this.trailingLoad;
|
|
54
54
|
this.trailingLoad = null;
|
|
55
|
-
const t = this.state.key,
|
|
55
|
+
const t = this.state.key, i = this.state.requestId + 1;
|
|
56
56
|
this.state = {
|
|
57
57
|
...this.state,
|
|
58
58
|
status: e.mode === "append" ? "loading_more" : this.state.data === null ? "loading" : "refreshing",
|
|
59
59
|
error: null,
|
|
60
|
-
requestId:
|
|
60
|
+
requestId: i
|
|
61
61
|
}, this.publish();
|
|
62
62
|
try {
|
|
63
63
|
const n = await this.loader({ key: t, cursor: e.cursor });
|
|
64
|
-
if (t !== this.state.key ||
|
|
64
|
+
if (t !== this.state.key || i !== this.state.requestId) continue;
|
|
65
65
|
this.state = {
|
|
66
66
|
...this.state,
|
|
67
67
|
status: "ready",
|
|
@@ -70,7 +70,7 @@ class b {
|
|
|
70
70
|
updatedAt: Date.now()
|
|
71
71
|
}, this.publish();
|
|
72
72
|
} catch (n) {
|
|
73
|
-
if (t !== this.state.key ||
|
|
73
|
+
if (t !== this.state.key || i !== this.state.requestId) continue;
|
|
74
74
|
this.state = {
|
|
75
75
|
...this.state,
|
|
76
76
|
status: "error",
|
|
@@ -83,53 +83,53 @@ class b {
|
|
|
83
83
|
for (const e of this.listeners) e(this.state);
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
|
-
function p(
|
|
86
|
+
function p(s) {
|
|
87
87
|
const e = {}, t = [];
|
|
88
|
-
for (const
|
|
89
|
-
e[
|
|
88
|
+
for (const i of s.entities)
|
|
89
|
+
e[i.id] || t.push(i.id), e[i.id] = i;
|
|
90
90
|
return {
|
|
91
91
|
entitiesById: e,
|
|
92
92
|
ids: t,
|
|
93
|
-
nextCursor:
|
|
93
|
+
nextCursor: s.nextCursor
|
|
94
94
|
};
|
|
95
95
|
}
|
|
96
|
-
function E(
|
|
97
|
-
if (t === "replace" ||
|
|
98
|
-
const
|
|
96
|
+
function E(s, e, t) {
|
|
97
|
+
if (t === "replace" || s === null) return e;
|
|
98
|
+
const i = { ...s.entitiesById, ...e.entitiesById }, n = [...s.ids];
|
|
99
99
|
for (const r of e.ids)
|
|
100
|
-
|
|
101
|
-
return { entitiesById:
|
|
100
|
+
s.entitiesById[r] || n.push(r);
|
|
101
|
+
return { entitiesById: i, ids: n, nextCursor: e.nextCursor };
|
|
102
102
|
}
|
|
103
|
-
function w(
|
|
104
|
-
return
|
|
103
|
+
function w(s) {
|
|
104
|
+
return s ? s.ids.map((e) => s.entitiesById[e]).filter((e) => !!e) : [];
|
|
105
105
|
}
|
|
106
|
-
function R(
|
|
107
|
-
return
|
|
106
|
+
function R(s) {
|
|
107
|
+
return s.visible ? s.minimized ? { state: "minimized" } : { state: s.open ? "visible_open" : "visible_closed" } : { state: "hidden" };
|
|
108
108
|
}
|
|
109
|
-
function C(
|
|
110
|
-
return e === "limit_exceeded" ? { allowed: !1, reason: "credits_exhausted", actions: ["upgrade", "earn_credits"] } : e === "subscription_required" || e === "subscription_inactive" || e === "payment_issue" || e === "subscription_invalid" || e === "payment_required" ? { allowed: !1, reason: "payment_issue", actions: ["upgrade"] } :
|
|
109
|
+
function C(s, e) {
|
|
110
|
+
return e === "limit_exceeded" ? { allowed: !1, reason: "credits_exhausted", actions: ["upgrade", "earn_credits"] } : e === "subscription_required" || e === "subscription_inactive" || e === "payment_issue" || e === "subscription_invalid" || e === "payment_required" ? { allowed: !1, reason: "payment_issue", actions: ["upgrade"] } : s ?? { allowed: !0, reason: "allowed", actions: [] };
|
|
111
111
|
}
|
|
112
|
-
function L(
|
|
113
|
-
if (!
|
|
114
|
-
const e =
|
|
112
|
+
function L(s) {
|
|
113
|
+
if (!s || typeof s != "object") return !1;
|
|
114
|
+
const e = s.paidCreditFallbackModel;
|
|
115
115
|
return typeof e == "string" && e.length > 0;
|
|
116
116
|
}
|
|
117
|
-
function q(
|
|
118
|
-
return
|
|
117
|
+
function q(s) {
|
|
118
|
+
return s ? s.submissionGate?.allowed === !1 ? { state: "action_required", reason: s.submissionGate.reason } : s.usingPaidCreditFallback === !0 ? { state: "paid_credit_fallback" } : s.creditLimit !== null && s.creditLimit > 0 && s.creditsRemaining !== null && s.creditsRemaining > 0 && s.creditsRemaining / s.creditLimit <= 0.2 ? { state: "low_credits" } : s.creditsUsed !== null ? { state: "usage" } : { state: "hidden" } : { state: "hidden" };
|
|
119
119
|
}
|
|
120
|
-
function Q(
|
|
121
|
-
const e =
|
|
122
|
-
return
|
|
120
|
+
function Q(s) {
|
|
121
|
+
const e = s.hasDraftMessage || s.hasPreSubmittedAttachment;
|
|
122
|
+
return s.hasRunningAssistantTurn && !e ? {
|
|
123
123
|
action: "stop",
|
|
124
|
-
disabled: !
|
|
124
|
+
disabled: !s.canStopRunningTurn
|
|
125
125
|
} : {
|
|
126
126
|
action: "send",
|
|
127
|
-
disabled: !e || !
|
|
127
|
+
disabled: !e || !s.canSubmitMessage
|
|
128
128
|
};
|
|
129
129
|
}
|
|
130
130
|
class $ {
|
|
131
|
-
constructor(e, t,
|
|
132
|
-
this.loadPage = t, this.limit =
|
|
131
|
+
constructor(e, t, i = 20) {
|
|
132
|
+
this.loadPage = t, this.limit = i, this.recentQuery = new b(
|
|
133
133
|
`${e}:recent`,
|
|
134
134
|
async ({ cursor: n }) => p(
|
|
135
135
|
await this.loadPage({ cursor: n, limit: this.limit, pinned: !1 }).then((r) => ({
|
|
@@ -159,10 +159,10 @@ class $ {
|
|
|
159
159
|
completedRefreshSequence = 0;
|
|
160
160
|
activityReconciliationScheduled = !1;
|
|
161
161
|
getState() {
|
|
162
|
-
const e = this.recentQuery.getState(), t = this.pinnedQuery.getState(),
|
|
162
|
+
const e = this.recentQuery.getState(), t = this.pinnedQuery.getState(), i = [
|
|
163
163
|
...u(t.data),
|
|
164
164
|
...u(e.data)
|
|
165
|
-
], n = new Map(
|
|
165
|
+
], n = new Map(i.map((o) => [o.id, o])), r = Array.from(n.values()).map(
|
|
166
166
|
(o) => this.applyOverrides(o, this.completedRefreshSequence)
|
|
167
167
|
), a = Array.from(this.optimisticEntities.values()).filter((o) => !n.has(o.id)).reverse(), l = e.data || t.data || a.length > 0 ? p({
|
|
168
168
|
entities: [...a, ...r],
|
|
@@ -216,20 +216,20 @@ class $ {
|
|
|
216
216
|
isActive: t,
|
|
217
217
|
confirmAfterRefresh: this.completedRefreshSequence + 1,
|
|
218
218
|
releaseAfterRefresh: this.completedRefreshSequence + 2
|
|
219
|
-
}), this.updateEntity(e, (
|
|
219
|
+
}), this.updateEntity(e, (i) => ({ ...i, isActive: t }));
|
|
220
220
|
}
|
|
221
221
|
setPinned(e, t) {
|
|
222
|
-
const
|
|
223
|
-
return this.pinnedOverrides.set(e,
|
|
222
|
+
const i = { pinned: t, confirmAfterRefresh: Number.POSITIVE_INFINITY };
|
|
223
|
+
return this.pinnedOverrides.set(e, i), this.updateEntity(e, (n) => ({ ...n, isPinned: t })), i;
|
|
224
224
|
}
|
|
225
225
|
confirmPinned(e, t) {
|
|
226
226
|
this.pinnedOverrides.get(e) === t && (t.confirmAfterRefresh = this.completedRefreshSequence + 1);
|
|
227
227
|
}
|
|
228
|
-
rollbackPinned(e, t,
|
|
229
|
-
this.pinnedOverrides.get(e) === t && (this.pinnedOverrides.delete(e), this.updateEntity(e, (n) => ({ ...n, isPinned:
|
|
228
|
+
rollbackPinned(e, t, i) {
|
|
229
|
+
this.pinnedOverrides.get(e) === t && (this.pinnedOverrides.delete(e), this.updateEntity(e, (n) => ({ ...n, isPinned: i })));
|
|
230
230
|
}
|
|
231
231
|
setTitle(e, t) {
|
|
232
|
-
this.titleOverrides.set(e, t), this.updateEntity(e, (
|
|
232
|
+
this.titleOverrides.set(e, t), this.updateEntity(e, (i) => ({ ...i, customTitle: t }));
|
|
233
233
|
}
|
|
234
234
|
confirmTitle(e) {
|
|
235
235
|
this.titleOverrides.delete(e);
|
|
@@ -238,34 +238,34 @@ class $ {
|
|
|
238
238
|
const e = [
|
|
239
239
|
...u(this.pinnedQuery.getState().data),
|
|
240
240
|
...u(this.recentQuery.getState().data)
|
|
241
|
-
], t = new Set(e.map((
|
|
242
|
-
for (const
|
|
243
|
-
t.has(
|
|
244
|
-
for (const
|
|
241
|
+
], t = new Set(e.map((i) => i.id));
|
|
242
|
+
for (const i of this.optimisticEntities.keys())
|
|
243
|
+
t.has(i) && this.optimisticEntities.delete(i);
|
|
244
|
+
for (const i of e) this.applyOverrides(i, this.completedRefreshSequence);
|
|
245
245
|
this.publish();
|
|
246
246
|
}
|
|
247
247
|
async loadAllPinned() {
|
|
248
248
|
const e = [];
|
|
249
249
|
let t = null;
|
|
250
250
|
do {
|
|
251
|
-
const
|
|
252
|
-
e.push(...
|
|
251
|
+
const i = await this.loadPage({ cursor: t, limit: this.limit, pinned: !0 });
|
|
252
|
+
e.push(...i.sessions), t = i.nextCursor;
|
|
253
253
|
} while (t);
|
|
254
254
|
return e;
|
|
255
255
|
}
|
|
256
256
|
applyOverrides(e, t) {
|
|
257
|
-
let
|
|
257
|
+
let i = e;
|
|
258
258
|
const n = this.activityOverrides.get(e.id);
|
|
259
|
-
n && (t >= n.confirmAfterRefresh && e.isActive === n.isActive ? this.activityOverrides.delete(e.id) : t >= n.releaseAfterRefresh ? this.activityOverrides.delete(e.id) :
|
|
259
|
+
n && (t >= n.confirmAfterRefresh && e.isActive === n.isActive ? this.activityOverrides.delete(e.id) : t >= n.releaseAfterRefresh ? this.activityOverrides.delete(e.id) : i = { ...i, isActive: n.isActive });
|
|
260
260
|
const r = this.pinnedOverrides.get(e.id);
|
|
261
|
-
return r && (t >= r.confirmAfterRefresh && e.isPinned === !0 === r.pinned ? this.pinnedOverrides.delete(e.id) :
|
|
261
|
+
return r && (t >= r.confirmAfterRefresh && e.isPinned === !0 === r.pinned ? this.pinnedOverrides.delete(e.id) : i = { ...i, isPinned: r.pinned }), this.titleOverrides.has(e.id) && (i = { ...i, customTitle: this.titleOverrides.get(e.id) ?? null }), i;
|
|
262
262
|
}
|
|
263
263
|
updateProjection() {
|
|
264
264
|
this.publish();
|
|
265
265
|
}
|
|
266
266
|
updateEntity(e, t) {
|
|
267
|
-
const
|
|
268
|
-
|
|
267
|
+
const i = this.optimisticEntities.get(e);
|
|
268
|
+
i && this.optimisticEntities.set(e, t(i)), this.publish();
|
|
269
269
|
}
|
|
270
270
|
hasUnconfirmedActivityOverride() {
|
|
271
271
|
return Array.from(this.activityOverrides.values()).some(
|
|
@@ -276,16 +276,16 @@ class $ {
|
|
|
276
276
|
for (const e of this.listeners) e(this.getState());
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
|
-
function u(
|
|
280
|
-
return
|
|
279
|
+
function u(s) {
|
|
280
|
+
return s ? s.ids.map((e) => s.entitiesById[e]).filter((e) => !!e) : [];
|
|
281
281
|
}
|
|
282
|
-
function _(
|
|
283
|
-
return
|
|
282
|
+
function _(s, e) {
|
|
283
|
+
return s.status === "error" || e.status === "error" ? "error" : s.status === "loading" || e.status === "loading" ? "loading" : s.status === "refreshing" || e.status === "refreshing" ? "refreshing" : s.status === "loading_more" ? "loading_more" : s.status === "ready" || e.status === "ready" ? "ready" : "not_requested";
|
|
284
284
|
}
|
|
285
285
|
class K {
|
|
286
286
|
constructor(e, t = null) {
|
|
287
287
|
this.storage = e, t && (this.decisions = new Map(
|
|
288
|
-
t.filter(y).map((
|
|
288
|
+
t.filter(y).map((i) => [this.getDecisionKey(i), i])
|
|
289
289
|
), this.initialized = !0);
|
|
290
290
|
}
|
|
291
291
|
storage;
|
|
@@ -301,60 +301,60 @@ class K {
|
|
|
301
301
|
), this.initialized = !0;
|
|
302
302
|
}
|
|
303
303
|
isEligible(e, t = Date.now()) {
|
|
304
|
-
const
|
|
305
|
-
return
|
|
304
|
+
const i = this.scheduledEligibility.get(this.getExactKey(e));
|
|
305
|
+
return i !== void 0 && i > t ? !1 : this.isDecisionEligible(this.decisions.get(this.getExactKey(e)), t) && this.isDecisionEligible(this.decisions.get(this.getCategoryKey(e)), t);
|
|
306
306
|
}
|
|
307
307
|
getDecision(e) {
|
|
308
308
|
return this.decisions.get(this.getExactKey(e)) ?? this.decisions.get(this.getCategoryKey(e)) ?? null;
|
|
309
309
|
}
|
|
310
310
|
getStatus(e, t = Date.now()) {
|
|
311
|
-
const
|
|
312
|
-
if (
|
|
311
|
+
const i = this.scheduledEligibility.get(this.getExactKey(e));
|
|
312
|
+
if (i !== void 0 && i > t) return "scheduled";
|
|
313
313
|
const n = this.getDecision(e);
|
|
314
314
|
return n ? n.action === "never" || n.action === "dont_show_again" ? "suppressed" : n.action === "dismiss" ? "resolved" : n.nextEligibleAt && Date.parse(n.nextEligibleAt) > t ? "snoozed" : "presentable" : "presentable";
|
|
315
315
|
}
|
|
316
316
|
scheduleEligibility(e, t) {
|
|
317
|
-
const
|
|
318
|
-
return n !== void 0 ? n : (this.scheduledEligibility.set(
|
|
317
|
+
const i = this.getExactKey(e), n = this.scheduledEligibility.get(i);
|
|
318
|
+
return n !== void 0 ? n : (this.scheduledEligibility.set(i, t), t);
|
|
319
319
|
}
|
|
320
320
|
getNextEligibilityAt(e = Date.now()) {
|
|
321
|
-
for (const [
|
|
322
|
-
n <= e && this.scheduledEligibility.delete(
|
|
321
|
+
for (const [i, n] of this.scheduledEligibility)
|
|
322
|
+
n <= e && this.scheduledEligibility.delete(i);
|
|
323
323
|
const t = [
|
|
324
324
|
...this.scheduledEligibility.values(),
|
|
325
|
-
...Array.from(this.decisions.values()).map((
|
|
325
|
+
...Array.from(this.decisions.values()).map((i) => i.nextEligibleAt ? Date.parse(i.nextEligibleAt) : Number.NaN).filter((i) => Number.isFinite(i) && i > e)
|
|
326
326
|
];
|
|
327
327
|
return t.length > 0 ? Math.min(...t) : null;
|
|
328
328
|
}
|
|
329
|
-
act(e, t,
|
|
330
|
-
const n = this.actionQueue.then(() => this.applyAction(e, t,
|
|
329
|
+
act(e, t, i = {}) {
|
|
330
|
+
const n = this.actionQueue.then(() => this.applyAction(e, t, i));
|
|
331
331
|
return this.actionQueue = n.then(() => {
|
|
332
332
|
}, () => {
|
|
333
333
|
}), n;
|
|
334
334
|
}
|
|
335
|
-
async applyAction(e, t,
|
|
335
|
+
async applyAction(e, t, i) {
|
|
336
336
|
if (!e.allowedActions.includes(t))
|
|
337
337
|
throw new Error(`Interaction ${e.key} does not allow ${t}.`);
|
|
338
338
|
if (!I(t))
|
|
339
339
|
throw new Error(`Interaction action ${t} is not a persistence decision.`);
|
|
340
|
-
const n =
|
|
340
|
+
const n = i.now ?? /* @__PURE__ */ new Date(), r = {
|
|
341
341
|
promptKey: e.key,
|
|
342
342
|
category: e.category,
|
|
343
343
|
action: t,
|
|
344
344
|
scope: e.scope,
|
|
345
345
|
decidedAt: n.toISOString(),
|
|
346
|
-
nextEligibleAt: this.getNextEligibleAt(e, t, n,
|
|
346
|
+
nextEligibleAt: this.getNextEligibleAt(e, t, n, i.snoozeUntil)
|
|
347
347
|
}, a = t === "dont_show_again" ? this.getCategoryKey(e) : this.getExactKey(e), l = new Map(this.decisions);
|
|
348
348
|
return l.set(a, r), await this.storage.save([...l.values()]), this.decisions = l, r;
|
|
349
349
|
}
|
|
350
350
|
isDecisionEligible(e, t) {
|
|
351
351
|
return e ? e.action === "dismiss" || e.action === "never" || e.action === "dont_show_again" ? !1 : !e.nextEligibleAt || Date.parse(e.nextEligibleAt) <= t : !0;
|
|
352
352
|
}
|
|
353
|
-
getNextEligibleAt(e, t,
|
|
353
|
+
getNextEligibleAt(e, t, i, n) {
|
|
354
354
|
if (t === "later")
|
|
355
|
-
return new Date(
|
|
355
|
+
return new Date(i.getTime() + (e.laterDelayMs ?? 3600 * 1e3)).toISOString();
|
|
356
356
|
if (t === "snooze") {
|
|
357
|
-
if (!n || n.getTime() <=
|
|
357
|
+
if (!n || n.getTime() <= i.getTime())
|
|
358
358
|
throw new Error("Snooze requires a future next-eligible time.");
|
|
359
359
|
return n.toISOString();
|
|
360
360
|
}
|
|
@@ -371,27 +371,27 @@ class K {
|
|
|
371
371
|
return `${m(e.scope)}:category:${e.category}`;
|
|
372
372
|
}
|
|
373
373
|
}
|
|
374
|
-
function F(
|
|
374
|
+
function F(s, e) {
|
|
375
375
|
return {
|
|
376
|
-
load: async () => P(
|
|
377
|
-
save: async (t) =>
|
|
376
|
+
load: async () => P(s, e),
|
|
377
|
+
save: async (t) => s.setItem(e, JSON.stringify(t))
|
|
378
378
|
};
|
|
379
379
|
}
|
|
380
|
-
function P(
|
|
381
|
-
const t =
|
|
380
|
+
function P(s, e) {
|
|
381
|
+
const t = s.getItem(e);
|
|
382
382
|
if (!t) return [];
|
|
383
|
-
const
|
|
384
|
-
return Array.isArray(
|
|
383
|
+
const i = JSON.parse(t);
|
|
384
|
+
return Array.isArray(i) ? i.filter(y) : [];
|
|
385
385
|
}
|
|
386
|
-
function m(
|
|
387
|
-
return `${
|
|
386
|
+
function m(s) {
|
|
387
|
+
return `${s.level}:${s.key}`;
|
|
388
388
|
}
|
|
389
|
-
function I(
|
|
390
|
-
return
|
|
389
|
+
function I(s) {
|
|
390
|
+
return s === "dismiss" || s === "later" || s === "snooze" || s === "never" || s === "dont_show_again";
|
|
391
391
|
}
|
|
392
|
-
function y(
|
|
393
|
-
if (!
|
|
394
|
-
const e =
|
|
392
|
+
function y(s) {
|
|
393
|
+
if (!s || typeof s != "object") return !1;
|
|
394
|
+
const e = s;
|
|
395
395
|
return typeof e.promptKey == "string" && typeof e.category == "string" && typeof e.decidedAt == "string" && (e.nextEligibleAt === null || typeof e.nextEligibleAt == "string") && I(e.action) && !!(e.scope && typeof e.scope == "object" && typeof e.scope.level == "string" && typeof e.scope.key == "string");
|
|
396
396
|
}
|
|
397
397
|
const T = {
|
|
@@ -400,10 +400,10 @@ const T = {
|
|
|
400
400
|
failed: "❗",
|
|
401
401
|
stopped: "⏹️"
|
|
402
402
|
}, M = /^(?:⌛|⏳|✅|❗|⏹️) Pluno(?:: )?/;
|
|
403
|
-
function D(
|
|
404
|
-
if (!e) return g(
|
|
405
|
-
const t = g(
|
|
406
|
-
return t ? `${
|
|
403
|
+
function D(s, e) {
|
|
404
|
+
if (!e) return g(s);
|
|
405
|
+
const t = g(s), i = `${T[e]} Pluno`;
|
|
406
|
+
return t ? `${i}: ${t}` : i;
|
|
407
407
|
}
|
|
408
408
|
class z {
|
|
409
409
|
constructor(e) {
|
|
@@ -422,16 +422,16 @@ class z {
|
|
|
422
422
|
this.liveStatusVersion += 1, this.applyClear();
|
|
423
423
|
}
|
|
424
424
|
async syncStatus(e) {
|
|
425
|
-
const t = this.liveStatusVersion,
|
|
426
|
-
|
|
425
|
+
const t = this.liveStatusVersion, i = await e();
|
|
426
|
+
i === void 0 || t !== this.liveStatusVersion || (i ? this.applyStatus(i) : this.applyClear());
|
|
427
427
|
}
|
|
428
428
|
applyStatus(e) {
|
|
429
429
|
const t = this.titleDocument.getTitle();
|
|
430
430
|
t !== this.lastAppliedTitle && (this.baseTitle = g(t)), this.status = e, this.stopObserving || (this.stopObserving = this.titleDocument.observeTitle(() => this.handleTitleChanged())), this.applyTitle();
|
|
431
431
|
}
|
|
432
432
|
applyClear() {
|
|
433
|
-
const e = this.titleDocument.getTitle(), t = this.lastAppliedTitle !== null && e === this.lastAppliedTitle,
|
|
434
|
-
this.status = null, this.lastAppliedTitle = null, this.stopObserving?.(), this.stopObserving = null, t ? this.titleDocument.setTitle(this.baseTitle) :
|
|
433
|
+
const e = this.titleDocument.getTitle(), t = this.lastAppliedTitle !== null && e === this.lastAppliedTitle, i = this.lastAppliedTitle === null ? g(e) : e;
|
|
434
|
+
this.status = null, this.lastAppliedTitle = null, this.stopObserving?.(), this.stopObserving = null, t ? this.titleDocument.setTitle(this.baseTitle) : i !== e && this.titleDocument.setTitle(i);
|
|
435
435
|
}
|
|
436
436
|
handleTitleChanged() {
|
|
437
437
|
!this.status || this.titleDocument.getTitle() === this.lastAppliedTitle || this.applyTitle();
|
|
@@ -443,15 +443,15 @@ class z {
|
|
|
443
443
|
this.lastAppliedTitle = e, this.titleDocument.getTitle() !== e && this.titleDocument.setTitle(e);
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
|
-
function B(
|
|
446
|
+
function B(s) {
|
|
447
447
|
return {
|
|
448
|
-
getTitle: () =>
|
|
448
|
+
getTitle: () => s.title,
|
|
449
449
|
setTitle: (e) => {
|
|
450
|
-
|
|
450
|
+
s.title = e;
|
|
451
451
|
},
|
|
452
452
|
observeTitle: (e) => {
|
|
453
453
|
const t = new MutationObserver(e);
|
|
454
|
-
return t.observe(
|
|
454
|
+
return t.observe(s.head, {
|
|
455
455
|
childList: !0,
|
|
456
456
|
subtree: !0,
|
|
457
457
|
characterData: !0
|
|
@@ -459,15 +459,15 @@ function B(i) {
|
|
|
459
459
|
}
|
|
460
460
|
};
|
|
461
461
|
}
|
|
462
|
-
function g(
|
|
463
|
-
return
|
|
462
|
+
function g(s) {
|
|
463
|
+
return s.replace(M, "");
|
|
464
464
|
}
|
|
465
465
|
const S = 500;
|
|
466
|
-
function
|
|
467
|
-
const e =
|
|
466
|
+
function O(s) {
|
|
467
|
+
const e = s.replace(/\n\s*at\s[\s\S]*$/, "").replace(/-----BEGIN [^-]*PRIVATE KEY-----[\s\S]*?(?:-----END [^-]*PRIVATE KEY-----|$)/g, "[REDACTED]").replace(/\b(?:set-cookie|cookie)\s*[:=]\s*[^\n]+/gi, "cookie=[REDACTED]").replace(/\bdata:[^\s<>"']+/gi, "[DATA]").replace(/\b(?:https?:\/\/|www\.)[^\s<>"']+/gi, "[URL]").replace(/\b(?:Bearer|Basic)\s+[^\s,;"']+/gi, "[REDACTED]").replace(/\beyJ[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+(?:\.[A-Za-z0-9_-]+)?/g, "[REDACTED]").replace(/\b(?:sk|pk|ghp|gho|github_pat|xoxb|xoxp)[-_][A-Za-z0-9_-]{8,}/g, "[REDACTED]").replace(/\b((?:access|refresh|id|auth)[_-]?token|api[_-]?key|client[_-]?secret|password|passwd|pwd|secret|token|jwt|authorization|cookie|set-cookie)\b["']?\s*[:=]\s*(?:"[^"]*"|'[^']*'|[^\s,;}&]+)/gi, "$1=[REDACTED]").replace(/[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}/gi, "[EMAIL]").replace(/(?:[A-Z]:[\\/]|\\\\|(?:~|\.\.?)?\/|[\w.-]+[\\/])[^\s<>"']+/gi, "[FILE]").replace(new RegExp("(?<![\\w.])(?:[\\w.-]+\\.[A-Z][A-Z0-9]{0,15}|\\.[A-Z][\\w.-]*)\\b", "gi"), "[FILE]").replace(/\s+/g, " ").trim();
|
|
468
468
|
return e.length > S ? `${e.slice(0, S - 1)}…` : e;
|
|
469
469
|
}
|
|
470
|
-
const
|
|
470
|
+
const k = {
|
|
471
471
|
"duplicate-message-item": "A canonical message rendered more than once.",
|
|
472
472
|
"duplicate-canonical-item": "A canonical session item rendered more than once.",
|
|
473
473
|
"duplicate-tool-call": "A tool call rendered more than once.",
|
|
@@ -480,12 +480,12 @@ const O = {
|
|
|
480
480
|
"thinking-groups-without-user-message": "Multiple thinking groups appeared without a user message between them.",
|
|
481
481
|
"thinking-without-progress": "Thinking remained visible without progress for five minutes."
|
|
482
482
|
};
|
|
483
|
-
function x(
|
|
484
|
-
return typeof
|
|
483
|
+
function x(s) {
|
|
484
|
+
return typeof s == "string" && s.startsWith("ui_invariant:") && Object.prototype.hasOwnProperty.call(k, s.slice(13));
|
|
485
485
|
}
|
|
486
|
-
function N(
|
|
487
|
-
if (!
|
|
488
|
-
const e =
|
|
486
|
+
function N(s) {
|
|
487
|
+
if (!s || typeof s != "object" || !("type" in s)) return !1;
|
|
488
|
+
const e = s;
|
|
489
489
|
switch (e.type) {
|
|
490
490
|
case "runtime.connect":
|
|
491
491
|
case "session.new":
|
|
@@ -519,14 +519,14 @@ function N(i) {
|
|
|
519
519
|
case "conversation.fail_staged":
|
|
520
520
|
return typeof e.clientMessageId == "string" && typeof e.message == "string";
|
|
521
521
|
case "conversation.send":
|
|
522
|
-
return typeof e.content == "string" && typeof e.clientMessageId == "string" && (e.attachments === void 0 || Array.isArray(e.attachments));
|
|
522
|
+
return typeof e.content == "string" && typeof e.clientMessageId == "string" && (e.automationOnboarding === void 0 || typeof e.automationOnboarding == "boolean") && (e.attachments === void 0 || Array.isArray(e.attachments));
|
|
523
523
|
default:
|
|
524
524
|
return !1;
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
class H {
|
|
528
|
-
constructor(e, t,
|
|
529
|
-
this.adapter = t, this.state = f(e), this.model =
|
|
528
|
+
constructor(e, t, i) {
|
|
529
|
+
this.adapter = t, this.state = f(e), this.model = i;
|
|
530
530
|
}
|
|
531
531
|
adapter;
|
|
532
532
|
listeners = {};
|
|
@@ -544,13 +544,13 @@ class H {
|
|
|
544
544
|
operationQueue = Promise.resolve();
|
|
545
545
|
destroyed = !1;
|
|
546
546
|
on(e, t) {
|
|
547
|
-
const
|
|
548
|
-
return
|
|
547
|
+
const i = this.listeners[e] ?? /* @__PURE__ */ new Set();
|
|
548
|
+
return i.add(t), this.listeners[e] = i, () => i.delete(t);
|
|
549
549
|
}
|
|
550
550
|
getState() {
|
|
551
551
|
return f(this.state);
|
|
552
552
|
}
|
|
553
|
-
updateProjection(e, t,
|
|
553
|
+
updateProjection(e, t, i, n, r) {
|
|
554
554
|
if (!this.destroyed) {
|
|
555
555
|
this.state = f(e);
|
|
556
556
|
for (const [a, l] of this.unacknowledgedSubmissions) {
|
|
@@ -562,8 +562,8 @@ class H {
|
|
|
562
562
|
}
|
|
563
563
|
l.sessionId ??= e.sessionId, this.state.messages.push(l.message), this.state.pendingMessageStatus = "sending", this.state.turnPhase ??= "sending", this.state.taskStatus ??= "working";
|
|
564
564
|
}
|
|
565
|
-
if (t !== void 0 && (this.model = t),
|
|
566
|
-
this.sessionHistoryState = A(
|
|
565
|
+
if (t !== void 0 && (this.model = t), i) {
|
|
566
|
+
this.sessionHistoryState = A(i);
|
|
567
567
|
for (const a of this.sessionHistoryListeners)
|
|
568
568
|
a(this.getSessionHistoryState());
|
|
569
569
|
}
|
|
@@ -603,22 +603,22 @@ class H {
|
|
|
603
603
|
}).catch(() => {
|
|
604
604
|
});
|
|
605
605
|
}
|
|
606
|
-
reportDisplayedError(e, t,
|
|
606
|
+
reportDisplayedError(e, t, i) {
|
|
607
607
|
this.adapter.dispatch({
|
|
608
608
|
type: "runtime.report_displayed_error",
|
|
609
609
|
reason: e,
|
|
610
610
|
errorFingerprint: t,
|
|
611
|
-
...
|
|
611
|
+
...i ? { displayedMessage: O(i) } : {}
|
|
612
612
|
}).catch(() => {
|
|
613
613
|
});
|
|
614
614
|
}
|
|
615
615
|
sendMessage(e, t = {}) {
|
|
616
|
-
const
|
|
617
|
-
if (!
|
|
616
|
+
const i = e.trim(), n = t.attachments ?? [];
|
|
617
|
+
if (!i && n.length === 0) return Promise.resolve(null);
|
|
618
618
|
const r = t.clientMessageId ?? (t.proactiveSuggestionQuestion && this.stagedProactiveSuggestionClientMessageId ? this.stagedProactiveSuggestionClientMessageId : crypto.randomUUID()), a = t.submittedAt ?? Date.now(), l = this.state, o = {
|
|
619
619
|
id: `local-${r}`,
|
|
620
620
|
role: "user",
|
|
621
|
-
content:
|
|
621
|
+
content: i,
|
|
622
622
|
createdAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
623
623
|
...n.length > 0 ? { attachments: n } : {},
|
|
624
624
|
clientMessageId: r
|
|
@@ -636,12 +636,12 @@ class H {
|
|
|
636
636
|
isRetrying: !1,
|
|
637
637
|
lastError: null
|
|
638
638
|
}, this.emit("state", this.getState()), this.enqueueOperation(() => this.sendMessageNow(
|
|
639
|
-
|
|
639
|
+
i,
|
|
640
640
|
{ ...t, clientMessageId: r, submittedAt: a },
|
|
641
641
|
l
|
|
642
642
|
));
|
|
643
643
|
}
|
|
644
|
-
async sendMessageNow(e, t,
|
|
644
|
+
async sendMessageNow(e, t, i) {
|
|
645
645
|
const n = e, r = t.clientMessageId;
|
|
646
646
|
let a = t.attachments ?? [], l = !1;
|
|
647
647
|
try {
|
|
@@ -674,6 +674,7 @@ class H {
|
|
|
674
674
|
initiatedBy: t.initiatedBy,
|
|
675
675
|
invocation: t.invocation,
|
|
676
676
|
proactiveSuggestionQuestion: t.proactiveSuggestionQuestion,
|
|
677
|
+
...t.automationOnboarding ? { automationOnboarding: !0 } : {},
|
|
677
678
|
attachments: a.length > 0 ? a : void 0
|
|
678
679
|
});
|
|
679
680
|
for (const c of t.attachments ?? [])
|
|
@@ -685,10 +686,10 @@ class H {
|
|
|
685
686
|
messages: this.state.messages.filter(
|
|
686
687
|
(c) => c.id !== `local-${r}` && c.id !== `optimistic-user-message:${r}`
|
|
687
688
|
),
|
|
688
|
-
pendingMessageStatus:
|
|
689
|
-
turnPhase:
|
|
690
|
-
isThinking:
|
|
691
|
-
taskStatus:
|
|
689
|
+
pendingMessageStatus: i.pendingMessageStatus,
|
|
690
|
+
turnPhase: i.turnPhase,
|
|
691
|
+
isThinking: i.isThinking,
|
|
692
|
+
taskStatus: i.taskStatus
|
|
692
693
|
}, this.emit("state", this.getState()), l && await this.adapter.dispatch({
|
|
693
694
|
type: "conversation.fail_staged",
|
|
694
695
|
clientMessageId: r,
|
|
@@ -760,12 +761,12 @@ class H {
|
|
|
760
761
|
subscribeInteractions(e) {
|
|
761
762
|
return this.interactionListeners.add(e), e(this.getInteractions()), () => this.interactionListeners.delete(e);
|
|
762
763
|
}
|
|
763
|
-
actOnInteraction(e, t,
|
|
764
|
+
actOnInteraction(e, t, i, n = {}) {
|
|
764
765
|
return this.dispatch({
|
|
765
766
|
type: "interaction.act",
|
|
766
767
|
interactionId: e,
|
|
767
768
|
action: t,
|
|
768
|
-
expectedRevision:
|
|
769
|
+
expectedRevision: i,
|
|
769
770
|
...n
|
|
770
771
|
}).then(() => {
|
|
771
772
|
});
|
|
@@ -786,11 +787,11 @@ class H {
|
|
|
786
787
|
stageProactiveSuggestionQuestion(e) {
|
|
787
788
|
const t = e.trim();
|
|
788
789
|
if (!t) return Promise.resolve();
|
|
789
|
-
const
|
|
790
|
-
return this.stagedProactiveSuggestionClientMessageId =
|
|
790
|
+
const i = this.stagedProactiveSuggestionClientMessageId ?? crypto.randomUUID();
|
|
791
|
+
return this.stagedProactiveSuggestionClientMessageId = i, this.dispatch({
|
|
791
792
|
type: "conversation.stage_proactive_suggestion",
|
|
792
793
|
question: t,
|
|
793
|
-
clientMessageId:
|
|
794
|
+
clientMessageId: i
|
|
794
795
|
}).then(() => {
|
|
795
796
|
});
|
|
796
797
|
}
|
|
@@ -807,40 +808,40 @@ class H {
|
|
|
807
808
|
), t;
|
|
808
809
|
}
|
|
809
810
|
emit(e, t) {
|
|
810
|
-
const
|
|
811
|
-
for (const n of
|
|
811
|
+
const i = this.listeners[e];
|
|
812
|
+
for (const n of i ?? []) n(t);
|
|
812
813
|
}
|
|
813
814
|
}
|
|
814
|
-
function f(
|
|
815
|
+
function f(s) {
|
|
815
816
|
return {
|
|
816
|
-
...
|
|
817
|
-
starterPrompts: [...
|
|
818
|
-
appearance:
|
|
819
|
-
messages:
|
|
817
|
+
...s,
|
|
818
|
+
starterPrompts: [...s.starterPrompts],
|
|
819
|
+
appearance: s.appearance ? { ...s.appearance } : null,
|
|
820
|
+
messages: s.messages.map((e) => {
|
|
820
821
|
const t = {
|
|
821
822
|
...e,
|
|
822
823
|
attachments: e.attachments?.map((a) => ({ ...a }))
|
|
823
|
-
},
|
|
824
|
+
}, i = e.assistantDraftItemId, n = e.clientMessageId, r = e.proactiveSuggestionClientMessageId;
|
|
824
825
|
return r && Object.defineProperty(t, "proactiveSuggestionClientMessageId", {
|
|
825
826
|
value: r,
|
|
826
827
|
enumerable: !1
|
|
827
|
-
}),
|
|
828
|
-
value:
|
|
828
|
+
}), i && Object.defineProperty(t, "assistantDraftItemId", {
|
|
829
|
+
value: i,
|
|
829
830
|
enumerable: !1
|
|
830
831
|
}), n && Object.defineProperty(t, "clientMessageId", {
|
|
831
832
|
value: n,
|
|
832
833
|
enumerable: !1
|
|
833
834
|
}), t;
|
|
834
835
|
}),
|
|
835
|
-
activeScheduledFollowUps:
|
|
836
|
+
activeScheduledFollowUps: s.activeScheduledFollowUps?.map((e) => ({ ...e })) ?? null
|
|
836
837
|
};
|
|
837
838
|
}
|
|
838
|
-
function A(
|
|
839
|
+
function A(s) {
|
|
839
840
|
return {
|
|
840
|
-
...
|
|
841
|
-
data:
|
|
842
|
-
entities: w(
|
|
843
|
-
nextCursor:
|
|
841
|
+
...s,
|
|
842
|
+
data: s.data ? p({
|
|
843
|
+
entities: w(s.data).map((e) => ({ ...e })),
|
|
844
|
+
nextCursor: s.data.nextCursor
|
|
844
845
|
}) : null
|
|
845
846
|
};
|
|
846
847
|
}
|