@mastra/cloudflare 1.0.0-beta.3 → 1.0.0-beta.4
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 +31 -0
- package/dist/index.cjs +36 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +37 -37
- package/dist/index.js.map +1 -1
- 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/scores/index.d.ts.map +1 -1
- package/dist/storage/domains/workflows/index.d.ts.map +1 -1
- package/dist/storage/index.d.ts.map +1 -1
- package/dist/storage/types.d.ts +28 -5
- package/dist/storage/types.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MastraError, ErrorCategory, ErrorDomain } from '@mastra/core/error';
|
|
2
|
-
import { MastraStorage, TABLE_THREADS, TABLE_MESSAGES, TABLE_WORKFLOW_SNAPSHOT, TABLE_SCORERS, StoreOperations, TABLE_TRACES, WorkflowsStorage, ensureDate, normalizePerPage, MemoryStorage, calculatePagination, serializeDate, TABLE_RESOURCES, ScoresStorage, transformScoreRow as transformScoreRow$1 } from '@mastra/core/storage';
|
|
2
|
+
import { MastraStorage, TABLE_THREADS, TABLE_MESSAGES, TABLE_WORKFLOW_SNAPSHOT, TABLE_SCORERS, createStorageErrorId, StoreOperations, TABLE_TRACES, WorkflowsStorage, ensureDate, normalizePerPage, MemoryStorage, calculatePagination, serializeDate, TABLE_RESOURCES, ScoresStorage, transformScoreRow as transformScoreRow$1 } from '@mastra/core/storage';
|
|
3
3
|
import Cloudflare from 'cloudflare';
|
|
4
4
|
import { MessageList } from '@mastra/core/agent';
|
|
5
5
|
import { saveScorePayloadSchema } from '@mastra/core/evals';
|
|
@@ -39,7 +39,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
39
39
|
} catch (error) {
|
|
40
40
|
const mastraError = new MastraError(
|
|
41
41
|
{
|
|
42
|
-
id: "
|
|
42
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_THREAD_BY_ID", "FAILED"),
|
|
43
43
|
domain: ErrorDomain.STORAGE,
|
|
44
44
|
category: ErrorCategory.THIRD_PARTY,
|
|
45
45
|
details: {
|
|
@@ -60,7 +60,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
60
60
|
if (page < 0) {
|
|
61
61
|
throw new MastraError(
|
|
62
62
|
{
|
|
63
|
-
id: "
|
|
63
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_THREADS_BY_RESOURCE_ID", "INVALID_PAGE"),
|
|
64
64
|
domain: ErrorDomain.STORAGE,
|
|
65
65
|
category: ErrorCategory.USER,
|
|
66
66
|
details: { page }
|
|
@@ -96,7 +96,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
96
96
|
} catch (error) {
|
|
97
97
|
throw new MastraError(
|
|
98
98
|
{
|
|
99
|
-
id: "
|
|
99
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_THREADS_BY_RESOURCE_ID", "FAILED"),
|
|
100
100
|
domain: ErrorDomain.STORAGE,
|
|
101
101
|
category: ErrorCategory.THIRD_PARTY,
|
|
102
102
|
text: "Failed to get threads by resource ID with pagination"
|
|
@@ -112,7 +112,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
112
112
|
} catch (error) {
|
|
113
113
|
throw new MastraError(
|
|
114
114
|
{
|
|
115
|
-
id: "
|
|
115
|
+
id: createStorageErrorId("CLOUDFLARE", "SAVE_THREAD", "FAILED"),
|
|
116
116
|
domain: ErrorDomain.STORAGE,
|
|
117
117
|
category: ErrorCategory.THIRD_PARTY,
|
|
118
118
|
details: {
|
|
@@ -147,7 +147,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
147
147
|
} catch (error) {
|
|
148
148
|
throw new MastraError(
|
|
149
149
|
{
|
|
150
|
-
id: "
|
|
150
|
+
id: createStorageErrorId("CLOUDFLARE", "UPDATE_THREAD", "FAILED"),
|
|
151
151
|
domain: ErrorDomain.STORAGE,
|
|
152
152
|
category: ErrorCategory.THIRD_PARTY,
|
|
153
153
|
details: {
|
|
@@ -196,7 +196,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
196
196
|
} catch (error) {
|
|
197
197
|
throw new MastraError(
|
|
198
198
|
{
|
|
199
|
-
id: "
|
|
199
|
+
id: createStorageErrorId("CLOUDFLARE", "DELETE_THREAD", "FAILED"),
|
|
200
200
|
domain: ErrorDomain.STORAGE,
|
|
201
201
|
category: ErrorCategory.THIRD_PARTY,
|
|
202
202
|
details: {
|
|
@@ -401,7 +401,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
401
401
|
} catch (error) {
|
|
402
402
|
throw new MastraError(
|
|
403
403
|
{
|
|
404
|
-
id: "
|
|
404
|
+
id: createStorageErrorId("CLOUDFLARE", "SAVE_MESSAGES", "FAILED"),
|
|
405
405
|
domain: ErrorDomain.STORAGE,
|
|
406
406
|
category: ErrorCategory.THIRD_PARTY,
|
|
407
407
|
details: {
|
|
@@ -421,7 +421,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
421
421
|
} catch (error) {
|
|
422
422
|
throw new MastraError(
|
|
423
423
|
{
|
|
424
|
-
id: "
|
|
424
|
+
id: createStorageErrorId("CLOUDFLARE", "SAVE_MESSAGES", "FAILED"),
|
|
425
425
|
domain: ErrorDomain.STORAGE,
|
|
426
426
|
category: ErrorCategory.THIRD_PARTY
|
|
427
427
|
},
|
|
@@ -570,7 +570,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
570
570
|
} catch (error) {
|
|
571
571
|
const mastraError = new MastraError(
|
|
572
572
|
{
|
|
573
|
-
id: "
|
|
573
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_MESSAGES_BY_ID", "FAILED"),
|
|
574
574
|
domain: ErrorDomain.STORAGE,
|
|
575
575
|
category: ErrorCategory.THIRD_PARTY,
|
|
576
576
|
text: `Error retrieving messages by ID`,
|
|
@@ -592,7 +592,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
592
592
|
if (threadIds.length === 0 || threadIds.some((id) => !isValidThreadId(id))) {
|
|
593
593
|
throw new MastraError(
|
|
594
594
|
{
|
|
595
|
-
id: "
|
|
595
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_MESSAGES", "INVALID_THREAD_ID"),
|
|
596
596
|
domain: ErrorDomain.STORAGE,
|
|
597
597
|
category: ErrorCategory.THIRD_PARTY,
|
|
598
598
|
details: { threadId: Array.isArray(threadId) ? JSON.stringify(threadId) : String(threadId) }
|
|
@@ -606,7 +606,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
606
606
|
if (page < 0) {
|
|
607
607
|
throw new MastraError(
|
|
608
608
|
{
|
|
609
|
-
id: "
|
|
609
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_MESSAGES", "INVALID_PAGE"),
|
|
610
610
|
domain: ErrorDomain.STORAGE,
|
|
611
611
|
category: ErrorCategory.USER,
|
|
612
612
|
details: { page }
|
|
@@ -754,7 +754,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
754
754
|
} catch (error) {
|
|
755
755
|
const mastraError = new MastraError(
|
|
756
756
|
{
|
|
757
|
-
id: "
|
|
757
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_MESSAGES", "FAILED"),
|
|
758
758
|
domain: ErrorDomain.STORAGE,
|
|
759
759
|
category: ErrorCategory.THIRD_PARTY,
|
|
760
760
|
text: `Failed to list messages for thread ${Array.isArray(threadId) ? threadId.join(",") : threadId}: ${error instanceof Error ? error.message : String(error)}`,
|
|
@@ -876,7 +876,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
876
876
|
} catch (error) {
|
|
877
877
|
throw new MastraError(
|
|
878
878
|
{
|
|
879
|
-
id: "
|
|
879
|
+
id: createStorageErrorId("CLOUDFLARE", "UPDATE_MESSAGES", "FAILED"),
|
|
880
880
|
domain: ErrorDomain.STORAGE,
|
|
881
881
|
category: ErrorCategory.THIRD_PARTY,
|
|
882
882
|
text: "Failed to update messages"
|
|
@@ -899,7 +899,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
899
899
|
} catch (error) {
|
|
900
900
|
const mastraError = new MastraError(
|
|
901
901
|
{
|
|
902
|
-
id: "
|
|
902
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_RESOURCE_BY_ID", "FAILED"),
|
|
903
903
|
domain: ErrorDomain.STORAGE,
|
|
904
904
|
category: ErrorCategory.THIRD_PARTY,
|
|
905
905
|
details: {
|
|
@@ -928,7 +928,7 @@ var MemoryStorageCloudflare = class extends MemoryStorage {
|
|
|
928
928
|
} catch (error) {
|
|
929
929
|
throw new MastraError(
|
|
930
930
|
{
|
|
931
|
-
id: "
|
|
931
|
+
id: createStorageErrorId("CLOUDFLARE", "SAVE_RESOURCE", "FAILED"),
|
|
932
932
|
domain: ErrorDomain.STORAGE,
|
|
933
933
|
category: ErrorCategory.THIRD_PARTY,
|
|
934
934
|
details: {
|
|
@@ -999,7 +999,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
999
999
|
} catch (error) {
|
|
1000
1000
|
throw new MastraError(
|
|
1001
1001
|
{
|
|
1002
|
-
id: "
|
|
1002
|
+
id: createStorageErrorId("CLOUDFLARE", "CLEAR_TABLE", "FAILED"),
|
|
1003
1003
|
domain: ErrorDomain.STORAGE,
|
|
1004
1004
|
category: ErrorCategory.THIRD_PARTY,
|
|
1005
1005
|
details: {
|
|
@@ -1019,7 +1019,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
1019
1019
|
} catch (error) {
|
|
1020
1020
|
throw new MastraError(
|
|
1021
1021
|
{
|
|
1022
|
-
id: "
|
|
1022
|
+
id: createStorageErrorId("CLOUDFLARE", "DROP_TABLE", "FAILED"),
|
|
1023
1023
|
domain: ErrorDomain.STORAGE,
|
|
1024
1024
|
category: ErrorCategory.THIRD_PARTY,
|
|
1025
1025
|
details: {
|
|
@@ -1321,7 +1321,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
1321
1321
|
} catch (error) {
|
|
1322
1322
|
throw new MastraError(
|
|
1323
1323
|
{
|
|
1324
|
-
id: "
|
|
1324
|
+
id: createStorageErrorId("CLOUDFLARE", "INSERT", "FAILED"),
|
|
1325
1325
|
domain: ErrorDomain.STORAGE,
|
|
1326
1326
|
category: ErrorCategory.THIRD_PARTY,
|
|
1327
1327
|
details: {
|
|
@@ -1341,7 +1341,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
1341
1341
|
} catch (error) {
|
|
1342
1342
|
const mastraError = new MastraError(
|
|
1343
1343
|
{
|
|
1344
|
-
id: "
|
|
1344
|
+
id: createStorageErrorId("CLOUDFLARE", "LOAD", "FAILED"),
|
|
1345
1345
|
domain: ErrorDomain.STORAGE,
|
|
1346
1346
|
category: ErrorCategory.THIRD_PARTY,
|
|
1347
1347
|
details: {
|
|
@@ -1367,7 +1367,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
1367
1367
|
} catch (error) {
|
|
1368
1368
|
throw new MastraError(
|
|
1369
1369
|
{
|
|
1370
|
-
id: "
|
|
1370
|
+
id: createStorageErrorId("CLOUDFLARE", "BATCH_INSERT", "FAILED"),
|
|
1371
1371
|
domain: ErrorDomain.STORAGE,
|
|
1372
1372
|
category: ErrorCategory.THIRD_PARTY,
|
|
1373
1373
|
text: `Error in batch insert for table ${input.tableName}`,
|
|
@@ -1439,7 +1439,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
1439
1439
|
} catch (error) {
|
|
1440
1440
|
throw new MastraError(
|
|
1441
1441
|
{
|
|
1442
|
-
id: "
|
|
1442
|
+
id: createStorageErrorId("CLOUDFLARE", "CREATE_TABLE", "FAILED"),
|
|
1443
1443
|
domain: ErrorDomain.STORAGE,
|
|
1444
1444
|
category: ErrorCategory.THIRD_PARTY,
|
|
1445
1445
|
details: {
|
|
@@ -1471,7 +1471,7 @@ var StoreOperationsCloudflare = class extends StoreOperations {
|
|
|
1471
1471
|
} catch (error) {
|
|
1472
1472
|
throw new MastraError(
|
|
1473
1473
|
{
|
|
1474
|
-
id: "
|
|
1474
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_NAMESPACE_KEYS", "FAILED"),
|
|
1475
1475
|
domain: ErrorDomain.STORAGE,
|
|
1476
1476
|
category: ErrorCategory.THIRD_PARTY,
|
|
1477
1477
|
details: {
|
|
@@ -1529,7 +1529,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1529
1529
|
} catch (error) {
|
|
1530
1530
|
const mastraError = new MastraError(
|
|
1531
1531
|
{
|
|
1532
|
-
id: "
|
|
1532
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_SCORE_BY_ID", "FAILED"),
|
|
1533
1533
|
domain: ErrorDomain.STORAGE,
|
|
1534
1534
|
category: ErrorCategory.THIRD_PARTY,
|
|
1535
1535
|
text: `Failed to get score by id: ${id}`
|
|
@@ -1548,7 +1548,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1548
1548
|
} catch (error) {
|
|
1549
1549
|
throw new MastraError(
|
|
1550
1550
|
{
|
|
1551
|
-
id: "
|
|
1551
|
+
id: createStorageErrorId("CLOUDFLARE", "SAVE_SCORE", "VALIDATION_FAILED"),
|
|
1552
1552
|
domain: ErrorDomain.STORAGE,
|
|
1553
1553
|
category: ErrorCategory.USER,
|
|
1554
1554
|
details: { scoreId: score.id }
|
|
@@ -1583,7 +1583,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1583
1583
|
} catch (error) {
|
|
1584
1584
|
const mastraError = new MastraError(
|
|
1585
1585
|
{
|
|
1586
|
-
id: "
|
|
1586
|
+
id: createStorageErrorId("CLOUDFLARE", "SAVE_SCORE", "FAILED"),
|
|
1587
1587
|
domain: ErrorDomain.STORAGE,
|
|
1588
1588
|
category: ErrorCategory.THIRD_PARTY,
|
|
1589
1589
|
text: `Failed to save score: ${score.id}`
|
|
@@ -1643,7 +1643,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1643
1643
|
} catch (error) {
|
|
1644
1644
|
const mastraError = new MastraError(
|
|
1645
1645
|
{
|
|
1646
|
-
id: "
|
|
1646
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_SCORES_BY_SCORER_ID", "FAILED"),
|
|
1647
1647
|
domain: ErrorDomain.STORAGE,
|
|
1648
1648
|
category: ErrorCategory.THIRD_PARTY,
|
|
1649
1649
|
text: `Failed to get scores by scorer id: ${scorerId}`
|
|
@@ -1691,7 +1691,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1691
1691
|
} catch (error) {
|
|
1692
1692
|
const mastraError = new MastraError(
|
|
1693
1693
|
{
|
|
1694
|
-
id: "
|
|
1694
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_SCORES_BY_RUN_ID", "FAILED"),
|
|
1695
1695
|
domain: ErrorDomain.STORAGE,
|
|
1696
1696
|
category: ErrorCategory.THIRD_PARTY,
|
|
1697
1697
|
text: `Failed to get scores by run id: ${runId}`
|
|
@@ -1740,7 +1740,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1740
1740
|
} catch (error) {
|
|
1741
1741
|
const mastraError = new MastraError(
|
|
1742
1742
|
{
|
|
1743
|
-
id: "
|
|
1743
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_SCORES_BY_ENTITY_ID", "FAILED"),
|
|
1744
1744
|
domain: ErrorDomain.STORAGE,
|
|
1745
1745
|
category: ErrorCategory.THIRD_PARTY,
|
|
1746
1746
|
text: `Failed to get scores by entity id: ${entityId}, type: ${entityType}`
|
|
@@ -1789,7 +1789,7 @@ var ScoresStorageCloudflare = class extends ScoresStorage {
|
|
|
1789
1789
|
} catch (error) {
|
|
1790
1790
|
const mastraError = new MastraError(
|
|
1791
1791
|
{
|
|
1792
|
-
id: "
|
|
1792
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_SCORES_BY_SPAN", "FAILED"),
|
|
1793
1793
|
domain: ErrorDomain.STORAGE,
|
|
1794
1794
|
category: ErrorCategory.THIRD_PARTY,
|
|
1795
1795
|
text: `Failed to get scores by span: traceId=${traceId}, spanId=${spanId}`
|
|
@@ -1848,7 +1848,7 @@ var WorkflowsStorageCloudflare = class extends WorkflowsStorage {
|
|
|
1848
1848
|
} catch (error) {
|
|
1849
1849
|
throw new MastraError(
|
|
1850
1850
|
{
|
|
1851
|
-
id: "
|
|
1851
|
+
id: createStorageErrorId("CLOUDFLARE", "PERSIST_WORKFLOW_SNAPSHOT", "FAILED"),
|
|
1852
1852
|
domain: ErrorDomain.STORAGE,
|
|
1853
1853
|
category: ErrorCategory.THIRD_PARTY,
|
|
1854
1854
|
text: `Error persisting workflow snapshot for workflow ${params.workflowName}, run ${params.runId}`,
|
|
@@ -1873,7 +1873,7 @@ var WorkflowsStorageCloudflare = class extends WorkflowsStorage {
|
|
|
1873
1873
|
} catch (error) {
|
|
1874
1874
|
const mastraError = new MastraError(
|
|
1875
1875
|
{
|
|
1876
|
-
id: "
|
|
1876
|
+
id: createStorageErrorId("CLOUDFLARE", "LOAD_WORKFLOW_SNAPSHOT", "FAILED"),
|
|
1877
1877
|
domain: ErrorDomain.STORAGE,
|
|
1878
1878
|
category: ErrorCategory.THIRD_PARTY,
|
|
1879
1879
|
text: `Error loading workflow snapshot for workflow ${params.workflowName}, run ${params.runId}`,
|
|
@@ -1932,7 +1932,7 @@ var WorkflowsStorageCloudflare = class extends WorkflowsStorage {
|
|
|
1932
1932
|
if (page < 0 || !Number.isInteger(page)) {
|
|
1933
1933
|
throw new MastraError(
|
|
1934
1934
|
{
|
|
1935
|
-
id: "
|
|
1935
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_WORKFLOW_RUNS", "INVALID_PAGE"),
|
|
1936
1936
|
domain: ErrorDomain.STORAGE,
|
|
1937
1937
|
category: ErrorCategory.USER,
|
|
1938
1938
|
details: { page }
|
|
@@ -1987,7 +1987,7 @@ var WorkflowsStorageCloudflare = class extends WorkflowsStorage {
|
|
|
1987
1987
|
} catch (error) {
|
|
1988
1988
|
const mastraError = new MastraError(
|
|
1989
1989
|
{
|
|
1990
|
-
id: "
|
|
1990
|
+
id: createStorageErrorId("CLOUDFLARE", "LIST_WORKFLOW_RUNS", "FAILED"),
|
|
1991
1991
|
domain: ErrorDomain.STORAGE,
|
|
1992
1992
|
category: ErrorCategory.THIRD_PARTY
|
|
1993
1993
|
},
|
|
@@ -2025,7 +2025,7 @@ var WorkflowsStorageCloudflare = class extends WorkflowsStorage {
|
|
|
2025
2025
|
} catch (error) {
|
|
2026
2026
|
const mastraError = new MastraError(
|
|
2027
2027
|
{
|
|
2028
|
-
id: "
|
|
2028
|
+
id: createStorageErrorId("CLOUDFLARE", "GET_WORKFLOW_RUN_BY_ID", "FAILED"),
|
|
2029
2029
|
domain: ErrorDomain.STORAGE,
|
|
2030
2030
|
category: ErrorCategory.THIRD_PARTY,
|
|
2031
2031
|
details: {
|
|
@@ -2087,7 +2087,7 @@ var CloudflareStore = class extends MastraStorage {
|
|
|
2087
2087
|
return supports;
|
|
2088
2088
|
}
|
|
2089
2089
|
constructor(config) {
|
|
2090
|
-
super({ id: config.id, name: "Cloudflare" });
|
|
2090
|
+
super({ id: config.id, name: "Cloudflare", disableInit: config.disableInit });
|
|
2091
2091
|
try {
|
|
2092
2092
|
if (isWorkersConfig(config)) {
|
|
2093
2093
|
this.validateWorkersConfig(config);
|
|
@@ -2127,7 +2127,7 @@ var CloudflareStore = class extends MastraStorage {
|
|
|
2127
2127
|
} catch (error) {
|
|
2128
2128
|
throw new MastraError(
|
|
2129
2129
|
{
|
|
2130
|
-
id: "
|
|
2130
|
+
id: createStorageErrorId("CLOUDFLARE", "INIT", "FAILED"),
|
|
2131
2131
|
domain: ErrorDomain.STORAGE,
|
|
2132
2132
|
category: ErrorCategory.THIRD_PARTY
|
|
2133
2133
|
},
|