@prisma/client-generator-js 6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11 → 6.17.1-dev.1

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 (3) hide show
  1. package/dist/index.js +26 -43
  2. package/dist/index.mjs +27 -44
  3. package/package.json +10 -10
package/dist/index.js CHANGED
@@ -3076,7 +3076,7 @@ var package_default = {
3076
3076
  "@prisma/dmmf": "workspace:*",
3077
3077
  "@prisma/driver-adapter-utils": "workspace:*",
3078
3078
  "@prisma/engines": "workspace:*",
3079
- "@prisma/engines-version": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
3079
+ "@prisma/engines-version": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
3080
3080
  "@prisma/fetch-engine": "workspace:*",
3081
3081
  "@prisma/generator": "workspace:*",
3082
3082
  "@prisma/generator-helper": "workspace:*",
@@ -3085,8 +3085,8 @@ var package_default = {
3085
3085
  "@prisma/internals": "workspace:*",
3086
3086
  "@prisma/migrate": "workspace:*",
3087
3087
  "@prisma/mini-proxy": "0.9.5",
3088
- "@prisma/query-compiler-wasm": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
3089
- "@prisma/query-engine-wasm": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
3088
+ "@prisma/query-compiler-wasm": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
3089
+ "@prisma/query-engine-wasm": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
3090
3090
  "@prisma/query-plan-executor": "workspace:*",
3091
3091
  "@prisma/ts-builders": "workspace:*",
3092
3092
  "@snaplet/copycat": "6.0.0",
@@ -3104,6 +3104,7 @@ var package_default = {
3104
3104
  arg: "5.0.2",
3105
3105
  benchmark: "2.1.4",
3106
3106
  "cookie-es": "2.0.0",
3107
+ "decimal.js": "10.5.0",
3107
3108
  execa: "8.0.1",
3108
3109
  "expect-type": "1.2.2",
3109
3110
  "fs-extra": "11.3.0",
@@ -3128,6 +3129,7 @@ var package_default = {
3128
3129
  "simple-statistics": "7.8.8",
3129
3130
  "sort-keys": "5.1.0",
3130
3131
  "source-map-support": "0.5.21",
3132
+ "sql-template-tag": "5.2.1",
3131
3133
  "stacktrace-parser": "0.1.11",
3132
3134
  "strip-ansi": "7.1.0",
3133
3135
  "strip-indent": "4.0.0",
@@ -3138,9 +3140,6 @@ var package_default = {
3138
3140
  undici: "7.4.0",
3139
3141
  zx: "8.4.1"
3140
3142
  },
3141
- dependencies: {
3142
- "@prisma/client-runtime-utils": "workspace:*"
3143
- },
3144
3143
  peerDependencies: {
3145
3144
  prisma: "*",
3146
3145
  typescript: ">=5.1.0"
@@ -3188,7 +3187,7 @@ var Enum = class {
3188
3187
  toJS() {
3189
3188
  const { type } = this;
3190
3189
  const enumVariants = `{
3191
- ${(0, import_indent_string.default)(type.data.map((v) => `${v.key}: ${this.getValueJS(v.value)}`).join(",\n"), TAB_SIZE)}
3190
+ ${(0, import_indent_string.default)(type.values.map((v) => `${v}: ${this.getValueJS(v)}`).join(",\n"), TAB_SIZE)}
3192
3191
  }`;
3193
3192
  const enumBody = this.isStrictEnum() ? `makeStrictEnum(${enumVariants})` : enumVariants;
3194
3193
  return this.useNamespace ? `exports.Prisma.${type.name} = ${enumBody};` : `exports.${type.name} = exports.$Enums.${type.name} = ${enumBody};`;
@@ -3199,7 +3198,7 @@ ${(0, import_indent_string.default)(type.data.map((v) => `${v.key}: ${this.getVa
3199
3198
  toTS() {
3200
3199
  const { type } = this;
3201
3200
  return `export const ${type.name}: {
3202
- ${(0, import_indent_string.default)(type.data.map((v) => `${v.key}: ${this.getValueTS(v.value)}`).join(",\n"), TAB_SIZE)}
3201
+ ${(0, import_indent_string.default)(type.values.map((v) => `${v}: ${this.getValueTS(v)}`).join(",\n"), TAB_SIZE)}
3203
3202
  };
3204
3203
 
3205
3204
  export type ${type.name} = (typeof ${type.name})[keyof typeof ${type.name}]
@@ -5360,10 +5359,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
5360
5359
  ${browser ? `
5361
5360
  const {
5362
5361
  Decimal,
5363
- DbNull,
5364
- JsonNull,
5365
- AnyNull,
5366
- NullTypes,
5362
+ objectEnumValues,
5367
5363
  makeStrictEnum,
5368
5364
  Public,
5369
5365
  getRuntime,
@@ -5384,10 +5380,7 @@ const {
5384
5380
  skip,
5385
5381
  Decimal,
5386
5382
  Debug,
5387
- DbNull,
5388
- JsonNull,
5389
- AnyNull,
5390
- NullTypes,
5383
+ objectEnumValues,
5391
5384
  makeStrictEnum,
5392
5385
  Extensions,
5393
5386
  warnOnce,
@@ -5437,11 +5430,15 @@ Prisma.defineExtension = ${notSupportOnBrowser("Extensions.defineExtension", bro
5437
5430
  /**
5438
5431
  * Shorthand utilities for JSON filtering
5439
5432
  */
5440
- Prisma.DbNull = DbNull
5441
- Prisma.JsonNull = JsonNull
5442
- Prisma.AnyNull = AnyNull
5433
+ Prisma.DbNull = objectEnumValues.instances.DbNull
5434
+ Prisma.JsonNull = objectEnumValues.instances.JsonNull
5435
+ Prisma.AnyNull = objectEnumValues.instances.AnyNull
5443
5436
 
5444
- Prisma.NullTypes = NullTypes
5437
+ Prisma.NullTypes = {
5438
+ DbNull: objectEnumValues.classes.DbNull,
5439
+ JsonNull: objectEnumValues.classes.JsonNull,
5440
+ AnyNull: objectEnumValues.classes.AnyNull
5441
+ }
5445
5442
 
5446
5443
  ${buildPrismaSkipJs(generator.previewFeatures)}
5447
5444
  `;
@@ -6633,16 +6630,13 @@ ${buildRequirePath(edge)}
6633
6630
  /**
6634
6631
  * Enums
6635
6632
  */
6636
- ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum((0, import_dmmf.datamodelSchemaEnumToSchemaEnum)(type), true).toJS()).join("\n\n")}
6633
+ ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(type, true).toJS()).join("\n\n")}
6637
6634
  ${this.dmmf.datamodel.enums.map((datamodelEnum) => new Enum((0, import_dmmf.datamodelEnumToSchemaEnum)(datamodelEnum), false).toJS()).join("\n\n")}
6638
6635
 
6639
6636
  ${new Enum(
6640
6637
  {
6641
6638
  name: "ModelName",
6642
- data: this.dmmf.mappings.modelOperations.map((m) => ({
6643
- key: m.model,
6644
- value: m.model
6645
- }))
6639
+ values: this.dmmf.mappings.modelOperations.map((m) => m.model)
6646
6640
  },
6647
6641
  true
6648
6642
  ).toJS()}
@@ -6689,9 +6683,7 @@ ${buildNFTAnnotations(edge || !copyEngine, clientEngineType, binaryTargets, rela
6689
6683
  }
6690
6684
  return acc;
6691
6685
  }, []);
6692
- const prismaEnums = this.dmmf.schema.enumTypes.prisma?.map(
6693
- (type) => new Enum((0, import_dmmf.datamodelSchemaEnumToSchemaEnum)(type), true).toTS()
6694
- );
6686
+ const prismaEnums = this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(type, true).toTS());
6695
6687
  const modelEnums = [];
6696
6688
  const modelEnumsAliases = [];
6697
6689
  for (const datamodelEnum of this.dmmf.datamodel.enums) {
@@ -6733,10 +6725,7 @@ ${(0, import_indent_string8.default)(
6733
6725
  ${new Enum(
6734
6726
  {
6735
6727
  name: "ModelName",
6736
- data: this.dmmf.mappings.modelOperations.map((m) => ({
6737
- key: m.model,
6738
- value: m.model
6739
- }))
6728
+ values: this.dmmf.mappings.modelOperations.map((m) => m.model)
6740
6729
  },
6741
6730
  true
6742
6731
  ).toTS()}
@@ -6820,16 +6809,13 @@ export const dmmf: runtime.BaseDMMF
6820
6809
  * Enums
6821
6810
  */
6822
6811
 
6823
- ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum((0, import_dmmf.datamodelSchemaEnumToSchemaEnum)(type), true).toJS()).join("\n\n")}
6824
- ${this.dmmf.schema.enumTypes.model?.map((type) => new Enum((0, import_dmmf.datamodelSchemaEnumToSchemaEnum)(type), false).toJS()).join("\n\n") ?? ""}
6812
+ ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(type, true).toJS()).join("\n\n")}
6813
+ ${this.dmmf.schema.enumTypes.model?.map((type) => new Enum(type, false).toJS()).join("\n\n") ?? ""}
6825
6814
 
6826
6815
  ${new Enum(
6827
6816
  {
6828
6817
  name: "ModelName",
6829
- data: this.dmmf.mappings.modelOperations.map((m) => ({
6830
- key: m.model,
6831
- value: m.model
6832
- }))
6818
+ values: this.dmmf.mappings.modelOperations.map((m) => m.model)
6833
6819
  },
6834
6820
  true
6835
6821
  ).toJS()}
@@ -7270,10 +7256,7 @@ async function buildClient({
7270
7256
  ".": exportsMapDefault
7271
7257
  },
7272
7258
  version: clientVersion,
7273
- sideEffects: false,
7274
- dependencies: {
7275
- "@prisma/client-runtime-utils": clientVersion
7276
- }
7259
+ sideEffects: false
7277
7260
  };
7278
7261
  const fileMap = {};
7279
7262
  fileMap["index.js"] = JS(nodeClient);
@@ -7744,7 +7727,7 @@ var import_internals12 = require("@prisma/internals");
7744
7727
  var import_ts_pattern = require("ts-pattern");
7745
7728
 
7746
7729
  // package.json
7747
- var version = "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11";
7730
+ var version = "6.17.1-dev.1";
7748
7731
 
7749
7732
  // src/resolvePrismaClient.ts
7750
7733
  var import_promises3 = __toESM(require("node:fs/promises"));
package/dist/index.mjs CHANGED
@@ -3071,7 +3071,7 @@ var package_default = {
3071
3071
  "@prisma/dmmf": "workspace:*",
3072
3072
  "@prisma/driver-adapter-utils": "workspace:*",
3073
3073
  "@prisma/engines": "workspace:*",
3074
- "@prisma/engines-version": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
3074
+ "@prisma/engines-version": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
3075
3075
  "@prisma/fetch-engine": "workspace:*",
3076
3076
  "@prisma/generator": "workspace:*",
3077
3077
  "@prisma/generator-helper": "workspace:*",
@@ -3080,8 +3080,8 @@ var package_default = {
3080
3080
  "@prisma/internals": "workspace:*",
3081
3081
  "@prisma/migrate": "workspace:*",
3082
3082
  "@prisma/mini-proxy": "0.9.5",
3083
- "@prisma/query-compiler-wasm": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
3084
- "@prisma/query-engine-wasm": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
3083
+ "@prisma/query-compiler-wasm": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
3084
+ "@prisma/query-engine-wasm": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
3085
3085
  "@prisma/query-plan-executor": "workspace:*",
3086
3086
  "@prisma/ts-builders": "workspace:*",
3087
3087
  "@snaplet/copycat": "6.0.0",
@@ -3099,6 +3099,7 @@ var package_default = {
3099
3099
  arg: "5.0.2",
3100
3100
  benchmark: "2.1.4",
3101
3101
  "cookie-es": "2.0.0",
3102
+ "decimal.js": "10.5.0",
3102
3103
  execa: "8.0.1",
3103
3104
  "expect-type": "1.2.2",
3104
3105
  "fs-extra": "11.3.0",
@@ -3123,6 +3124,7 @@ var package_default = {
3123
3124
  "simple-statistics": "7.8.8",
3124
3125
  "sort-keys": "5.1.0",
3125
3126
  "source-map-support": "0.5.21",
3127
+ "sql-template-tag": "5.2.1",
3126
3128
  "stacktrace-parser": "0.1.11",
3127
3129
  "strip-ansi": "7.1.0",
3128
3130
  "strip-indent": "4.0.0",
@@ -3133,9 +3135,6 @@ var package_default = {
3133
3135
  undici: "7.4.0",
3134
3136
  zx: "8.4.1"
3135
3137
  },
3136
- dependencies: {
3137
- "@prisma/client-runtime-utils": "workspace:*"
3138
- },
3139
3138
  peerDependencies: {
3140
3139
  prisma: "*",
3141
3140
  typescript: ">=5.1.0"
@@ -3183,7 +3182,7 @@ var Enum = class {
3183
3182
  toJS() {
3184
3183
  const { type } = this;
3185
3184
  const enumVariants = `{
3186
- ${indent(type.data.map((v) => `${v.key}: ${this.getValueJS(v.value)}`).join(",\n"), TAB_SIZE)}
3185
+ ${indent(type.values.map((v) => `${v}: ${this.getValueJS(v)}`).join(",\n"), TAB_SIZE)}
3187
3186
  }`;
3188
3187
  const enumBody = this.isStrictEnum() ? `makeStrictEnum(${enumVariants})` : enumVariants;
3189
3188
  return this.useNamespace ? `exports.Prisma.${type.name} = ${enumBody};` : `exports.${type.name} = exports.$Enums.${type.name} = ${enumBody};`;
@@ -3194,7 +3193,7 @@ ${indent(type.data.map((v) => `${v.key}: ${this.getValueJS(v.value)}`).join(",\n
3194
3193
  toTS() {
3195
3194
  const { type } = this;
3196
3195
  return `export const ${type.name}: {
3197
- ${indent(type.data.map((v) => `${v.key}: ${this.getValueTS(v.value)}`).join(",\n"), TAB_SIZE)}
3196
+ ${indent(type.values.map((v) => `${v}: ${this.getValueTS(v)}`).join(",\n"), TAB_SIZE)}
3198
3197
  };
3199
3198
 
3200
3199
  export type ${type.name} = (typeof ${type.name})[keyof typeof ${type.name}]
@@ -4920,7 +4919,7 @@ function fluentWrapperName(modelName) {
4920
4919
  }
4921
4920
 
4922
4921
  // src/TSClient/TSClient.ts
4923
- import { datamodelEnumToSchemaEnum, datamodelSchemaEnumToSchemaEnum } from "@prisma/dmmf";
4922
+ import { datamodelEnumToSchemaEnum } from "@prisma/dmmf";
4924
4923
  import { ClientEngineType as ClientEngineType2, getClientEngineType, pathToPosix as pathToPosix3 } from "@prisma/internals";
4925
4924
  import * as ts12 from "@prisma/ts-builders";
4926
4925
  import ciInfo from "ci-info";
@@ -5358,10 +5357,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
5358
5357
  ${browser ? `
5359
5358
  const {
5360
5359
  Decimal,
5361
- DbNull,
5362
- JsonNull,
5363
- AnyNull,
5364
- NullTypes,
5360
+ objectEnumValues,
5365
5361
  makeStrictEnum,
5366
5362
  Public,
5367
5363
  getRuntime,
@@ -5382,10 +5378,7 @@ const {
5382
5378
  skip,
5383
5379
  Decimal,
5384
5380
  Debug,
5385
- DbNull,
5386
- JsonNull,
5387
- AnyNull,
5388
- NullTypes,
5381
+ objectEnumValues,
5389
5382
  makeStrictEnum,
5390
5383
  Extensions,
5391
5384
  warnOnce,
@@ -5435,11 +5428,15 @@ Prisma.defineExtension = ${notSupportOnBrowser("Extensions.defineExtension", bro
5435
5428
  /**
5436
5429
  * Shorthand utilities for JSON filtering
5437
5430
  */
5438
- Prisma.DbNull = DbNull
5439
- Prisma.JsonNull = JsonNull
5440
- Prisma.AnyNull = AnyNull
5431
+ Prisma.DbNull = objectEnumValues.instances.DbNull
5432
+ Prisma.JsonNull = objectEnumValues.instances.JsonNull
5433
+ Prisma.AnyNull = objectEnumValues.instances.AnyNull
5441
5434
 
5442
- Prisma.NullTypes = NullTypes
5435
+ Prisma.NullTypes = {
5436
+ DbNull: objectEnumValues.classes.DbNull,
5437
+ JsonNull: objectEnumValues.classes.JsonNull,
5438
+ AnyNull: objectEnumValues.classes.AnyNull
5439
+ }
5443
5440
 
5444
5441
  ${buildPrismaSkipJs(generator.previewFeatures)}
5445
5442
  `;
@@ -6631,16 +6628,13 @@ ${buildRequirePath(edge)}
6631
6628
  /**
6632
6629
  * Enums
6633
6630
  */
6634
- ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(datamodelSchemaEnumToSchemaEnum(type), true).toJS()).join("\n\n")}
6631
+ ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(type, true).toJS()).join("\n\n")}
6635
6632
  ${this.dmmf.datamodel.enums.map((datamodelEnum) => new Enum(datamodelEnumToSchemaEnum(datamodelEnum), false).toJS()).join("\n\n")}
6636
6633
 
6637
6634
  ${new Enum(
6638
6635
  {
6639
6636
  name: "ModelName",
6640
- data: this.dmmf.mappings.modelOperations.map((m) => ({
6641
- key: m.model,
6642
- value: m.model
6643
- }))
6637
+ values: this.dmmf.mappings.modelOperations.map((m) => m.model)
6644
6638
  },
6645
6639
  true
6646
6640
  ).toJS()}
@@ -6687,9 +6681,7 @@ ${buildNFTAnnotations(edge || !copyEngine, clientEngineType, binaryTargets, rela
6687
6681
  }
6688
6682
  return acc;
6689
6683
  }, []);
6690
- const prismaEnums = this.dmmf.schema.enumTypes.prisma?.map(
6691
- (type) => new Enum(datamodelSchemaEnumToSchemaEnum(type), true).toTS()
6692
- );
6684
+ const prismaEnums = this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(type, true).toTS());
6693
6685
  const modelEnums = [];
6694
6686
  const modelEnumsAliases = [];
6695
6687
  for (const datamodelEnum of this.dmmf.datamodel.enums) {
@@ -6731,10 +6723,7 @@ ${indent8(
6731
6723
  ${new Enum(
6732
6724
  {
6733
6725
  name: "ModelName",
6734
- data: this.dmmf.mappings.modelOperations.map((m) => ({
6735
- key: m.model,
6736
- value: m.model
6737
- }))
6726
+ values: this.dmmf.mappings.modelOperations.map((m) => m.model)
6738
6727
  },
6739
6728
  true
6740
6729
  ).toTS()}
@@ -6818,16 +6807,13 @@ export const dmmf: runtime.BaseDMMF
6818
6807
  * Enums
6819
6808
  */
6820
6809
 
6821
- ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(datamodelSchemaEnumToSchemaEnum(type), true).toJS()).join("\n\n")}
6822
- ${this.dmmf.schema.enumTypes.model?.map((type) => new Enum(datamodelSchemaEnumToSchemaEnum(type), false).toJS()).join("\n\n") ?? ""}
6810
+ ${this.dmmf.schema.enumTypes.prisma?.map((type) => new Enum(type, true).toJS()).join("\n\n")}
6811
+ ${this.dmmf.schema.enumTypes.model?.map((type) => new Enum(type, false).toJS()).join("\n\n") ?? ""}
6823
6812
 
6824
6813
  ${new Enum(
6825
6814
  {
6826
6815
  name: "ModelName",
6827
- data: this.dmmf.mappings.modelOperations.map((m) => ({
6828
- key: m.model,
6829
- value: m.model
6830
- }))
6816
+ values: this.dmmf.mappings.modelOperations.map((m) => m.model)
6831
6817
  },
6832
6818
  true
6833
6819
  ).toJS()}
@@ -7268,10 +7254,7 @@ async function buildClient({
7268
7254
  ".": exportsMapDefault
7269
7255
  },
7270
7256
  version: clientVersion,
7271
- sideEffects: false,
7272
- dependencies: {
7273
- "@prisma/client-runtime-utils": clientVersion
7274
- }
7257
+ sideEffects: false
7275
7258
  };
7276
7259
  const fileMap = {};
7277
7260
  fileMap["index.js"] = JS(nodeClient);
@@ -7742,7 +7725,7 @@ import { ClientEngineType as ClientEngineType4, getClientEngineType as getClient
7742
7725
  import { match } from "ts-pattern";
7743
7726
 
7744
7727
  // package.json
7745
- var version = "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11";
7728
+ var version = "6.17.1-dev.1";
7746
7729
 
7747
7730
  // src/resolvePrismaClient.ts
7748
7731
  import fs2 from "node:fs/promises";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-generator-js",
3
- "version": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
3
+ "version": "6.17.1-dev.1",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
27
  "@antfu/ni": "0.21.12",
28
- "@prisma/engines-version": "6.17.0-10.297c68f876201799d7f27bcfc636364632386d0a",
28
+ "@prisma/engines-version": "6.17.1-1.272a37d34178c2894197e17273bf937f25acdeac",
29
29
  "ci-info": "4.2.0",
30
30
  "env-paths": "2.2.1",
31
31
  "indent-string": "4.0.0",
@@ -33,14 +33,14 @@
33
33
  "package-up": "5.0.0",
34
34
  "pluralize": "8.0.0",
35
35
  "ts-pattern": "5.6.2",
36
- "@prisma/client-common": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
37
- "@prisma/debug": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
38
- "@prisma/fetch-engine": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
39
- "@prisma/generator": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
40
- "@prisma/dmmf": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
41
- "@prisma/get-platform": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
42
- "@prisma/internals": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11",
43
- "@prisma/ts-builders": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.11"
36
+ "@prisma/client-common": "6.17.1-dev.1",
37
+ "@prisma/debug": "6.17.1-dev.1",
38
+ "@prisma/get-platform": "6.17.1-dev.1",
39
+ "@prisma/fetch-engine": "6.17.1-dev.1",
40
+ "@prisma/dmmf": "6.17.1-dev.1",
41
+ "@prisma/generator": "6.17.1-dev.1",
42
+ "@prisma/ts-builders": "6.17.1-dev.1",
43
+ "@prisma/internals": "6.17.1-dev.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/pluralize": "0.0.33",