@mastra/dynamodb 1.3.2 → 1.3.3-alpha.0
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/LICENSE.md +6 -4
- package/dist/docs/SKILL.md +2 -2
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/integrations-databases-dynamodb.md +2 -0
- package/dist/entities/background-task.d.ts +31 -31
- package/dist/entities/background-task.d.ts.map +1 -1
- package/dist/entities/eval.d.ts +31 -31
- package/dist/entities/eval.d.ts.map +1 -1
- package/dist/entities/index.d.ts +212 -212
- package/dist/entities/message.d.ts +31 -31
- package/dist/entities/message.d.ts.map +1 -1
- package/dist/entities/resource.d.ts +18 -18
- package/dist/entities/resource.d.ts.map +1 -1
- package/dist/entities/score.d.ts +26 -26
- package/dist/entities/score.d.ts.map +1 -1
- package/dist/entities/thread.d.ts +22 -22
- package/dist/entities/thread.d.ts.map +1 -1
- package/dist/entities/trace.d.ts +30 -30
- package/dist/entities/trace.d.ts.map +1 -1
- package/dist/entities/utils.d.ts +5 -5
- package/dist/entities/utils.d.ts.map +1 -1
- package/dist/entities/workflow-snapshot.d.ts +23 -23
- package/dist/entities/workflow-snapshot.d.ts.map +1 -1
- package/dist/storage/domains/background-tasks/index.d.ts.map +1 -1
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/dist/storage/domains/scores/index.d.ts.map +1 -1
- package/dist/storage/domains/workflows/index.d.ts.map +1 -1
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +8 -9
- package/CHANGELOG.md +0 -3079
package/LICENSE.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Portions of this software are licensed as follows:
|
|
2
2
|
|
|
3
|
-
- All content that resides under any directory named
|
|
3
|
+
- All content that resides under any directory named `ee/` within this
|
|
4
4
|
repository, including but not limited to:
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
|
|
5
|
+
- `@mastra/core/auth/ee`
|
|
6
|
+
- `@mastra/core/agent-builder/ee`
|
|
7
|
+
- `@mastra/editor/ee`
|
|
8
|
+
|
|
9
|
+
is licensed under the license defined in [`ee/LICENSE`](https://github.com/mastra-ai/mastra/blob/main/ee/LICENSE).
|
|
8
10
|
|
|
9
11
|
- All third-party components incorporated into the Mastra Software are
|
|
10
12
|
licensed under the original license provided by the owner of the
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: mastra-dynamodb
|
|
|
3
3
|
description: Documentation for @mastra/dynamodb. Use when working with @mastra/dynamodb APIs, configuration, or implementation.
|
|
4
4
|
metadata:
|
|
5
5
|
package: "@mastra/dynamodb"
|
|
6
|
-
version: "1.3.
|
|
6
|
+
version: "1.3.3-alpha.0"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## When to use
|
|
@@ -16,7 +16,7 @@ Read the individual reference documents for detailed explanations and code examp
|
|
|
16
16
|
|
|
17
17
|
### Integrations
|
|
18
18
|
|
|
19
|
-
- [DynamoDB](references/integrations-databases-dynamodb.md) -
|
|
19
|
+
- [DynamoDB](references/integrations-databases-dynamodb.md) - Persist Mastra data in Amazon DynamoDB with a single-table ElectroDB design, configurable indexes, TTL support, credentials, and table initialization.
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
Read [assets/SOURCE_MAP.json](assets/SOURCE_MAP.json) for source code references.
|
|
@@ -6,6 +6,36 @@ export declare const backgroundTaskEntity: Entity<string, string, string, {
|
|
|
6
6
|
service: string;
|
|
7
7
|
};
|
|
8
8
|
attributes: {
|
|
9
|
+
createdAt: {
|
|
10
|
+
readonly type: 'string';
|
|
11
|
+
readonly required: true;
|
|
12
|
+
readonly readOnly: true;
|
|
13
|
+
readonly set: (value?: Date | string) => string;
|
|
14
|
+
readonly default: () => string;
|
|
15
|
+
};
|
|
16
|
+
updatedAt: {
|
|
17
|
+
readonly type: 'string';
|
|
18
|
+
readonly required: true;
|
|
19
|
+
readonly set: (value?: Date | string) => string;
|
|
20
|
+
readonly default: () => string;
|
|
21
|
+
};
|
|
22
|
+
metadata: {
|
|
23
|
+
readonly type: 'string';
|
|
24
|
+
readonly set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
25
|
+
readonly get: (value?: string) => any;
|
|
26
|
+
};
|
|
27
|
+
ttl: {
|
|
28
|
+
readonly type: 'number';
|
|
29
|
+
readonly required: false;
|
|
30
|
+
};
|
|
31
|
+
expiresAt: {
|
|
32
|
+
readonly type: 'number';
|
|
33
|
+
readonly required: false;
|
|
34
|
+
};
|
|
35
|
+
entity: {
|
|
36
|
+
type: "string";
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
9
39
|
id: {
|
|
10
40
|
type: "string";
|
|
11
41
|
required: true;
|
|
@@ -86,36 +116,6 @@ export declare const backgroundTaskEntity: Entity<string, string, string, {
|
|
|
86
116
|
type: "string";
|
|
87
117
|
required: false;
|
|
88
118
|
};
|
|
89
|
-
createdAt: {
|
|
90
|
-
readonly type: "string";
|
|
91
|
-
readonly required: true;
|
|
92
|
-
readonly readOnly: true;
|
|
93
|
-
readonly set: (value?: Date | string) => string;
|
|
94
|
-
readonly default: () => string;
|
|
95
|
-
};
|
|
96
|
-
updatedAt: {
|
|
97
|
-
readonly type: "string";
|
|
98
|
-
readonly required: true;
|
|
99
|
-
readonly set: (value?: Date | string) => string;
|
|
100
|
-
readonly default: () => string;
|
|
101
|
-
};
|
|
102
|
-
metadata: {
|
|
103
|
-
readonly type: "string";
|
|
104
|
-
readonly set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
105
|
-
readonly get: (value?: string) => any;
|
|
106
|
-
};
|
|
107
|
-
ttl: {
|
|
108
|
-
readonly type: "number";
|
|
109
|
-
readonly required: false;
|
|
110
|
-
};
|
|
111
|
-
expiresAt: {
|
|
112
|
-
readonly type: "number";
|
|
113
|
-
readonly required: false;
|
|
114
|
-
};
|
|
115
|
-
entity: {
|
|
116
|
-
type: "string";
|
|
117
|
-
required: true;
|
|
118
|
-
};
|
|
119
119
|
};
|
|
120
120
|
indexes: {
|
|
121
121
|
primary: {
|
|
@@ -132,7 +132,7 @@ export declare const backgroundTaskEntity: Entity<string, string, string, {
|
|
|
132
132
|
index: string;
|
|
133
133
|
pk: {
|
|
134
134
|
field: string;
|
|
135
|
-
composite: ("
|
|
135
|
+
composite: ("agentId" | "entity")[];
|
|
136
136
|
};
|
|
137
137
|
sk: {
|
|
138
138
|
field: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"background-task.d.ts","sourceRoot":"","sources":["../../src/entities/background-task.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AA2BnC,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"background-task.d.ts","sourceRoot":"","sources":["../../src/entities/background-task.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AA2BnC,eAAO,MAAM,oBAAoB;;QAE7B,MAAM;QACN,OAAO;QACP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAvBK,OAAO;0BAKP,MAAM;;;;;0BALN,OAAO;0BAKP,MAAM;;;;;0BALN,OAAO;0BAKP,MAAM;;;;;0BALN,OAAO;0BAKP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAyGlB,OAAO;YACL,EAAE;gBAAI,KAAK;gBAAQ,SAAS;;YAC5B,EAAE;gBAAI,KAAK;gBAAQ,SAAS;;;QAE9B,OAAO;YACL,KAAK;YACL,EAAE;gBAAI,KAAK;gBAAY,SAAS;;YAChC,EAAE;gBAAI,KAAK;gBAAY,SAAS;;;QAElC,KAAK;YACH,KAAK;YACL,EAAE;gBAAI,KAAK;gBAAY,SAAS;;YAChC,EAAE;gBAAI,KAAK;gBAAY,SAAS;;;QAElC,QAAQ;YACN,KAAK;YACL,EAAE;gBAAI,KAAK;gBAAY,SAAS;;YAChC,EAAE;gBAAI,KAAK;gBAAY,SAAS;;;;UAGpC,CAAC"}
|
package/dist/entities/eval.d.ts
CHANGED
|
@@ -6,6 +6,36 @@ export declare const evalEntity: Entity<string, string, string, {
|
|
|
6
6
|
service: string;
|
|
7
7
|
};
|
|
8
8
|
attributes: {
|
|
9
|
+
createdAt: {
|
|
10
|
+
readonly type: 'string';
|
|
11
|
+
readonly required: true;
|
|
12
|
+
readonly readOnly: true;
|
|
13
|
+
readonly set: (value?: Date | string) => string;
|
|
14
|
+
readonly default: () => string;
|
|
15
|
+
};
|
|
16
|
+
updatedAt: {
|
|
17
|
+
readonly type: 'string';
|
|
18
|
+
readonly required: true;
|
|
19
|
+
readonly set: (value?: Date | string) => string;
|
|
20
|
+
readonly default: () => string;
|
|
21
|
+
};
|
|
22
|
+
metadata: {
|
|
23
|
+
readonly type: 'string';
|
|
24
|
+
readonly set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
25
|
+
readonly get: (value?: string) => any;
|
|
26
|
+
};
|
|
27
|
+
ttl: {
|
|
28
|
+
readonly type: 'number';
|
|
29
|
+
readonly required: false;
|
|
30
|
+
};
|
|
31
|
+
expiresAt: {
|
|
32
|
+
readonly type: 'number';
|
|
33
|
+
readonly required: false;
|
|
34
|
+
};
|
|
35
|
+
entity: {
|
|
36
|
+
type: "string";
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
9
39
|
input: {
|
|
10
40
|
type: "string";
|
|
11
41
|
required: true;
|
|
@@ -52,36 +82,6 @@ export declare const evalEntity: Entity<string, string, string, {
|
|
|
52
82
|
default: () => string;
|
|
53
83
|
set: (value?: Date | string) => string;
|
|
54
84
|
};
|
|
55
|
-
createdAt: {
|
|
56
|
-
readonly type: "string";
|
|
57
|
-
readonly required: true;
|
|
58
|
-
readonly readOnly: true;
|
|
59
|
-
readonly set: (value?: Date | string) => string;
|
|
60
|
-
readonly default: () => string;
|
|
61
|
-
};
|
|
62
|
-
updatedAt: {
|
|
63
|
-
readonly type: "string";
|
|
64
|
-
readonly required: true;
|
|
65
|
-
readonly set: (value?: Date | string) => string;
|
|
66
|
-
readonly default: () => string;
|
|
67
|
-
};
|
|
68
|
-
metadata: {
|
|
69
|
-
readonly type: "string";
|
|
70
|
-
readonly set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
71
|
-
readonly get: (value?: string) => any;
|
|
72
|
-
};
|
|
73
|
-
ttl: {
|
|
74
|
-
readonly type: "number";
|
|
75
|
-
readonly required: false;
|
|
76
|
-
};
|
|
77
|
-
expiresAt: {
|
|
78
|
-
readonly type: "number";
|
|
79
|
-
readonly required: false;
|
|
80
|
-
};
|
|
81
|
-
entity: {
|
|
82
|
-
type: "string";
|
|
83
|
-
required: true;
|
|
84
|
-
};
|
|
85
85
|
};
|
|
86
86
|
indexes: {
|
|
87
87
|
primary: {
|
|
@@ -98,7 +98,7 @@ export declare const evalEntity: Entity<string, string, string, {
|
|
|
98
98
|
index: string;
|
|
99
99
|
pk: {
|
|
100
100
|
field: string;
|
|
101
|
-
composite: ("
|
|
101
|
+
composite: ("agent_name" | "entity")[];
|
|
102
102
|
};
|
|
103
103
|
sk: {
|
|
104
104
|
field: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../src/entities/eval.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../src/entities/eval.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,UAAU;;QAEnB,MAAM;QACN,OAAO;QACP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAoBS,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;0BAuBN,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;0BAkBN,IAAI,GAAG,MAAM;;;;QAS7B,OAAO;YACL,EAAE;gBAAI,KAAK;gBAAQ,SAAS;;YAC5B,EAAE;gBAAI,KAAK;gBAAQ,SAAS;;;QAE9B,OAAO;YACL,KAAK;YACL,EAAE;gBAAI,KAAK;gBAAY,SAAS;;YAChC,EAAE;gBAAI,KAAK;gBAAY,SAAS;;;;UAGpC,CAAC"}
|