@mastra/dynamodb 1.0.3 → 1.0.4-alpha.1
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 +19 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/reference-storage-dynamodb.md +1 -1
- package/dist/entities/background-task.d.ts +156 -0
- package/dist/entities/background-task.d.ts.map +1 -0
- package/dist/entities/eval.d.ts +1 -1
- package/dist/entities/eval.d.ts.map +1 -1
- package/dist/entities/index.d.ts +161 -7
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/message.d.ts +1 -1
- package/dist/entities/message.d.ts.map +1 -1
- package/dist/entities/resource.d.ts +1 -1
- package/dist/entities/resource.d.ts.map +1 -1
- package/dist/entities/score.d.ts +1 -1
- package/dist/entities/score.d.ts.map +1 -1
- package/dist/entities/thread.d.ts +1 -1
- package/dist/entities/thread.d.ts.map +1 -1
- package/dist/entities/trace.d.ts +1 -1
- package/dist/entities/trace.d.ts.map +1 -1
- package/dist/entities/workflow-snapshot.d.ts +1 -1
- package/dist/entities/workflow-snapshot.d.ts.map +1 -1
- package/dist/index.cjs +421 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +422 -32
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/background-tasks/index.d.ts +17 -0
- package/dist/storage/domains/background-tasks/index.d.ts.map +1 -0
- package/dist/storage/domains/utils.d.ts.map +1 -1
- package/dist/storage/index.d.ts +2 -1
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @mastra/dynamodb
|
|
2
2
|
|
|
3
|
+
## 1.0.4-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dependencies updates: ([#15529](https://github.com/mastra-ai/mastra/pull/15529))
|
|
8
|
+
- Updated dependency [`@aws-sdk/client-dynamodb@^3.1032.0` ↗︎](https://www.npmjs.com/package/@aws-sdk/client-dynamodb/v/3.1032.0) (from `^3.1009.0`, in `dependencies`)
|
|
9
|
+
- Updated dependency [`@aws-sdk/lib-dynamodb@^3.1032.0` ↗︎](https://www.npmjs.com/package/@aws-sdk/lib-dynamodb/v/3.1032.0) (from `^3.1009.0`, in `dependencies`)
|
|
10
|
+
- Updated dependencies [[`20f59b8`](https://github.com/mastra-ai/mastra/commit/20f59b876cf91199efbc49a0e36b391240708f08), [`e2687a7`](https://github.com/mastra-ai/mastra/commit/e2687a7408790c384563816a9a28ed06735684c9), [`8f1b280`](https://github.com/mastra-ai/mastra/commit/8f1b280b7fe6999ec654f160cb69c1a8719e7a57), [`12df98c`](https://github.com/mastra-ai/mastra/commit/12df98c4904643d9481f5c78f3bed443725b4c96)]:
|
|
11
|
+
- @mastra/core@1.26.0-alpha.11
|
|
12
|
+
|
|
13
|
+
## 1.0.4-alpha.0
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Add `BackgroundTasksStorage` domain implementation so `@mastra/core` background task execution works with any storage adapter. ([#15307](https://github.com/mastra-ai/mastra/pull/15307))
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`d63ffdb`](https://github.com/mastra-ai/mastra/commit/d63ffdbb2c11e76fe5ea45faab44bc15460f010c)]:
|
|
20
|
+
- @mastra/core@1.25.1-alpha.0
|
|
21
|
+
|
|
3
22
|
## 1.0.3
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -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
|
|
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"}
|
package/dist/entities/eval.d.ts
CHANGED
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -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;
|
|
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"}
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|
package/dist/entities/score.d.ts
CHANGED
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|
package/dist/entities/trace.d.ts
CHANGED
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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"}
|