@prisma/composer 0.17.0-dev.4 → 0.17.0-dev.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/composer",
|
|
3
|
-
"version": "0.17.0-dev.
|
|
3
|
+
"version": "0.17.0-dev.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Prisma Composer — build a Prisma App by composing Modules. Core authoring, deploy pipeline, and the service-rpc/node/nextjs authoring surfaces. The `prisma-composer` CLI lives in @prisma/composer-cli.",
|
|
6
6
|
"exports": {
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@effect/vitest": "4.0.0-rc.112",
|
|
43
|
-
"@internal/assemble": "0.17.0-dev.
|
|
44
|
-
"@internal/cli": "0.17.0-dev.
|
|
45
|
-
"@internal/core": "0.17.0-dev.
|
|
46
|
-
"@internal/foundation": "0.17.0-dev.
|
|
47
|
-
"@internal/lowering": "0.17.0-dev.
|
|
48
|
-
"@internal/nextjs": "0.17.0-dev.
|
|
49
|
-
"@internal/node": "0.17.0-dev.
|
|
50
|
-
"@internal/service-rpc": "0.17.0-dev.
|
|
51
|
-
"@internal/tsdown-config": "0.17.0-dev.
|
|
43
|
+
"@internal/assemble": "0.17.0-dev.5",
|
|
44
|
+
"@internal/cli": "0.17.0-dev.5",
|
|
45
|
+
"@internal/core": "0.17.0-dev.5",
|
|
46
|
+
"@internal/foundation": "0.17.0-dev.5",
|
|
47
|
+
"@internal/lowering": "0.17.0-dev.5",
|
|
48
|
+
"@internal/nextjs": "0.17.0-dev.5",
|
|
49
|
+
"@internal/node": "0.17.0-dev.5",
|
|
50
|
+
"@internal/service-rpc": "0.17.0-dev.5",
|
|
51
|
+
"@internal/tsdown-config": "0.17.0-dev.5",
|
|
52
52
|
"@types/node": "^26.0.1",
|
|
53
53
|
"tsdown": "^0.22.7",
|
|
54
54
|
"typescript": "^6.0.3"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: prisma-composer-core-concepts
|
|
3
3
|
metadata:
|
|
4
4
|
library: "@prisma/composer"
|
|
5
|
-
library_version: "0.17.0-dev.
|
|
5
|
+
library_version: "0.17.0-dev.5"
|
|
6
6
|
version: 2026.9.1
|
|
7
7
|
description: >-
|
|
8
8
|
Use when deploying or managing an app that uses Prisma Composer
|
|
@@ -411,7 +411,7 @@ provision exactly like your own:
|
|
|
411
411
|
|
|
412
412
|
| Import | What it provisions | Exposes |
|
|
413
413
|
| --- | --- | --- |
|
|
414
|
-
| `cron` from `/cron` | An always-on scheduler firing your schedule at your runner service | nothing |
|
|
414
|
+
| `cron` from `/cron` | An always-on scheduler (it holds Compute's keep-awake guard) firing your schedule at your runner service; `input` on `cron()` binds the runner's input schema | nothing |
|
|
415
415
|
| `storage` from `/storage` | An S3-backed blob store (own Postgres + minted credentials) | `store` |
|
|
416
416
|
| `streams` from `/streams` | Durable append-only event streams over a `store` | `streams` |
|
|
417
417
|
| `auth` from `/auth` | Signup, login, sessions, and JWT verification (Better Auth in one service, own database) | `api`, `session`, `admin` |
|