agents 0.0.0-b342dcf → 0.0.0-b803d5e

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.
@@ -1,12 +1,12 @@
1
1
  import {
2
- MCPClientManager
3
- } from "./chunk-WNICV3OI.js";
2
+ DurableObjectOAuthClientProvider
3
+ } from "./chunk-BZXOAZUX.js";
4
+ import {
5
+ camelCaseToKebabCase
6
+ } from "./chunk-QSGN3REV.js";
4
7
  import {
5
- __privateAdd,
6
- __privateGet,
7
- __privateMethod,
8
- __privateSet
9
- } from "./chunk-HMLY7DHA.js";
8
+ MCPClientManager
9
+ } from "./chunk-Y67CHZBI.js";
10
10
 
11
11
  // src/index.ts
12
12
  import {
@@ -43,25 +43,68 @@ var agentContext = new AsyncLocalStorage();
43
43
  function getCurrentAgent() {
44
44
  const store = agentContext.getStore();
45
45
  if (!store) {
46
- throw new Error(
47
- "No agent context found, this means you're trying to access the current agent when none of them are running."
48
- );
46
+ return {
47
+ agent: void 0,
48
+ connection: void 0,
49
+ request: void 0
50
+ };
49
51
  }
50
52
  return store;
51
53
  }
52
- var _state, _ParentClass, _Agent_instances, setStateInternal_fn, tryCatch_fn, scheduleNextAlarm_fn, isCallable_fn;
53
54
  var Agent = class extends Server {
54
55
  constructor(ctx, env) {
55
56
  super(ctx, env);
56
- __privateAdd(this, _Agent_instances);
57
- __privateAdd(this, _state, DEFAULT_STATE);
58
- __privateAdd(this, _ParentClass, Object.getPrototypeOf(this).constructor);
59
- this.mcp = new MCPClientManager(__privateGet(this, _ParentClass).name, "0.0.1");
57
+ this._state = DEFAULT_STATE;
58
+ this._ParentClass = Object.getPrototypeOf(this).constructor;
59
+ this.mcp = new MCPClientManager(this._ParentClass.name, "0.0.1");
60
60
  /**
61
61
  * Initial state for the Agent
62
62
  * Override to provide default state values
63
63
  */
64
64
  this.initialState = DEFAULT_STATE;
65
+ /**
66
+ * Method called when an alarm fires.
67
+ * Executes any scheduled tasks that are due.
68
+ *
69
+ * @remarks
70
+ * To schedule a task, please use the `this.schedule` method instead.
71
+ * See {@link https://developers.cloudflare.com/agents/api-reference/schedule-tasks/}
72
+ */
73
+ this.alarm = async () => {
74
+ const now = Math.floor(Date.now() / 1e3);
75
+ const result = this.sql`
76
+ SELECT * FROM cf_agents_schedules WHERE time <= ${now}
77
+ `;
78
+ for (const row of result || []) {
79
+ const callback = this[row.callback];
80
+ if (!callback) {
81
+ console.error(`callback ${row.callback} not found`);
82
+ continue;
83
+ }
84
+ await agentContext.run(
85
+ { agent: this, connection: void 0, request: void 0 },
86
+ async () => {
87
+ try {
88
+ await callback.bind(this)(JSON.parse(row.payload), row);
89
+ } catch (e) {
90
+ console.error(`error executing callback "${row.callback}"`, e);
91
+ }
92
+ }
93
+ );
94
+ if (row.type === "cron") {
95
+ const nextExecutionTime = getNextCronTime(row.cron);
96
+ const nextTimestamp = Math.floor(nextExecutionTime.getTime() / 1e3);
97
+ this.sql`
98
+ UPDATE cf_agents_schedules SET time = ${nextTimestamp} WHERE id = ${row.id}
99
+ `;
100
+ } else {
101
+ this.sql`
102
+ DELETE FROM cf_agents_schedules WHERE id = ${row.id}
103
+ `;
104
+ }
105
+ }
106
+ await this._scheduleNextAlarm();
107
+ };
65
108
  this.sql`
66
109
  CREATE TABLE IF NOT EXISTS cf_agents_state (
67
110
  id TEXT PRIMARY KEY NOT NULL,
@@ -69,7 +112,7 @@ var Agent = class extends Server {
69
112
  )
70
113
  `;
71
114
  void this.ctx.blockConcurrencyWhile(async () => {
72
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, async () => {
115
+ return this._tryCatch(async () => {
73
116
  this.sql`
74
117
  CREATE TABLE IF NOT EXISTS cf_agents_schedules (
75
118
  id TEXT PRIMARY KEY NOT NULL DEFAULT (randomblob(9)),
@@ -85,22 +128,55 @@ var Agent = class extends Server {
85
128
  await this.alarm();
86
129
  });
87
130
  });
131
+ this.sql`
132
+ CREATE TABLE IF NOT EXISTS cf_agents_mcp_servers (
133
+ id TEXT PRIMARY KEY NOT NULL,
134
+ name TEXT NOT NULL,
135
+ server_url TEXT NOT NULL,
136
+ callback_url TEXT NOT NULL,
137
+ client_id TEXT,
138
+ auth_url TEXT,
139
+ server_options TEXT
140
+ )
141
+ `;
142
+ const _onRequest = this.onRequest.bind(this);
143
+ this.onRequest = (request) => {
144
+ return agentContext.run(
145
+ { agent: this, connection: void 0, request },
146
+ async () => {
147
+ if (this.mcp.isCallbackRequest(request)) {
148
+ await this.mcp.handleCallbackRequest(request);
149
+ this.broadcast(
150
+ JSON.stringify({
151
+ type: "cf_agent_mcp_servers",
152
+ mcp: this.getMcpServers()
153
+ })
154
+ );
155
+ return new Response("<script>window.close();</script>", {
156
+ status: 200,
157
+ headers: { "content-type": "text/html" }
158
+ });
159
+ }
160
+ return this._tryCatch(() => _onRequest(request));
161
+ }
162
+ );
163
+ };
88
164
  const _onMessage = this.onMessage.bind(this);
89
165
  this.onMessage = async (connection, message) => {
90
166
  return agentContext.run(
91
167
  { agent: this, connection, request: void 0 },
92
168
  async () => {
93
169
  if (typeof message !== "string") {
94
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onMessage(connection, message));
170
+ return this._tryCatch(() => _onMessage(connection, message));
95
171
  }
96
172
  let parsed;
97
173
  try {
98
174
  parsed = JSON.parse(message);
99
175
  } catch (e) {
100
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onMessage(connection, message));
176
+ return this._tryCatch(() => _onMessage(connection, message));
101
177
  }
102
178
  if (isStateUpdateMessage(parsed)) {
103
- __privateMethod(this, _Agent_instances, setStateInternal_fn).call(this, parsed.state, connection);
179
+ this._setStateInternal(parsed.state, connection);
104
180
  return;
105
181
  }
106
182
  if (isRPCRequest(parsed)) {
@@ -110,7 +186,7 @@ var Agent = class extends Server {
110
186
  if (typeof methodFn !== "function") {
111
187
  throw new Error(`Method ${method} does not exist`);
112
188
  }
113
- if (!__privateMethod(this, _Agent_instances, isCallable_fn).call(this, method)) {
189
+ if (!this._isCallable(method)) {
114
190
  throw new Error(`Method ${method} is not callable`);
115
191
  }
116
192
  const metadata = callableMetadata.get(methodFn);
@@ -140,7 +216,7 @@ var Agent = class extends Server {
140
216
  }
141
217
  return;
142
218
  }
143
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onMessage(connection, message));
219
+ return this._tryCatch(() => _onMessage(connection, message));
144
220
  }
145
221
  );
146
222
  };
@@ -158,18 +234,56 @@ var Agent = class extends Server {
158
234
  })
159
235
  );
160
236
  }
161
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onConnect(connection, ctx2));
237
+ connection.send(
238
+ JSON.stringify({
239
+ type: "cf_agent_mcp_servers",
240
+ mcp: this.getMcpServers()
241
+ })
242
+ );
243
+ return this._tryCatch(() => _onConnect(connection, ctx2));
162
244
  }, 20);
163
245
  }
164
246
  );
165
247
  };
248
+ const _onStart = this.onStart.bind(this);
249
+ this.onStart = async () => {
250
+ return agentContext.run(
251
+ { agent: this, connection: void 0, request: void 0 },
252
+ async () => {
253
+ const servers = this.sql`
254
+ SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
255
+ `;
256
+ await Promise.allSettled(
257
+ servers.map((server) => {
258
+ return this._connectToMcpServerInternal(
259
+ server.name,
260
+ server.server_url,
261
+ server.callback_url,
262
+ server.server_options ? JSON.parse(server.server_options) : void 0,
263
+ {
264
+ id: server.id,
265
+ oauthClientId: server.client_id ?? void 0
266
+ }
267
+ );
268
+ })
269
+ );
270
+ this.broadcast(
271
+ JSON.stringify({
272
+ type: "cf_agent_mcp_servers",
273
+ mcp: this.getMcpServers()
274
+ })
275
+ );
276
+ await this._tryCatch(() => _onStart());
277
+ }
278
+ );
279
+ };
166
280
  }
167
281
  /**
168
282
  * Current state of the Agent
169
283
  */
170
284
  get state() {
171
- if (__privateGet(this, _state) !== DEFAULT_STATE) {
172
- return __privateGet(this, _state);
285
+ if (this._state !== DEFAULT_STATE) {
286
+ return this._state;
173
287
  }
174
288
  const wasChanged = this.sql`
175
289
  SELECT state FROM cf_agents_state WHERE id = ${STATE_WAS_CHANGED}
@@ -180,8 +294,8 @@ var Agent = class extends Server {
180
294
  if (wasChanged[0]?.state === "true" || // we do this check for people who updated their code before we shipped wasChanged
181
295
  result[0]?.state) {
182
296
  const state = result[0]?.state;
183
- __privateSet(this, _state, JSON.parse(state));
184
- return __privateGet(this, _state);
297
+ this._state = JSON.parse(state);
298
+ return this._state;
185
299
  }
186
300
  if (this.initialState === DEFAULT_STATE) {
187
301
  return void 0;
@@ -209,12 +323,39 @@ var Agent = class extends Server {
209
323
  throw this.onError(e);
210
324
  }
211
325
  }
326
+ _setStateInternal(state, source = "server") {
327
+ this._state = state;
328
+ this.sql`
329
+ INSERT OR REPLACE INTO cf_agents_state (id, state)
330
+ VALUES (${STATE_ROW_ID}, ${JSON.stringify(state)})
331
+ `;
332
+ this.sql`
333
+ INSERT OR REPLACE INTO cf_agents_state (id, state)
334
+ VALUES (${STATE_WAS_CHANGED}, ${JSON.stringify(true)})
335
+ `;
336
+ this.broadcast(
337
+ JSON.stringify({
338
+ type: "cf_agent_state",
339
+ state
340
+ }),
341
+ source !== "server" ? [source.id] : []
342
+ );
343
+ return this._tryCatch(() => {
344
+ const { connection, request } = agentContext.getStore() || {};
345
+ return agentContext.run(
346
+ { agent: this, connection, request },
347
+ async () => {
348
+ return this.onStateUpdate(state, source);
349
+ }
350
+ );
351
+ });
352
+ }
212
353
  /**
213
354
  * Update the Agent's state
214
355
  * @param state New state to set
215
356
  */
216
357
  setState(state) {
217
- __privateMethod(this, _Agent_instances, setStateInternal_fn).call(this, state, "server");
358
+ this._setStateInternal(state, "server");
218
359
  }
219
360
  /**
220
361
  * Called when the Agent's state is updated
@@ -235,6 +376,13 @@ var Agent = class extends Server {
235
376
  }
236
377
  );
237
378
  }
379
+ async _tryCatch(fn) {
380
+ try {
381
+ return await fn();
382
+ } catch (e) {
383
+ throw this.onError(e);
384
+ }
385
+ }
238
386
  onError(connectionOrError, error) {
239
387
  let theError;
240
388
  if (connectionOrError && error) {
@@ -284,7 +432,7 @@ var Agent = class extends Server {
284
432
  payload
285
433
  )}, 'scheduled', ${timestamp})
286
434
  `;
287
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
435
+ await this._scheduleNextAlarm();
288
436
  return {
289
437
  id,
290
438
  callback,
@@ -302,7 +450,7 @@ var Agent = class extends Server {
302
450
  payload
303
451
  )}, 'delayed', ${when}, ${timestamp})
304
452
  `;
305
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
453
+ await this._scheduleNextAlarm();
306
454
  return {
307
455
  id,
308
456
  callback,
@@ -321,7 +469,7 @@ var Agent = class extends Server {
321
469
  payload
322
470
  )}, 'cron', ${when}, ${timestamp})
323
471
  `;
324
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
472
+ await this._scheduleNextAlarm();
325
473
  return {
326
474
  id,
327
475
  callback,
@@ -388,47 +536,21 @@ var Agent = class extends Server {
388
536
  */
389
537
  async cancelSchedule(id) {
390
538
  this.sql`DELETE FROM cf_agents_schedules WHERE id = ${id}`;
391
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
539
+ await this._scheduleNextAlarm();
392
540
  return true;
393
541
  }
394
- /**
395
- * Method called when an alarm fires
396
- * Executes any scheduled tasks that are due
397
- */
398
- async alarm() {
399
- const now = Math.floor(Date.now() / 1e3);
542
+ async _scheduleNextAlarm() {
400
543
  const result = this.sql`
401
- SELECT * FROM cf_agents_schedules WHERE time <= ${now}
544
+ SELECT time FROM cf_agents_schedules
545
+ WHERE time > ${Math.floor(Date.now() / 1e3)}
546
+ ORDER BY time ASC
547
+ LIMIT 1
402
548
  `;
403
- for (const row of result || []) {
404
- const callback = this[row.callback];
405
- if (!callback) {
406
- console.error(`callback ${row.callback} not found`);
407
- continue;
408
- }
409
- await agentContext.run(
410
- { agent: this, connection: void 0, request: void 0 },
411
- async () => {
412
- try {
413
- await callback.bind(this)(JSON.parse(row.payload), row);
414
- } catch (e) {
415
- console.error(`error executing callback "${row.callback}"`, e);
416
- }
417
- }
418
- );
419
- if (row.type === "cron") {
420
- const nextExecutionTime = getNextCronTime(row.cron);
421
- const nextTimestamp = Math.floor(nextExecutionTime.getTime() / 1e3);
422
- this.sql`
423
- UPDATE cf_agents_schedules SET time = ${nextTimestamp} WHERE id = ${row.id}
424
- `;
425
- } else {
426
- this.sql`
427
- DELETE FROM cf_agents_schedules WHERE id = ${row.id}
428
- `;
429
- }
549
+ if (!result) return;
550
+ if (result.length > 0 && "time" in result[0]) {
551
+ const nextTime = result[0].time * 1e3;
552
+ await this.ctx.storage.setAlarm(nextTime);
430
553
  }
431
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
432
554
  }
433
555
  /**
434
556
  * Destroy the Agent, removing all state and scheduled tasks
@@ -436,67 +558,128 @@ var Agent = class extends Server {
436
558
  async destroy() {
437
559
  this.sql`DROP TABLE IF EXISTS cf_agents_state`;
438
560
  this.sql`DROP TABLE IF EXISTS cf_agents_schedules`;
561
+ this.sql`DROP TABLE IF EXISTS cf_agents_mcp_servers`;
439
562
  await this.ctx.storage.deleteAlarm();
440
563
  await this.ctx.storage.deleteAll();
441
564
  }
442
- };
443
- _state = new WeakMap();
444
- _ParentClass = new WeakMap();
445
- _Agent_instances = new WeakSet();
446
- setStateInternal_fn = function(state, source = "server") {
447
- __privateSet(this, _state, state);
448
- this.sql`
449
- INSERT OR REPLACE INTO cf_agents_state (id, state)
450
- VALUES (${STATE_ROW_ID}, ${JSON.stringify(state)})
451
- `;
452
- this.sql`
453
- INSERT OR REPLACE INTO cf_agents_state (id, state)
454
- VALUES (${STATE_WAS_CHANGED}, ${JSON.stringify(true)})
455
- `;
456
- this.broadcast(
457
- JSON.stringify({
458
- type: "cf_agent_state",
459
- state
460
- }),
461
- source !== "server" ? [source.id] : []
462
- );
463
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => {
464
- const { connection, request } = agentContext.getStore() || {};
465
- return agentContext.run(
466
- { agent: this, connection, request },
467
- async () => {
468
- return this.onStateUpdate(state, source);
565
+ /**
566
+ * Get all methods marked as callable on this Agent
567
+ * @returns A map of method names to their metadata
568
+ */
569
+ _isCallable(method) {
570
+ return callableMetadata.has(this[method]);
571
+ }
572
+ /**
573
+ * Connect to a new MCP Server
574
+ *
575
+ * @param url MCP Server SSE URL
576
+ * @param callbackHost Base host for the agent, used for the redirect URI.
577
+ * @param agentsPrefix agents routing prefix if not using `agents`
578
+ * @param options MCP client and transport (header) options
579
+ * @returns authUrl
580
+ */
581
+ async addMcpServer(serverName, url, callbackHost, agentsPrefix = "agents", options) {
582
+ const callbackUrl = `${callbackHost}/${agentsPrefix}/${camelCaseToKebabCase(this._ParentClass.name)}/${this.name}/callback`;
583
+ const result = await this._connectToMcpServerInternal(
584
+ serverName,
585
+ url,
586
+ callbackUrl,
587
+ options
588
+ );
589
+ this.broadcast(
590
+ JSON.stringify({
591
+ type: "cf_agent_mcp_servers",
592
+ mcp: this.getMcpServers()
593
+ })
594
+ );
595
+ return result;
596
+ }
597
+ async _connectToMcpServerInternal(serverName, url, callbackUrl, options, reconnect) {
598
+ const authProvider = new DurableObjectOAuthClientProvider(
599
+ this.ctx.storage,
600
+ this.name,
601
+ callbackUrl
602
+ );
603
+ if (reconnect) {
604
+ authProvider.serverId = reconnect.id;
605
+ if (reconnect.oauthClientId) {
606
+ authProvider.clientId = reconnect.oauthClientId;
469
607
  }
608
+ }
609
+ let headerTransportOpts = {};
610
+ if (options?.transport?.headers) {
611
+ headerTransportOpts = {
612
+ eventSourceInit: {
613
+ fetch: (url2, init) => fetch(url2, {
614
+ ...init,
615
+ headers: options?.transport?.headers
616
+ })
617
+ },
618
+ requestInit: {
619
+ headers: options?.transport?.headers
620
+ }
621
+ };
622
+ }
623
+ const { id, authUrl, clientId } = await this.mcp.connect(url, {
624
+ reconnect,
625
+ transport: {
626
+ ...headerTransportOpts,
627
+ authProvider
628
+ },
629
+ client: options?.client
630
+ });
631
+ this.sql`
632
+ INSERT OR REPLACE INTO cf_agents_mcp_servers (id, name, server_url, client_id, auth_url, callback_url, server_options)
633
+ VALUES (
634
+ ${id},
635
+ ${serverName},
636
+ ${url},
637
+ ${clientId ?? null},
638
+ ${authUrl ?? null},
639
+ ${callbackUrl},
640
+ ${options ? JSON.stringify(options) : null}
641
+ );
642
+ `;
643
+ return {
644
+ id,
645
+ authUrl
646
+ };
647
+ }
648
+ async removeMcpServer(id) {
649
+ this.mcp.closeConnection(id);
650
+ this.sql`
651
+ DELETE FROM cf_agents_mcp_servers WHERE id = ${id};
652
+ `;
653
+ this.broadcast(
654
+ JSON.stringify({
655
+ type: "cf_agent_mcp_servers",
656
+ mcp: this.getMcpServers()
657
+ })
470
658
  );
471
- });
472
- };
473
- tryCatch_fn = async function(fn) {
474
- try {
475
- return await fn();
476
- } catch (e) {
477
- throw this.onError(e);
478
659
  }
479
- };
480
- scheduleNextAlarm_fn = async function() {
481
- const result = this.sql`
482
- SELECT time FROM cf_agents_schedules
483
- WHERE time > ${Math.floor(Date.now() / 1e3)}
484
- ORDER BY time ASC
485
- LIMIT 1
660
+ getMcpServers() {
661
+ const mcpState = {
662
+ servers: {},
663
+ tools: this.mcp.listTools(),
664
+ prompts: this.mcp.listPrompts(),
665
+ resources: this.mcp.listResources()
666
+ };
667
+ const servers = this.sql`
668
+ SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
486
669
  `;
487
- if (!result) return;
488
- if (result.length > 0 && "time" in result[0]) {
489
- const nextTime = result[0].time * 1e3;
490
- await this.ctx.storage.setAlarm(nextTime);
670
+ for (const server of servers) {
671
+ mcpState.servers[server.id] = {
672
+ name: server.name,
673
+ server_url: server.server_url,
674
+ auth_url: server.auth_url,
675
+ state: this.mcp.mcpConnections[server.id].connectionState,
676
+ instructions: this.mcp.mcpConnections[server.id].instructions ?? null,
677
+ capabilities: this.mcp.mcpConnections[server.id].serverCapabilities ?? null
678
+ };
679
+ }
680
+ return mcpState;
491
681
  }
492
682
  };
493
- /**
494
- * Get all methods marked as callable on this Agent
495
- * @returns A map of method names to their metadata
496
- */
497
- isCallable_fn = function(method) {
498
- return callableMetadata.has(this[method]);
499
- };
500
683
  /**
501
684
  * Agent configuration options
502
685
  */
@@ -542,57 +725,51 @@ async function routeAgentRequest(request, env, options) {
542
725
  }
543
726
  async function routeAgentEmail(email, env, options) {
544
727
  }
545
- function getAgentByName(namespace, name, options) {
728
+ async function getAgentByName(namespace, name, options) {
546
729
  return getServerByName(namespace, name, options);
547
730
  }
548
- var _connection, _id, _closed;
549
731
  var StreamingResponse = class {
550
732
  constructor(connection, id) {
551
- __privateAdd(this, _connection);
552
- __privateAdd(this, _id);
553
- __privateAdd(this, _closed, false);
554
- __privateSet(this, _connection, connection);
555
- __privateSet(this, _id, id);
733
+ this._closed = false;
734
+ this._connection = connection;
735
+ this._id = id;
556
736
  }
557
737
  /**
558
738
  * Send a chunk of data to the client
559
739
  * @param chunk The data to send
560
740
  */
561
741
  send(chunk) {
562
- if (__privateGet(this, _closed)) {
742
+ if (this._closed) {
563
743
  throw new Error("StreamingResponse is already closed");
564
744
  }
565
745
  const response = {
566
746
  type: "rpc",
567
- id: __privateGet(this, _id),
747
+ id: this._id,
568
748
  success: true,
569
749
  result: chunk,
570
750
  done: false
571
751
  };
572
- __privateGet(this, _connection).send(JSON.stringify(response));
752
+ this._connection.send(JSON.stringify(response));
573
753
  }
574
754
  /**
575
755
  * End the stream and send the final chunk (if any)
576
756
  * @param finalChunk Optional final chunk of data to send
577
757
  */
578
758
  end(finalChunk) {
579
- if (__privateGet(this, _closed)) {
759
+ if (this._closed) {
580
760
  throw new Error("StreamingResponse is already closed");
581
761
  }
582
- __privateSet(this, _closed, true);
762
+ this._closed = true;
583
763
  const response = {
584
764
  type: "rpc",
585
- id: __privateGet(this, _id),
765
+ id: this._id,
586
766
  success: true,
587
767
  result: finalChunk,
588
768
  done: true
589
769
  };
590
- __privateGet(this, _connection).send(JSON.stringify(response));
770
+ this._connection.send(JSON.stringify(response));
591
771
  }
592
772
  };
593
- _connection = new WeakMap();
594
- _id = new WeakMap();
595
- _closed = new WeakMap();
596
773
 
597
774
  export {
598
775
  unstable_callable,
@@ -603,4 +780,4 @@ export {
603
780
  getAgentByName,
604
781
  StreamingResponse
605
782
  };
606
- //# sourceMappingURL=chunk-UAKVEVG5.js.map
783
+ //# sourceMappingURL=chunk-J6T74FUS.js.map