prisma-generator-effect 0.0.4 → 1.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.
- package/dist/index.js +0 -52
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -730,32 +730,6 @@ export class Prisma extends Service<Prisma>()("Prisma", {
|
|
|
730
730
|
) => Layer.merge(PrismaClient.layerEffect(optionsEffect), Prisma.Default)
|
|
731
731
|
|
|
732
732
|
}
|
|
733
|
-
|
|
734
|
-
// ============================================================================
|
|
735
|
-
// Deprecated aliases for backward compatibility
|
|
736
|
-
// ============================================================================
|
|
737
|
-
|
|
738
|
-
/**
|
|
739
|
-
* @deprecated Use \`PrismaClient\` instead. Will be removed in next major version.
|
|
740
|
-
*/
|
|
741
|
-
export const PrismaClientService = PrismaClient
|
|
742
|
-
|
|
743
|
-
/**
|
|
744
|
-
* @deprecated Use \`Prisma\` instead. Will be removed in next major version.
|
|
745
|
-
*/
|
|
746
|
-
export const PrismaService = Prisma
|
|
747
|
-
|
|
748
|
-
/**
|
|
749
|
-
* @deprecated Use \`PrismaClient.layer()\` instead. Will be removed in next major version.
|
|
750
|
-
*/
|
|
751
|
-
export const makePrismaLayer = PrismaClient.layer
|
|
752
|
-
|
|
753
|
-
/**
|
|
754
|
-
* @deprecated Use \`PrismaClient.layerEffect()\` instead. Will be removed in next major version.
|
|
755
|
-
*/
|
|
756
|
-
export const makePrismaLayerEffect = PrismaClient.layerEffect
|
|
757
|
-
|
|
758
|
-
|
|
759
733
|
`;
|
|
760
734
|
}
|
|
761
735
|
/**
|
|
@@ -1463,31 +1437,5 @@ export class Prisma extends Service<Prisma>()("Prisma", {
|
|
|
1463
1437
|
) => Layer.merge(PrismaClient.layerEffect(optionsEffect), Prisma.Default)
|
|
1464
1438
|
|
|
1465
1439
|
}
|
|
1466
|
-
|
|
1467
|
-
// ============================================================================
|
|
1468
|
-
// Deprecated aliases for backward compatibility
|
|
1469
|
-
// ============================================================================
|
|
1470
|
-
|
|
1471
|
-
/**
|
|
1472
|
-
* @deprecated Use \`PrismaClient\` instead. Will be removed in next major version.
|
|
1473
|
-
*/
|
|
1474
|
-
export const PrismaClientService = PrismaClient
|
|
1475
|
-
|
|
1476
|
-
/**
|
|
1477
|
-
* @deprecated Use \`Prisma\` instead. Will be removed in next major version.
|
|
1478
|
-
*/
|
|
1479
|
-
export const PrismaService = Prisma
|
|
1480
|
-
|
|
1481
|
-
/**
|
|
1482
|
-
* @deprecated Use \`PrismaClient.layer()\` instead. Will be removed in next major version.
|
|
1483
|
-
*/
|
|
1484
|
-
export const makePrismaLayer = PrismaClient.layer
|
|
1485
|
-
|
|
1486
|
-
/**
|
|
1487
|
-
* @deprecated Use \`PrismaClient.layerEffect()\` instead. Will be removed in next major version.
|
|
1488
|
-
*/
|
|
1489
|
-
export const makePrismaLayerEffect = PrismaClient.layerEffect
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
1440
|
`;
|
|
1493
1441
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prisma-generator-effect",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Prisma generator for Effect",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -18,20 +18,20 @@
|
|
|
18
18
|
"author": "Niccolo' Di Chio",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@effect/platform": "^0.94.
|
|
22
|
-
"@effect/platform-node": "^0.104.
|
|
21
|
+
"@effect/platform": "^0.94.4",
|
|
22
|
+
"@effect/platform-node": "^0.104.1",
|
|
23
23
|
"@effect/vitest": "^0.27.0",
|
|
24
|
-
"@prisma/generator-helper": "^7.
|
|
24
|
+
"@prisma/generator-helper": "^7.4.0",
|
|
25
25
|
"typescript": "^5.9.3",
|
|
26
|
-
"vitest": "^4.0.
|
|
26
|
+
"vitest": "^4.0.18"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@changesets/changelog-github": "^0.5.2",
|
|
30
30
|
"@changesets/cli": "^2.29.8",
|
|
31
|
-
"@prisma/client": "^7.
|
|
32
|
-
"@types/node": "^24.10.
|
|
33
|
-
"effect": "^3.19.
|
|
34
|
-
"prisma": "^7.
|
|
31
|
+
"@prisma/client": "^7.4.0",
|
|
32
|
+
"@types/node": "^24.10.13",
|
|
33
|
+
"effect": "^3.19.16",
|
|
34
|
+
"prisma": "^7.4.0",
|
|
35
35
|
"tsx": "^4.21.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|