@elizaos/core 1.0.0-alpha.34 → 1.0.0-alpha.36
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.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +4 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -201,6 +201,11 @@ var PlatformPrefix = /* @__PURE__ */ ((PlatformPrefix2) => {
|
|
|
201
201
|
PlatformPrefix2["TWITTER"] = "TWITTER";
|
|
202
202
|
return PlatformPrefix2;
|
|
203
203
|
})(PlatformPrefix || {});
|
|
204
|
+
var SOCKET_MESSAGE_TYPE = /* @__PURE__ */ ((SOCKET_MESSAGE_TYPE2) => {
|
|
205
|
+
SOCKET_MESSAGE_TYPE2[SOCKET_MESSAGE_TYPE2["ROOM_JOINING"] = 1] = "ROOM_JOINING";
|
|
206
|
+
SOCKET_MESSAGE_TYPE2[SOCKET_MESSAGE_TYPE2["SEND_MESSAGE"] = 2] = "SEND_MESSAGE";
|
|
207
|
+
return SOCKET_MESSAGE_TYPE2;
|
|
208
|
+
})(SOCKET_MESSAGE_TYPE || {});
|
|
204
209
|
|
|
205
210
|
// src/actions.ts
|
|
206
211
|
import { names, uniqueNamesGenerator } from "unique-names-generator";
|
|
@@ -12520,6 +12525,7 @@ export {
|
|
|
12520
12525
|
PlatformPrefix,
|
|
12521
12526
|
PluginSchema,
|
|
12522
12527
|
Role,
|
|
12528
|
+
SOCKET_MESSAGE_TYPE,
|
|
12523
12529
|
Service,
|
|
12524
12530
|
ServiceTypes,
|
|
12525
12531
|
TEEMode,
|