@mastra/mssql 1.7.0 → 1.7.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/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- 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
|
@@ -1295,6 +1295,7 @@ var AgentsMSSQL = class AgentsMSSQL extends AgentsStorage {
|
|
|
1295
1295
|
workspace: this.parseJson(row.workspace, "workspace"),
|
|
1296
1296
|
skills: this.parseJson(row.skills, "skills"),
|
|
1297
1297
|
skillsFormat: row.skillsFormat ?? void 0,
|
|
1298
|
+
durable: this.parseJson(row.durable, "durable"),
|
|
1298
1299
|
changedFields: this.parseJson(row.changedFields, "changedFields"),
|
|
1299
1300
|
changeMessage: row.changeMessage ?? void 0,
|
|
1300
1301
|
createdAt: row.createdAt instanceof Date ? row.createdAt : new Date(row.createdAt)
|
|
@@ -1541,6 +1542,7 @@ var AgentsMSSQL = class AgentsMSSQL extends AgentsStorage {
|
|
|
1541
1542
|
workspace: input.workspace ?? null,
|
|
1542
1543
|
skills: input.skills ?? null,
|
|
1543
1544
|
skillsFormat: input.skillsFormat ?? null,
|
|
1545
|
+
durable: input.durable ?? null,
|
|
1544
1546
|
changedFields: input.changedFields ?? null,
|
|
1545
1547
|
changeMessage: input.changeMessage ?? null,
|
|
1546
1548
|
createdAt: now
|