@agentuity/drizzle 3.0.0-beta.3 → 3.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/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @agentuity/drizzle
|
|
2
2
|
|
|
3
|
-
> **⚠️ DEPRECATED** — Use `drizzle-orm`
|
|
3
|
+
> **⚠️ DEPRECATED** — Use `drizzle-orm/node-postgres` with `pg` directly against your `DATABASE_URL`.
|
|
4
4
|
>
|
|
5
5
|
> This package is no longer recommended for new projects.
|
|
6
6
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @agentuity/drizzle - DEPRECATED
|
|
3
3
|
*
|
|
4
|
-
* Use drizzle-orm
|
|
4
|
+
* Use drizzle-orm/node-postgres with pg directly against your DATABASE_URL.
|
|
5
5
|
* This package is no longer recommended for new projects.
|
|
6
6
|
*
|
|
7
7
|
* ~~Drizzle ORM integration with resilient PostgreSQL connections~~
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @agentuity/drizzle - DEPRECATED
|
|
3
3
|
*
|
|
4
|
-
* Use drizzle-orm
|
|
4
|
+
* Use drizzle-orm/node-postgres with pg directly against your DATABASE_URL.
|
|
5
5
|
* This package is no longer recommended for new projects.
|
|
6
6
|
*
|
|
7
7
|
* ~~Drizzle ORM integration with resilient PostgreSQL connections~~
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentuity/drizzle",
|
|
3
|
-
"deprecated": "Use drizzle-orm
|
|
4
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"deprecated": "Use drizzle-orm with pg directly against your DATABASE_URL.",
|
|
4
|
+
"version": "3.0.0-beta.4",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Agentuity employees and contributors",
|
|
7
7
|
"type": "module",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"prepublishOnly": "bun run clean && bun run build"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@agentuity/core": "3.0.0-beta.
|
|
46
|
-
"@agentuity/postgres": "3.0.0-beta.
|
|
45
|
+
"@agentuity/core": "3.0.0-beta.4",
|
|
46
|
+
"@agentuity/postgres": "3.0.0-beta.4",
|
|
47
47
|
"drizzle-orm": "^0.45.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@agentuity/test-utils": "3.0.0-beta.
|
|
50
|
+
"@agentuity/test-utils": "3.0.0-beta.4",
|
|
51
51
|
"@types/bun": "latest",
|
|
52
52
|
"bun-types": "latest",
|
|
53
53
|
"typescript": "^5.9.0"
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @agentuity/drizzle - DEPRECATED
|
|
3
3
|
*
|
|
4
|
-
* Use drizzle-orm
|
|
4
|
+
* Use drizzle-orm/node-postgres with pg directly against your DATABASE_URL.
|
|
5
5
|
* This package is no longer recommended for new projects.
|
|
6
6
|
*
|
|
7
7
|
* ~~Drizzle ORM integration with resilient PostgreSQL connections~~
|