@danielhritcu/zenstack-orm 3.5.8 → 3.5.9

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.d.cts CHANGED
@@ -1051,7 +1051,7 @@ type CoreDeleteOperations = (typeof CoreDeleteOperations)[number];
1051
1051
  /**
1052
1052
  * List of all CRUD operations, including 'orThrow' variants.
1053
1053
  */
1054
- declare const AllCrudOperations: readonly ["findMany", "findUnique", "findFirst", "create", "createMany", "createManyAndReturn", "update", "updateMany", "updateManyAndReturn", "upsert", "delete", "deleteMany", "count", "aggregate", "groupBy", "exists", "findUniqueOrThrow", "findFirstOrThrow"];
1054
+ declare const AllCrudOperations: readonly ["findMany", "findUnique", "findFirst", "create", "createMany", "createManyAndReturn", "update", "updateMany", "updateManyAndReturn", "upsert", "delete", "deleteMany", "count", "aggregate", "groupBy", "exists", "findUniqueOrThrow", "findFirstOrThrow", "paginate"];
1055
1055
  /**
1056
1056
  * List of all CRUD operations, including 'orThrow' variants.
1057
1057
  */
package/dist/index.d.ts CHANGED
@@ -1051,7 +1051,7 @@ type CoreDeleteOperations = (typeof CoreDeleteOperations)[number];
1051
1051
  /**
1052
1052
  * List of all CRUD operations, including 'orThrow' variants.
1053
1053
  */
1054
- declare const AllCrudOperations: readonly ["findMany", "findUnique", "findFirst", "create", "createMany", "createManyAndReturn", "update", "updateMany", "updateManyAndReturn", "upsert", "delete", "deleteMany", "count", "aggregate", "groupBy", "exists", "findUniqueOrThrow", "findFirstOrThrow"];
1054
+ declare const AllCrudOperations: readonly ["findMany", "findUnique", "findFirst", "create", "createMany", "createManyAndReturn", "update", "updateMany", "updateManyAndReturn", "upsert", "delete", "deleteMany", "count", "aggregate", "groupBy", "exists", "findUniqueOrThrow", "findFirstOrThrow", "paginate"];
1055
1055
  /**
1056
1056
  * List of all CRUD operations, including 'orThrow' variants.
1057
1057
  */
package/dist/index.js CHANGED
@@ -3060,7 +3060,8 @@ var CoreDeleteOperations = [
3060
3060
  var AllCrudOperations = [
3061
3061
  ...CoreCrudOperations2,
3062
3062
  "findUniqueOrThrow",
3063
- "findFirstOrThrow"
3063
+ "findFirstOrThrow",
3064
+ "paginate"
3064
3065
  ];
3065
3066
  var AllReadOperations = [
3066
3067
  ...CoreReadOperations,