@mastra/dsql 1.3.0 → 1.3.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 +42 -0
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/agents/index.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -1567,9 +1567,10 @@ var AgentsDSQL = class AgentsDSQL extends AgentsStorage {
|
|
|
1567
1567
|
"defaultOptions", workflows, agents, "integrationTools",
|
|
1568
1568
|
"inputProcessors", "outputProcessors", memory, scorers,
|
|
1569
1569
|
"mcpClients", "requestContextSchema", workspace, skills, "skillsFormat",
|
|
1570
|
+
durable,
|
|
1570
1571
|
"changedFields", "changeMessage",
|
|
1571
1572
|
"createdAt", "createdAtZ"
|
|
1572
|
-
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21, $22, $23, $24, $25)`, [
|
|
1573
|
+
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21, $22, $23, $24, $25, $26)`, [
|
|
1573
1574
|
input.id,
|
|
1574
1575
|
input.agentId,
|
|
1575
1576
|
input.versionNumber,
|
|
@@ -1591,6 +1592,7 @@ var AgentsDSQL = class AgentsDSQL extends AgentsStorage {
|
|
|
1591
1592
|
input.workspace ? JSON.stringify(input.workspace) : null,
|
|
1592
1593
|
input.skills ? JSON.stringify(input.skills) : null,
|
|
1593
1594
|
input.skillsFormat ?? null,
|
|
1595
|
+
input.durable !== void 0 ? JSON.stringify(input.durable) : null,
|
|
1594
1596
|
input.changedFields ? JSON.stringify(input.changedFields) : null,
|
|
1595
1597
|
input.changeMessage ?? null,
|
|
1596
1598
|
nowIso,
|
|
@@ -1802,6 +1804,7 @@ var AgentsDSQL = class AgentsDSQL extends AgentsStorage {
|
|
|
1802
1804
|
workspace: this.parseJson(row.workspace, "workspace"),
|
|
1803
1805
|
skills: this.parseJson(row.skills, "skills"),
|
|
1804
1806
|
skillsFormat: row.skillsFormat,
|
|
1807
|
+
durable: this.parseJson(row.durable, "durable"),
|
|
1805
1808
|
changedFields: this.parseJson(row.changedFields, "changedFields"),
|
|
1806
1809
|
changeMessage: row.changeMessage,
|
|
1807
1810
|
createdAt: row.createdAtZ || row.createdAt
|