@mastra/core 0.1.7 → 0.1.8
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.
|
@@ -16,11 +16,11 @@ export declare class DataLayer {
|
|
|
16
16
|
}): Promise<{
|
|
17
17
|
id: string;
|
|
18
18
|
name: string;
|
|
19
|
+
createdAt: Date;
|
|
20
|
+
updatedAt: Date | null;
|
|
19
21
|
issues: string[];
|
|
20
22
|
syncConfig: Prisma.JsonValue | null;
|
|
21
23
|
connectionId: string;
|
|
22
|
-
createdAt: Date;
|
|
23
|
-
updatedAt: Date | null;
|
|
24
24
|
lastSyncAt: Date | null;
|
|
25
25
|
subscriptionId: string | null;
|
|
26
26
|
} & {
|
|
@@ -31,11 +31,11 @@ export declare class DataLayer {
|
|
|
31
31
|
}): Promise<{
|
|
32
32
|
id: string;
|
|
33
33
|
name: string;
|
|
34
|
+
createdAt: Date;
|
|
35
|
+
updatedAt: Date | null;
|
|
34
36
|
issues: string[];
|
|
35
37
|
syncConfig: Prisma.JsonValue | null;
|
|
36
38
|
connectionId: string;
|
|
37
|
-
createdAt: Date;
|
|
38
|
-
updatedAt: Date | null;
|
|
39
39
|
lastSyncAt: Date | null;
|
|
40
40
|
subscriptionId: string | null;
|
|
41
41
|
}>;
|
|
@@ -45,11 +45,11 @@ export declare class DataLayer {
|
|
|
45
45
|
}): Promise<{
|
|
46
46
|
id: string;
|
|
47
47
|
name: string;
|
|
48
|
+
createdAt: Date;
|
|
49
|
+
updatedAt: Date | null;
|
|
48
50
|
issues: string[];
|
|
49
51
|
syncConfig: Prisma.JsonValue | null;
|
|
50
52
|
connectionId: string;
|
|
51
|
-
createdAt: Date;
|
|
52
|
-
updatedAt: Date | null;
|
|
53
53
|
lastSyncAt: Date | null;
|
|
54
54
|
subscriptionId: string | null;
|
|
55
55
|
} | null>;
|
|
@@ -58,11 +58,11 @@ export declare class DataLayer {
|
|
|
58
58
|
}): Promise<{
|
|
59
59
|
id: string;
|
|
60
60
|
name: string;
|
|
61
|
+
createdAt: Date;
|
|
62
|
+
updatedAt: Date | null;
|
|
61
63
|
issues: string[];
|
|
62
64
|
syncConfig: Prisma.JsonValue | null;
|
|
63
65
|
connectionId: string;
|
|
64
|
-
createdAt: Date;
|
|
65
|
-
updatedAt: Date | null;
|
|
66
66
|
lastSyncAt: Date | null;
|
|
67
67
|
subscriptionId: string | null;
|
|
68
68
|
}[]>;
|
|
@@ -75,11 +75,11 @@ export declare class DataLayer {
|
|
|
75
75
|
}): Promise<{
|
|
76
76
|
id: string;
|
|
77
77
|
name: string;
|
|
78
|
+
createdAt: Date;
|
|
79
|
+
updatedAt: Date | null;
|
|
78
80
|
issues: string[];
|
|
79
81
|
syncConfig: Prisma.JsonValue | null;
|
|
80
82
|
connectionId: string;
|
|
81
|
-
createdAt: Date;
|
|
82
|
-
updatedAt: Date | null;
|
|
83
83
|
lastSyncAt: Date | null;
|
|
84
84
|
subscriptionId: string | null;
|
|
85
85
|
} | null>;
|
|
@@ -87,20 +87,20 @@ export declare class DataLayer {
|
|
|
87
87
|
connection: {
|
|
88
88
|
id: string;
|
|
89
89
|
name: string;
|
|
90
|
+
createdAt: Date;
|
|
91
|
+
updatedAt: Date | null;
|
|
90
92
|
issues: string[];
|
|
91
93
|
syncConfig: Prisma.JsonValue | null;
|
|
92
94
|
connectionId: string;
|
|
93
|
-
createdAt: Date;
|
|
94
|
-
updatedAt: Date | null;
|
|
95
95
|
lastSyncAt: Date | null;
|
|
96
96
|
subscriptionId: string | null;
|
|
97
97
|
};
|
|
98
98
|
} & {
|
|
99
99
|
id: string;
|
|
100
100
|
type: string;
|
|
101
|
+
k_id: string;
|
|
101
102
|
value: Prisma.JsonValue;
|
|
102
103
|
scope: string[];
|
|
103
|
-
k_id: string;
|
|
104
104
|
}>;
|
|
105
105
|
updateConnectionCredential({ k_id, token, }: {
|
|
106
106
|
k_id: string;
|
|
@@ -108,9 +108,9 @@ export declare class DataLayer {
|
|
|
108
108
|
}): Promise<{
|
|
109
109
|
id: string;
|
|
110
110
|
type: string;
|
|
111
|
+
k_id: string;
|
|
111
112
|
value: Prisma.JsonValue;
|
|
112
113
|
scope: string[];
|
|
113
|
-
k_id: string;
|
|
114
114
|
}>;
|
|
115
115
|
createEntity({ connectionId, type, k_id, }: {
|
|
116
116
|
k_id: string;
|
|
@@ -165,16 +165,16 @@ export declare class DataLayer {
|
|
|
165
165
|
}[];
|
|
166
166
|
records: {
|
|
167
167
|
id: string;
|
|
168
|
+
entityId: string | null;
|
|
169
|
+
createdAt: Date;
|
|
170
|
+
updatedAt: Date | null;
|
|
171
|
+
entityType: string;
|
|
168
172
|
externalId: string | null;
|
|
169
173
|
data: Prisma.JsonValue;
|
|
170
174
|
source: string;
|
|
171
|
-
entityType: string;
|
|
172
|
-
entityId: string | null;
|
|
173
175
|
status: import("@prisma-app/client").$Enums.RecordStatus;
|
|
174
176
|
enrichmentStatus: import("@prisma-app/client").$Enums.RecordEnrichmentStatus;
|
|
175
177
|
deletedAt: Date | null;
|
|
176
|
-
createdAt: Date;
|
|
177
|
-
updatedAt: Date | null;
|
|
178
178
|
}[];
|
|
179
179
|
} & {
|
|
180
180
|
id: string;
|
|
@@ -236,9 +236,9 @@ export declare class DataLayer {
|
|
|
236
236
|
}): Promise<{
|
|
237
237
|
id: string;
|
|
238
238
|
type: string;
|
|
239
|
+
k_id: string;
|
|
239
240
|
value: Prisma.JsonValue;
|
|
240
241
|
scope: string[];
|
|
241
|
-
k_id: string;
|
|
242
242
|
}>;
|
|
243
243
|
getRecords<T extends string | number | symbol>({ entityType, k_id, filters, sort, }: {
|
|
244
244
|
entityType: string;
|
|
@@ -253,16 +253,16 @@ export declare class DataLayer {
|
|
|
253
253
|
connectionId: string;
|
|
254
254
|
}): Promise<{
|
|
255
255
|
id: string;
|
|
256
|
+
entityId: string | null;
|
|
257
|
+
createdAt: Date;
|
|
258
|
+
updatedAt: Date | null;
|
|
259
|
+
entityType: string;
|
|
256
260
|
externalId: string | null;
|
|
257
261
|
data: Prisma.JsonValue;
|
|
258
262
|
source: string;
|
|
259
|
-
entityType: string;
|
|
260
|
-
entityId: string | null;
|
|
261
263
|
status: import("@prisma-app/client").$Enums.RecordStatus;
|
|
262
264
|
enrichmentStatus: import("@prisma-app/client").$Enums.RecordEnrichmentStatus;
|
|
263
265
|
deletedAt: Date | null;
|
|
264
|
-
createdAt: Date;
|
|
265
|
-
updatedAt: Date | null;
|
|
266
266
|
}[]>;
|
|
267
267
|
getRecordByPropertyNameAndValue({ propertyName, propertyValue, type, connectionId, }: {
|
|
268
268
|
propertyName: string;
|
|
@@ -271,32 +271,32 @@ export declare class DataLayer {
|
|
|
271
271
|
connectionId: string;
|
|
272
272
|
}): Promise<{
|
|
273
273
|
id: string;
|
|
274
|
+
entityId: string | null;
|
|
275
|
+
createdAt: Date;
|
|
276
|
+
updatedAt: Date | null;
|
|
277
|
+
entityType: string;
|
|
274
278
|
externalId: string | null;
|
|
275
279
|
data: Prisma.JsonValue;
|
|
276
280
|
source: string;
|
|
277
|
-
entityType: string;
|
|
278
|
-
entityId: string | null;
|
|
279
281
|
status: import("@prisma-app/client").$Enums.RecordStatus;
|
|
280
282
|
enrichmentStatus: import("@prisma-app/client").$Enums.RecordEnrichmentStatus;
|
|
281
283
|
deletedAt: Date | null;
|
|
282
|
-
createdAt: Date;
|
|
283
|
-
updatedAt: Date | null;
|
|
284
284
|
} | null>;
|
|
285
285
|
getRecordsByPropertyName({ propertyName, connectionId, }: {
|
|
286
286
|
propertyName: string;
|
|
287
287
|
connectionId: string;
|
|
288
288
|
}): Promise<{
|
|
289
289
|
id: string;
|
|
290
|
+
entityId: string | null;
|
|
291
|
+
createdAt: Date;
|
|
292
|
+
updatedAt: Date | null;
|
|
293
|
+
entityType: string;
|
|
290
294
|
externalId: string | null;
|
|
291
295
|
data: Prisma.JsonValue;
|
|
292
296
|
source: string;
|
|
293
|
-
entityType: string;
|
|
294
|
-
entityId: string | null;
|
|
295
297
|
status: import("@prisma-app/client").$Enums.RecordStatus;
|
|
296
298
|
enrichmentStatus: import("@prisma-app/client").$Enums.RecordEnrichmentStatus;
|
|
297
299
|
deletedAt: Date | null;
|
|
298
|
-
createdAt: Date;
|
|
299
|
-
updatedAt: Date | null;
|
|
300
300
|
}[]>;
|
|
301
301
|
setConnectionError({ k_id, error }: {
|
|
302
302
|
k_id: string;
|
|
@@ -304,11 +304,11 @@ export declare class DataLayer {
|
|
|
304
304
|
}): Promise<{
|
|
305
305
|
id: string;
|
|
306
306
|
name: string;
|
|
307
|
+
createdAt: Date;
|
|
308
|
+
updatedAt: Date | null;
|
|
307
309
|
issues: string[];
|
|
308
310
|
syncConfig: Prisma.JsonValue | null;
|
|
309
311
|
connectionId: string;
|
|
310
|
-
createdAt: Date;
|
|
311
|
-
updatedAt: Date | null;
|
|
312
312
|
lastSyncAt: Date | null;
|
|
313
313
|
subscriptionId: string | null;
|
|
314
314
|
}>;
|
|
@@ -318,11 +318,11 @@ export declare class DataLayer {
|
|
|
318
318
|
}): Promise<{
|
|
319
319
|
id: string;
|
|
320
320
|
name: string;
|
|
321
|
+
createdAt: Date;
|
|
322
|
+
updatedAt: Date | null;
|
|
321
323
|
issues: string[];
|
|
322
324
|
syncConfig: Prisma.JsonValue | null;
|
|
323
325
|
connectionId: string;
|
|
324
|
-
createdAt: Date;
|
|
325
|
-
updatedAt: Date | null;
|
|
326
326
|
lastSyncAt: Date | null;
|
|
327
327
|
subscriptionId: string | null;
|
|
328
328
|
}>;
|
|
@@ -339,11 +339,11 @@ export declare class DataLayer {
|
|
|
339
339
|
}): Promise<{
|
|
340
340
|
id: string;
|
|
341
341
|
name: string;
|
|
342
|
+
createdAt: Date;
|
|
343
|
+
updatedAt: Date | null;
|
|
342
344
|
issues: string[];
|
|
343
345
|
syncConfig: Prisma.JsonValue | null;
|
|
344
346
|
connectionId: string;
|
|
345
|
-
createdAt: Date;
|
|
346
|
-
updatedAt: Date | null;
|
|
347
347
|
lastSyncAt: Date | null;
|
|
348
348
|
subscriptionId: string | null;
|
|
349
349
|
}[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/data-access/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,YAAY,EAEZ,UAAU,EAEX,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,qBAAa,SAAS;IACpB,EAAE,EAAE,YAAY,CAAC;IACjB,aAAa,EAAE,aAAa,CAAC,OAAO,MAAM,CAAC,CAAC;gBAEhC,EAAE,GAAG,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE;IAKhD,gBAAgB,CAAC,EACrB,UAAU,EACV,UAAU,GACX,EAAE;QACD,UAAU,EAAE,MAAM,CAAC,8BAA8B,CAAC;QAClD,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,8BAA8B,EAAE,MAAM,CAAC,CAAC;KACjE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/data-access/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/mylib.esm.js",
|
|
@@ -71,14 +71,15 @@
|
|
|
71
71
|
"scripts": {
|
|
72
72
|
"check": "tsc --noEmit",
|
|
73
73
|
"analyze": "size-limit --why",
|
|
74
|
-
"build": "dts build && cp -r ./src/prisma/* ./dist/prisma",
|
|
74
|
+
"build": "pnpm generate:schema && dts build && cp -r ./src/prisma/* ./dist/prisma",
|
|
75
75
|
"build:dev": "dts watch",
|
|
76
76
|
"lint": "dts lint",
|
|
77
77
|
"size": "size-limit",
|
|
78
78
|
"start": "dts watch",
|
|
79
79
|
"test": "jest",
|
|
80
80
|
"clean": "rm -rf dist && rm -rf node_modules",
|
|
81
|
-
"generate": "node ./
|
|
81
|
+
"generate:schema": "node ./src/prisma/gen.js",
|
|
82
|
+
"generate": "npx prisma generate --schema=./dist/prisma/schema.prisma",
|
|
82
83
|
"postinstall": "pnpm generate",
|
|
83
84
|
"synchronize": "npx prisma db push --schema=./src/prisma/schema.prisma --force-reset"
|
|
84
85
|
}
|