@12-apps/jobs 1.20.0 → 2.0.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.
Files changed (2) hide show
  1. package/ADOPTING.md +1 -1
  2. package/package.json +1 -1
package/ADOPTING.md CHANGED
@@ -103,7 +103,7 @@ packages/jobs/prisma/migrations/ # its migration
103
103
  ```
104
104
 
105
105
  A host adopts them by COPY (the entity-lifecycle / shift precedent — in this
106
- repo, `packages/shared-helpers/scripts/sync-jobs-schema.mjs` plus the
106
+ repo, `packages/prisma/scripts/sync-jobs-schema.mjs` plus the
107
107
  structural migration sync in `sync-prisma-plugins.mjs`):
108
108
 
109
109
  - **Migrations are copied, never symlinked.** Prisma enumerates the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@12-apps/jobs",
3
- "version": "1.20.0",
3
+ "version": "2.0.0",
4
4
  "type": "module",
5
5
  "description": "Generic background-job library: a typed job registry with retries, exponential backoff and cron schedules, behind a swappable driver port (BullMQ/Redis in production, inline execution in tests and zero-config dev). The runtime half (./server) is one factory — createApiJobs: driver resolution, worker bootstrap, graceful drain, the single-writer sweep lease and a health endpoint — with a Hono adapter (./hono) and the package-owned SweepLease Prisma partial + migrations. Knows nothing about the host app's domain, ORM or transport.",
6
6
  "exports": {