@elizaos/core 1.0.6 → 1.0.7

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.
@@ -5450,57 +5450,13 @@ var DatabaseAdapter = class {
5450
5450
  }
5451
5451
  };
5452
5452
 
5453
- // src/types.ts
5453
+ // src/types/primitives.ts
5454
5454
  function asUUID2(id) {
5455
5455
  if (!id || !/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(id)) {
5456
5456
  throw new Error(`Invalid UUID format: ${id}`);
5457
5457
  }
5458
5458
  return id;
5459
5459
  }
5460
- var ModelType2 = {
5461
- SMALL: "TEXT_SMALL",
5462
- // kept for backwards compatibility
5463
- MEDIUM: "TEXT_LARGE",
5464
- // kept for backwards compatibility
5465
- LARGE: "TEXT_LARGE",
5466
- // kept for backwards compatibility
5467
- TEXT_SMALL: "TEXT_SMALL",
5468
- TEXT_LARGE: "TEXT_LARGE",
5469
- TEXT_EMBEDDING: "TEXT_EMBEDDING",
5470
- TEXT_TOKENIZER_ENCODE: "TEXT_TOKENIZER_ENCODE",
5471
- TEXT_TOKENIZER_DECODE: "TEXT_TOKENIZER_DECODE",
5472
- TEXT_REASONING_SMALL: "REASONING_SMALL",
5473
- TEXT_REASONING_LARGE: "REASONING_LARGE",
5474
- TEXT_COMPLETION: "TEXT_COMPLETION",
5475
- IMAGE: "IMAGE",
5476
- IMAGE_DESCRIPTION: "IMAGE_DESCRIPTION",
5477
- TRANSCRIPTION: "TRANSCRIPTION",
5478
- TEXT_TO_SPEECH: "TEXT_TO_SPEECH",
5479
- AUDIO: "AUDIO",
5480
- VIDEO: "VIDEO",
5481
- OBJECT_SMALL: "OBJECT_SMALL",
5482
- OBJECT_LARGE: "OBJECT_LARGE"
5483
- };
5484
- var ServiceType3 = {
5485
- TRANSCRIPTION: "transcription",
5486
- VIDEO: "video",
5487
- BROWSER: "browser",
5488
- PDF: "pdf",
5489
- REMOTE_FILES: "aws_s3",
5490
- WEB_SEARCH: "web_search",
5491
- EMAIL: "email",
5492
- TEE: "tee",
5493
- TASK: "task",
5494
- INSTRUMENTATION: "instrumentation"
5495
- };
5496
- var MemoryType2 = /* @__PURE__ */ ((MemoryType3) => {
5497
- MemoryType3["DOCUMENT"] = "document";
5498
- MemoryType3["FRAGMENT"] = "fragment";
5499
- MemoryType3["MESSAGE"] = "message";
5500
- MemoryType3["DESCRIPTION"] = "description";
5501
- MemoryType3["CUSTOM"] = "custom";
5502
- return MemoryType3;
5503
- })(MemoryType2 || {});
5504
5460
  var ContentType2 = /* @__PURE__ */ ((ContentType3) => {
5505
5461
  ContentType3["IMAGE"] = "image";
5506
5462
  ContentType3["VIDEO"] = "video";
@@ -5509,6 +5465,70 @@ var ContentType2 = /* @__PURE__ */ ((ContentType3) => {
5509
5465
  ContentType3["LINK"] = "link";
5510
5466
  return ContentType3;
5511
5467
  })(ContentType2 || {});
5468
+
5469
+ // src/types/memory.ts
5470
+ var MemoryType2 = /* @__PURE__ */ ((MemoryType3) => {
5471
+ MemoryType3["DOCUMENT"] = "document";
5472
+ MemoryType3["FRAGMENT"] = "fragment";
5473
+ MemoryType3["MESSAGE"] = "message";
5474
+ MemoryType3["DESCRIPTION"] = "description";
5475
+ MemoryType3["CUSTOM"] = "custom";
5476
+ return MemoryType3;
5477
+ })(MemoryType2 || {});
5478
+ function createMessageMemory2(params) {
5479
+ return {
5480
+ ...params,
5481
+ createdAt: Date.now(),
5482
+ metadata: {
5483
+ type: "message" /* MESSAGE */,
5484
+ timestamp: Date.now(),
5485
+ scope: params.agentId ? "private" : "shared"
5486
+ }
5487
+ };
5488
+ }
5489
+ function isDocumentMetadata2(metadata) {
5490
+ return metadata.type === "document" /* DOCUMENT */;
5491
+ }
5492
+ function isFragmentMetadata2(metadata) {
5493
+ return metadata.type === "fragment" /* FRAGMENT */;
5494
+ }
5495
+ function isMessageMetadata2(metadata) {
5496
+ return metadata.type === "message" /* MESSAGE */;
5497
+ }
5498
+ function isDescriptionMetadata2(metadata) {
5499
+ return metadata.type === "description" /* DESCRIPTION */;
5500
+ }
5501
+ function isCustomMetadata2(metadata) {
5502
+ return metadata.type !== "document" /* DOCUMENT */ && metadata.type !== "fragment" /* FRAGMENT */ && metadata.type !== "message" /* MESSAGE */ && metadata.type !== "description" /* DESCRIPTION */;
5503
+ }
5504
+ function isDocumentMemory2(memory) {
5505
+ return memory.metadata?.type === "document" /* DOCUMENT */;
5506
+ }
5507
+ function isFragmentMemory2(memory) {
5508
+ return memory.metadata?.type === "fragment" /* FRAGMENT */;
5509
+ }
5510
+ function getMemoryText2(memory, defaultValue = "") {
5511
+ return memory.content.text ?? defaultValue;
5512
+ }
5513
+
5514
+ // src/types/knowledge.ts
5515
+ var KnowledgeScope3 = /* @__PURE__ */ ((KnowledgeScope4) => {
5516
+ KnowledgeScope4["SHARED"] = "shared";
5517
+ KnowledgeScope4["PRIVATE"] = "private";
5518
+ return KnowledgeScope4;
5519
+ })(KnowledgeScope3 || {});
5520
+ var CacheKeyPrefix3 = /* @__PURE__ */ ((CacheKeyPrefix4) => {
5521
+ CacheKeyPrefix4["KNOWLEDGE"] = "knowledge";
5522
+ return CacheKeyPrefix4;
5523
+ })(CacheKeyPrefix3 || {});
5524
+
5525
+ // src/types/environment.ts
5526
+ var Role2 = /* @__PURE__ */ ((Role3) => {
5527
+ Role3["OWNER"] = "OWNER";
5528
+ Role3["ADMIN"] = "ADMIN";
5529
+ Role3["NONE"] = "NONE";
5530
+ return Role3;
5531
+ })(Role2 || {});
5512
5532
  var ChannelType2 = /* @__PURE__ */ ((ChannelType4) => {
5513
5533
  ChannelType4["SELF"] = "SELF";
5514
5534
  ChannelType4["DM"] = "DM";
@@ -5522,6 +5542,30 @@ var ChannelType2 = /* @__PURE__ */ ((ChannelType4) => {
5522
5542
  ChannelType4["API"] = "API";
5523
5543
  return ChannelType4;
5524
5544
  })(ChannelType2 || {});
5545
+
5546
+ // src/types/agent.ts
5547
+ var AgentStatus2 = /* @__PURE__ */ ((AgentStatus3) => {
5548
+ AgentStatus3["ACTIVE"] = "active";
5549
+ AgentStatus3["INACTIVE"] = "inactive";
5550
+ return AgentStatus3;
5551
+ })(AgentStatus2 || {});
5552
+
5553
+ // src/types/service.ts
5554
+ var ServiceType3 = {
5555
+ TRANSCRIPTION: "transcription",
5556
+ VIDEO: "video",
5557
+ BROWSER: "browser",
5558
+ PDF: "pdf",
5559
+ REMOTE_FILES: "aws_s3",
5560
+ WEB_SEARCH: "web_search",
5561
+ EMAIL: "email",
5562
+ TEE: "tee",
5563
+ TASK: "task",
5564
+ INSTRUMENTATION: "instrumentation",
5565
+ WALLET: "wallet",
5566
+ LP_POOL: "lp_pool",
5567
+ TOKEN_DATA: "token_data"
5568
+ };
5525
5569
  var Service3 = class {
5526
5570
  constructor(runtime) {
5527
5571
  if (runtime) {
@@ -5537,37 +5581,60 @@ var Service3 = class {
5537
5581
  throw new Error("Not implemented");
5538
5582
  }
5539
5583
  };
5540
- var AgentStatus2 = /* @__PURE__ */ ((AgentStatus3) => {
5541
- AgentStatus3["ACTIVE"] = "active";
5542
- AgentStatus3["INACTIVE"] = "inactive";
5543
- return AgentStatus3;
5544
- })(AgentStatus2 || {});
5545
- var KnowledgeScope3 = /* @__PURE__ */ ((KnowledgeScope4) => {
5546
- KnowledgeScope4["SHARED"] = "shared";
5547
- KnowledgeScope4["PRIVATE"] = "private";
5548
- return KnowledgeScope4;
5549
- })(KnowledgeScope3 || {});
5550
- var CacheKeyPrefix3 = /* @__PURE__ */ ((CacheKeyPrefix4) => {
5551
- CacheKeyPrefix4["KNOWLEDGE"] = "knowledge";
5552
- return CacheKeyPrefix4;
5553
- })(CacheKeyPrefix3 || {});
5554
- var TEEMode2 = /* @__PURE__ */ ((TEEMode3) => {
5555
- TEEMode3["OFF"] = "OFF";
5556
- TEEMode3["LOCAL"] = "LOCAL";
5557
- TEEMode3["DOCKER"] = "DOCKER";
5558
- TEEMode3["PRODUCTION"] = "PRODUCTION";
5559
- return TEEMode3;
5560
- })(TEEMode2 || {});
5561
- var TeeType2 = /* @__PURE__ */ ((TeeType3) => {
5562
- TeeType3["TDX_DSTACK"] = "tdx_dstack";
5563
- return TeeType3;
5564
- })(TeeType2 || {});
5565
- var Role2 = /* @__PURE__ */ ((Role3) => {
5566
- Role3["OWNER"] = "OWNER";
5567
- Role3["ADMIN"] = "ADMIN";
5568
- Role3["NONE"] = "NONE";
5569
- return Role3;
5570
- })(Role2 || {});
5584
+ function getTypedService2(runtime, serviceType) {
5585
+ return runtime.getService(serviceType);
5586
+ }
5587
+ function createServiceError2(error, code = "UNKNOWN_ERROR") {
5588
+ if (error instanceof Error) {
5589
+ return {
5590
+ code,
5591
+ message: error.message,
5592
+ cause: error
5593
+ };
5594
+ }
5595
+ return {
5596
+ code,
5597
+ message: String(error)
5598
+ };
5599
+ }
5600
+
5601
+ // src/types/model.ts
5602
+ var ModelType2 = {
5603
+ SMALL: "TEXT_SMALL",
5604
+ // kept for backwards compatibility
5605
+ MEDIUM: "TEXT_LARGE",
5606
+ // kept for backwards compatibility
5607
+ LARGE: "TEXT_LARGE",
5608
+ // kept for backwards compatibility
5609
+ TEXT_SMALL: "TEXT_SMALL",
5610
+ TEXT_LARGE: "TEXT_LARGE",
5611
+ TEXT_EMBEDDING: "TEXT_EMBEDDING",
5612
+ TEXT_TOKENIZER_ENCODE: "TEXT_TOKENIZER_ENCODE",
5613
+ TEXT_TOKENIZER_DECODE: "TEXT_TOKENIZER_DECODE",
5614
+ TEXT_REASONING_SMALL: "REASONING_SMALL",
5615
+ TEXT_REASONING_LARGE: "REASONING_LARGE",
5616
+ TEXT_COMPLETION: "TEXT_COMPLETION",
5617
+ IMAGE: "IMAGE",
5618
+ IMAGE_DESCRIPTION: "IMAGE_DESCRIPTION",
5619
+ TRANSCRIPTION: "TRANSCRIPTION",
5620
+ TEXT_TO_SPEECH: "TEXT_TO_SPEECH",
5621
+ AUDIO: "AUDIO",
5622
+ VIDEO: "VIDEO",
5623
+ OBJECT_SMALL: "OBJECT_SMALL",
5624
+ OBJECT_LARGE: "OBJECT_LARGE"
5625
+ };
5626
+
5627
+ // src/types/database.ts
5628
+ var VECTOR_DIMS2 = {
5629
+ SMALL: 384,
5630
+ MEDIUM: 512,
5631
+ LARGE: 768,
5632
+ XL: 1024,
5633
+ XXL: 1536,
5634
+ XXXL: 3072
5635
+ };
5636
+
5637
+ // src/types/events.ts
5571
5638
  var EventType2 = /* @__PURE__ */ ((EventType3) => {
5572
5639
  EventType3["WORLD_JOINED"] = "WORLD_JOINED";
5573
5640
  EventType3["WORLD_CONNECTED"] = "WORLD_CONNECTED";
@@ -5600,6 +5667,21 @@ var PlatformPrefix2 = /* @__PURE__ */ ((PlatformPrefix3) => {
5600
5667
  PlatformPrefix3["TWITTER"] = "TWITTER";
5601
5668
  return PlatformPrefix3;
5602
5669
  })(PlatformPrefix2 || {});
5670
+
5671
+ // src/types/tee.ts
5672
+ var TEEMode2 = /* @__PURE__ */ ((TEEMode3) => {
5673
+ TEEMode3["OFF"] = "OFF";
5674
+ TEEMode3["LOCAL"] = "LOCAL";
5675
+ TEEMode3["DOCKER"] = "DOCKER";
5676
+ TEEMode3["PRODUCTION"] = "PRODUCTION";
5677
+ return TEEMode3;
5678
+ })(TEEMode2 || {});
5679
+ var TeeType2 = /* @__PURE__ */ ((TeeType3) => {
5680
+ TeeType3["TDX_DSTACK"] = "tdx_dstack";
5681
+ return TeeType3;
5682
+ })(TeeType2 || {});
5683
+
5684
+ // src/types/messaging.ts
5603
5685
  var SOCKET_MESSAGE_TYPE2 = /* @__PURE__ */ ((SOCKET_MESSAGE_TYPE3) => {
5604
5686
  SOCKET_MESSAGE_TYPE3[SOCKET_MESSAGE_TYPE3["ROOM_JOINING"] = 1] = "ROOM_JOINING";
5605
5687
  SOCKET_MESSAGE_TYPE3[SOCKET_MESSAGE_TYPE3["SEND_MESSAGE"] = 2] = "SEND_MESSAGE";
@@ -5609,64 +5691,27 @@ var SOCKET_MESSAGE_TYPE2 = /* @__PURE__ */ ((SOCKET_MESSAGE_TYPE3) => {
5609
5691
  SOCKET_MESSAGE_TYPE3[SOCKET_MESSAGE_TYPE3["CONTROL"] = 6] = "CONTROL";
5610
5692
  return SOCKET_MESSAGE_TYPE3;
5611
5693
  })(SOCKET_MESSAGE_TYPE2 || {});
5612
- function createMessageMemory2(params) {
5613
- return {
5614
- ...params,
5615
- createdAt: Date.now(),
5616
- metadata: {
5617
- type: "message" /* MESSAGE */,
5618
- timestamp: Date.now(),
5619
- scope: params.agentId ? "private" : "shared"
5620
- }
5621
- };
5622
- }
5623
- function getTypedService2(runtime, serviceType) {
5624
- return runtime.getService(serviceType);
5625
- }
5626
- function isDocumentMetadata2(metadata) {
5627
- return metadata.type === "document" /* DOCUMENT */;
5628
- }
5629
- function isFragmentMetadata2(metadata) {
5630
- return metadata.type === "fragment" /* FRAGMENT */;
5631
- }
5632
- function isMessageMetadata2(metadata) {
5633
- return metadata.type === "message" /* MESSAGE */;
5634
- }
5635
- function isDescriptionMetadata2(metadata) {
5636
- return metadata.type === "description" /* DESCRIPTION */;
5637
- }
5638
- function isCustomMetadata2(metadata) {
5639
- return metadata.type !== "document" /* DOCUMENT */ && metadata.type !== "fragment" /* FRAGMENT */ && metadata.type !== "message" /* MESSAGE */ && metadata.type !== "description" /* DESCRIPTION */;
5640
- }
5641
- function isDocumentMemory2(memory) {
5642
- return memory.metadata?.type === "document" /* DOCUMENT */;
5643
- }
5644
- function isFragmentMemory2(memory) {
5645
- return memory.metadata?.type === "fragment" /* FRAGMENT */;
5646
- }
5647
- function getMemoryText2(memory, defaultValue = "") {
5648
- return memory.content.text ?? defaultValue;
5649
- }
5650
- function createServiceError2(error, code = "UNKNOWN_ERROR") {
5651
- if (error instanceof Error) {
5652
- return {
5653
- code,
5654
- message: error.message,
5655
- cause: error
5656
- };
5694
+
5695
+ // src/types/wallet.ts
5696
+ var IWalletService = class extends Service3 {
5697
+ constructor() {
5698
+ super(...arguments);
5699
+ this.capabilityDescription = "Provides standardized access to wallet balances and portfolios.";
5700
+ }
5701
+ static {
5702
+ this.serviceType = "wallet";
5703
+ }
5704
+ };
5705
+
5706
+ // src/types/lp.ts
5707
+ var ILpService = class extends Service3 {
5708
+ constructor() {
5709
+ super(...arguments);
5710
+ this.capabilityDescription = "Provides standardized access to DEX liquidity pools.";
5711
+ }
5712
+ static {
5713
+ this.serviceType = "lp";
5657
5714
  }
5658
- return {
5659
- code,
5660
- message: String(error)
5661
- };
5662
- }
5663
- var VECTOR_DIMS2 = {
5664
- SMALL: 384,
5665
- MEDIUM: 512,
5666
- LARGE: 768,
5667
- XL: 1024,
5668
- XXL: 1536,
5669
- XXXL: 3072
5670
5715
  };
5671
5716
 
5672
5717
  // src/actions.ts
@@ -6308,35 +6353,30 @@ var createLogger = (bindings = false) => {
6308
6353
  var logger = pino(options);
6309
6354
  if (typeof process !== "undefined") {
6310
6355
  let stream = null;
6356
+ let destination;
6311
6357
  if (!raw) {
6312
6358
  try {
6313
6359
  const pretty = __require("pino-pretty");
6314
6360
  stream = pretty.default ? pretty.default(createPrettyConfig()) : null;
6315
6361
  } catch (e) {
6316
6362
  createStream().then((prettyStream) => {
6317
- const destination = new InMemoryDestination(prettyStream);
6318
- logger = pino(options, destination);
6319
- logger[Symbol.for("pino-destination")] = destination;
6320
- logger.clear = () => {
6321
- const destination2 = logger[Symbol.for("pino-destination")];
6322
- if (destination2 instanceof InMemoryDestination) {
6323
- destination2.clear();
6324
- }
6325
- };
6363
+ if (destination) {
6364
+ destination.stream = prettyStream;
6365
+ }
6366
+ }).catch((error) => {
6367
+ console.warn("Failed to load pino-pretty asynchronously:", error.message);
6326
6368
  });
6327
6369
  }
6328
6370
  }
6329
- if (stream !== null || raw) {
6330
- const destination = new InMemoryDestination(stream);
6331
- logger = pino(options, destination);
6332
- logger[Symbol.for("pino-destination")] = destination;
6333
- logger.clear = () => {
6334
- const destination2 = logger[Symbol.for("pino-destination")];
6335
- if (destination2 instanceof InMemoryDestination) {
6336
- destination2.clear();
6337
- }
6338
- };
6339
- }
6371
+ destination = new InMemoryDestination(stream);
6372
+ logger = pino(options, destination);
6373
+ logger[Symbol.for("pino-destination")] = destination;
6374
+ logger.clear = () => {
6375
+ const destination2 = logger[Symbol.for("pino-destination")];
6376
+ if (destination2 instanceof InMemoryDestination) {
6377
+ destination2.clear();
6378
+ }
6379
+ };
6340
6380
  }
6341
6381
  var elizaLogger = logger;
6342
6382
  var logger_default = logger;
@@ -8334,9 +8374,7 @@ var AgentRuntime = class {
8334
8374
  try {
8335
8375
  await this.adapter.init();
8336
8376
  span.addEvent("adapter_initialized");
8337
- const existingAgent = await this.adapter.ensureAgentExists(
8338
- this.character
8339
- );
8377
+ const existingAgent = await this.ensureAgentExists(this.character);
8340
8378
  span.addEvent("agent_exists_verified");
8341
8379
  if (!existingAgent) {
8342
8380
  const errorMsg = `Agent ${this.character.name} does not exist in database after ensureAgentExists call`;
@@ -9468,7 +9506,35 @@ var AgentRuntime = class {
9468
9506
  return await this.adapter.deleteAgent(agentId);
9469
9507
  }
9470
9508
  async ensureAgentExists(agent) {
9471
- return await this.adapter.ensureAgentExists(agent);
9509
+ if (!agent.name) {
9510
+ throw new Error("Agent name is required");
9511
+ }
9512
+ const agents = await this.adapter.getAgents();
9513
+ const existingAgentId = agents.find((a) => a.name === agent.name)?.id;
9514
+ if (existingAgentId) {
9515
+ const updatedAgent = {
9516
+ ...agent,
9517
+ id: existingAgentId,
9518
+ updatedAt: Date.now()
9519
+ };
9520
+ await this.adapter.updateAgent(existingAgentId, updatedAgent);
9521
+ const existingAgent = await this.adapter.getAgent(existingAgentId);
9522
+ if (!existingAgent) {
9523
+ throw new Error(`Failed to retrieve agent after update: ${existingAgentId}`);
9524
+ }
9525
+ this.logger.debug(`Updated existing agent ${agent.name} on restart`);
9526
+ return existingAgent;
9527
+ }
9528
+ const newAgent = {
9529
+ ...agent,
9530
+ id: stringToUuid(agent.name)
9531
+ };
9532
+ const created = await this.adapter.createAgent(newAgent);
9533
+ if (!created) {
9534
+ throw new Error(`Failed to create agent: ${agent.name}`);
9535
+ }
9536
+ this.logger.debug(`Created new agent ${agent.name}`);
9537
+ return newAgent;
9472
9538
  }
9473
9539
  async getEntityById(entityId) {
9474
9540
  const entities = await this.adapter.getEntityByIds([entityId]);
@@ -9783,6 +9849,9 @@ var AgentRuntime = class {
9783
9849
  }
9784
9850
  };
9785
9851
 
9852
+ // src/types/token.ts
9853
+ var TOKEN_DATA_SERVICE_NAME = "TokenDataService";
9854
+
9786
9855
  // src/settings.ts
9787
9856
  import crypto from "crypto-browserify";
9788
9857
  function createSettingFromConfig(configSetting) {
@@ -11359,23 +11428,9 @@ function defineService2(definition) {
11359
11428
 
11360
11429
  export {
11361
11430
  asUUID2 as asUUID,
11362
- ModelType2 as ModelType,
11363
- ServiceType3 as ServiceType,
11364
- MemoryType2 as MemoryType,
11365
11431
  ContentType2 as ContentType,
11366
- ChannelType2 as ChannelType,
11367
- Service3 as Service,
11368
- AgentStatus2 as AgentStatus,
11369
- KnowledgeScope3 as KnowledgeScope,
11370
- CacheKeyPrefix3 as CacheKeyPrefix,
11371
- TEEMode2 as TEEMode,
11372
- TeeType2 as TeeType,
11373
- Role2 as Role,
11374
- EventType2 as EventType,
11375
- PlatformPrefix2 as PlatformPrefix,
11376
- SOCKET_MESSAGE_TYPE2 as SOCKET_MESSAGE_TYPE,
11432
+ MemoryType2 as MemoryType,
11377
11433
  createMessageMemory2 as createMessageMemory,
11378
- getTypedService2 as getTypedService,
11379
11434
  isDocumentMetadata2 as isDocumentMetadata,
11380
11435
  isFragmentMetadata2 as isFragmentMetadata,
11381
11436
  isMessageMetadata2 as isMessageMetadata,
@@ -11384,8 +11439,24 @@ export {
11384
11439
  isDocumentMemory2 as isDocumentMemory,
11385
11440
  isFragmentMemory2 as isFragmentMemory,
11386
11441
  getMemoryText2 as getMemoryText,
11442
+ KnowledgeScope3 as KnowledgeScope,
11443
+ CacheKeyPrefix3 as CacheKeyPrefix,
11444
+ Role2 as Role,
11445
+ ChannelType2 as ChannelType,
11446
+ AgentStatus2 as AgentStatus,
11447
+ ServiceType3 as ServiceType,
11448
+ Service3 as Service,
11449
+ getTypedService2 as getTypedService,
11387
11450
  createServiceError2 as createServiceError,
11451
+ ModelType2 as ModelType,
11388
11452
  VECTOR_DIMS2 as VECTOR_DIMS,
11453
+ EventType2 as EventType,
11454
+ PlatformPrefix2 as PlatformPrefix,
11455
+ TEEMode2 as TEEMode,
11456
+ TeeType2 as TeeType,
11457
+ SOCKET_MESSAGE_TYPE2 as SOCKET_MESSAGE_TYPE,
11458
+ IWalletService,
11459
+ ILpService,
11389
11460
  composeActionExamples2 as composeActionExamples,
11390
11461
  formatActionNames2 as formatActionNames,
11391
11462
  formatActions2 as formatActions,
@@ -11424,6 +11495,7 @@ export {
11424
11495
  InstrumentationService,
11425
11496
  Semaphore,
11426
11497
  AgentRuntime,
11498
+ TOKEN_DATA_SERVICE_NAME,
11427
11499
  createSettingFromConfig,
11428
11500
  getSalt,
11429
11501
  encryptStringValue,