@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.
- package/package.json +2 -2
- package/dist/actions/choice.d.ts +0 -13
- package/dist/actions/followRoom.d.ts +0 -20
- package/dist/actions/ignore.d.ts +0 -13
- package/dist/actions/muteRoom.d.ts +0 -22
- package/dist/actions/none.d.ts +0 -9
- package/dist/actions/reply.d.ts +0 -15
- package/dist/actions/roles.d.ts +0 -13
- package/dist/actions/sendMessage.d.ts +0 -14
- package/dist/actions/settings.d.ts +0 -21
- package/dist/actions/unfollowRoom.d.ts +0 -12
- package/dist/actions/unmuteRoom.d.ts +0 -18
- package/dist/actions/updateEntity.d.ts +0 -42
- package/dist/actions.d.ts +0 -28
- package/dist/bootstrap.d.ts +0 -3
- package/dist/database.d.ts +0 -419
- package/dist/entities.d.ts +0 -48
- package/dist/environment.d.ts +0 -403
- package/dist/evaluators/reflection.d.ts +0 -2
- package/dist/import.d.ts +0 -9
- package/dist/index.d.ts +0 -13
- package/dist/logger.d.ts +0 -3
- package/dist/memory.d.ts +0 -114
- package/dist/prompts.d.ts +0 -200
- package/dist/providers/actions.d.ts +0 -14
- package/dist/providers/anxiety.d.ts +0 -9
- package/dist/providers/attachments.d.ts +0 -8
- package/dist/providers/capabilities.d.ts +0 -13
- package/dist/providers/character.d.ts +0 -9
- package/dist/providers/choice.d.ts +0 -10
- package/dist/providers/entities.d.ts +0 -2
- package/dist/providers/evaluators.d.ts +0 -26
- package/dist/providers/facts.d.ts +0 -10
- package/dist/providers/knowledge.d.ts +0 -13
- package/dist/providers/providers.d.ts +0 -6
- package/dist/providers/recentMessages.d.ts +0 -13
- package/dist/providers/relationships.d.ts +0 -14
- package/dist/providers/roles.d.ts +0 -14
- package/dist/providers/settings.d.ts +0 -6
- package/dist/providers/shouldRespond.d.ts +0 -6
- package/dist/providers/time.d.ts +0 -11
- package/dist/roles.d.ts +0 -25
- package/dist/runtime.d.ts +0 -290
- package/dist/services/scenario.d.ts +0 -106
- package/dist/services/task.d.ts +0 -72
- package/dist/settings.d.ts +0 -13
- package/dist/test_resources/constants.d.ts +0 -9
- package/dist/test_resources/testSetup.d.ts +0 -1
- package/dist/test_resources/types.d.ts +0 -22
- package/dist/types.d.ts +0 -1294
- 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;
|