@elizaos/core 1.0.0-alpha.48 → 1.0.0-alpha.49

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.
Files changed (51) hide show
  1. package/package.json +2 -2
  2. package/dist/actions/choice.d.ts +0 -13
  3. package/dist/actions/followRoom.d.ts +0 -20
  4. package/dist/actions/ignore.d.ts +0 -13
  5. package/dist/actions/muteRoom.d.ts +0 -22
  6. package/dist/actions/none.d.ts +0 -9
  7. package/dist/actions/reply.d.ts +0 -15
  8. package/dist/actions/roles.d.ts +0 -13
  9. package/dist/actions/sendMessage.d.ts +0 -14
  10. package/dist/actions/settings.d.ts +0 -21
  11. package/dist/actions/unfollowRoom.d.ts +0 -12
  12. package/dist/actions/unmuteRoom.d.ts +0 -18
  13. package/dist/actions/updateEntity.d.ts +0 -42
  14. package/dist/actions.d.ts +0 -28
  15. package/dist/bootstrap.d.ts +0 -3
  16. package/dist/database.d.ts +0 -419
  17. package/dist/entities.d.ts +0 -48
  18. package/dist/environment.d.ts +0 -403
  19. package/dist/evaluators/reflection.d.ts +0 -2
  20. package/dist/import.d.ts +0 -9
  21. package/dist/index.d.ts +0 -13
  22. package/dist/logger.d.ts +0 -3
  23. package/dist/memory.d.ts +0 -114
  24. package/dist/prompts.d.ts +0 -200
  25. package/dist/providers/actions.d.ts +0 -14
  26. package/dist/providers/anxiety.d.ts +0 -9
  27. package/dist/providers/attachments.d.ts +0 -8
  28. package/dist/providers/capabilities.d.ts +0 -13
  29. package/dist/providers/character.d.ts +0 -9
  30. package/dist/providers/choice.d.ts +0 -10
  31. package/dist/providers/entities.d.ts +0 -2
  32. package/dist/providers/evaluators.d.ts +0 -26
  33. package/dist/providers/facts.d.ts +0 -10
  34. package/dist/providers/knowledge.d.ts +0 -13
  35. package/dist/providers/providers.d.ts +0 -6
  36. package/dist/providers/recentMessages.d.ts +0 -13
  37. package/dist/providers/relationships.d.ts +0 -14
  38. package/dist/providers/roles.d.ts +0 -14
  39. package/dist/providers/settings.d.ts +0 -6
  40. package/dist/providers/shouldRespond.d.ts +0 -6
  41. package/dist/providers/time.d.ts +0 -11
  42. package/dist/roles.d.ts +0 -25
  43. package/dist/runtime.d.ts +0 -290
  44. package/dist/services/scenario.d.ts +0 -106
  45. package/dist/services/task.d.ts +0 -72
  46. package/dist/settings.d.ts +0 -13
  47. package/dist/test_resources/constants.d.ts +0 -9
  48. package/dist/test_resources/testSetup.d.ts +0 -1
  49. package/dist/test_resources/types.d.ts +0 -22
  50. package/dist/types.d.ts +0 -1294
  51. package/dist/uuid.d.ts +0 -18
package/dist/uuid.d.ts DELETED
@@ -1,18 +0,0 @@
1
- import { z } from "zod";
2
- import type { UUID } from "./types";
3
- export declare const uuidSchema: z.ZodType<UUID>;
4
- /**
5
- * Validates a UUID value.
6
- *
7
- * @param {unknown} value - The value to validate.
8
- * @returns {UUID | null} Returns the validated UUID value or null if validation fails.
9
- */
10
- export declare function validateUuid(value: unknown): UUID | null;
11
- /**
12
- * Converts a string or number to a UUID.
13
- *
14
- * @param {string | number} target - The string or number to convert to a UUID.
15
- * @returns {UUID} The UUID generated from the input target.
16
- * @throws {TypeError} Throws an error if the input target is not a string.
17
- */
18
- export declare function stringToUuid(target: string | number): UUID;