prisma-client-php 0.0.51 → 0.0.54

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/init.js CHANGED
@@ -188,12 +188,12 @@ const readJsonFile = (filePath) => {
188
188
  return JSON.parse(jsonData);
189
189
  };
190
190
  const npmPinnedVersions = {
191
- prisma: "^6.5.0",
192
- "@prisma/client": "^6.5.0",
193
- "@prisma/internals": "^6.5.0",
194
- tsx: "^4.19.3",
195
- typescript: "^5.8.2",
196
- "@types/node": "^22.13.11",
191
+ prisma: "^6.8.2",
192
+ "@prisma/client": "^6.8.2",
193
+ "@prisma/internals": "^6.8.2",
194
+ tsx: "^4.19.4",
195
+ typescript: "^5.8.3",
196
+ "@types/node": "^22.15.18",
197
197
  };
198
198
  function npmPkg(name) {
199
199
  return npmPinnedVersions[name] ? `${name}@${npmPinnedVersions[name]}` : name;
@@ -8,17 +8,17 @@ interface IModel
8
8
  public function createMany(array $data);
9
9
  // public function createManyAndReturn(array $data);
10
10
  public function create(array $data);
11
- // public function deleteMany(array $criteria);
11
+ public function deleteMany(array $criteria);
12
12
  public function delete(array $criteria);
13
13
  public function findFirst(array $criteria);
14
14
  // public function findFirstOrThrow(array $criteria);
15
15
  public function findMany(array $criteria);
16
16
  public function findUnique(array $criteria);
17
17
  // public function findUniqueOrThrow(array $criteria);
18
- // public function groupBy(array $by);
19
- // public function updateMany(array $data);
18
+ public function groupBy(array $by);
19
+ public function updateMany(array $data);
20
20
  // public function updateManyAndReturn(array $data);
21
- // public function update(array $data);
22
- // public function upsert(array $data);
23
- // public function count(array $criteria);
21
+ public function update(array $data);
22
+ public function upsert(array $data);
23
+ public function count(array $criteria);
24
24
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prisma-client-php",
3
3
  "description": "Prisma Client PHP is an auto-generated query builder that enables type-safe database access in PHP.",
4
- "version": "0.0.51",
4
+ "version": "0.0.54",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "scripts": {