@mastra/dynamodb 0.0.0-pgvector-index-fix-20250905222058 → 0.0.0-playground-studio-again-20251114100107
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/CHANGELOG.md +614 -10
- package/README.md +0 -4
- package/dist/entities/index.d.ts +16 -1
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/score.d.ts +16 -1
- package/dist/entities/score.d.ts.map +1 -1
- package/dist/index.cjs +327 -714
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +328 -715
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/memory/index.d.ts +13 -41
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/dist/storage/domains/operations/index.d.ts.map +1 -1
- package/dist/storage/domains/score/index.d.ts +12 -4
- package/dist/storage/domains/score/index.d.ts.map +1 -1
- package/dist/storage/domains/workflows/index.d.ts +5 -11
- package/dist/storage/domains/workflows/index.d.ts.map +1 -1
- package/dist/storage/index.d.ts +31 -76
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +18 -15
- package/dist/storage/domains/legacy-evals/index.d.ts +0 -19
- package/dist/storage/domains/legacy-evals/index.d.ts.map +0 -1
- package/dist/storage/domains/traces/index.d.ts +0 -28
- package/dist/storage/domains/traces/index.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -138,7 +138,3 @@ This implementation uses a single-table design pattern with ElectroDB, which off
|
|
|
138
138
|
3. **Simplified administration**: Only one table to monitor and back up
|
|
139
139
|
4. **Reduced complexity**: Consistent access patterns across entities
|
|
140
140
|
5. **Transaction support**: Atomic operations across different entity types
|
|
141
|
-
|
|
142
|
-
## License
|
|
143
|
-
|
|
144
|
-
MIT
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -534,6 +534,10 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
|
|
|
534
534
|
type: "string";
|
|
535
535
|
required: false;
|
|
536
536
|
};
|
|
537
|
+
spanId: {
|
|
538
|
+
type: "string";
|
|
539
|
+
required: false;
|
|
540
|
+
};
|
|
537
541
|
runId: {
|
|
538
542
|
type: "string";
|
|
539
543
|
required: true;
|
|
@@ -608,7 +612,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
|
|
|
608
612
|
set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
609
613
|
get: (value?: string) => any;
|
|
610
614
|
};
|
|
611
|
-
|
|
615
|
+
requestContext: {
|
|
612
616
|
type: "string";
|
|
613
617
|
required: false;
|
|
614
618
|
set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
@@ -740,6 +744,17 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
|
|
|
740
744
|
composite: "createdAt"[];
|
|
741
745
|
};
|
|
742
746
|
};
|
|
747
|
+
bySpan: {
|
|
748
|
+
index: string;
|
|
749
|
+
pk: {
|
|
750
|
+
field: string;
|
|
751
|
+
composite: ("entity" | "traceId" | "spanId")[];
|
|
752
|
+
};
|
|
753
|
+
sk: {
|
|
754
|
+
field: string;
|
|
755
|
+
composite: "createdAt"[];
|
|
756
|
+
};
|
|
757
|
+
};
|
|
743
758
|
};
|
|
744
759
|
}>;
|
|
745
760
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,sBAAsB,EAAE,SAAS,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,sBAAsB,EAAE,SAAS,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgBpF"}
|
package/dist/entities/score.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export declare const scoreEntity: Entity<string, string, string, {
|
|
|
18
18
|
type: "string";
|
|
19
19
|
required: false;
|
|
20
20
|
};
|
|
21
|
+
spanId: {
|
|
22
|
+
type: "string";
|
|
23
|
+
required: false;
|
|
24
|
+
};
|
|
21
25
|
runId: {
|
|
22
26
|
type: "string";
|
|
23
27
|
required: true;
|
|
@@ -92,7 +96,7 @@ export declare const scoreEntity: Entity<string, string, string, {
|
|
|
92
96
|
set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
93
97
|
get: (value?: string) => any;
|
|
94
98
|
};
|
|
95
|
-
|
|
99
|
+
requestContext: {
|
|
96
100
|
type: "string";
|
|
97
101
|
required: false;
|
|
98
102
|
set: (value?: Record<string, unknown> | string) => string | undefined;
|
|
@@ -224,6 +228,17 @@ export declare const scoreEntity: Entity<string, string, string, {
|
|
|
224
228
|
composite: "createdAt"[];
|
|
225
229
|
};
|
|
226
230
|
};
|
|
231
|
+
bySpan: {
|
|
232
|
+
index: string;
|
|
233
|
+
pk: {
|
|
234
|
+
field: string;
|
|
235
|
+
composite: ("entity" | "traceId" | "spanId")[];
|
|
236
|
+
};
|
|
237
|
+
sk: {
|
|
238
|
+
field: string;
|
|
239
|
+
composite: "createdAt"[];
|
|
240
|
+
};
|
|
241
|
+
};
|
|
227
242
|
};
|
|
228
243
|
}>;
|
|
229
244
|
//# sourceMappingURL=score.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"score.d.ts","sourceRoot":"","sources":["../../src/entities/score.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"score.d.ts","sourceRoot":"","sources":["../../src/entities/score.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAmCJ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA8CN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;0BAoBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuExB,CAAC"}
|