@mastra/dynamodb 1.0.3 → 1.0.4-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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/dynamodb
2
2
 
3
+ ## 1.0.4-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Add `BackgroundTasksStorage` domain implementation so `@mastra/core` background task execution works with any storage adapter. ([#15307](https://github.com/mastra-ai/mastra/pull/15307))
8
+
9
+ - Updated dependencies [[`d63ffdb`](https://github.com/mastra-ai/mastra/commit/d63ffdbb2c11e76fe5ea45faab44bc15460f010c)]:
10
+ - @mastra/core@1.25.1-alpha.0
11
+
3
12
  ## 1.0.3
4
13
 
5
14
  ### Patch Changes
@@ -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.0.3"
6
+ version: "1.0.4-alpha.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.3",
2
+ "version": "1.0.4-alpha.0",
3
3
  "package": "@mastra/dynamodb",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -2,7 +2,7 @@
2
2
 
3
3
  The DynamoDB storage implementation provides a scalable and performant NoSQL database solution for Mastra, leveraging a single-table design pattern with [ElectroDB](https://electrodb.dev/).
4
4
 
5
- > **Observability Not Supported:** DynamoDB storage **doesn't support the observability domain**. Traces from the `DefaultExporter` can't be persisted to DynamoDB, and Mastra Studio's observability features won't work with DynamoDB as your only storage provider. To enable observability, use [composite storage](https://mastra.ai/reference/storage/composite) to route observability data to a supported provider like ClickHouse or PostgreSQL.
5
+ > **Observability Not Supported:** DynamoDB storage **doesn't support the observability domain**. Traces from the `DefaultExporter` can't be persisted to DynamoDB, and [Studio's](https://mastra.ai/docs/studio/overview) observability features won't work with DynamoDB as your only storage provider. To enable observability, use [composite storage](https://mastra.ai/reference/storage/composite) to route observability data to a supported provider like ClickHouse or PostgreSQL.
6
6
 
7
7
  > **Item Size Limit:** DynamoDB enforces a **400 KB maximum item size**. This limit can be exceeded when storing messages with base64-encoded attachments such as images. See [Handling large attachments](https://mastra.ai/docs/memory/storage) for workarounds including uploading attachments to external storage.
8
8
 
@@ -0,0 +1,156 @@
1
+ import { Entity } from 'electrodb';
2
+ export declare const backgroundTaskEntity: Entity<string, string, string, {
3
+ model: {
4
+ entity: string;
5
+ version: string;
6
+ service: string;
7
+ };
8
+ attributes: {
9
+ id: {
10
+ type: "string";
11
+ required: true;
12
+ };
13
+ status: {
14
+ type: "string";
15
+ required: true;
16
+ };
17
+ toolName: {
18
+ type: "string";
19
+ required: true;
20
+ };
21
+ toolCallId: {
22
+ type: "string";
23
+ required: true;
24
+ };
25
+ agentId: {
26
+ type: "string";
27
+ required: true;
28
+ };
29
+ runId: {
30
+ type: "string";
31
+ required: true;
32
+ };
33
+ threadId: {
34
+ type: "string";
35
+ required: false;
36
+ };
37
+ resourceId: {
38
+ type: "string";
39
+ required: false;
40
+ };
41
+ args: {
42
+ set: (value?: unknown) => string | undefined;
43
+ get: (value?: string) => any;
44
+ type: "string";
45
+ required: true;
46
+ };
47
+ result: {
48
+ set: (value?: unknown) => string | undefined;
49
+ get: (value?: string) => any;
50
+ type: "string";
51
+ required: false;
52
+ };
53
+ error: {
54
+ set: (value?: unknown) => string | undefined;
55
+ get: (value?: string) => any;
56
+ type: "string";
57
+ required: false;
58
+ };
59
+ retryCount: {
60
+ type: "number";
61
+ required: true;
62
+ };
63
+ maxRetries: {
64
+ type: "number";
65
+ required: true;
66
+ };
67
+ timeoutMs: {
68
+ type: "number";
69
+ required: true;
70
+ };
71
+ startedAtIso: {
72
+ type: "string";
73
+ required: false;
74
+ };
75
+ completedAtIso: {
76
+ type: "string";
77
+ required: false;
78
+ };
79
+ createdAt: {
80
+ readonly type: "string";
81
+ readonly required: true;
82
+ readonly readOnly: true;
83
+ readonly set: (value?: Date | string) => string;
84
+ readonly default: () => string;
85
+ };
86
+ updatedAt: {
87
+ readonly type: "string";
88
+ readonly required: true;
89
+ readonly set: (value?: Date | string) => string;
90
+ readonly default: () => string;
91
+ };
92
+ metadata: {
93
+ readonly type: "string";
94
+ readonly set: (value?: Record<string, unknown> | string) => string | undefined;
95
+ readonly get: (value?: string) => any;
96
+ };
97
+ ttl: {
98
+ readonly type: "number";
99
+ readonly required: false;
100
+ };
101
+ expiresAt: {
102
+ readonly type: "number";
103
+ readonly required: false;
104
+ };
105
+ entity: {
106
+ type: "string";
107
+ required: true;
108
+ };
109
+ };
110
+ indexes: {
111
+ primary: {
112
+ pk: {
113
+ field: string;
114
+ composite: ("entity" | "id")[];
115
+ };
116
+ sk: {
117
+ field: string;
118
+ composite: "entity"[];
119
+ };
120
+ };
121
+ byAgent: {
122
+ index: string;
123
+ pk: {
124
+ field: string;
125
+ composite: ("entity" | "agentId")[];
126
+ };
127
+ sk: {
128
+ field: string;
129
+ composite: "createdAt"[];
130
+ };
131
+ };
132
+ byRun: {
133
+ index: string;
134
+ pk: {
135
+ field: string;
136
+ composite: ("entity" | "runId")[];
137
+ };
138
+ sk: {
139
+ field: string;
140
+ composite: "createdAt"[];
141
+ };
142
+ };
143
+ byStatus: {
144
+ index: string;
145
+ pk: {
146
+ field: string;
147
+ composite: ("entity" | "status")[];
148
+ };
149
+ sk: {
150
+ field: string;
151
+ composite: "createdAt"[];
152
+ };
153
+ };
154
+ };
155
+ }, string>;
156
+ //# sourceMappingURL=background-task.d.ts.map
@@ -0,0 +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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAnBjB,OAAO;0BAKP,MAAM;;;;;0BALN,OAAO;0BAKP,MAAM;;;;;0BALN,OAAO;0BAKP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAoHpB,CAAC"}
@@ -106,5 +106,5 @@ export declare const evalEntity: Entity<string, string, string, {
106
106
  };
107
107
  };
108
108
  };
109
- }>;
109
+ }, string>;
110
110
  //# sourceMappingURL=eval.d.ts.map
@@ -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;;;;;;;;;;;;;;;;;;0BAwBH,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;0BAuBN,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;0BAkBN,IAAI,GAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB/B,CAAC"}
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;;;;;;;;;;;;;;;;;;0BAwBH,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;0BAuBN,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;0BAkBN,IAAI,GAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAmB/B,CAAC"}
@@ -75,7 +75,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
75
75
  };
76
76
  };
77
77
  };
78
- }>;
78
+ }, string>;
79
79
  message: import("electrodb").Entity<string, string, string, {
80
80
  model: {
81
81
  entity: string;
@@ -181,7 +181,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
181
181
  };
182
182
  };
183
183
  };
184
- }>;
184
+ }, string>;
185
185
  eval: import("electrodb").Entity<string, string, string, {
186
186
  model: {
187
187
  entity: string;
@@ -289,7 +289,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
289
289
  };
290
290
  };
291
291
  };
292
- }>;
292
+ }, string>;
293
293
  trace: import("electrodb").Entity<string, string, string, {
294
294
  model: {
295
295
  entity: string;
@@ -422,7 +422,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
422
422
  };
423
423
  };
424
424
  };
425
- }>;
425
+ }, string>;
426
426
  workflow_snapshot: import("electrodb").Entity<string, string, string, {
427
427
  model: {
428
428
  entity: string;
@@ -502,7 +502,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
502
502
  };
503
503
  };
504
504
  };
505
- }>;
505
+ }, string>;
506
506
  resource: import("electrodb").Entity<string, string, string, {
507
507
  model: {
508
508
  entity: string;
@@ -562,7 +562,7 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
562
562
  };
563
563
  };
564
564
  };
565
- }>;
565
+ }, string>;
566
566
  score: import("electrodb").Entity<string, string, string, {
567
567
  model: {
568
568
  entity: string;
@@ -817,6 +817,160 @@ export declare function getElectroDbService(client: DynamoDBDocumentClient, tabl
817
817
  };
818
818
  };
819
819
  };
820
- }>;
820
+ }, string>;
821
+ background_task: import("electrodb").Entity<string, string, string, {
822
+ model: {
823
+ entity: string;
824
+ version: string;
825
+ service: string;
826
+ };
827
+ attributes: {
828
+ id: {
829
+ type: "string";
830
+ required: true;
831
+ };
832
+ status: {
833
+ type: "string";
834
+ required: true;
835
+ };
836
+ toolName: {
837
+ type: "string";
838
+ required: true;
839
+ };
840
+ toolCallId: {
841
+ type: "string";
842
+ required: true;
843
+ };
844
+ agentId: {
845
+ type: "string";
846
+ required: true;
847
+ };
848
+ runId: {
849
+ type: "string";
850
+ required: true;
851
+ };
852
+ threadId: {
853
+ type: "string";
854
+ required: false;
855
+ };
856
+ resourceId: {
857
+ type: "string";
858
+ required: false;
859
+ };
860
+ args: {
861
+ set: (value?: unknown) => string | undefined;
862
+ get: (value?: string) => any;
863
+ type: "string";
864
+ required: true;
865
+ };
866
+ result: {
867
+ set: (value?: unknown) => string | undefined;
868
+ get: (value?: string) => any;
869
+ type: "string";
870
+ required: false;
871
+ };
872
+ error: {
873
+ set: (value?: unknown) => string | undefined;
874
+ get: (value?: string) => any;
875
+ type: "string";
876
+ required: false;
877
+ };
878
+ retryCount: {
879
+ type: "number";
880
+ required: true;
881
+ };
882
+ maxRetries: {
883
+ type: "number";
884
+ required: true;
885
+ };
886
+ timeoutMs: {
887
+ type: "number";
888
+ required: true;
889
+ };
890
+ startedAtIso: {
891
+ type: "string";
892
+ required: false;
893
+ };
894
+ completedAtIso: {
895
+ type: "string";
896
+ required: false;
897
+ };
898
+ createdAt: {
899
+ readonly type: "string";
900
+ readonly required: true;
901
+ readonly readOnly: true;
902
+ readonly set: (value?: Date | string) => string;
903
+ readonly default: () => string;
904
+ };
905
+ updatedAt: {
906
+ readonly type: "string";
907
+ readonly required: true;
908
+ readonly set: (value?: Date | string) => string;
909
+ readonly default: () => string;
910
+ };
911
+ metadata: {
912
+ readonly type: "string";
913
+ readonly set: (value?: Record<string, unknown> | string) => string | undefined;
914
+ readonly get: (value?: string) => any;
915
+ };
916
+ ttl: {
917
+ readonly type: "number";
918
+ readonly required: false;
919
+ };
920
+ expiresAt: {
921
+ readonly type: "number";
922
+ readonly required: false;
923
+ };
924
+ entity: {
925
+ type: "string";
926
+ required: true;
927
+ };
928
+ };
929
+ indexes: {
930
+ primary: {
931
+ pk: {
932
+ field: string;
933
+ composite: ("entity" | "id")[];
934
+ };
935
+ sk: {
936
+ field: string;
937
+ composite: "entity"[];
938
+ };
939
+ };
940
+ byAgent: {
941
+ index: string;
942
+ pk: {
943
+ field: string;
944
+ composite: ("entity" | "agentId")[];
945
+ };
946
+ sk: {
947
+ field: string;
948
+ composite: "createdAt"[];
949
+ };
950
+ };
951
+ byRun: {
952
+ index: string;
953
+ pk: {
954
+ field: string;
955
+ composite: ("entity" | "runId")[];
956
+ };
957
+ sk: {
958
+ field: string;
959
+ composite: "createdAt"[];
960
+ };
961
+ };
962
+ byStatus: {
963
+ index: string;
964
+ pk: {
965
+ field: string;
966
+ composite: ("entity" | "status")[];
967
+ };
968
+ sk: {
969
+ field: string;
970
+ composite: "createdAt"[];
971
+ };
972
+ };
973
+ };
974
+ }, string>;
821
975
  }>;
822
976
  //# sourceMappingURL=index.d.ts.map
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgBpF"}
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;AAUpC,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,sBAAsB,EAAE,SAAS,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiBpF"}
@@ -104,5 +104,5 @@ export declare const messageEntity: Entity<string, string, string, {
104
104
  };
105
105
  };
106
106
  };
107
- }>;
107
+ }, string>;
108
108
  //# sourceMappingURL=message.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/entities/message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;0BA+BN,MAAM;;;;;;;;;;;;;;;;;0BA8BN,MAAM,EAAE,GAAG,MAAM;0BAOjB,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,MAAM;0BAOlC,MAAM;;;;;0BAgBN,MAAM,EAAE,GAAG,MAAM;0BAOjB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBxB,CAAC"}
1
+ {"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/entities/message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;0BA+BN,MAAM;;;;;;;;;;;;;;;;;0BA8BN,MAAM,EAAE,GAAG,MAAM;0BAOjB,MAAM;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,MAAM;0BAOlC,MAAM;;;;;0BAgBN,MAAM,EAAE,GAAG,MAAM;0BAOjB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAyBxB,CAAC"}
@@ -58,5 +58,5 @@ export declare const resourceEntity: Entity<string, string, string, {
58
58
  };
59
59
  };
60
60
  };
61
- }>;
61
+ }, string>;
62
62
  //# sourceMappingURL=resource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"resource.d.ts","sourceRoot":"","sources":["../../src/entities/resource.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;0BA+BP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBxB,CAAC"}
1
+ {"version":3,"file":"resource.d.ts","sourceRoot":"","sources":["../../src/entities/resource.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;0BA+BP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAsBxB,CAAC"}
@@ -253,5 +253,5 @@ export declare const scoreEntity: Entity<string, string, string, {
253
253
  };
254
254
  };
255
255
  };
256
- }>;
256
+ }, string>;
257
257
  //# 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAmCJ,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;;;;;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;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;0BAoBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuExB,CAAC"}
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;;;;;;;;;0BAoBN,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;;;;;0BAgBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;0BAoBN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAMhC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAuExB,CAAC"}
@@ -73,5 +73,5 @@ export declare const threadEntity: Entity<string, string, string, {
73
73
  };
74
74
  };
75
75
  };
76
- }>;
76
+ }, string>;
77
77
  //# sourceMappingURL=thread.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"thread.d.ts","sourceRoot":"","sources":["../../src/entities/thread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;0BA4BL,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAOhC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BxB,CAAC"}
1
+ {"version":3,"file":"thread.d.ts","sourceRoot":"","sources":["../../src/entities/thread.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;0BA4BL,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;0BAOhC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA2BxB,CAAC"}
@@ -131,5 +131,5 @@ export declare const traceEntity: Entity<string, string, string, {
131
131
  };
132
132
  };
133
133
  };
134
- }>;
134
+ }, string>;
135
135
  //# sourceMappingURL=trace.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"trace.d.ts","sourceRoot":"","sources":["../../src/entities/trace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAwCJ,GAAG;0BAOH,MAAM;;;;;0BAQN,GAAG;0BAOH,MAAM;;;;;0BAQN,GAAG;0BAOH,MAAM;;;;;0BAQN,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiCxB,CAAC"}
1
+ {"version":3,"file":"trace.d.ts","sourceRoot":"","sources":["../../src/entities/trace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAwCJ,GAAG;0BAOH,MAAM;;;;;0BAQN,GAAG;0BAOH,MAAM;;;;;0BAQN,GAAG;0BAOH,MAAM;;;;;0BAQN,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAiCxB,CAAC"}
@@ -78,5 +78,5 @@ export declare const workflowSnapshotEntity: Entity<string, string, string, {
78
78
  };
79
79
  };
80
80
  };
81
- }>;
81
+ }, string>;
82
82
  //# sourceMappingURL=workflow-snapshot.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"workflow-snapshot.d.ts","sourceRoot":"","sources":["../../src/entities/workflow-snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;0BAwBf,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBxB,CAAC"}
1
+ {"version":3,"file":"workflow-snapshot.d.ts","sourceRoot":"","sources":["../../src/entities/workflow-snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;0BAwBf,GAAG;0BAOH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAqBxB,CAAC"}