@mastra/dynamodb 0.0.0-remove-unused-import-20250909212718 → 0.0.0-remove-ai-peer-dep-from-evals-20260105220639
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 +1312 -3
- package/README.md +0 -4
- package/dist/docs/README.md +31 -0
- package/dist/docs/SKILL.md +32 -0
- package/dist/docs/SOURCE_MAP.json +6 -0
- package/dist/docs/storage/01-reference.md +162 -0
- package/dist/entities/index.d.ts +20 -1
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/score.d.ts +20 -1
- package/dist/entities/score.d.ts.map +1 -1
- package/dist/index.cjs +574 -1222
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +573 -1224
- package/dist/index.js.map +1 -1
- package/dist/storage/db/index.d.ts +32 -0
- package/dist/storage/db/index.d.ts.map +1 -0
- package/dist/storage/domains/memory/index.d.ts +17 -45
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/dist/storage/domains/scores/index.d.ts +46 -0
- package/dist/storage/domains/scores/index.d.ts.map +1 -0
- package/dist/storage/domains/utils.d.ts +7 -0
- package/dist/storage/domains/utils.d.ts.map +1 -0
- package/dist/storage/domains/workflows/index.d.ts +17 -24
- package/dist/storage/domains/workflows/index.d.ts.map +1 -1
- package/dist/storage/index.d.ts +87 -209
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +20 -18
- 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/operations/index.d.ts +0 -69
- package/dist/storage/domains/operations/index.d.ts.map +0 -1
- package/dist/storage/domains/score/index.d.ts +0 -43
- package/dist/storage/domains/score/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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/dynamodb",
|
|
3
|
-
"version": "0.0.0-remove-
|
|
3
|
+
"version": "0.0.0-remove-ai-peer-dep-from-evals-20260105220639",
|
|
4
4
|
"description": "DynamoDB storage adapter for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,27 +23,25 @@
|
|
|
23
23
|
"CHANGELOG.md"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-sdk/client-dynamodb": "^3.
|
|
27
|
-
"@aws-sdk/lib-dynamodb": "^3.
|
|
28
|
-
"electrodb": "^3.
|
|
26
|
+
"@aws-sdk/client-dynamodb": "^3.902.0",
|
|
27
|
+
"@aws-sdk/lib-dynamodb": "^3.902.0",
|
|
28
|
+
"electrodb": "^3.5.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@mastra/core": "0.0.0-remove-
|
|
31
|
+
"@mastra/core": "0.0.0-remove-ai-peer-dep-from-evals-20260105220639"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
36
|
-
"@vitest/
|
|
37
|
-
"
|
|
38
|
-
"axios": "^1.11.0",
|
|
39
|
-
"eslint": "^9.30.1",
|
|
34
|
+
"@types/node": "22.13.17",
|
|
35
|
+
"@vitest/coverage-v8": "4.0.12",
|
|
36
|
+
"@vitest/ui": "4.0.12",
|
|
37
|
+
"eslint": "^9.37.0",
|
|
40
38
|
"tsup": "^8.5.0",
|
|
41
|
-
"typescript": "^5.
|
|
42
|
-
"vitest": "
|
|
43
|
-
"@internal/lint": "0.0.0-remove-
|
|
44
|
-
"@internal/types-builder": "0.0.0-remove-
|
|
45
|
-
"@internal/storage-test-utils": "0.0.
|
|
46
|
-
"@mastra/core": "0.0.0-remove-
|
|
39
|
+
"typescript": "^5.9.3",
|
|
40
|
+
"vitest": "4.0.16",
|
|
41
|
+
"@internal/lint": "0.0.0-remove-ai-peer-dep-from-evals-20260105220639",
|
|
42
|
+
"@internal/types-builder": "0.0.0-remove-ai-peer-dep-from-evals-20260105220639",
|
|
43
|
+
"@internal/storage-test-utils": "0.0.49",
|
|
44
|
+
"@mastra/core": "0.0.0-remove-ai-peer-dep-from-evals-20260105220639"
|
|
47
45
|
},
|
|
48
46
|
"homepage": "https://mastra.ai",
|
|
49
47
|
"repository": {
|
|
@@ -54,8 +52,12 @@
|
|
|
54
52
|
"bugs": {
|
|
55
53
|
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
56
54
|
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=22.13.0"
|
|
57
|
+
},
|
|
57
58
|
"scripts": {
|
|
58
|
-
"build": "tsup --silent --config tsup.config.ts",
|
|
59
|
+
"build:lib": "tsup --silent --config tsup.config.ts",
|
|
60
|
+
"build:docs": "pnpx tsx ../../scripts/generate-package-docs.ts stores/dynamodb",
|
|
59
61
|
"dev": "tsup --watch && tsc -p tsconfig.build.json",
|
|
60
62
|
"clean": "rm -rf dist",
|
|
61
63
|
"lint": "eslint .",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { EvalRow, PaginationArgs, PaginationInfo } from '@mastra/core/storage';
|
|
2
|
-
import { LegacyEvalsStorage } from '@mastra/core/storage';
|
|
3
|
-
import type { Service } from 'electrodb';
|
|
4
|
-
export declare class LegacyEvalsDynamoDB extends LegacyEvalsStorage {
|
|
5
|
-
service: Service<Record<string, any>>;
|
|
6
|
-
tableName: string;
|
|
7
|
-
constructor({ service, tableName }: {
|
|
8
|
-
service: Service<Record<string, any>>;
|
|
9
|
-
tableName: string;
|
|
10
|
-
});
|
|
11
|
-
getEvalsByAgentName(agentName: string, type?: 'test' | 'live'): Promise<EvalRow[]>;
|
|
12
|
-
getEvals(options?: {
|
|
13
|
-
agentName?: string;
|
|
14
|
-
type?: 'test' | 'live';
|
|
15
|
-
} & PaginationArgs): Promise<PaginationInfo & {
|
|
16
|
-
evals: EvalRow[];
|
|
17
|
-
}>;
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/storage/domains/legacy-evals/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACpF,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,qBAAa,mBAAoB,SAAQ,kBAAkB;IACzD,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;IACtC,SAAS,EAAE,MAAM,CAAC;gBAEN,EAAE,OAAO,EAAE,SAAS,EAAE,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE;IAO1F,mBAAmB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAqFlF,QAAQ,CACZ,OAAO,GAAE;QACP,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;KACxB,GAAG,cAAmB,GACtB,OAAO,CAAC,cAAc,GAAG;QAAE,KAAK,EAAE,OAAO,EAAE,CAAA;KAAE,CAAC;CAwIlD"}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import type { DynamoDBDocumentClient } from '@aws-sdk/lib-dynamodb';
|
|
2
|
-
import { StoreOperations } from '@mastra/core/storage';
|
|
3
|
-
import type { StorageColumn, TABLE_NAMES } from '@mastra/core/storage';
|
|
4
|
-
import type { Service } from 'electrodb';
|
|
5
|
-
export declare class StoreOperationsDynamoDB extends StoreOperations {
|
|
6
|
-
client: DynamoDBDocumentClient;
|
|
7
|
-
tableName: string;
|
|
8
|
-
service: Service<Record<string, any>>;
|
|
9
|
-
constructor({ service, tableName, client, }: {
|
|
10
|
-
service: Service<Record<string, any>>;
|
|
11
|
-
tableName: string;
|
|
12
|
-
client: DynamoDBDocumentClient;
|
|
13
|
-
});
|
|
14
|
-
hasColumn(): Promise<boolean>;
|
|
15
|
-
dropTable(): Promise<void>;
|
|
16
|
-
private getEntityNameForTable;
|
|
17
|
-
/**
|
|
18
|
-
* Pre-processes a record to ensure Date objects are converted to ISO strings
|
|
19
|
-
* This is necessary because ElectroDB validation happens before setters are applied
|
|
20
|
-
*/
|
|
21
|
-
private preprocessRecord;
|
|
22
|
-
/**
|
|
23
|
-
* Validates that the required DynamoDB table exists and is accessible.
|
|
24
|
-
* This does not check the table structure - it assumes the table
|
|
25
|
-
* was created with the correct structure via CDK/CloudFormation.
|
|
26
|
-
*/
|
|
27
|
-
private validateTableExists;
|
|
28
|
-
/**
|
|
29
|
-
* This method is modified for DynamoDB with ElectroDB single-table design.
|
|
30
|
-
* It assumes the table is created and managed externally via CDK/CloudFormation.
|
|
31
|
-
*
|
|
32
|
-
* This implementation only validates that the required table exists and is accessible.
|
|
33
|
-
* No table creation is attempted - we simply check if we can access the table.
|
|
34
|
-
*/
|
|
35
|
-
createTable({ tableName }: {
|
|
36
|
-
tableName: TABLE_NAMES;
|
|
37
|
-
schema: Record<string, any>;
|
|
38
|
-
}): Promise<void>;
|
|
39
|
-
insert({ tableName, record }: {
|
|
40
|
-
tableName: TABLE_NAMES;
|
|
41
|
-
record: Record<string, any>;
|
|
42
|
-
}): Promise<void>;
|
|
43
|
-
alterTable(_args: {
|
|
44
|
-
tableName: TABLE_NAMES;
|
|
45
|
-
schema: Record<string, StorageColumn>;
|
|
46
|
-
ifNotExists: string[];
|
|
47
|
-
}): Promise<void>;
|
|
48
|
-
/**
|
|
49
|
-
* Clear all items from a logical "table" (entity type)
|
|
50
|
-
*/
|
|
51
|
-
clearTable({ tableName }: {
|
|
52
|
-
tableName: TABLE_NAMES;
|
|
53
|
-
}): Promise<void>;
|
|
54
|
-
/**
|
|
55
|
-
* Insert multiple records as a batch
|
|
56
|
-
*/
|
|
57
|
-
batchInsert({ tableName, records }: {
|
|
58
|
-
tableName: TABLE_NAMES;
|
|
59
|
-
records: Record<string, any>[];
|
|
60
|
-
}): Promise<void>;
|
|
61
|
-
/**
|
|
62
|
-
* Load a record by its keys
|
|
63
|
-
*/
|
|
64
|
-
load<R>({ tableName, keys }: {
|
|
65
|
-
tableName: TABLE_NAMES;
|
|
66
|
-
keys: Record<string, string>;
|
|
67
|
-
}): Promise<R | null>;
|
|
68
|
-
}
|
|
69
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/storage/domains/operations/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAEpE,OAAO,EACL,eAAe,EAShB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACvE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,qBAAa,uBAAwB,SAAQ,eAAe;IAC1D,MAAM,EAAE,sBAAsB,CAAC;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;gBAC1B,EACV,OAAO,EACP,SAAS,EACT,MAAM,GACP,EAAE;QACD,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;QACtC,SAAS,EAAE,MAAM,CAAC;QAClB,MAAM,EAAE,sBAAsB,CAAC;KAChC;IAOK,SAAS,IAAI,OAAO,CAAC,OAAO,CAAC;IAI7B,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC;IAGhC,OAAO,CAAC,qBAAqB;IAc7B;;;OAGG;IACH,OAAO,CAAC,gBAAgB;IAsDxB;;;;OAIG;YACW,mBAAmB;IA6BjC;;;;;;OAMG;IACG,WAAW,CAAC,EAAE,SAAS,EAAE,EAAE;QAAE,SAAS,EAAE,WAAW,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA+BlG,MAAM,CAAC,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE;QAAE,SAAS,EAAE,WAAW,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA+BrG,UAAU,CAAC,KAAK,EAAE;QACtB,SAAS,EAAE,WAAW,CAAC;QACvB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;QACtC,WAAW,EAAE,MAAM,EAAE,CAAC;KACvB,GAAG,OAAO,CAAC,IAAI,CAAC;IAIjB;;OAEG;IACG,UAAU,CAAC,EAAE,SAAS,EAAE,EAAE;QAAE,SAAS,EAAE,WAAW,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAmG1E;;OAEG;IACG,WAAW,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,EAAE;QAAE,SAAS,EAAE,WAAW,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAqDpH;;OAEG;IACG,IAAI,CAAC,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE;QAAE,SAAS,EAAE,WAAW,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;CA+ChH"}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import type { ScoreRowData, ScoringSource } from '@mastra/core/scores';
|
|
2
|
-
import { ScoresStorage } from '@mastra/core/storage';
|
|
3
|
-
import type { PaginationInfo, StoragePagination } from '@mastra/core/storage';
|
|
4
|
-
import type { Service } from 'electrodb';
|
|
5
|
-
export declare class ScoresStorageDynamoDB extends ScoresStorage {
|
|
6
|
-
private service;
|
|
7
|
-
constructor({ service }: {
|
|
8
|
-
service: Service<Record<string, any>>;
|
|
9
|
-
});
|
|
10
|
-
private parseScoreData;
|
|
11
|
-
getScoreById({ id }: {
|
|
12
|
-
id: string;
|
|
13
|
-
}): Promise<ScoreRowData | null>;
|
|
14
|
-
saveScore(score: Omit<ScoreRowData, 'id' | 'createdAt' | 'updatedAt'>): Promise<{
|
|
15
|
-
score: ScoreRowData;
|
|
16
|
-
}>;
|
|
17
|
-
getScoresByScorerId({ scorerId, pagination, entityId, entityType, source, }: {
|
|
18
|
-
scorerId: string;
|
|
19
|
-
pagination: StoragePagination;
|
|
20
|
-
entityId?: string;
|
|
21
|
-
entityType?: string;
|
|
22
|
-
source?: ScoringSource;
|
|
23
|
-
}): Promise<{
|
|
24
|
-
pagination: PaginationInfo;
|
|
25
|
-
scores: ScoreRowData[];
|
|
26
|
-
}>;
|
|
27
|
-
getScoresByRunId({ runId, pagination, }: {
|
|
28
|
-
runId: string;
|
|
29
|
-
pagination: StoragePagination;
|
|
30
|
-
}): Promise<{
|
|
31
|
-
pagination: PaginationInfo;
|
|
32
|
-
scores: ScoreRowData[];
|
|
33
|
-
}>;
|
|
34
|
-
getScoresByEntityId({ entityId, entityType, pagination, }: {
|
|
35
|
-
entityId: string;
|
|
36
|
-
entityType: string;
|
|
37
|
-
pagination: StoragePagination;
|
|
38
|
-
}): Promise<{
|
|
39
|
-
pagination: PaginationInfo;
|
|
40
|
-
scores: ScoreRowData[];
|
|
41
|
-
}>;
|
|
42
|
-
}
|
|
43
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/storage/domains/score/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,qBAAa,qBAAsB,SAAQ,aAAa;IACtD,OAAO,CAAC,OAAO,CAA+B;gBAClC,EAAE,OAAO,EAAE,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAA;KAAE;IAMlE,OAAO,CAAC,cAAc;IAUhB,YAAY,CAAC,EAAE,EAAE,EAAE,EAAE;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC;IAuBlE,SAAS,CAAC,KAAK,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,GAAG,WAAW,CAAC,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,YAAY,CAAA;KAAE,CAAC;IAiExG,mBAAmB,CAAC,EACxB,QAAQ,EACR,UAAU,EACV,QAAQ,EACR,UAAU,EACV,MAAM,GACP,EAAE;QACD,QAAQ,EAAE,MAAM,CAAC;QACjB,UAAU,EAAE,iBAAiB,CAAC;QAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,MAAM,CAAC,EAAE,aAAa,CAAC;KACxB,GAAG,OAAO,CAAC;QAAE,UAAU,EAAE,cAAc,CAAC;QAAC,MAAM,EAAE,YAAY,EAAE,CAAA;KAAE,CAAC;IA6D7D,gBAAgB,CAAC,EACrB,KAAK,EACL,UAAU,GACX,EAAE;QACD,KAAK,EAAE,MAAM,CAAC;QACd,UAAU,EAAE,iBAAiB,CAAC;KAC/B,GAAG,OAAO,CAAC;QAAE,UAAU,EAAE,cAAc,CAAC;QAAC,MAAM,EAAE,YAAY,EAAE,CAAA;KAAE,CAAC;IA6C7D,mBAAmB,CAAC,EACxB,QAAQ,EACR,UAAU,EACV,UAAU,GACX,EAAE;QACD,QAAQ,EAAE,MAAM,CAAC;QACjB,UAAU,EAAE,MAAM,CAAC;QACnB,UAAU,EAAE,iBAAiB,CAAC;KAC/B,GAAG,OAAO,CAAC;QAAE,UAAU,EAAE,cAAc,CAAC;QAAC,MAAM,EAAE,YAAY,EAAE,CAAA;KAAE,CAAC;CA+CpE"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { TracesStorage } from '@mastra/core/storage';
|
|
2
|
-
import type { PaginationInfo, StorageGetTracesPaginatedArg } from '@mastra/core/storage';
|
|
3
|
-
import type { Trace } from '@mastra/core/telemetry';
|
|
4
|
-
import type { Service } from 'electrodb';
|
|
5
|
-
import type { StoreOperationsDynamoDB } from '../operations/index.js';
|
|
6
|
-
export declare class TracesStorageDynamoDB extends TracesStorage {
|
|
7
|
-
private service;
|
|
8
|
-
private operations;
|
|
9
|
-
constructor({ service, operations }: {
|
|
10
|
-
service: Service<Record<string, any>>;
|
|
11
|
-
operations: StoreOperationsDynamoDB;
|
|
12
|
-
});
|
|
13
|
-
getTraces(args: {
|
|
14
|
-
name?: string;
|
|
15
|
-
scope?: string;
|
|
16
|
-
page: number;
|
|
17
|
-
perPage: number;
|
|
18
|
-
attributes?: Record<string, string>;
|
|
19
|
-
filters?: Record<string, any>;
|
|
20
|
-
}): Promise<any[]>;
|
|
21
|
-
batchTraceInsert({ records }: {
|
|
22
|
-
records: Record<string, any>[];
|
|
23
|
-
}): Promise<void>;
|
|
24
|
-
getTracesPaginated(args: StorageGetTracesPaginatedArg): Promise<PaginationInfo & {
|
|
25
|
-
traces: Trace[];
|
|
26
|
-
}>;
|
|
27
|
-
}
|
|
28
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/storage/domains/traces/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAgB,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,KAAK,EAAE,cAAc,EAAE,4BAA4B,EAAE,MAAM,sBAAsB,CAAC;AACzF,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAE7D,qBAAa,qBAAsB,SAAQ,aAAa;IACtD,OAAO,CAAC,OAAO,CAA+B;IAC9C,OAAO,CAAC,UAAU,CAA0B;gBAChC,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;QAAC,UAAU,EAAE,uBAAuB,CAAA;KAAE;IAQ7G,SAAS,CAAC,IAAI,EAAE;QACpB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACpC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC/B,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAiDZ,gBAAgB,CAAC,EAAE,OAAO,EAAE,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA2BhF,kBAAkB,CAAC,IAAI,EAAE,4BAA4B,GAAG,OAAO,CAAC,cAAc,GAAG;QAAE,MAAM,EAAE,KAAK,EAAE,CAAA;KAAE,CAAC;CAwL5G"}
|