@mastra/pg 1.9.3 → 1.9.4-alpha.0
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 +11 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/workflows/index.d.ts +10 -0
- package/dist/storage/domains/workflows/index.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -12905,7 +12905,7 @@ function getTableName6({ indexName, schemaName }) {
|
|
|
12905
12905
|
return schemaName ? `${schemaName}.${quotedIndexName}` : quotedIndexName;
|
|
12906
12906
|
}
|
|
12907
12907
|
function sanitizeJsonForPg(jsonString) {
|
|
12908
|
-
return jsonString.replace(
|
|
12908
|
+
return jsonString.replace(/\\\\?u(0000|[Dd][89A-Fa-f][0-9A-Fa-f]{2})/g, "").replace(/(^|[^\\])(\\(?!["\\/bfnrtu]))/g, "$1\\\\");
|
|
12909
12909
|
}
|
|
12910
12910
|
var WorkflowsPG = class _WorkflowsPG extends WorkflowsStorage {
|
|
12911
12911
|
#db;
|